@seamapi/types 1.686.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 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("User identifier associated with the connected account."),
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,
@@ -1858,7 +1864,8 @@ var PROVIDER_CATEGORY_MAP = {
1858
1864
  "sensi",
1859
1865
  "assa_abloy_vostio",
1860
1866
  "avigilon_alta",
1861
- "keynest"
1867
+ "keynest",
1868
+ "hotek"
1862
1869
  ],
1863
1870
  consumer_smartlocks: [
1864
1871
  "akiles",
@@ -14063,6 +14070,10 @@ var openapi_default = {
14063
14070
  description: "Your unique key for the customer associated with this connected account.",
14064
14071
  type: "string"
14065
14072
  },
14073
+ display_name: {
14074
+ description: "Display name for the connected account.",
14075
+ type: "string"
14076
+ },
14066
14077
  errors: {
14067
14078
  description: "Errors associated with the connected account.",
14068
14079
  items: {
@@ -14206,6 +14217,7 @@ var openapi_default = {
14206
14217
  type: "array"
14207
14218
  },
14208
14219
  user_identifier: {
14220
+ deprecated: true,
14209
14221
  description: "User identifier associated with the connected account.",
14210
14222
  properties: {
14211
14223
  api_url: {
@@ -14229,7 +14241,8 @@ var openapi_default = {
14229
14241
  type: "string"
14230
14242
  }
14231
14243
  },
14232
- type: "object"
14244
+ type: "object",
14245
+ "x-deprecated": "Use `display_name` instead."
14233
14246
  },
14234
14247
  warnings: {
14235
14248
  description: "Warnings associated with the connected account.",
@@ -14375,6 +14388,7 @@ var openapi_default = {
14375
14388
  required: [
14376
14389
  "connected_account_id",
14377
14390
  "account_type_display_name",
14391
+ "display_name",
14378
14392
  "errors",
14379
14393
  "warnings",
14380
14394
  "custom_metadata",