Skip to content

Commit 15e73c2

Browse files
feat(deps-dev): bump @seamapi/types from 1.314.0 to 1.316.0 in the seam group (#59)
* 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.314.0 to 1.316.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.314.0...v1.316.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] <support@github.com> * ci: Generate code --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Seam Bot <seambot@getseam.com>
1 parent b88b57f commit 15e73c2

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

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

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public AcsSystem(
1919
bool? canAutomateEnrollment = default,
2020
bool? canCreateAcsAccessGroups = default,
2121
bool? canRemoveAcsUsersFromAcsAccessGroups = default,
22+
string connectedAccountId = default,
2223
List<string> connectedAccountIds = default,
2324
string createdAt = default,
2425
string? defaultCredentialManagerAcsSystemId = default,
@@ -42,6 +43,7 @@ public AcsSystem(
4243
CanAutomateEnrollment = canAutomateEnrollment;
4344
CanCreateAcsAccessGroups = canCreateAcsAccessGroups;
4445
CanRemoveAcsUsersFromAcsAccessGroups = canRemoveAcsUsersFromAcsAccessGroups;
46+
ConnectedAccountId = connectedAccountId;
4547
ConnectedAccountIds = connectedAccountIds;
4648
CreatedAt = createdAt;
4749
DefaultCredentialManagerAcsSystemId = defaultCredentialManagerAcsSystemId;
@@ -90,11 +92,11 @@ public enum ExternalTypeEnum
9092
[EnumMember(Value = "latch_building")]
9193
LatchBuilding = 8,
9294

93-
[EnumMember(Value = "dormakaba_community")]
94-
DormakabaCommunity = 9,
95+
[EnumMember(Value = "dormakaba_community_site")]
96+
DormakabaCommunitySite = 9,
9597

96-
[EnumMember(Value = "legic_connect")]
97-
LegicConnect = 10,
98+
[EnumMember(Value = "legic_connect_credential_service")]
99+
LegicConnectCredentialService = 10,
98100

99101
[EnumMember(Value = "assa_abloy_vostio")]
100102
AssaAbloyVostio = 11,
@@ -133,11 +135,11 @@ public enum SystemTypeEnum
133135
[EnumMember(Value = "latch_building")]
134136
LatchBuilding = 8,
135137

136-
[EnumMember(Value = "dormakaba_community")]
137-
DormakabaCommunity = 9,
138+
[EnumMember(Value = "dormakaba_community_site")]
139+
DormakabaCommunitySite = 9,
138140

139-
[EnumMember(Value = "legic_connect")]
140-
LegicConnect = 10,
141+
[EnumMember(Value = "legic_connect_credential_service")]
142+
LegicConnectCredentialService = 10,
141143

142144
[EnumMember(Value = "assa_abloy_vostio")]
143145
AssaAbloyVostio = 11,
@@ -173,6 +175,9 @@ public enum SystemTypeEnum
173175
)]
174176
public bool? CanRemoveAcsUsersFromAcsAccessGroups { get; set; }
175177

178+
[DataMember(Name = "connected_account_id", IsRequired = true, EmitDefaultValue = false)]
179+
public string ConnectedAccountId { get; set; }
180+
176181
[DataMember(Name = "connected_account_ids", IsRequired = true, EmitDefaultValue = false)]
177182
public List<string> ConnectedAccountIds { get; set; }
178183

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.13.0</PackageVersion>
10+
<PackageVersion>0.14.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.14.17",
62-
"@seamapi/types": "^1.314.0",
62+
"@seamapi/types": "^1.316.0",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)