Skip to content

Commit d3c2421

Browse files
feat(deps-dev): bump @seamapi/types from 1.316.0 to 1.318.1 in the seam group (#63)
* 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.316.0 to 1.318.1 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.316.0...v1.318.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] <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 ecc4991 commit d3c2421

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,14 @@ protected AcsEntranceDormakabaCommunityMetadata() { }
182182
public AcsEntranceDormakabaCommunityMetadata(
183183
string accessPointName = default,
184184
float? commonAreaNumber = default,
185-
List<string>? innerAccessPointsNames = default
185+
List<string>? innerAccessPointsNames = default,
186+
List<string>? leaseIds = default
186187
)
187188
{
188189
AccessPointName = accessPointName;
189190
CommonAreaNumber = commonAreaNumber;
190191
InnerAccessPointsNames = innerAccessPointsNames;
192+
LeaseIds = leaseIds;
191193
}
192194

193195
[DataMember(Name = "access_point_name", IsRequired = true, EmitDefaultValue = false)]
@@ -203,6 +205,9 @@ public AcsEntranceDormakabaCommunityMetadata(
203205
)]
204206
public List<string>? InnerAccessPointsNames { get; set; }
205207

208+
[DataMember(Name = "lease_ids", IsRequired = false, EmitDefaultValue = false)]
209+
public List<string>? LeaseIds { get; set; }
210+
206211
public override string ToString()
207212
{
208213
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public AcsUser(
2828
string? hidAcsSystemId = default,
2929
bool? isLatestDesiredStateSyncedWithProvider = default,
3030
bool isManaged = default,
31-
bool isSuspended = default,
31+
bool? isSuspended = default,
3232
string? latestDesiredStateSyncedWithProviderAt = default,
3333
string? phoneNumber = default,
3434
string? userIdentityEmailAddress = default,
@@ -136,8 +136,8 @@ public enum ExternalTypeEnum
136136
[DataMember(Name = "is_managed", IsRequired = true, EmitDefaultValue = false)]
137137
public bool IsManaged { get; set; }
138138

139-
[DataMember(Name = "is_suspended", IsRequired = true, EmitDefaultValue = false)]
140-
public bool IsSuspended { get; set; }
139+
[DataMember(Name = "is_suspended", IsRequired = false, EmitDefaultValue = false)]
140+
public bool? IsSuspended { get; set; }
141141

142142
[DataMember(
143143
Name = "latest_desired_state_synced_with_provider_at",

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.14.0</PackageVersion>
10+
<PackageVersion>0.15.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.316.0",
62+
"@seamapi/types": "^1.318.1",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)