@seamapi/types 1.492.0 → 1.494.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 +20 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +84 -84
- package/dist/index.cjs +20 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +60 -60
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +3 -3
- package/lib/seam/connect/models/instant-keys/instant-key.js +5 -5
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -1
- package/lib/seam/connect/openapi.js +9 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +43 -43
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +5 -5
- package/src/lib/seam/connect/openapi.ts +9 -7
- package/src/lib/seam/connect/route-types.ts +43 -25
package/dist/connect.cjs
CHANGED
|
@@ -2344,7 +2344,8 @@ var acs_access_group_external_type = zod.z.enum([
|
|
|
2344
2344
|
"salto_ks_access_group",
|
|
2345
2345
|
"brivo_group",
|
|
2346
2346
|
"salto_space_group",
|
|
2347
|
-
"dormakaba_community_access_group"
|
|
2347
|
+
"dormakaba_community_access_group",
|
|
2348
|
+
"dormakaba_ambiance_access_group"
|
|
2348
2349
|
]);
|
|
2349
2350
|
var common_acs_access_group_warning = zod.z.object({
|
|
2350
2351
|
created_at: zod.z.string().datetime().describe("Date and time at which Seam created the warning."),
|
|
@@ -5123,11 +5124,11 @@ var instant_key = zod.z.object({
|
|
|
5123
5124
|
customization_profile_id: zod.z.string().uuid().optional().describe(
|
|
5124
5125
|
"ID of the customization profile associated with the Instant Key."
|
|
5125
5126
|
),
|
|
5126
|
-
|
|
5127
|
-
primary_color: zod.z.string().optional().describe("Primary color
|
|
5128
|
-
secondary_color: zod.z.string().optional().describe("Secondary color
|
|
5129
|
-
logo_url: zod.z.string().url().optional().describe("URL of the logo
|
|
5130
|
-
}).optional().describe("Customization
|
|
5127
|
+
customization: zod.z.object({
|
|
5128
|
+
primary_color: zod.z.string().optional().describe("Primary color used in the Instant Key UI."),
|
|
5129
|
+
secondary_color: zod.z.string().optional().describe("Secondary color used in the Instant Key UI."),
|
|
5130
|
+
logo_url: zod.z.string().url().optional().describe("URL of the logo displayed on the Instant Key.")
|
|
5131
|
+
}).optional().describe("Customization applied to the Instant Key UI.")
|
|
5131
5132
|
}).describe(`
|
|
5132
5133
|
---
|
|
5133
5134
|
route_path: /instant_keys
|
|
@@ -7309,7 +7310,8 @@ var openapi_default = {
|
|
|
7309
7310
|
"salto_ks_access_group",
|
|
7310
7311
|
"brivo_group",
|
|
7311
7312
|
"salto_space_group",
|
|
7312
|
-
"dormakaba_community_access_group"
|
|
7313
|
+
"dormakaba_community_access_group",
|
|
7314
|
+
"dormakaba_ambiance_access_group"
|
|
7313
7315
|
],
|
|
7314
7316
|
type: "string",
|
|
7315
7317
|
"x-deprecated": "Use `external_type`."
|
|
@@ -7348,7 +7350,8 @@ var openapi_default = {
|
|
|
7348
7350
|
"salto_ks_access_group",
|
|
7349
7351
|
"brivo_group",
|
|
7350
7352
|
"salto_space_group",
|
|
7351
|
-
"dormakaba_community_access_group"
|
|
7353
|
+
"dormakaba_community_access_group",
|
|
7354
|
+
"dormakaba_ambiance_access_group"
|
|
7352
7355
|
],
|
|
7353
7356
|
type: "string"
|
|
7354
7357
|
},
|
|
@@ -22679,20 +22682,20 @@ var openapi_default = {
|
|
|
22679
22682
|
format: "date-time",
|
|
22680
22683
|
type: "string"
|
|
22681
22684
|
},
|
|
22682
|
-
|
|
22683
|
-
description: "Customization
|
|
22685
|
+
customization: {
|
|
22686
|
+
description: "Customization applied to the Instant Key UI.",
|
|
22684
22687
|
properties: {
|
|
22685
22688
|
logo_url: {
|
|
22686
|
-
description: "URL of the logo
|
|
22689
|
+
description: "URL of the logo displayed on the Instant Key.",
|
|
22687
22690
|
format: "uri",
|
|
22688
22691
|
type: "string"
|
|
22689
22692
|
},
|
|
22690
22693
|
primary_color: {
|
|
22691
|
-
description: "Primary color
|
|
22694
|
+
description: "Primary color used in the Instant Key UI.",
|
|
22692
22695
|
type: "string"
|
|
22693
22696
|
},
|
|
22694
22697
|
secondary_color: {
|
|
22695
|
-
description: "Secondary color
|
|
22698
|
+
description: "Secondary color used in the Instant Key UI.",
|
|
22696
22699
|
type: "string"
|
|
22697
22700
|
}
|
|
22698
22701
|
},
|
|
@@ -25609,7 +25612,8 @@ var openapi_default = {
|
|
|
25609
25612
|
"salto_ks_access_group",
|
|
25610
25613
|
"brivo_group",
|
|
25611
25614
|
"salto_space_group",
|
|
25612
|
-
"dormakaba_community_access_group"
|
|
25615
|
+
"dormakaba_community_access_group",
|
|
25616
|
+
"dormakaba_ambiance_access_group"
|
|
25613
25617
|
],
|
|
25614
25618
|
type: "string",
|
|
25615
25619
|
"x-deprecated": "Use `external_type`."
|
|
@@ -25648,7 +25652,8 @@ var openapi_default = {
|
|
|
25648
25652
|
"salto_ks_access_group",
|
|
25649
25653
|
"brivo_group",
|
|
25650
25654
|
"salto_space_group",
|
|
25651
|
-
"dormakaba_community_access_group"
|
|
25655
|
+
"dormakaba_community_access_group",
|
|
25656
|
+
"dormakaba_ambiance_access_group"
|
|
25652
25657
|
],
|
|
25653
25658
|
type: "string"
|
|
25654
25659
|
},
|