@seamapi/types 1.937.0 → 1.938.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 +30 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +250 -250
- package/dist/index.cjs +30 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +29 -29
- 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/models/action-attempts/scan-to-assign-credential.d.ts +5 -5
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +203 -203
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +203 -0
|
@@ -31,7 +31,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
31
31
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
32
32
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
33
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
34
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
34
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
35
35
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
36
36
|
created_at: z.ZodString;
|
|
37
37
|
workspace_id: z.ZodString;
|
|
@@ -798,7 +798,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
798
798
|
issued_at?: string | null | undefined;
|
|
799
799
|
is_issued?: boolean | undefined;
|
|
800
800
|
acs_user_id?: string | undefined;
|
|
801
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
801
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
802
802
|
external_type_display_name?: string | undefined;
|
|
803
803
|
acs_credential_pool_id?: string | undefined;
|
|
804
804
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -969,7 +969,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
969
969
|
issued_at?: string | null | undefined;
|
|
970
970
|
is_issued?: boolean | undefined;
|
|
971
971
|
acs_user_id?: string | undefined;
|
|
972
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
972
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
973
973
|
external_type_display_name?: string | undefined;
|
|
974
974
|
acs_credential_pool_id?: string | undefined;
|
|
975
975
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1142,7 +1142,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1142
1142
|
issued_at?: string | null | undefined;
|
|
1143
1143
|
is_issued?: boolean | undefined;
|
|
1144
1144
|
acs_user_id?: string | undefined;
|
|
1145
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
1145
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1146
1146
|
external_type_display_name?: string | undefined;
|
|
1147
1147
|
acs_credential_pool_id?: string | undefined;
|
|
1148
1148
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1321,7 +1321,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1321
1321
|
issued_at?: string | null | undefined;
|
|
1322
1322
|
is_issued?: boolean | undefined;
|
|
1323
1323
|
acs_user_id?: string | undefined;
|
|
1324
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
1324
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1325
1325
|
external_type_display_name?: string | undefined;
|
|
1326
1326
|
acs_credential_pool_id?: string | undefined;
|
|
1327
1327
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1370,7 +1370,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1370
1370
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1371
1371
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1372
1372
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1373
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential"]>>;
|
|
1373
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
1374
1374
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1375
1375
|
created_at: z.ZodString;
|
|
1376
1376
|
workspace_id: z.ZodString;
|
|
@@ -2137,7 +2137,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2137
2137
|
issued_at?: string | null | undefined;
|
|
2138
2138
|
is_issued?: boolean | undefined;
|
|
2139
2139
|
acs_user_id?: string | undefined;
|
|
2140
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
2140
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
2141
2141
|
external_type_display_name?: string | undefined;
|
|
2142
2142
|
acs_credential_pool_id?: string | undefined;
|
|
2143
2143
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2308,7 +2308,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2308
2308
|
issued_at?: string | null | undefined;
|
|
2309
2309
|
is_issued?: boolean | undefined;
|
|
2310
2310
|
acs_user_id?: string | undefined;
|
|
2311
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
2311
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
2312
2312
|
external_type_display_name?: string | undefined;
|
|
2313
2313
|
acs_credential_pool_id?: string | undefined;
|
|
2314
2314
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2481,7 +2481,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2481
2481
|
issued_at?: string | null | undefined;
|
|
2482
2482
|
is_issued?: boolean | undefined;
|
|
2483
2483
|
acs_user_id?: string | undefined;
|
|
2484
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
2484
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
2485
2485
|
external_type_display_name?: string | undefined;
|
|
2486
2486
|
acs_credential_pool_id?: string | undefined;
|
|
2487
2487
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2660,7 +2660,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2660
2660
|
issued_at?: string | null | undefined;
|
|
2661
2661
|
is_issued?: boolean | undefined;
|
|
2662
2662
|
acs_user_id?: string | undefined;
|
|
2663
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
2663
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
2664
2664
|
external_type_display_name?: string | undefined;
|
|
2665
2665
|
acs_credential_pool_id?: string | undefined;
|
|
2666
2666
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2954,7 +2954,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2954
2954
|
issued_at?: string | null | undefined;
|
|
2955
2955
|
is_issued?: boolean | undefined;
|
|
2956
2956
|
acs_user_id?: string | undefined;
|
|
2957
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
2957
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
2958
2958
|
external_type_display_name?: string | undefined;
|
|
2959
2959
|
acs_credential_pool_id?: string | undefined;
|
|
2960
2960
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -3164,7 +3164,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
3164
3164
|
issued_at?: string | null | undefined;
|
|
3165
3165
|
is_issued?: boolean | undefined;
|
|
3166
3166
|
acs_user_id?: string | undefined;
|
|
3167
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | undefined;
|
|
3167
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
3168
3168
|
external_type_display_name?: string | undefined;
|
|
3169
3169
|
acs_credential_pool_id?: string | undefined;
|
|
3170
3170
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -3118,6 +3118,7 @@ const openapi = {
|
|
|
3118
3118
|
'hotek_card',
|
|
3119
3119
|
'salto_ks_tag',
|
|
3120
3120
|
'avigilon_alta_credential',
|
|
3121
|
+
'kisi_credential',
|
|
3121
3122
|
],
|
|
3122
3123
|
type: 'string',
|
|
3123
3124
|
},
|
|
@@ -4205,6 +4206,7 @@ const openapi = {
|
|
|
4205
4206
|
'assa_abloy_vostio',
|
|
4206
4207
|
'assa_abloy_vostio_credential_service',
|
|
4207
4208
|
'hotek_site',
|
|
4209
|
+
'kisi_organization',
|
|
4208
4210
|
],
|
|
4209
4211
|
type: 'string',
|
|
4210
4212
|
},
|
|
@@ -4258,6 +4260,7 @@ const openapi = {
|
|
|
4258
4260
|
'assa_abloy_vostio',
|
|
4259
4261
|
'assa_abloy_vostio_credential_service',
|
|
4260
4262
|
'hotek_site',
|
|
4263
|
+
'kisi_organization',
|
|
4261
4264
|
],
|
|
4262
4265
|
type: 'string',
|
|
4263
4266
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -4591,6 +4594,7 @@ const openapi = {
|
|
|
4591
4594
|
'dormakaba_community_user',
|
|
4592
4595
|
'salto_space_user',
|
|
4593
4596
|
'avigilon_alta_user',
|
|
4597
|
+
'kisi_user',
|
|
4594
4598
|
],
|
|
4595
4599
|
type: 'string',
|
|
4596
4600
|
},
|
|
@@ -5669,6 +5673,7 @@ const openapi = {
|
|
|
5669
5673
|
'hotek_card',
|
|
5670
5674
|
'salto_ks_tag',
|
|
5671
5675
|
'avigilon_alta_credential',
|
|
5676
|
+
'kisi_credential',
|
|
5672
5677
|
],
|
|
5673
5678
|
type: 'string',
|
|
5674
5679
|
},
|
|
@@ -6066,6 +6071,7 @@ const openapi = {
|
|
|
6066
6071
|
'hotek_card',
|
|
6067
6072
|
'salto_ks_tag',
|
|
6068
6073
|
'avigilon_alta_credential',
|
|
6074
|
+
'kisi_credential',
|
|
6069
6075
|
],
|
|
6070
6076
|
type: 'string',
|
|
6071
6077
|
},
|
|
@@ -6685,6 +6691,7 @@ const openapi = {
|
|
|
6685
6691
|
'hotek_card',
|
|
6686
6692
|
'salto_ks_tag',
|
|
6687
6693
|
'avigilon_alta_credential',
|
|
6694
|
+
'kisi_credential',
|
|
6688
6695
|
],
|
|
6689
6696
|
type: 'string',
|
|
6690
6697
|
},
|
|
@@ -7080,6 +7087,7 @@ const openapi = {
|
|
|
7080
7087
|
'hotek_card',
|
|
7081
7088
|
'salto_ks_tag',
|
|
7082
7089
|
'avigilon_alta_credential',
|
|
7090
|
+
'kisi_credential',
|
|
7083
7091
|
],
|
|
7084
7092
|
type: 'string',
|
|
7085
7093
|
},
|
|
@@ -7726,6 +7734,7 @@ const openapi = {
|
|
|
7726
7734
|
'hotek_card',
|
|
7727
7735
|
'salto_ks_tag',
|
|
7728
7736
|
'avigilon_alta_credential',
|
|
7737
|
+
'kisi_credential',
|
|
7729
7738
|
],
|
|
7730
7739
|
type: 'string',
|
|
7731
7740
|
},
|
|
@@ -25135,6 +25144,7 @@ const openapi = {
|
|
|
25135
25144
|
'hotek_card',
|
|
25136
25145
|
'salto_ks_tag',
|
|
25137
25146
|
'avigilon_alta_credential',
|
|
25147
|
+
'kisi_credential',
|
|
25138
25148
|
],
|
|
25139
25149
|
type: 'string',
|
|
25140
25150
|
},
|
|
@@ -27891,6 +27901,7 @@ const openapi = {
|
|
|
27891
27901
|
'hotek_card',
|
|
27892
27902
|
'salto_ks_tag',
|
|
27893
27903
|
'avigilon_alta_credential',
|
|
27904
|
+
'kisi_credential',
|
|
27894
27905
|
],
|
|
27895
27906
|
type: 'string',
|
|
27896
27907
|
},
|
|
@@ -28346,6 +28357,7 @@ const openapi = {
|
|
|
28346
28357
|
'dormakaba_community_user',
|
|
28347
28358
|
'salto_space_user',
|
|
28348
28359
|
'avigilon_alta_user',
|
|
28360
|
+
'kisi_user',
|
|
28349
28361
|
],
|
|
28350
28362
|
type: 'string',
|
|
28351
28363
|
},
|