@seamapi/types 1.329.1 → 1.331.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 +89 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +194 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +93 -0
- package/lib/seam/connect/models/acs/acs-user.js +14 -1
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/openapi.js +67 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +17 -1
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +223 -0
|
@@ -129,7 +129,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
129
129
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
130
130
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
131
131
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
132
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
132
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -308,7 +308,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
308
308
|
credential_id?: string | undefined;
|
|
309
309
|
} | undefined;
|
|
310
310
|
is_one_time_use?: boolean | undefined;
|
|
311
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
311
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
312
312
|
external_type_display_name?: string | undefined;
|
|
313
313
|
acs_user_id?: string | undefined;
|
|
314
314
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -370,7 +370,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
370
370
|
credential_id?: string | undefined;
|
|
371
371
|
} | undefined;
|
|
372
372
|
is_one_time_use?: boolean | undefined;
|
|
373
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
373
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
374
374
|
external_type_display_name?: string | undefined;
|
|
375
375
|
acs_user_id?: string | undefined;
|
|
376
376
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -394,7 +394,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
394
394
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
395
395
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
396
396
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
397
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
397
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
398
398
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
399
399
|
created_at: z.ZodString;
|
|
400
400
|
workspace_id: z.ZodString;
|
|
@@ -573,7 +573,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
573
573
|
credential_id?: string | undefined;
|
|
574
574
|
} | undefined;
|
|
575
575
|
is_one_time_use?: boolean | undefined;
|
|
576
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
576
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
577
577
|
external_type_display_name?: string | undefined;
|
|
578
578
|
acs_user_id?: string | undefined;
|
|
579
579
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -635,7 +635,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
635
635
|
credential_id?: string | undefined;
|
|
636
636
|
} | undefined;
|
|
637
637
|
is_one_time_use?: boolean | undefined;
|
|
638
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
638
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
639
639
|
external_type_display_name?: string | undefined;
|
|
640
640
|
acs_user_id?: string | undefined;
|
|
641
641
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -734,7 +734,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
734
734
|
credential_id?: string | undefined;
|
|
735
735
|
} | undefined;
|
|
736
736
|
is_one_time_use?: boolean | undefined;
|
|
737
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
737
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
738
738
|
external_type_display_name?: string | undefined;
|
|
739
739
|
acs_user_id?: string | undefined;
|
|
740
740
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -796,7 +796,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
796
796
|
credential_id?: string | undefined;
|
|
797
797
|
} | undefined;
|
|
798
798
|
is_one_time_use?: boolean | undefined;
|
|
799
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
799
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
800
800
|
external_type_display_name?: string | undefined;
|
|
801
801
|
acs_user_id?: string | undefined;
|
|
802
802
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -885,7 +885,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
885
885
|
credential_id?: string | undefined;
|
|
886
886
|
} | undefined;
|
|
887
887
|
is_one_time_use?: boolean | undefined;
|
|
888
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
888
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
889
889
|
external_type_display_name?: string | undefined;
|
|
890
890
|
acs_user_id?: string | undefined;
|
|
891
891
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -947,7 +947,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
947
947
|
credential_id?: string | undefined;
|
|
948
948
|
} | undefined;
|
|
949
949
|
is_one_time_use?: boolean | undefined;
|
|
950
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
950
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
951
951
|
external_type_display_name?: string | undefined;
|
|
952
952
|
acs_user_id?: string | undefined;
|
|
953
953
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1041
1041
|
credential_id?: string | undefined;
|
|
1042
1042
|
} | undefined;
|
|
1043
1043
|
is_one_time_use?: boolean | undefined;
|
|
1044
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1044
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1045
1045
|
external_type_display_name?: string | undefined;
|
|
1046
1046
|
acs_user_id?: string | undefined;
|
|
1047
1047
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1103,7 +1103,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1103
1103
|
credential_id?: string | undefined;
|
|
1104
1104
|
} | undefined;
|
|
1105
1105
|
is_one_time_use?: boolean | undefined;
|
|
1106
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1106
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1107
1107
|
external_type_display_name?: string | undefined;
|
|
1108
1108
|
acs_user_id?: string | undefined;
|
|
1109
1109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1198,7 +1198,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1198
1198
|
credential_id?: string | undefined;
|
|
1199
1199
|
} | undefined;
|
|
1200
1200
|
is_one_time_use?: boolean | undefined;
|
|
1201
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1201
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1202
1202
|
external_type_display_name?: string | undefined;
|
|
1203
1203
|
acs_user_id?: string | undefined;
|
|
1204
1204
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1260,7 +1260,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1260
1260
|
credential_id?: string | undefined;
|
|
1261
1261
|
} | undefined;
|
|
1262
1262
|
is_one_time_use?: boolean | undefined;
|
|
1263
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1263
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1264
1264
|
external_type_display_name?: string | undefined;
|
|
1265
1265
|
acs_user_id?: string | undefined;
|
|
1266
1266
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -514,6 +514,8 @@ export default {
|
|
|
514
514
|
'hid_credential',
|
|
515
515
|
'visionline_card',
|
|
516
516
|
'salto_ks_credential',
|
|
517
|
+
'assa_abloy_vostio_card',
|
|
518
|
+
'assa_abloy_vostio_mobile_key',
|
|
517
519
|
],
|
|
518
520
|
type: 'string',
|
|
519
521
|
},
|
|
@@ -1509,6 +1511,19 @@ export default {
|
|
|
1509
1511
|
required: ['created_at', 'message', 'warning_code'],
|
|
1510
1512
|
type: 'object',
|
|
1511
1513
|
},
|
|
1514
|
+
{
|
|
1515
|
+
description: 'An unknown issue occurred while syncing the state of this user with the provider. This issue may affect the proper functioning of this user.',
|
|
1516
|
+
properties: {
|
|
1517
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
1518
|
+
message: { type: 'string' },
|
|
1519
|
+
warning_code: {
|
|
1520
|
+
enum: ['unknown_issue_with_acs_user'],
|
|
1521
|
+
type: 'string',
|
|
1522
|
+
},
|
|
1523
|
+
},
|
|
1524
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
1525
|
+
type: 'object',
|
|
1526
|
+
},
|
|
1512
1527
|
],
|
|
1513
1528
|
},
|
|
1514
1529
|
type: 'array',
|
|
@@ -1871,6 +1886,8 @@ export default {
|
|
|
1871
1886
|
'hid_credential',
|
|
1872
1887
|
'visionline_card',
|
|
1873
1888
|
'salto_ks_credential',
|
|
1889
|
+
'assa_abloy_vostio_card',
|
|
1890
|
+
'assa_abloy_vostio_mobile_key',
|
|
1874
1891
|
],
|
|
1875
1892
|
type: 'string',
|
|
1876
1893
|
},
|
|
@@ -2187,6 +2204,8 @@ export default {
|
|
|
2187
2204
|
'hid_credential',
|
|
2188
2205
|
'visionline_card',
|
|
2189
2206
|
'salto_ks_credential',
|
|
2207
|
+
'assa_abloy_vostio_card',
|
|
2208
|
+
'assa_abloy_vostio_mobile_key',
|
|
2190
2209
|
],
|
|
2191
2210
|
type: 'string',
|
|
2192
2211
|
},
|
|
@@ -2634,6 +2653,8 @@ export default {
|
|
|
2634
2653
|
'hid_credential',
|
|
2635
2654
|
'visionline_card',
|
|
2636
2655
|
'salto_ks_credential',
|
|
2656
|
+
'assa_abloy_vostio_card',
|
|
2657
|
+
'assa_abloy_vostio_mobile_key',
|
|
2637
2658
|
],
|
|
2638
2659
|
type: 'string',
|
|
2639
2660
|
},
|
|
@@ -2948,6 +2969,8 @@ export default {
|
|
|
2948
2969
|
'hid_credential',
|
|
2949
2970
|
'visionline_card',
|
|
2950
2971
|
'salto_ks_credential',
|
|
2972
|
+
'assa_abloy_vostio_card',
|
|
2973
|
+
'assa_abloy_vostio_mobile_key',
|
|
2951
2974
|
],
|
|
2952
2975
|
type: 'string',
|
|
2953
2976
|
},
|
|
@@ -14255,6 +14278,8 @@ export default {
|
|
|
14255
14278
|
'hid_credential',
|
|
14256
14279
|
'visionline_card',
|
|
14257
14280
|
'salto_ks_credential',
|
|
14281
|
+
'assa_abloy_vostio_card',
|
|
14282
|
+
'assa_abloy_vostio_mobile_key',
|
|
14258
14283
|
],
|
|
14259
14284
|
type: 'string',
|
|
14260
14285
|
},
|
|
@@ -14666,6 +14691,8 @@ export default {
|
|
|
14666
14691
|
'hid_credential',
|
|
14667
14692
|
'visionline_card',
|
|
14668
14693
|
'salto_ks_credential',
|
|
14694
|
+
'assa_abloy_vostio_card',
|
|
14695
|
+
'assa_abloy_vostio_mobile_key',
|
|
14669
14696
|
],
|
|
14670
14697
|
type: 'string',
|
|
14671
14698
|
},
|
|
@@ -16950,6 +16977,26 @@ export default {
|
|
|
16950
16977
|
],
|
|
16951
16978
|
type: 'object',
|
|
16952
16979
|
},
|
|
16980
|
+
{
|
|
16981
|
+
description: 'An unknown issue occurred while syncing the state of this user with the provider. This issue may affect the proper functioning of this user.',
|
|
16982
|
+
properties: {
|
|
16983
|
+
created_at: {
|
|
16984
|
+
format: 'date-time',
|
|
16985
|
+
type: 'string',
|
|
16986
|
+
},
|
|
16987
|
+
message: { type: 'string' },
|
|
16988
|
+
warning_code: {
|
|
16989
|
+
enum: ['unknown_issue_with_acs_user'],
|
|
16990
|
+
type: 'string',
|
|
16991
|
+
},
|
|
16992
|
+
},
|
|
16993
|
+
required: [
|
|
16994
|
+
'created_at',
|
|
16995
|
+
'message',
|
|
16996
|
+
'warning_code',
|
|
16997
|
+
],
|
|
16998
|
+
type: 'object',
|
|
16999
|
+
},
|
|
16953
17000
|
],
|
|
16954
17001
|
},
|
|
16955
17002
|
type: 'array',
|
|
@@ -17311,6 +17358,26 @@ export default {
|
|
|
17311
17358
|
],
|
|
17312
17359
|
type: 'object',
|
|
17313
17360
|
},
|
|
17361
|
+
{
|
|
17362
|
+
description: 'An unknown issue occurred while syncing the state of this user with the provider. This issue may affect the proper functioning of this user.',
|
|
17363
|
+
properties: {
|
|
17364
|
+
created_at: {
|
|
17365
|
+
format: 'date-time',
|
|
17366
|
+
type: 'string',
|
|
17367
|
+
},
|
|
17368
|
+
message: { type: 'string' },
|
|
17369
|
+
warning_code: {
|
|
17370
|
+
enum: ['unknown_issue_with_acs_user'],
|
|
17371
|
+
type: 'string',
|
|
17372
|
+
},
|
|
17373
|
+
},
|
|
17374
|
+
required: [
|
|
17375
|
+
'created_at',
|
|
17376
|
+
'message',
|
|
17377
|
+
'warning_code',
|
|
17378
|
+
],
|
|
17379
|
+
type: 'object',
|
|
17380
|
+
},
|
|
17314
17381
|
],
|
|
17315
17382
|
},
|
|
17316
17383
|
type: 'array',
|