@seamapi/types 1.59.0 → 1.60.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 +38 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +164 -4
- package/lib/seam/connect/openapi.d.ts +43 -0
- package/lib/seam/connect/openapi.js +38 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +121 -4
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +2 -2
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +121 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +18 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +139 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +38 -2
- package/src/lib/seam/connect/route-types.ts +139 -4
- package/src/lib/seam/connect/unstable/models/acs/system.ts +2 -2
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +21 -0
package/dist/connect.cjs
CHANGED
|
@@ -223,7 +223,7 @@ var openapi_default = {
|
|
|
223
223
|
"alta_org",
|
|
224
224
|
"salto_site",
|
|
225
225
|
"brivo_account",
|
|
226
|
-
"
|
|
226
|
+
"hid_credential_manager_organization",
|
|
227
227
|
"visionline_system",
|
|
228
228
|
"assa_abloy_credential_service_user"
|
|
229
229
|
],
|
|
@@ -238,7 +238,7 @@ var openapi_default = {
|
|
|
238
238
|
"alta_org",
|
|
239
239
|
"salto_site",
|
|
240
240
|
"brivo_account",
|
|
241
|
-
"
|
|
241
|
+
"hid_credential_manager_organization",
|
|
242
242
|
"visionline_system",
|
|
243
243
|
"assa_abloy_credential_service_user"
|
|
244
244
|
],
|
|
@@ -787,6 +787,42 @@ var openapi_default = {
|
|
|
787
787
|
device_id: { type: "number" },
|
|
788
788
|
door_id: { type: "number" },
|
|
789
789
|
door_name: { type: "string" },
|
|
790
|
+
iana_timezone: { type: "string" },
|
|
791
|
+
predefined_time_slots: {
|
|
792
|
+
items: {
|
|
793
|
+
properties: {
|
|
794
|
+
check_in_time: { type: "string" },
|
|
795
|
+
check_out_time: { type: "string" },
|
|
796
|
+
dormakaba_oracode_user_level_id: {
|
|
797
|
+
format: "uuid",
|
|
798
|
+
type: "string"
|
|
799
|
+
},
|
|
800
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
801
|
+
type: "number"
|
|
802
|
+
},
|
|
803
|
+
is_24_hour: { type: "boolean" },
|
|
804
|
+
is_biweekly_mode: { type: "boolean" },
|
|
805
|
+
is_master: { type: "boolean" },
|
|
806
|
+
is_one_shot: { type: "boolean" },
|
|
807
|
+
name: { type: "string" },
|
|
808
|
+
prefix: { type: "number" }
|
|
809
|
+
},
|
|
810
|
+
required: [
|
|
811
|
+
"name",
|
|
812
|
+
"prefix",
|
|
813
|
+
"check_in_time",
|
|
814
|
+
"check_out_time",
|
|
815
|
+
"is_24_hour",
|
|
816
|
+
"is_biweekly_mode",
|
|
817
|
+
"is_one_shot",
|
|
818
|
+
"is_master",
|
|
819
|
+
"ext_dormakaba_oracode_user_level_prefix",
|
|
820
|
+
"dormakaba_oracode_user_level_id"
|
|
821
|
+
],
|
|
822
|
+
type: "object"
|
|
823
|
+
},
|
|
824
|
+
type: "array"
|
|
825
|
+
},
|
|
790
826
|
site_id: { type: "number" },
|
|
791
827
|
site_name: { type: "string" }
|
|
792
828
|
},
|