Skip to content

Commit 5fe8dc4

Browse files
feat(deps-dev): bump @seamapi/types from 1.452.0 to 1.454.0 in the seam group (#241)
* 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.452.0 to 1.454.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.452.0...v1.454.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.454.0 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 07cdbd3 commit 5fe8dc4

File tree

4 files changed

+38
-9
lines changed

4 files changed

+38
-9
lines changed

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

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,15 +327,28 @@ public class ListRequest
327327
[JsonConstructorAttribute]
328328
protected ListRequest() { }
329329

330-
public ListRequest(string deviceId = default, string? userIdentifierKey = default)
330+
public ListRequest(
331+
string deviceId = default,
332+
float? limit = default,
333+
string? pageCursor = default,
334+
string? userIdentifierKey = default
335+
)
331336
{
332337
DeviceId = deviceId;
338+
Limit = limit;
339+
PageCursor = pageCursor;
333340
UserIdentifierKey = userIdentifierKey;
334341
}
335342

336343
[DataMember(Name = "device_id", IsRequired = true, EmitDefaultValue = false)]
337344
public string DeviceId { get; set; }
338345

346+
[DataMember(Name = "limit", IsRequired = false, EmitDefaultValue = false)]
347+
public float? Limit { get; set; }
348+
349+
[DataMember(Name = "page_cursor", IsRequired = false, EmitDefaultValue = false)]
350+
public string? PageCursor { get; set; }
351+
339352
[DataMember(Name = "user_identifier_key", IsRequired = false, EmitDefaultValue = false)]
340353
public string? UserIdentifierKey { get; set; }
341354

@@ -404,10 +417,19 @@ public List<UnmanagedAccessCode> List(ListRequest request)
404417

405418
public List<UnmanagedAccessCode> List(
406419
string deviceId = default,
420+
float? limit = default,
421+
string? pageCursor = default,
407422
string? userIdentifierKey = default
408423
)
409424
{
410-
return List(new ListRequest(deviceId: deviceId, userIdentifierKey: userIdentifierKey));
425+
return List(
426+
new ListRequest(
427+
deviceId: deviceId,
428+
limit: limit,
429+
pageCursor: pageCursor,
430+
userIdentifierKey: userIdentifierKey
431+
)
432+
);
411433
}
412434

413435
public async Task<List<UnmanagedAccessCode>> ListAsync(ListRequest request)
@@ -423,12 +445,19 @@ await _seam.PostAsync<ListResponse>("/access_codes/unmanaged/list", requestOptio
423445

424446
public async Task<List<UnmanagedAccessCode>> ListAsync(
425447
string deviceId = default,
448+
float? limit = default,
449+
string? pageCursor = default,
426450
string? userIdentifierKey = default
427451
)
428452
{
429453
return (
430454
await ListAsync(
431-
new ListRequest(deviceId: deviceId, userIdentifierKey: userIdentifierKey)
455+
new ListRequest(
456+
deviceId: deviceId,
457+
limit: limit,
458+
pageCursor: pageCursor,
459+
userIdentifierKey: userIdentifierKey
460+
)
432461
)
433462
);
434463
}

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.91.0</PackageVersion>
10+
<PackageVersion>0.92.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.19.0",
62-
"@seamapi/types": "^1.452.0",
62+
"@seamapi/types": "^1.454.0",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)