@seamapi/types 1.414.2 → 1.416.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 CHANGED
@@ -849,6 +849,9 @@ var connected_account = zod.z.object({
849
849
  custom_metadata,
850
850
  automatically_manage_new_devices: zod.z.boolean().describe(
851
851
  "Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API."
852
+ ),
853
+ customer_key: zod.z.string().optional().describe(
854
+ "Your unique key for the customer associated with this connected account."
852
855
  )
853
856
  }).describe(`
854
857
  ---
@@ -12129,6 +12132,10 @@ var openapi_default = {
12129
12132
  description: "Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.",
12130
12133
  type: "object"
12131
12134
  },
12135
+ customer_key: {
12136
+ description: "Your unique key for the customer associated with this connected account.",
12137
+ type: "string"
12138
+ },
12132
12139
  errors: {
12133
12140
  description: "Errors associated with the connected account.",
12134
12141
  items: {
@@ -32022,6 +32029,11 @@ var openapi_default = {
32022
32029
  format: "float",
32023
32030
  type: "number"
32024
32031
  },
32032
+ page_cursor: {
32033
+ description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
32034
+ nullable: true,
32035
+ type: "string"
32036
+ },
32025
32037
  user_identifier_key: {
32026
32038
  description: "Your user ID for the user by which you want to filter Connect Webviews.",
32027
32039
  type: "string"
@@ -32042,9 +32054,10 @@ var openapi_default = {
32042
32054
  items: { $ref: "#/components/schemas/connect_webview" },
32043
32055
  type: "array"
32044
32056
  },
32045
- ok: { type: "boolean" }
32057
+ ok: { type: "boolean" },
32058
+ pagination: { $ref: "#/components/schemas/pagination" }
32046
32059
  },
32047
- required: ["connect_webviews", "ok"],
32060
+ required: ["connect_webviews", "pagination", "ok"],
32048
32061
  type: "object"
32049
32062
  }
32050
32063
  }