@seamapi/types 1.687.0 → 1.688.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +15 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -6
- package/dist/index.cjs +15 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +7 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +7 -2
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +24 -6
package/dist/connect.cjs
CHANGED
|
@@ -705,9 +705,15 @@ var connected_account = zod.z.object({
|
|
|
705
705
|
exclusive: zod.z.boolean().optional().describe(
|
|
706
706
|
"Indicates whether the user identifier associated with the connected account is exclusive."
|
|
707
707
|
)
|
|
708
|
-
}).optional().describe(
|
|
708
|
+
}).optional().describe(`
|
|
709
|
+
---
|
|
710
|
+
deprecated: Use \`display_name\` instead.
|
|
711
|
+
---
|
|
712
|
+
User identifier associated with the connected account.
|
|
713
|
+
`),
|
|
709
714
|
account_type: zod.z.string().optional().describe("Type of connected account."),
|
|
710
715
|
account_type_display_name: zod.z.string().describe("Display name for the connected account type."),
|
|
716
|
+
display_name: zod.z.string().describe("Display name for the connected account."),
|
|
711
717
|
errors: zod.z.array(connected_account_error).describe("Errors associated with the connected account."),
|
|
712
718
|
warnings: zod.z.array(connected_account_warning).describe("Warnings associated with the connected account."),
|
|
713
719
|
custom_metadata,
|
|
@@ -14064,6 +14070,10 @@ var openapi_default = {
|
|
|
14064
14070
|
description: "Your unique key for the customer associated with this connected account.",
|
|
14065
14071
|
type: "string"
|
|
14066
14072
|
},
|
|
14073
|
+
display_name: {
|
|
14074
|
+
description: "Display name for the connected account.",
|
|
14075
|
+
type: "string"
|
|
14076
|
+
},
|
|
14067
14077
|
errors: {
|
|
14068
14078
|
description: "Errors associated with the connected account.",
|
|
14069
14079
|
items: {
|
|
@@ -14207,6 +14217,7 @@ var openapi_default = {
|
|
|
14207
14217
|
type: "array"
|
|
14208
14218
|
},
|
|
14209
14219
|
user_identifier: {
|
|
14220
|
+
deprecated: true,
|
|
14210
14221
|
description: "User identifier associated with the connected account.",
|
|
14211
14222
|
properties: {
|
|
14212
14223
|
api_url: {
|
|
@@ -14230,7 +14241,8 @@ var openapi_default = {
|
|
|
14230
14241
|
type: "string"
|
|
14231
14242
|
}
|
|
14232
14243
|
},
|
|
14233
|
-
type: "object"
|
|
14244
|
+
type: "object",
|
|
14245
|
+
"x-deprecated": "Use `display_name` instead."
|
|
14234
14246
|
},
|
|
14235
14247
|
warnings: {
|
|
14236
14248
|
description: "Warnings associated with the connected account.",
|
|
@@ -14376,6 +14388,7 @@ var openapi_default = {
|
|
|
14376
14388
|
required: [
|
|
14377
14389
|
"connected_account_id",
|
|
14378
14390
|
"account_type_display_name",
|
|
14391
|
+
"display_name",
|
|
14379
14392
|
"errors",
|
|
14380
14393
|
"warnings",
|
|
14381
14394
|
"custom_metadata",
|