Skip to content

Commit 6c2d447

Browse files
feat(deps-dev): bump @seamapi/types from 1.329.0 to 1.332.1 in the seam 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]>
1 parent 2aba003 commit 6c2d447

File tree

8 files changed

+306
-414
lines changed

8 files changed

+306
-414
lines changed

output/csharp/src/Seam/Api/Events.cs

Lines changed: 288 additions & 288 deletions
Large diffs are not rendered by default.

output/csharp/src/Seam/Model/AcsCredential.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ public enum ExternalTypeEnum
105105

106106
[EnumMember(Value = "salto_ks_credential")]
107107
SaltoKsCredential = 5,
108+
109+
[EnumMember(Value = "assa_abloy_vostio_card")]
110+
AssaAbloyVostioCard = 6,
111+
112+
[EnumMember(Value = "assa_abloy_vostio_mobile_key")]
113+
AssaAbloyVostioMobileKey = 7,
108114
}
109115

110116
[DataMember(Name = "access_method", IsRequired = true, EmitDefaultValue = false)]

output/csharp/src/Seam/Model/Device.cs

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public Device(
3838
DeviceLocation? location = default,
3939
string? nickname = default,
4040
DeviceProperties properties = default,
41-
List<DeviceWarnings> warnings = default,
41+
List<JObject> warnings = default,
4242
string workspaceId = default
4343
)
4444
{
@@ -288,7 +288,7 @@ public enum DeviceTypeEnum
288288
public DeviceProperties Properties { get; set; }
289289

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

293293
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
294294
public string WorkspaceId { get; set; }
@@ -4015,42 +4015,4 @@ public override string ToString()
40154015
return stringWriter.ToString();
40164016
}
40174017
}
4018-
4019-
[DataContract(Name = "seamModel_deviceWarnings_model")]
4020-
public class DeviceWarnings
4021-
{
4022-
[JsonConstructorAttribute]
4023-
protected DeviceWarnings() { }
4024-
4025-
public DeviceWarnings(string message = default, string warningCode = default)
4026-
{
4027-
Message = message;
4028-
WarningCode = warningCode;
4029-
}
4030-
4031-
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
4032-
public string Message { get; set; }
4033-
4034-
[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
4035-
public string WarningCode { get; set; }
4036-
4037-
public override string ToString()
4038-
{
4039-
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
4040-
4041-
StringWriter stringWriter = new StringWriter(
4042-
new StringBuilder(256),
4043-
System.Globalization.CultureInfo.InvariantCulture
4044-
);
4045-
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
4046-
{
4047-
jsonTextWriter.IndentChar = ' ';
4048-
jsonTextWriter.Indentation = 2;
4049-
jsonTextWriter.Formatting = Formatting.Indented;
4050-
jsonSerializer.Serialize(jsonTextWriter, this, null);
4051-
}
4052-
4053-
return stringWriter.ToString();
4054-
}
4055-
}
40564018
}

output/csharp/src/Seam/Model/Phone.cs

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public Phone(
3737
PhoneLocation? location = default,
3838
string? nickname = default,
3939
PhoneProperties properties = default,
40-
List<PhoneWarnings> warnings = default,
40+
List<JObject> warnings = default,
4141
string workspaceId = default
4242
)
4343
{
@@ -184,7 +184,7 @@ public enum DeviceTypeEnum
184184
public PhoneProperties Properties { get; set; }
185185

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

189189
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
190190
public string WorkspaceId { get; set; }
@@ -371,42 +371,4 @@ public override string ToString()
371371
return stringWriter.ToString();
372372
}
373373
}
374-
375-
[DataContract(Name = "seamModel_phoneWarnings_model")]
376-
public class PhoneWarnings
377-
{
378-
[JsonConstructorAttribute]
379-
protected PhoneWarnings() { }
380-
381-
public PhoneWarnings(string message = default, string warningCode = default)
382-
{
383-
Message = message;
384-
WarningCode = warningCode;
385-
}
386-
387-
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
388-
public string Message { get; set; }
389-
390-
[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
391-
public string WarningCode { get; set; }
392-
393-
public override string ToString()
394-
{
395-
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
396-
397-
StringWriter stringWriter = new StringWriter(
398-
new StringBuilder(256),
399-
System.Globalization.CultureInfo.InvariantCulture
400-
);
401-
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
402-
{
403-
jsonTextWriter.IndentChar = ' ';
404-
jsonTextWriter.Indentation = 2;
405-
jsonTextWriter.Formatting = Formatting.Indented;
406-
jsonSerializer.Serialize(jsonTextWriter, this, null);
407-
}
408-
409-
return stringWriter.ToString();
410-
}
411-
}
412374
}

output/csharp/src/Seam/Model/UnmanagedDevice.cs

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public UnmanagedDevice(
3535
bool isManaged = default,
3636
UnmanagedDeviceLocation? location = default,
3737
UnmanagedDeviceProperties properties = default,
38-
List<UnmanagedDeviceWarnings> warnings = default,
38+
List<JObject> warnings = default,
3939
string workspaceId = default
4040
)
4141
{
@@ -273,7 +273,7 @@ public enum DeviceTypeEnum
273273
public UnmanagedDeviceProperties Properties { get; set; }
274274

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

278278
[DataMember(Name = "workspace_id", IsRequired = true, EmitDefaultValue = false)]
279279
public string WorkspaceId { get; set; }
@@ -650,42 +650,4 @@ public override string ToString()
650650
return stringWriter.ToString();
651651
}
652652
}
653-
654-
[DataContract(Name = "seamModel_unmanagedDeviceWarnings_model")]
655-
public class UnmanagedDeviceWarnings
656-
{
657-
[JsonConstructorAttribute]
658-
protected UnmanagedDeviceWarnings() { }
659-
660-
public UnmanagedDeviceWarnings(string message = default, string warningCode = default)
661-
{
662-
Message = message;
663-
WarningCode = warningCode;
664-
}
665-
666-
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = false)]
667-
public string Message { get; set; }
668-
669-
[DataMember(Name = "warning_code", IsRequired = true, EmitDefaultValue = false)]
670-
public string WarningCode { get; set; }
671-
672-
public override string ToString()
673-
{
674-
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
675-
676-
StringWriter stringWriter = new StringWriter(
677-
new StringBuilder(256),
678-
System.Globalization.CultureInfo.InvariantCulture
679-
);
680-
using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
681-
{
682-
jsonTextWriter.IndentChar = ' ';
683-
jsonTextWriter.Indentation = 2;
684-
jsonTextWriter.Formatting = Formatting.Indented;
685-
jsonSerializer.Serialize(jsonTextWriter, this, null);
686-
}
687-
688-
return stringWriter.ToString();
689-
}
690-
}
691653
}

output/csharp/src/Seam/Seam.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<PackageId>Seam</PackageId>
99

10-
<PackageVersion>0.22.0</PackageVersion>
10+
<PackageVersion>0.23.0</PackageVersion>
1111

1212
<Authors>Seam</Authors>
1313

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
},
6060
"devDependencies": {
6161
"@seamapi/nextlove-sdk-generator": "^1.15.3",
62-
"@seamapi/types": "^1.329.0",
62+
"@seamapi/types": "^1.332.1",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)