@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 +17 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +38 -6
- package/dist/index.cjs +17 -3
- 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/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.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/models/devices/device-provider.ts +1 -0
- 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,
|
|
@@ -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",
|