Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions output/csharp/src/Seam/Api/ConnectWebviews.cs
Original file line number Diff line number Diff line change
Expand Up @@ -614,12 +614,14 @@ public ListRequest(
object? customMetadataHas = default,
List<string>? customerIds = default,
float? limit = default,
string? pageCursor = default,
string? userIdentifierKey = default
)
{
CustomMetadataHas = customMetadataHas;
CustomerIds = customerIds;
Limit = limit;
PageCursor = pageCursor;
UserIdentifierKey = userIdentifierKey;
}

Expand All @@ -632,6 +634,9 @@ public ListRequest(
[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; }

Expand Down Expand Up @@ -702,6 +707,7 @@ public List<ConnectWebview> List(
object? customMetadataHas = default,
List<string>? customerIds = default,
float? limit = default,
string? pageCursor = default,
string? userIdentifierKey = default
)
{
Expand All @@ -710,6 +716,7 @@ public List<ConnectWebview> List(
customMetadataHas: customMetadataHas,
customerIds: customerIds,
limit: limit,
pageCursor: pageCursor,
userIdentifierKey: userIdentifierKey
)
);
Expand All @@ -728,6 +735,7 @@ public async Task<List<ConnectWebview>> ListAsync(
object? customMetadataHas = default,
List<string>? customerIds = default,
float? limit = default,
string? pageCursor = default,
string? userIdentifierKey = default
)
{
Expand All @@ -737,6 +745,7 @@ await ListAsync(
customMetadataHas: customMetadataHas,
customerIds: customerIds,
limit: limit,
pageCursor: pageCursor,
userIdentifierKey: userIdentifierKey
)
)
Expand Down
5 changes: 5 additions & 0 deletions output/csharp/src/Seam/Model/ConnectedAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public ConnectedAccount(
string? connectedAccountId = default,
string? createdAt = default,
object? customMetadata = default,
string? customerKey = default,
List<ConnectedAccountErrors> errors = default,
ConnectedAccountUserIdentifier? userIdentifier = default,
List<ConnectedAccountWarnings> warnings = default
Expand All @@ -32,6 +33,7 @@ public ConnectedAccount(
ConnectedAccountId = connectedAccountId;
CreatedAt = createdAt;
CustomMetadata = customMetadata;
CustomerKey = customerKey;
Errors = errors;
UserIdentifier = userIdentifier;
Warnings = warnings;
Expand Down Expand Up @@ -721,6 +723,9 @@ public override string ToString()
[DataMember(Name = "custom_metadata", IsRequired = true, EmitDefaultValue = false)]
public object? CustomMetadata { get; set; }

[DataMember(Name = "customer_key", IsRequired = false, EmitDefaultValue = false)]
public string? CustomerKey { get; set; }

[DataMember(Name = "errors", IsRequired = true, EmitDefaultValue = false)]
public List<ConnectedAccountErrors> Errors { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion output/csharp/src/Seam/Seam.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PackageId>Seam</PackageId>

<PackageVersion>0.74.0</PackageVersion>
<PackageVersion>0.75.0</PackageVersion>

<Authors>Seam</Authors>

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"devDependencies": {
"@seamapi/nextlove-sdk-generator": "^1.17.4",
"@seamapi/types": "^1.414.2",
"@seamapi/types": "^1.416.0",
"@types/node": "^18.19.11",
"ava": "^5.0.1",
"axios": "^1.5.0",
Expand Down
Loading