@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
|
@@ -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.',
|
|
@@ -2343,6 +2357,23 @@ export default {
|
|
|
2343
2357
|
format: 'uuid',
|
|
2344
2358
|
type: 'string',
|
|
2345
2359
|
},
|
|
2360
|
+
assa_abloy_vostio_metadata: {
|
|
2361
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
2362
|
+
properties: {
|
|
2363
|
+
door_names: {
|
|
2364
|
+
items: { type: 'string' },
|
|
2365
|
+
type: 'array',
|
|
2366
|
+
},
|
|
2367
|
+
endpoint_id: { type: 'string' },
|
|
2368
|
+
key_id: { type: 'string' },
|
|
2369
|
+
key_issuing_request_id: { type: 'string' },
|
|
2370
|
+
override_guest_acs_entrance_ids: {
|
|
2371
|
+
items: { type: 'string' },
|
|
2372
|
+
type: 'array',
|
|
2373
|
+
},
|
|
2374
|
+
},
|
|
2375
|
+
type: 'object',
|
|
2376
|
+
},
|
|
2346
2377
|
card_number: { nullable: true, type: 'string' },
|
|
2347
2378
|
code: {
|
|
2348
2379
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -2661,6 +2692,23 @@ export default {
|
|
|
2661
2692
|
format: 'uuid',
|
|
2662
2693
|
type: 'string',
|
|
2663
2694
|
},
|
|
2695
|
+
assa_abloy_vostio_metadata: {
|
|
2696
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
2697
|
+
properties: {
|
|
2698
|
+
door_names: {
|
|
2699
|
+
items: { type: 'string' },
|
|
2700
|
+
type: 'array',
|
|
2701
|
+
},
|
|
2702
|
+
endpoint_id: { type: 'string' },
|
|
2703
|
+
key_id: { type: 'string' },
|
|
2704
|
+
key_issuing_request_id: { type: 'string' },
|
|
2705
|
+
override_guest_acs_entrance_ids: {
|
|
2706
|
+
items: { type: 'string' },
|
|
2707
|
+
type: 'array',
|
|
2708
|
+
},
|
|
2709
|
+
},
|
|
2710
|
+
type: 'object',
|
|
2711
|
+
},
|
|
2664
2712
|
card_number: { nullable: true, type: 'string' },
|
|
2665
2713
|
code: {
|
|
2666
2714
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -3110,6 +3158,23 @@ export default {
|
|
|
3110
3158
|
format: 'uuid',
|
|
3111
3159
|
type: 'string',
|
|
3112
3160
|
},
|
|
3161
|
+
assa_abloy_vostio_metadata: {
|
|
3162
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
3163
|
+
properties: {
|
|
3164
|
+
door_names: {
|
|
3165
|
+
items: { type: 'string' },
|
|
3166
|
+
type: 'array',
|
|
3167
|
+
},
|
|
3168
|
+
endpoint_id: { type: 'string' },
|
|
3169
|
+
key_id: { type: 'string' },
|
|
3170
|
+
key_issuing_request_id: { type: 'string' },
|
|
3171
|
+
override_guest_acs_entrance_ids: {
|
|
3172
|
+
items: { type: 'string' },
|
|
3173
|
+
type: 'array',
|
|
3174
|
+
},
|
|
3175
|
+
},
|
|
3176
|
+
type: 'object',
|
|
3177
|
+
},
|
|
3113
3178
|
card_number: { nullable: true, type: 'string' },
|
|
3114
3179
|
code: {
|
|
3115
3180
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -3426,6 +3491,23 @@ export default {
|
|
|
3426
3491
|
format: 'uuid',
|
|
3427
3492
|
type: 'string',
|
|
3428
3493
|
},
|
|
3494
|
+
assa_abloy_vostio_metadata: {
|
|
3495
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
3496
|
+
properties: {
|
|
3497
|
+
door_names: {
|
|
3498
|
+
items: { type: 'string' },
|
|
3499
|
+
type: 'array',
|
|
3500
|
+
},
|
|
3501
|
+
endpoint_id: { type: 'string' },
|
|
3502
|
+
key_id: { type: 'string' },
|
|
3503
|
+
key_issuing_request_id: { type: 'string' },
|
|
3504
|
+
override_guest_acs_entrance_ids: {
|
|
3505
|
+
items: { type: 'string' },
|
|
3506
|
+
type: 'array',
|
|
3507
|
+
},
|
|
3508
|
+
},
|
|
3509
|
+
type: 'object',
|
|
3510
|
+
},
|
|
3429
3511
|
card_number: { nullable: true, type: 'string' },
|
|
3430
3512
|
code: {
|
|
3431
3513
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -15937,6 +16019,23 @@ export default {
|
|
|
15937
16019
|
format: 'uuid',
|
|
15938
16020
|
type: 'string',
|
|
15939
16021
|
},
|
|
16022
|
+
assa_abloy_vostio_metadata: {
|
|
16023
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
16024
|
+
properties: {
|
|
16025
|
+
door_names: {
|
|
16026
|
+
items: { type: 'string' },
|
|
16027
|
+
type: 'array',
|
|
16028
|
+
},
|
|
16029
|
+
endpoint_id: { type: 'string' },
|
|
16030
|
+
key_id: { type: 'string' },
|
|
16031
|
+
key_issuing_request_id: { type: 'string' },
|
|
16032
|
+
override_guest_acs_entrance_ids: {
|
|
16033
|
+
items: { type: 'string' },
|
|
16034
|
+
type: 'array',
|
|
16035
|
+
},
|
|
16036
|
+
},
|
|
16037
|
+
type: 'object',
|
|
16038
|
+
},
|
|
15940
16039
|
card_number: { nullable: true, type: 'string' },
|
|
15941
16040
|
code: {
|
|
15942
16041
|
description: 'Access (PIN) code for the credential.',
|
|
@@ -16350,6 +16449,23 @@ export default {
|
|
|
16350
16449
|
format: 'uuid',
|
|
16351
16450
|
type: 'string',
|
|
16352
16451
|
},
|
|
16452
|
+
assa_abloy_vostio_metadata: {
|
|
16453
|
+
description: 'Vostio-specific metadata for the credential.',
|
|
16454
|
+
properties: {
|
|
16455
|
+
door_names: {
|
|
16456
|
+
items: { type: 'string' },
|
|
16457
|
+
type: 'array',
|
|
16458
|
+
},
|
|
16459
|
+
endpoint_id: { type: 'string' },
|
|
16460
|
+
key_id: { type: 'string' },
|
|
16461
|
+
key_issuing_request_id: { type: 'string' },
|
|
16462
|
+
override_guest_acs_entrance_ids: {
|
|
16463
|
+
items: { type: 'string' },
|
|
16464
|
+
type: 'array',
|
|
16465
|
+
},
|
|
16466
|
+
},
|
|
16467
|
+
type: 'object',
|
|
16468
|
+
},
|
|
16353
16469
|
card_number: { nullable: true, type: 'string' },
|
|
16354
16470
|
code: {
|
|
16355
16471
|
description: 'Access (PIN) code for the credential.',
|