Skip to content

Commit de8370b

Browse files
feat(deps-dev): bump @seamapi/types from 1.406.9 to 1.409.0 in the seam group (#205)
* 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.406.9 to 1.409.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.406.9...v1.409.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.409.0 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 633cab7 commit de8370b

13 files changed

Lines changed: 1096 additions & 137 deletions

File tree

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public ListRequest(
135135
float? limit = default,
136136
ListRequest.ManufacturerEnum? manufacturer = default,
137137
string? pageCursor = default,
138+
string? spaceId = default,
138139
string? unstableLocationId = default,
139140
string? userIdentifierKey = default
140141
)
@@ -153,6 +154,7 @@ public ListRequest(
153154
Limit = limit;
154155
Manufacturer = manufacturer;
155156
PageCursor = pageCursor;
157+
SpaceId = spaceId;
156158
UnstableLocationId = unstableLocationId;
157159
UserIdentifierKey = userIdentifierKey;
158160
}
@@ -529,6 +531,9 @@ public enum ManufacturerEnum
529531
[DataMember(Name = "page_cursor", IsRequired = false, EmitDefaultValue = false)]
530532
public string? PageCursor { get; set; }
531533

534+
[DataMember(Name = "space_id", IsRequired = false, EmitDefaultValue = false)]
535+
public string? SpaceId { get; set; }
536+
532537
[DataMember(
533538
Name = "unstable_location_id",
534539
IsRequired = false,
@@ -615,6 +620,7 @@ public List<Device> List(
615620
float? limit = default,
616621
ListRequest.ManufacturerEnum? manufacturer = default,
617622
string? pageCursor = default,
623+
string? spaceId = default,
618624
string? unstableLocationId = default,
619625
string? userIdentifierKey = default
620626
)
@@ -635,6 +641,7 @@ public List<Device> List(
635641
limit: limit,
636642
manufacturer: manufacturer,
637643
pageCursor: pageCursor,
644+
spaceId: spaceId,
638645
unstableLocationId: unstableLocationId,
639646
userIdentifierKey: userIdentifierKey
640647
)
@@ -665,6 +672,7 @@ public async Task<List<Device>> ListAsync(
665672
float? limit = default,
666673
ListRequest.ManufacturerEnum? manufacturer = default,
667674
string? pageCursor = default,
675+
string? spaceId = default,
668676
string? unstableLocationId = default,
669677
string? userIdentifierKey = default
670678
)
@@ -686,6 +694,7 @@ await ListAsync(
686694
limit: limit,
687695
manufacturer: manufacturer,
688696
pageCursor: pageCursor,
697+
spaceId: spaceId,
689698
unstableLocationId: unstableLocationId,
690699
userIdentifierKey: userIdentifierKey
691700
)

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

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,14 @@ protected ListRequest() { }
211211
public ListRequest(
212212
string? acsCredentialId = default,
213213
string? acsSystemId = default,
214-
string? locationId = default
214+
string? locationId = default,
215+
string? spaceId = default
215216
)
216217
{
217218
AcsCredentialId = acsCredentialId;
218219
AcsSystemId = acsSystemId;
219220
LocationId = locationId;
221+
SpaceId = spaceId;
220222
}
221223

222224
[DataMember(Name = "acs_credential_id", IsRequired = false, EmitDefaultValue = false)]
@@ -228,6 +230,9 @@ public ListRequest(
228230
[DataMember(Name = "location_id", IsRequired = false, EmitDefaultValue = false)]
229231
public string? LocationId { get; set; }
230232

233+
[DataMember(Name = "space_id", IsRequired = false, EmitDefaultValue = false)]
234+
public string? SpaceId { get; set; }
235+
231236
public override string ToString()
232237
{
233238
JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(null);
@@ -294,14 +299,16 @@ public List<AcsEntrance> List(ListRequest request)
294299
public List<AcsEntrance> List(
295300
string? acsCredentialId = default,
296301
string? acsSystemId = default,
297-
string? locationId = default
302+
string? locationId = default,
303+
string? spaceId = default
298304
)
299305
{
300306
return List(
301307
new ListRequest(
302308
acsCredentialId: acsCredentialId,
303309
acsSystemId: acsSystemId,
304-
locationId: locationId
310+
locationId: locationId,
311+
spaceId: spaceId
305312
)
306313
);
307314
}
@@ -318,15 +325,17 @@ public async Task<List<AcsEntrance>> ListAsync(ListRequest request)
318325
public async Task<List<AcsEntrance>> ListAsync(
319326
string? acsCredentialId = default,
320327
string? acsSystemId = default,
321-
string? locationId = default
328+
string? locationId = default,
329+
string? spaceId = default
322330
)
323331
{
324332
return (
325333
await ListAsync(
326334
new ListRequest(
327335
acsCredentialId: acsCredentialId,
328336
acsSystemId: acsSystemId,
329-
locationId: locationId
337+
locationId: locationId,
338+
spaceId: spaceId
330339
)
331340
)
332341
);

0 commit comments

Comments
 (0)