From 1678cad7d4900ee0674c6f3565362ddeb782aac6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 23:20:14 +0000 Subject: [PATCH 1/2] 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](https://github.com/seamapi/types/compare/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] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9a80087..ea6dd67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "SEE LICENSE IN LICENSE.txt", "devDependencies": { "@seamapi/nextlove-sdk-generator": "^1.19.0", - "@seamapi/types": "^1.452.0", + "@seamapi/types": "^1.454.0", "@types/node": "^18.19.11", "ava": "^5.0.1", "axios": "^1.5.0", @@ -1220,9 +1220,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.452.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.452.0.tgz", - "integrity": "sha512-xgc9eGIypTDUVpYVLTwGyEOb/xMpe9PwolrcPx7D7yhdc+LrUS8h9OuErcaXYMpLVAOmdgIpF4SoDuDkrrRVxA==", + "version": "1.454.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.454.0.tgz", + "integrity": "sha512-df+hQzrd1VmDMhulvdHUnFlILI3Nm99sTg3/J3jhhf+6W1XmFdlBi8wYyzyF+0yL2EcfCjgXvFE9wVDGTVo2Uw==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 3b812a7..1de79e1 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ }, "devDependencies": { "@seamapi/nextlove-sdk-generator": "^1.19.0", - "@seamapi/types": "^1.452.0", + "@seamapi/types": "^1.454.0", "@types/node": "^18.19.11", "ava": "^5.0.1", "axios": "^1.5.0", From 4e3e1f2e308bc82a2df5bc4bed7533ec33d63e66 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Tue, 15 Jul 2025 23:21:00 +0000 Subject: [PATCH 2/2] ci: Generate code --- .../src/Seam/Api/UnmanagedAccessCodes.cs | 35 +++++++++++++++++-- output/csharp/src/Seam/Seam.csproj | 2 +- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/output/csharp/src/Seam/Api/UnmanagedAccessCodes.cs b/output/csharp/src/Seam/Api/UnmanagedAccessCodes.cs index aadb6b5..2bd56c4 100644 --- a/output/csharp/src/Seam/Api/UnmanagedAccessCodes.cs +++ b/output/csharp/src/Seam/Api/UnmanagedAccessCodes.cs @@ -327,15 +327,28 @@ public class ListRequest [JsonConstructorAttribute] protected ListRequest() { } - public ListRequest(string deviceId = default, string? userIdentifierKey = default) + public ListRequest( + string deviceId = default, + float? limit = default, + string? pageCursor = default, + string? userIdentifierKey = default + ) { DeviceId = deviceId; + Limit = limit; + PageCursor = pageCursor; UserIdentifierKey = userIdentifierKey; } [DataMember(Name = "device_id", IsRequired = true, EmitDefaultValue = false)] public string DeviceId { get; set; } + [DataMember(Name = "limit", IsRequired = false, EmitDefaultValue = false)] + public float? Limit { get; set; } + + [DataMember(Name = "page_cursor", IsRequired = false, EmitDefaultValue = false)] + public string? PageCursor { get; set; } + [DataMember(Name = "user_identifier_key", IsRequired = false, EmitDefaultValue = false)] public string? UserIdentifierKey { get; set; } @@ -404,10 +417,19 @@ public List List(ListRequest request) public List List( string deviceId = default, + float? limit = default, + string? pageCursor = default, string? userIdentifierKey = default ) { - return List(new ListRequest(deviceId: deviceId, userIdentifierKey: userIdentifierKey)); + return List( + new ListRequest( + deviceId: deviceId, + limit: limit, + pageCursor: pageCursor, + userIdentifierKey: userIdentifierKey + ) + ); } public async Task> ListAsync(ListRequest request) @@ -423,12 +445,19 @@ await _seam.PostAsync("/access_codes/unmanaged/list", requestOptio public async Task> ListAsync( string deviceId = default, + float? limit = default, + string? pageCursor = default, string? userIdentifierKey = default ) { return ( await ListAsync( - new ListRequest(deviceId: deviceId, userIdentifierKey: userIdentifierKey) + new ListRequest( + deviceId: deviceId, + limit: limit, + pageCursor: pageCursor, + userIdentifierKey: userIdentifierKey + ) ) ); } diff --git a/output/csharp/src/Seam/Seam.csproj b/output/csharp/src/Seam/Seam.csproj index 5b0defd..af14ec6 100644 --- a/output/csharp/src/Seam/Seam.csproj +++ b/output/csharp/src/Seam/Seam.csproj @@ -7,7 +7,7 @@ Seam - 0.91.0 + 0.92.0 Seam