Skip to content

Commit e8820c6

Browse files
feat(deps-dev): bump @seamapi/types from 1.414.2 to 1.416.0 in the seam group (#210)
* 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.414.2 to 1.416.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](seamapi/types@v1.414.2...v1.416.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.416.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 755eb29 commit e8820c6

5 files changed

Lines changed: 20 additions & 6 deletions

File tree

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,12 +614,14 @@ public ListRequest(
614614
object? customMetadataHas = default,
615615
List<string>? customerIds = default,
616616
float? limit = default,
617+
string? pageCursor = default,
617618
string? userIdentifierKey = default
618619
)
619620
{
620621
CustomMetadataHas = customMetadataHas;
621622
CustomerIds = customerIds;
622623
Limit = limit;
624+
PageCursor = pageCursor;
623625
UserIdentifierKey = userIdentifierKey;
624626
}
625627

@@ -632,6 +634,9 @@ public ListRequest(
632634
[DataMember(Name = "limit", IsRequired = false, EmitDefaultValue = false)]
633635
public float? Limit { get; set; }
634636

637+
[DataMember(Name = "page_cursor", IsRequired = false, EmitDefaultValue = false)]
638+
public string? PageCursor { get; set; }
639+
635640
[DataMember(Name = "user_identifier_key", IsRequired = false, EmitDefaultValue = false)]
636641
public string? UserIdentifierKey { get; set; }
637642

@@ -702,6 +707,7 @@ public List<ConnectWebview> List(
702707
object? customMetadataHas = default,
703708
List<string>? customerIds = default,
704709
float? limit = default,
710+
string? pageCursor = default,
705711
string? userIdentifierKey = default
706712
)
707713
{
@@ -710,6 +716,7 @@ public List<ConnectWebview> List(
710716
customMetadataHas: customMetadataHas,
711717
customerIds: customerIds,
712718
limit: limit,
719+
pageCursor: pageCursor,
713720
userIdentifierKey: userIdentifierKey
714721
)
715722
);
@@ -728,6 +735,7 @@ public async Task<List<ConnectWebview>> ListAsync(
728735
object? customMetadataHas = default,
729736
List<string>? customerIds = default,
730737
float? limit = default,
738+
string? pageCursor = default,
731739
string? userIdentifierKey = default
732740
)
733741
{
@@ -737,6 +745,7 @@ await ListAsync(
737745
customMetadataHas: customMetadataHas,
738746
customerIds: customerIds,
739747
limit: limit,
748+
pageCursor: pageCursor,
740749
userIdentifierKey: userIdentifierKey
741750
)
742751
)

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public ConnectedAccount(
2121
string? connectedAccountId = default,
2222
string? createdAt = default,
2323
object? customMetadata = default,
24+
string? customerKey = default,
2425
List<ConnectedAccountErrors> errors = default,
2526
ConnectedAccountUserIdentifier? userIdentifier = default,
2627
List<ConnectedAccountWarnings> warnings = default
@@ -32,6 +33,7 @@ public ConnectedAccount(
3233
ConnectedAccountId = connectedAccountId;
3334
CreatedAt = createdAt;
3435
CustomMetadata = customMetadata;
36+
CustomerKey = customerKey;
3537
Errors = errors;
3638
UserIdentifier = userIdentifier;
3739
Warnings = warnings;
@@ -721,6 +723,9 @@ public override string ToString()
721723
[DataMember(Name = "custom_metadata", IsRequired = true, EmitDefaultValue = false)]
722724
public object? CustomMetadata { get; set; }
723725

726+
[DataMember(Name = "customer_key", IsRequired = false, EmitDefaultValue = false)]
727+
public string? CustomerKey { get; set; }
728+
724729
[DataMember(Name = "errors", IsRequired = true, EmitDefaultValue = false)]
725730
public List<ConnectedAccountErrors> Errors { get; set; }
726731

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.74.0</PackageVersion>
10+
<PackageVersion>0.75.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.17.4",
62-
"@seamapi/types": "^1.414.2",
62+
"@seamapi/types": "^1.416.0",
6363
"@types/node": "^18.19.11",
6464
"ava": "^5.0.1",
6565
"axios": "^1.5.0",

0 commit comments

Comments
 (0)