Skip to content

Commit

Permalink
feat(deps-dev): bump @seamapi/types from 1.329.0 to 1.332.1 in the se…
Browse files Browse the repository at this point in the history
…am group (#76)

* feat(deps-dev): bump @seamapi/types in the seam group

Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types).


Updates `@seamapi/types` from 1.329.0 to 1.332.1
- [Release notes](https://github.com/seamapi/types/releases)
- [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json)
- [Commits](seamapi/types@v1.329.0...v1.332.1)

---
updated-dependencies:
- dependency-name: "@seamapi/types"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: seam
...

Signed-off-by: dependabot[bot] <[email protected]>

* ci: Generate code

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Seam Bot <[email protected]>
  • Loading branch information
dependabot[bot] and seambot authored Jan 10, 2025
1 parent 2aba003 commit 6c2d447
Show file tree
Hide file tree
Showing 8 changed files with 306 additions and 414 deletions.
576 changes: 288 additions & 288 deletions output/csharp/src/Seam/Api/Events.cs

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions output/csharp/src/Seam/Model/AcsCredential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ public enum ExternalTypeEnum

[EnumMember(Value = "salto_ks_credential")]
SaltoKsCredential = 5,

[EnumMember(Value = "assa_abloy_vostio_card")]
AssaAbloyVostioCard = 6,

[EnumMember(Value = "assa_abloy_vostio_mobile_key")]
AssaAbloyVostioMobileKey = 7,
}

[DataMember(Name = "access_method", IsRequired = true, EmitDefaultValue = false)]
Expand Down
42 changes: 2 additions & 40 deletions output/csharp/src/Seam/Model/Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Device(
DeviceLocation? location = default,
string? nickname = default,
DeviceProperties properties = default,
List<DeviceWarnings> warnings = default,
List<JObject> warnings = default,
string workspaceId = default
)
{
Expand Down Expand Up @@ -288,7 +288,7 @@ public enum DeviceTypeEnum
public DeviceProperties Properties { get; set; }

[DataMember(Name = "warnings", IsRequired = true, EmitDefaultValue = false)]
public List<DeviceWarnings> Warnings { get; set; }
public List<JObject> Warnings { get; set; }

[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
public string WorkspaceId { get; set; }
Expand Down Expand Up @@ -4015,42 +4015,4 @@ public override string ToString()
return stringWriter.ToString();
}
}

[DataContract(Name = "seamModel_deviceWarnings_model")]
public class DeviceWarnings
{
[JsonConstructorAttribute]
protected DeviceWarnings() { }

public DeviceWarnings(string message = default, string warningCode = default)
{
Message = message;
WarningCode = warningCode;
}

[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
public string Message { get; set; }

[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
public string WarningCode { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);

StringWriter stringWriter = new StringWriter(
new StringBuilder(256),
System.Globalization.CultureInfo.InvariantCulture
);
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
{
jsonTextWriter.IndentChar = ' ';
jsonTextWriter.Indentation = 2;
jsonTextWriter.Formatting = Formatting.Indented;
jsonSerializer.Serialize(jsonTextWriter, this, null);
}

return stringWriter.ToString();
}
}
}
42 changes: 2 additions & 40 deletions output/csharp/src/Seam/Model/Phone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public Phone(
PhoneLocation? location = default,
string? nickname = default,
PhoneProperties properties = default,
List<PhoneWarnings> warnings = default,
List<JObject> warnings = default,
string workspaceId = default
)
{
Expand Down Expand Up @@ -184,7 +184,7 @@ public enum DeviceTypeEnum
public PhoneProperties Properties { get; set; }

[DataMember(Name = "warnings", IsRequired = true, EmitDefaultValue = false)]
public List<PhoneWarnings> Warnings { get; set; }
public List<JObject> Warnings { get; set; }

[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
public string WorkspaceId { get; set; }
Expand Down Expand Up @@ -371,42 +371,4 @@ public override string ToString()
return stringWriter.ToString();
}
}

[DataContract(Name = "seamModel_phoneWarnings_model")]
public class PhoneWarnings
{
[JsonConstructorAttribute]
protected PhoneWarnings() { }

public PhoneWarnings(string message = default, string warningCode = default)
{
Message = message;
WarningCode = warningCode;
}

[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
public string Message { get; set; }

[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
public string WarningCode { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);

StringWriter stringWriter = new StringWriter(
new StringBuilder(256),
System.Globalization.CultureInfo.InvariantCulture
);
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
{
jsonTextWriter.IndentChar = ' ';
jsonTextWriter.Indentation = 2;
jsonTextWriter.Formatting = Formatting.Indented;
jsonSerializer.Serialize(jsonTextWriter, this, null);
}

return stringWriter.ToString();
}
}
}
42 changes: 2 additions & 40 deletions output/csharp/src/Seam/Model/UnmanagedDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public UnmanagedDevice(
bool isManaged = default,
UnmanagedDeviceLocation? location = default,
UnmanagedDeviceProperties properties = default,
List<UnmanagedDeviceWarnings> warnings = default,
List<JObject> warnings = default,
string workspaceId = default
)
{
Expand Down Expand Up @@ -273,7 +273,7 @@ public enum DeviceTypeEnum
public UnmanagedDeviceProperties Properties { get; set; }

[DataMember(Name = "warnings", IsRequired = true, EmitDefaultValue = false)]
public List<UnmanagedDeviceWarnings> Warnings { get; set; }
public List<JObject> Warnings { get; set; }

[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
public string WorkspaceId { get; set; }
Expand Down Expand Up @@ -650,42 +650,4 @@ public override string ToString()
return stringWriter.ToString();
}
}

[DataContract(Name = "seamModel_unmanagedDeviceWarnings_model")]
public class UnmanagedDeviceWarnings
{
[JsonConstructorAttribute]
protected UnmanagedDeviceWarnings() { }

public UnmanagedDeviceWarnings(string message = default, string warningCode = default)
{
Message = message;
WarningCode = warningCode;
}

[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
public string Message { get; set; }

[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
public string WarningCode { get; set; }

public override string ToString()
{
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);

StringWriter stringWriter = new StringWriter(
new StringBuilder(256),
System.Globalization.CultureInfo.InvariantCulture
);
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
{
jsonTextWriter.IndentChar = ' ';
jsonTextWriter.Indentation = 2;
jsonTextWriter.Formatting = Formatting.Indented;
jsonSerializer.Serialize(jsonTextWriter, this, null);
}

return stringWriter.ToString();
}
}
}
2 changes: 1 addition & 1 deletion output/csharp/src/Seam/Seam.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PackageId>Seam</PackageId>

<PackageVersion>0.22.0</PackageVersion>
<PackageVersion>0.23.0</PackageVersion>

<Authors>Seam</Authors>

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@seamapi/nextlove-sdk-generator": "^1.15.3",
"@seamapi/types": "^1.329.0",
"@seamapi/types": "^1.332.1",
"@types/node": "^18.19.11",
"ava": "^5.0.1",
"axios": "^1.5.0",
Expand Down

0 comments on commit 6c2d447

Please sign in to comment.