@seamapi/types 1.333.0 → 1.334.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 +125 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1169 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +20 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +7 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +216 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +94 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +122 -0
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +116 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +752 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +122 -0
- package/src/lib/seam/connect/route-types.ts +1024 -0
package/dist/connect.cjs
CHANGED
|
@@ -1504,6 +1504,13 @@ var acs_entrance_assa_abloy_vostio_metadata = zod.z.object({
|
|
|
1504
1504
|
stand_open: zod.z.boolean().optional(),
|
|
1505
1505
|
pms_id: zod.z.string().optional()
|
|
1506
1506
|
});
|
|
1507
|
+
var acs_credential_vostio_metadata = zod.z.object({
|
|
1508
|
+
override_guest_acs_entrance_ids: zod.z.string().array().optional(),
|
|
1509
|
+
key_id: zod.z.string().optional(),
|
|
1510
|
+
key_issuing_request_id: zod.z.string().optional(),
|
|
1511
|
+
door_names: zod.z.string().array().optional(),
|
|
1512
|
+
endpoint_id: zod.z.string().optional()
|
|
1513
|
+
});
|
|
1507
1514
|
var acs_entrance_dormakaba_community_metadata = zod.z.object({
|
|
1508
1515
|
access_point_name: zod.z.string()
|
|
1509
1516
|
});
|
|
@@ -1663,7 +1670,8 @@ var common_acs_credential = zod.z.object({
|
|
|
1663
1670
|
latest_desired_state_synced_with_provider_at: zod.z.string().datetime().nullable().optional().describe(
|
|
1664
1671
|
"Date and time at which the state of the credential was most recently synced from Seam to the provider."
|
|
1665
1672
|
),
|
|
1666
|
-
visionline_metadata: acs_credential_visionline_metadata.optional().describe("Visionline-specific metadata for the credential.")
|
|
1673
|
+
visionline_metadata: acs_credential_visionline_metadata.optional().describe("Visionline-specific metadata for the credential."),
|
|
1674
|
+
assa_abloy_vostio_metadata: acs_credential_vostio_metadata.optional().describe("Vostio-specific metadata for the credential.")
|
|
1667
1675
|
});
|
|
1668
1676
|
var acs_credential = common_acs_credential.merge(
|
|
1669
1677
|
zod.z.object({
|
|
@@ -4488,6 +4496,20 @@ var openapi_default = {
|
|
|
4488
4496
|
format: "uuid",
|
|
4489
4497
|
type: "string"
|
|
4490
4498
|
},
|
|
4499
|
+
assa_abloy_vostio_metadata: {
|
|
4500
|
+
description: "Vostio-specific metadata for the credential.",
|
|
4501
|
+
properties: {
|
|
4502
|
+
door_names: { items: { type: "string" }, type: "array" },
|
|
4503
|
+
endpoint_id: { type: "string" },
|
|
4504
|
+
key_id: { type: "string" },
|
|
4505
|
+
key_issuing_request_id: { type: "string" },
|
|
4506
|
+
override_guest_acs_entrance_ids: {
|
|
4507
|
+
items: { type: "string" },
|
|
4508
|
+
type: "array"
|
|
4509
|
+
}
|
|
4510
|
+
},
|
|
4511
|
+
type: "object"
|
|
4512
|
+
},
|
|
4491
4513
|
card_number: { nullable: true, type: "string" },
|
|
4492
4514
|
code: {
|
|
4493
4515
|
description: "Access (PIN) code for the credential.",
|
|
@@ -5860,6 +5882,23 @@ var openapi_default = {
|
|
|
5860
5882
|
format: "uuid",
|
|
5861
5883
|
type: "string"
|
|
5862
5884
|
},
|
|
5885
|
+
assa_abloy_vostio_metadata: {
|
|
5886
|
+
description: "Vostio-specific metadata for the credential.",
|
|
5887
|
+
properties: {
|
|
5888
|
+
door_names: {
|
|
5889
|
+
items: { type: "string" },
|
|
5890
|
+
type: "array"
|
|
5891
|
+
},
|
|
5892
|
+
endpoint_id: { type: "string" },
|
|
5893
|
+
key_id: { type: "string" },
|
|
5894
|
+
key_issuing_request_id: { type: "string" },
|
|
5895
|
+
override_guest_acs_entrance_ids: {
|
|
5896
|
+
items: { type: "string" },
|
|
5897
|
+
type: "array"
|
|
5898
|
+
}
|
|
5899
|
+
},
|
|
5900
|
+
type: "object"
|
|
5901
|
+
},
|
|
5863
5902
|
card_number: { nullable: true, type: "string" },
|
|
5864
5903
|
code: {
|
|
5865
5904
|
description: "Access (PIN) code for the credential.",
|
|
@@ -6178,6 +6217,23 @@ var openapi_default = {
|
|
|
6178
6217
|
format: "uuid",
|
|
6179
6218
|
type: "string"
|
|
6180
6219
|
},
|
|
6220
|
+
assa_abloy_vostio_metadata: {
|
|
6221
|
+
description: "Vostio-specific metadata for the credential.",
|
|
6222
|
+
properties: {
|
|
6223
|
+
door_names: {
|
|
6224
|
+
items: { type: "string" },
|
|
6225
|
+
type: "array"
|
|
6226
|
+
},
|
|
6227
|
+
endpoint_id: { type: "string" },
|
|
6228
|
+
key_id: { type: "string" },
|
|
6229
|
+
key_issuing_request_id: { type: "string" },
|
|
6230
|
+
override_guest_acs_entrance_ids: {
|
|
6231
|
+
items: { type: "string" },
|
|
6232
|
+
type: "array"
|
|
6233
|
+
}
|
|
6234
|
+
},
|
|
6235
|
+
type: "object"
|
|
6236
|
+
},
|
|
6181
6237
|
card_number: { nullable: true, type: "string" },
|
|
6182
6238
|
code: {
|
|
6183
6239
|
description: "Access (PIN) code for the credential.",
|
|
@@ -6627,6 +6683,23 @@ var openapi_default = {
|
|
|
6627
6683
|
format: "uuid",
|
|
6628
6684
|
type: "string"
|
|
6629
6685
|
},
|
|
6686
|
+
assa_abloy_vostio_metadata: {
|
|
6687
|
+
description: "Vostio-specific metadata for the credential.",
|
|
6688
|
+
properties: {
|
|
6689
|
+
door_names: {
|
|
6690
|
+
items: { type: "string" },
|
|
6691
|
+
type: "array"
|
|
6692
|
+
},
|
|
6693
|
+
endpoint_id: { type: "string" },
|
|
6694
|
+
key_id: { type: "string" },
|
|
6695
|
+
key_issuing_request_id: { type: "string" },
|
|
6696
|
+
override_guest_acs_entrance_ids: {
|
|
6697
|
+
items: { type: "string" },
|
|
6698
|
+
type: "array"
|
|
6699
|
+
}
|
|
6700
|
+
},
|
|
6701
|
+
type: "object"
|
|
6702
|
+
},
|
|
6630
6703
|
card_number: { nullable: true, type: "string" },
|
|
6631
6704
|
code: {
|
|
6632
6705
|
description: "Access (PIN) code for the credential.",
|
|
@@ -6943,6 +7016,23 @@ var openapi_default = {
|
|
|
6943
7016
|
format: "uuid",
|
|
6944
7017
|
type: "string"
|
|
6945
7018
|
},
|
|
7019
|
+
assa_abloy_vostio_metadata: {
|
|
7020
|
+
description: "Vostio-specific metadata for the credential.",
|
|
7021
|
+
properties: {
|
|
7022
|
+
door_names: {
|
|
7023
|
+
items: { type: "string" },
|
|
7024
|
+
type: "array"
|
|
7025
|
+
},
|
|
7026
|
+
endpoint_id: { type: "string" },
|
|
7027
|
+
key_id: { type: "string" },
|
|
7028
|
+
key_issuing_request_id: { type: "string" },
|
|
7029
|
+
override_guest_acs_entrance_ids: {
|
|
7030
|
+
items: { type: "string" },
|
|
7031
|
+
type: "array"
|
|
7032
|
+
}
|
|
7033
|
+
},
|
|
7034
|
+
type: "object"
|
|
7035
|
+
},
|
|
6946
7036
|
card_number: { nullable: true, type: "string" },
|
|
6947
7037
|
code: {
|
|
6948
7038
|
description: "Access (PIN) code for the credential.",
|
|
@@ -19454,6 +19544,23 @@ var openapi_default = {
|
|
|
19454
19544
|
format: "uuid",
|
|
19455
19545
|
type: "string"
|
|
19456
19546
|
},
|
|
19547
|
+
assa_abloy_vostio_metadata: {
|
|
19548
|
+
description: "Vostio-specific metadata for the credential.",
|
|
19549
|
+
properties: {
|
|
19550
|
+
door_names: {
|
|
19551
|
+
items: { type: "string" },
|
|
19552
|
+
type: "array"
|
|
19553
|
+
},
|
|
19554
|
+
endpoint_id: { type: "string" },
|
|
19555
|
+
key_id: { type: "string" },
|
|
19556
|
+
key_issuing_request_id: { type: "string" },
|
|
19557
|
+
override_guest_acs_entrance_ids: {
|
|
19558
|
+
items: { type: "string" },
|
|
19559
|
+
type: "array"
|
|
19560
|
+
}
|
|
19561
|
+
},
|
|
19562
|
+
type: "object"
|
|
19563
|
+
},
|
|
19457
19564
|
card_number: { nullable: true, type: "string" },
|
|
19458
19565
|
code: {
|
|
19459
19566
|
description: "Access (PIN) code for the credential.",
|
|
@@ -19867,6 +19974,23 @@ var openapi_default = {
|
|
|
19867
19974
|
format: "uuid",
|
|
19868
19975
|
type: "string"
|
|
19869
19976
|
},
|
|
19977
|
+
assa_abloy_vostio_metadata: {
|
|
19978
|
+
description: "Vostio-specific metadata for the credential.",
|
|
19979
|
+
properties: {
|
|
19980
|
+
door_names: {
|
|
19981
|
+
items: { type: "string" },
|
|
19982
|
+
type: "array"
|
|
19983
|
+
},
|
|
19984
|
+
endpoint_id: { type: "string" },
|
|
19985
|
+
key_id: { type: "string" },
|
|
19986
|
+
key_issuing_request_id: { type: "string" },
|
|
19987
|
+
override_guest_acs_entrance_ids: {
|
|
19988
|
+
items: { type: "string" },
|
|
19989
|
+
type: "array"
|
|
19990
|
+
}
|
|
19991
|
+
},
|
|
19992
|
+
type: "object"
|
|
19993
|
+
},
|
|
19870
19994
|
card_number: { nullable: true, type: "string" },
|
|
19871
19995
|
code: {
|
|
19872
19996
|
description: "Access (PIN) code for the credential.",
|