@seamapi/types 1.333.0 → 1.335.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 +149 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1293 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +73 -7
- package/lib/seam/connect/models/acs/acs-credential.js +6 -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 +240 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +104 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +136 -14
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +130 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +846 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +136 -0
- package/src/lib/seam/connect/route-types.ts +1212 -0
|
@@ -971,6 +971,20 @@ export default {
|
|
|
971
971
|
format: 'uuid',
|
|
972
972
|
type: 'string',
|
|
973
973
|
},
|
|
974
|
+
assa_abloy_vostio_metadata: {
|
|
975
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
976
|
+
properties: {
|
|
977
|
+
door_names: { items: { type: 'string' }, type: 'array' },
|
|
978
|
+
endpoint_id: { type: 'string' },
|
|
979
|
+
key_id: { type: 'string' },
|
|
980
|
+
key_issuing_request_id: { type: 'string' },
|
|
981
|
+
override_guest_acs_entrance_ids: {
|
|
982
|
+
items: { type: 'string' },
|
|
983
|
+
type: 'array',
|
|
984
|
+
},
|
|
985
|
+
},
|
|
986
|
+
type: 'object',
|
|
987
|
+
},
|
|
974
988
|
card_number: { nullable: true, type: 'string' },
|
|
975
989
|
code: {
|
|
976
990
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -1013,6 +1027,8 @@ export default {
|
|
|
1013
1027
|
'salto_ks_credential',
|
|
1014
1028
|
'assa_abloy_vostio_card',
|
|
1015
1029
|
'assa_abloy_vostio_mobile_key',
|
|
1030
|
+
'salto_space_card',
|
|
1031
|
+
'salto_space_mobile_key',
|
|
1016
1032
|
],
|
|
1017
1033
|
type: 'string',
|
|
1018
1034
|
},
|
|
@@ -2343,6 +2359,23 @@ export default {
|
|
|
2343
2359
|
format: 'uuid',
|
|
2344
2360
|
type: 'string',
|
|
2345
2361
|
},
|
|
2362
|
+
assa_abloy_vostio_metadata: {
|
|
2363
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
2364
|
+
properties: {
|
|
2365
|
+
door_names: {
|
|
2366
|
+
items: { type: 'string' },
|
|
2367
|
+
type: 'array',
|
|
2368
|
+
},
|
|
2369
|
+
endpoint_id: { type: 'string' },
|
|
2370
|
+
key_id: { type: 'string' },
|
|
2371
|
+
key_issuing_request_id: { type: 'string' },
|
|
2372
|
+
override_guest_acs_entrance_ids: {
|
|
2373
|
+
items: { type: 'string' },
|
|
2374
|
+
type: 'array',
|
|
2375
|
+
},
|
|
2376
|
+
},
|
|
2377
|
+
type: 'object',
|
|
2378
|
+
},
|
|
2346
2379
|
card_number: { nullable: true, type: 'string' },
|
|
2347
2380
|
code: {
|
|
2348
2381
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -2385,6 +2418,8 @@ export default {
|
|
|
2385
2418
|
'salto_ks_credential',
|
|
2386
2419
|
'assa_abloy_vostio_card',
|
|
2387
2420
|
'assa_abloy_vostio_mobile_key',
|
|
2421
|
+
'salto_space_card',
|
|
2422
|
+
'salto_space_mobile_key',
|
|
2388
2423
|
],
|
|
2389
2424
|
type: 'string',
|
|
2390
2425
|
},
|
|
@@ -2661,6 +2696,23 @@ export default {
|
|
|
2661
2696
|
format: 'uuid',
|
|
2662
2697
|
type: 'string',
|
|
2663
2698
|
},
|
|
2699
|
+
assa_abloy_vostio_metadata: {
|
|
2700
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
2701
|
+
properties: {
|
|
2702
|
+
door_names: {
|
|
2703
|
+
items: { type: 'string' },
|
|
2704
|
+
type: 'array',
|
|
2705
|
+
},
|
|
2706
|
+
endpoint_id: { type: 'string' },
|
|
2707
|
+
key_id: { type: 'string' },
|
|
2708
|
+
key_issuing_request_id: { type: 'string' },
|
|
2709
|
+
override_guest_acs_entrance_ids: {
|
|
2710
|
+
items: { type: 'string' },
|
|
2711
|
+
type: 'array',
|
|
2712
|
+
},
|
|
2713
|
+
},
|
|
2714
|
+
type: 'object',
|
|
2715
|
+
},
|
|
2664
2716
|
card_number: { nullable: true, type: 'string' },
|
|
2665
2717
|
code: {
|
|
2666
2718
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -2703,6 +2755,8 @@ export default {
|
|
|
2703
2755
|
'salto_ks_credential',
|
|
2704
2756
|
'assa_abloy_vostio_card',
|
|
2705
2757
|
'assa_abloy_vostio_mobile_key',
|
|
2758
|
+
'salto_space_card',
|
|
2759
|
+
'salto_space_mobile_key',
|
|
2706
2760
|
],
|
|
2707
2761
|
type: 'string',
|
|
2708
2762
|
},
|
|
@@ -3110,6 +3164,23 @@ export default {
|
|
|
3110
3164
|
format: 'uuid',
|
|
3111
3165
|
type: 'string',
|
|
3112
3166
|
},
|
|
3167
|
+
assa_abloy_vostio_metadata: {
|
|
3168
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
3169
|
+
properties: {
|
|
3170
|
+
door_names: {
|
|
3171
|
+
items: { type: 'string' },
|
|
3172
|
+
type: 'array',
|
|
3173
|
+
},
|
|
3174
|
+
endpoint_id: { type: 'string' },
|
|
3175
|
+
key_id: { type: 'string' },
|
|
3176
|
+
key_issuing_request_id: { type: 'string' },
|
|
3177
|
+
override_guest_acs_entrance_ids: {
|
|
3178
|
+
items: { type: 'string' },
|
|
3179
|
+
type: 'array',
|
|
3180
|
+
},
|
|
3181
|
+
},
|
|
3182
|
+
type: 'object',
|
|
3183
|
+
},
|
|
3113
3184
|
card_number: { nullable: true, type: 'string' },
|
|
3114
3185
|
code: {
|
|
3115
3186
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -3152,6 +3223,8 @@ export default {
|
|
|
3152
3223
|
'salto_ks_credential',
|
|
3153
3224
|
'assa_abloy_vostio_card',
|
|
3154
3225
|
'assa_abloy_vostio_mobile_key',
|
|
3226
|
+
'salto_space_card',
|
|
3227
|
+
'salto_space_mobile_key',
|
|
3155
3228
|
],
|
|
3156
3229
|
type: 'string',
|
|
3157
3230
|
},
|
|
@@ -3426,6 +3499,23 @@ export default {
|
|
|
3426
3499
|
format: 'uuid',
|
|
3427
3500
|
type: 'string',
|
|
3428
3501
|
},
|
|
3502
|
+
assa_abloy_vostio_metadata: {
|
|
3503
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
3504
|
+
properties: {
|
|
3505
|
+
door_names: {
|
|
3506
|
+
items: { type: 'string' },
|
|
3507
|
+
type: 'array',
|
|
3508
|
+
},
|
|
3509
|
+
endpoint_id: { type: 'string' },
|
|
3510
|
+
key_id: { type: 'string' },
|
|
3511
|
+
key_issuing_request_id: { type: 'string' },
|
|
3512
|
+
override_guest_acs_entrance_ids: {
|
|
3513
|
+
items: { type: 'string' },
|
|
3514
|
+
type: 'array',
|
|
3515
|
+
},
|
|
3516
|
+
},
|
|
3517
|
+
type: 'object',
|
|
3518
|
+
},
|
|
3429
3519
|
card_number: { nullable: true, type: 'string' },
|
|
3430
3520
|
code: {
|
|
3431
3521
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -3468,6 +3558,8 @@ export default {
|
|
|
3468
3558
|
'salto_ks_credential',
|
|
3469
3559
|
'assa_abloy_vostio_card',
|
|
3470
3560
|
'assa_abloy_vostio_mobile_key',
|
|
3561
|
+
'salto_space_card',
|
|
3562
|
+
'salto_space_mobile_key',
|
|
3471
3563
|
],
|
|
3472
3564
|
type: 'string',
|
|
3473
3565
|
},
|
|
@@ -15937,6 +16029,23 @@ export default {
|
|
|
15937
16029
|
format: 'uuid',
|
|
15938
16030
|
type: 'string',
|
|
15939
16031
|
},
|
|
16032
|
+
assa_abloy_vostio_metadata: {
|
|
16033
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
16034
|
+
properties: {
|
|
16035
|
+
door_names: {
|
|
16036
|
+
items: { type: 'string' },
|
|
16037
|
+
type: 'array',
|
|
16038
|
+
},
|
|
16039
|
+
endpoint_id: { type: 'string' },
|
|
16040
|
+
key_id: { type: 'string' },
|
|
16041
|
+
key_issuing_request_id: { type: 'string' },
|
|
16042
|
+
override_guest_acs_entrance_ids: {
|
|
16043
|
+
items: { type: 'string' },
|
|
16044
|
+
type: 'array',
|
|
16045
|
+
},
|
|
16046
|
+
},
|
|
16047
|
+
type: 'object',
|
|
16048
|
+
},
|
|
15940
16049
|
card_number: { nullable: true, type: 'string' },
|
|
15941
16050
|
code: {
|
|
15942
16051
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -15979,6 +16088,8 @@ export default {
|
|
|
15979
16088
|
'salto_ks_credential',
|
|
15980
16089
|
'assa_abloy_vostio_card',
|
|
15981
16090
|
'assa_abloy_vostio_mobile_key',
|
|
16091
|
+
'salto_space_card',
|
|
16092
|
+
'salto_space_mobile_key',
|
|
15982
16093
|
],
|
|
15983
16094
|
type: 'string',
|
|
15984
16095
|
},
|
|
@@ -16350,6 +16461,23 @@ export default {
|
|
|
16350
16461
|
format: 'uuid',
|
|
16351
16462
|
type: 'string',
|
|
16352
16463
|
},
|
|
16464
|
+
assa_abloy_vostio_metadata: {
|
|
16465
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
16466
|
+
properties: {
|
|
16467
|
+
door_names: {
|
|
16468
|
+
items: { type: 'string' },
|
|
16469
|
+
type: 'array',
|
|
16470
|
+
},
|
|
16471
|
+
endpoint_id: { type: 'string' },
|
|
16472
|
+
key_id: { type: 'string' },
|
|
16473
|
+
key_issuing_request_id: { type: 'string' },
|
|
16474
|
+
override_guest_acs_entrance_ids: {
|
|
16475
|
+
items: { type: 'string' },
|
|
16476
|
+
type: 'array',
|
|
16477
|
+
},
|
|
16478
|
+
},
|
|
16479
|
+
type: 'object',
|
|
16480
|
+
},
|
|
16353
16481
|
card_number: { nullable: true, type: 'string' },
|
|
16354
16482
|
code: {
|
|
16355
16483
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -16392,6 +16520,8 @@ export default {
|
|
|
16392
16520
|
'salto_ks_credential',
|
|
16393
16521
|
'assa_abloy_vostio_card',
|
|
16394
16522
|
'assa_abloy_vostio_mobile_key',
|
|
16523
|
+
'salto_space_card',
|
|
16524
|
+
'salto_space_mobile_key',
|
|
16395
16525
|
],
|
|
16396
16526
|
type: 'string',
|
|
16397
16527
|
},
|