@seamapi/types 1.444.0 → 1.445.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 +10 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +91 -29
- package/dist/index.cjs +10 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +3 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +4 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -26
- package/lib/seam/connect/openapi.js +8 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +3 -0
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +10 -7
- package/src/lib/seam/connect/route-types.ts +8 -2
package/dist/connect.cjs
CHANGED
|
@@ -4191,7 +4191,8 @@ var connect_webview = zod.z.object({
|
|
|
4191
4191
|
),
|
|
4192
4192
|
selected_provider: zod.z.string().nullable().describe(
|
|
4193
4193
|
"Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews)."
|
|
4194
|
-
)
|
|
4194
|
+
),
|
|
4195
|
+
customer_key: zod.z.string().optional().describe("The customer key associated with this webview, if any.")
|
|
4195
4196
|
}).describe(`
|
|
4196
4197
|
---
|
|
4197
4198
|
route_path: /connect_webviews
|
|
@@ -13157,6 +13158,10 @@ var openapi_default = {
|
|
|
13157
13158
|
nullable: true,
|
|
13158
13159
|
type: "string"
|
|
13159
13160
|
},
|
|
13161
|
+
customer_key: {
|
|
13162
|
+
description: "The customer key associated with this webview, if any.",
|
|
13163
|
+
type: "string"
|
|
13164
|
+
},
|
|
13160
13165
|
device_selection_mode: {
|
|
13161
13166
|
enum: ["none", "single", "multiple"],
|
|
13162
13167
|
type: "string"
|
|
@@ -38270,7 +38275,10 @@ var openapi_default = {
|
|
|
38270
38275
|
description: "URL that you want to redirect the user to after the provider login is complete.",
|
|
38271
38276
|
type: "string"
|
|
38272
38277
|
},
|
|
38273
|
-
|
|
38278
|
+
customer_key: {
|
|
38279
|
+
description: "Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key.",
|
|
38280
|
+
type: "string"
|
|
38281
|
+
},
|
|
38274
38282
|
device_selection_mode: {
|
|
38275
38283
|
enum: ["none", "single", "multiple"],
|
|
38276
38284
|
type: "string",
|
|
@@ -38548,11 +38556,6 @@ var openapi_default = {
|
|
|
38548
38556
|
description: "Returns a list of all [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews).",
|
|
38549
38557
|
operationId: "connectWebviewsListGet",
|
|
38550
38558
|
parameters: [
|
|
38551
|
-
{
|
|
38552
|
-
in: "query",
|
|
38553
|
-
name: "customer_ids",
|
|
38554
|
-
schema: { items: { type: "string" }, type: "array" }
|
|
38555
|
-
},
|
|
38556
38559
|
{
|
|
38557
38560
|
in: "query",
|
|
38558
38561
|
name: "user_identifier_key",
|
|
@@ -38645,7 +38648,6 @@ var openapi_default = {
|
|
|
38645
38648
|
description: "Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs.",
|
|
38646
38649
|
type: "object"
|
|
38647
38650
|
},
|
|
38648
|
-
customer_ids: { items: { type: "string" }, type: "array" },
|
|
38649
38651
|
limit: {
|
|
38650
38652
|
default: 500,
|
|
38651
38653
|
description: "Maximum number of records to return per page.",
|