@seamapi/types 1.540.0 → 1.541.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 +16 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -0
- package/dist/index.cjs +16 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/models/events/connect-webviews.d.ts +6 -0
- package/lib/seam/connect/models/events/connect-webviews.js +4 -0
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.d.ts +6 -0
- package/lib/seam/connect/models/events/connected-accounts.js +4 -0
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +138 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/connect-webviews.ts +6 -0
- package/src/lib/seam/connect/models/events/connected-accounts.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.cjs
CHANGED
|
@@ -4586,7 +4586,10 @@ var connected_account_custom_metadata = custom_metadata.optional().describe(
|
|
|
4586
4586
|
var connect_webview_login_succeeded_event = connect_webview_event.extend({
|
|
4587
4587
|
event_type: zod.z.literal("connect_webview.login_succeeded"),
|
|
4588
4588
|
connected_account_id,
|
|
4589
|
-
connected_account_custom_metadata
|
|
4589
|
+
connected_account_custom_metadata,
|
|
4590
|
+
customer_key: zod.z.string().optional().describe(
|
|
4591
|
+
"The customer key associated with this connect webview, if any."
|
|
4592
|
+
)
|
|
4590
4593
|
}).describe(`
|
|
4591
4594
|
---
|
|
4592
4595
|
route_path: /connect_webviews
|
|
@@ -4619,7 +4622,10 @@ var connect_webview_id = zod.z.string().uuid().describe(
|
|
|
4619
4622
|
var connected_account_connected_event = connected_account_event.extend(
|
|
4620
4623
|
{
|
|
4621
4624
|
event_type: zod.z.literal("connected_account.connected"),
|
|
4622
|
-
connect_webview_id
|
|
4625
|
+
connect_webview_id,
|
|
4626
|
+
customer_key: zod.z.string().optional().describe(
|
|
4627
|
+
"The customer key associated with this connected account, if any."
|
|
4628
|
+
)
|
|
4623
4629
|
}
|
|
4624
4630
|
).describe(`
|
|
4625
4631
|
---
|
|
@@ -19615,6 +19621,10 @@ var openapi_default = {
|
|
|
19615
19621
|
format: "date-time",
|
|
19616
19622
|
type: "string"
|
|
19617
19623
|
},
|
|
19624
|
+
customer_key: {
|
|
19625
|
+
description: "The customer key associated with this connected account, if any.",
|
|
19626
|
+
type: "string"
|
|
19627
|
+
},
|
|
19618
19628
|
event_id: {
|
|
19619
19629
|
description: "ID of the event.",
|
|
19620
19630
|
format: "uuid",
|
|
@@ -20198,6 +20208,10 @@ var openapi_default = {
|
|
|
20198
20208
|
format: "date-time",
|
|
20199
20209
|
type: "string"
|
|
20200
20210
|
},
|
|
20211
|
+
customer_key: {
|
|
20212
|
+
description: "The customer key associated with this connect webview, if any.",
|
|
20213
|
+
type: "string"
|
|
20214
|
+
},
|
|
20201
20215
|
event_id: {
|
|
20202
20216
|
description: "ID of the event.",
|
|
20203
20217
|
format: "uuid",
|