@seamapi/types 1.455.0 → 1.456.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +53 -37
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -3
- package/lib/seam/connect/models/access-grants/access-method.js +4 -1
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +26 -26
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/models/phones/phone-session.d.ts +10 -10
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +4 -1
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +12 -4
package/dist/connect.d.cts
CHANGED
|
@@ -3682,7 +3682,8 @@ declare const access_method: z.ZodObject<{
|
|
|
3682
3682
|
display_name: z.ZodString;
|
|
3683
3683
|
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
3684
3684
|
created_at: z.ZodString;
|
|
3685
|
-
issued_at: z.
|
|
3685
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
3686
|
+
is_issued: z.ZodBoolean;
|
|
3686
3687
|
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
3687
3688
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3688
3689
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3693,10 +3694,11 @@ declare const access_method: z.ZodObject<{
|
|
|
3693
3694
|
created_at: string;
|
|
3694
3695
|
mode: "code" | "card" | "mobile_key";
|
|
3695
3696
|
access_method_id: string;
|
|
3697
|
+
issued_at: string | null;
|
|
3698
|
+
is_issued: boolean;
|
|
3696
3699
|
code?: string | undefined;
|
|
3697
3700
|
client_session_token?: string | undefined;
|
|
3698
3701
|
instant_key_url?: string | undefined;
|
|
3699
|
-
issued_at?: string | undefined;
|
|
3700
3702
|
is_encoding_required?: boolean | undefined;
|
|
3701
3703
|
}, {
|
|
3702
3704
|
display_name: string;
|
|
@@ -3704,10 +3706,11 @@ declare const access_method: z.ZodObject<{
|
|
|
3704
3706
|
created_at: string;
|
|
3705
3707
|
mode: "code" | "card" | "mobile_key";
|
|
3706
3708
|
access_method_id: string;
|
|
3709
|
+
issued_at: string | null;
|
|
3710
|
+
is_issued: boolean;
|
|
3707
3711
|
code?: string | undefined;
|
|
3708
3712
|
client_session_token?: string | undefined;
|
|
3709
3713
|
instant_key_url?: string | undefined;
|
|
3710
|
-
issued_at?: string | undefined;
|
|
3711
3714
|
is_encoding_required?: boolean | undefined;
|
|
3712
3715
|
}>;
|
|
3713
3716
|
type AccessMethod = z.infer<typeof access_method>;
|
|
@@ -4071,13 +4074,13 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4071
4074
|
is_one_time_use?: boolean | undefined;
|
|
4072
4075
|
user_identity_id?: string | undefined;
|
|
4073
4076
|
issued_at?: string | null | undefined;
|
|
4077
|
+
is_issued?: boolean | undefined;
|
|
4074
4078
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4075
4079
|
external_type_display_name?: string | undefined;
|
|
4076
4080
|
acs_user_id?: string | undefined;
|
|
4077
4081
|
acs_credential_pool_id?: string | undefined;
|
|
4078
4082
|
parent_acs_credential_id?: string | undefined;
|
|
4079
4083
|
card_number?: string | null | undefined;
|
|
4080
|
-
is_issued?: boolean | undefined;
|
|
4081
4084
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4082
4085
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4083
4086
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -4143,13 +4146,13 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4143
4146
|
is_one_time_use?: boolean | undefined;
|
|
4144
4147
|
user_identity_id?: string | undefined;
|
|
4145
4148
|
issued_at?: string | null | undefined;
|
|
4149
|
+
is_issued?: boolean | undefined;
|
|
4146
4150
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4147
4151
|
external_type_display_name?: string | undefined;
|
|
4148
4152
|
acs_user_id?: string | undefined;
|
|
4149
4153
|
acs_credential_pool_id?: string | undefined;
|
|
4150
4154
|
parent_acs_credential_id?: string | undefined;
|
|
4151
4155
|
card_number?: string | null | undefined;
|
|
4152
|
-
is_issued?: boolean | undefined;
|
|
4153
4156
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4154
4157
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4155
4158
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -4381,13 +4384,13 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4381
4384
|
is_one_time_use?: boolean | undefined;
|
|
4382
4385
|
user_identity_id?: string | undefined;
|
|
4383
4386
|
issued_at?: string | null | undefined;
|
|
4387
|
+
is_issued?: boolean | undefined;
|
|
4384
4388
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4385
4389
|
external_type_display_name?: string | undefined;
|
|
4386
4390
|
acs_user_id?: string | undefined;
|
|
4387
4391
|
acs_credential_pool_id?: string | undefined;
|
|
4388
4392
|
parent_acs_credential_id?: string | undefined;
|
|
4389
4393
|
card_number?: string | null | undefined;
|
|
4390
|
-
is_issued?: boolean | undefined;
|
|
4391
4394
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4392
4395
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4393
4396
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -4453,13 +4456,13 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4453
4456
|
is_one_time_use?: boolean | undefined;
|
|
4454
4457
|
user_identity_id?: string | undefined;
|
|
4455
4458
|
issued_at?: string | null | undefined;
|
|
4459
|
+
is_issued?: boolean | undefined;
|
|
4456
4460
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4457
4461
|
external_type_display_name?: string | undefined;
|
|
4458
4462
|
acs_user_id?: string | undefined;
|
|
4459
4463
|
acs_credential_pool_id?: string | undefined;
|
|
4460
4464
|
parent_acs_credential_id?: string | undefined;
|
|
4461
4465
|
card_number?: string | null | undefined;
|
|
4462
|
-
is_issued?: boolean | undefined;
|
|
4463
4466
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
4464
4467
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
4465
4468
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -6523,8 +6526,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6523
6526
|
created_at: string | null;
|
|
6524
6527
|
starts_at: string | null;
|
|
6525
6528
|
ends_at: string | null;
|
|
6526
|
-
card_number: string | null;
|
|
6527
6529
|
is_issued: boolean | null;
|
|
6530
|
+
card_number: string | null;
|
|
6528
6531
|
visionline_metadata?: {
|
|
6529
6532
|
card_id: string;
|
|
6530
6533
|
cancelled: boolean;
|
|
@@ -6543,8 +6546,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6543
6546
|
created_at: string | null;
|
|
6544
6547
|
starts_at: string | null;
|
|
6545
6548
|
ends_at: string | null;
|
|
6546
|
-
card_number: string | null;
|
|
6547
6549
|
is_issued: boolean | null;
|
|
6550
|
+
card_number: string | null;
|
|
6548
6551
|
visionline_metadata?: {
|
|
6549
6552
|
card_id: string;
|
|
6550
6553
|
cancelled: boolean;
|
|
@@ -6787,13 +6790,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6787
6790
|
is_one_time_use?: boolean | undefined;
|
|
6788
6791
|
user_identity_id?: string | undefined;
|
|
6789
6792
|
issued_at?: string | null | undefined;
|
|
6793
|
+
is_issued?: boolean | undefined;
|
|
6790
6794
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
6791
6795
|
external_type_display_name?: string | undefined;
|
|
6792
6796
|
acs_user_id?: string | undefined;
|
|
6793
6797
|
acs_credential_pool_id?: string | undefined;
|
|
6794
6798
|
parent_acs_credential_id?: string | undefined;
|
|
6795
6799
|
card_number?: string | null | undefined;
|
|
6796
|
-
is_issued?: boolean | undefined;
|
|
6797
6800
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6798
6801
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
6799
6802
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -6859,13 +6862,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6859
6862
|
is_one_time_use?: boolean | undefined;
|
|
6860
6863
|
user_identity_id?: string | undefined;
|
|
6861
6864
|
issued_at?: string | null | undefined;
|
|
6865
|
+
is_issued?: boolean | undefined;
|
|
6862
6866
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
6863
6867
|
external_type_display_name?: string | undefined;
|
|
6864
6868
|
acs_user_id?: string | undefined;
|
|
6865
6869
|
acs_credential_pool_id?: string | undefined;
|
|
6866
6870
|
parent_acs_credential_id?: string | undefined;
|
|
6867
6871
|
card_number?: string | null | undefined;
|
|
6868
|
-
is_issued?: boolean | undefined;
|
|
6869
6872
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6870
6873
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
6871
6874
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7096,13 +7099,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7096
7099
|
is_one_time_use?: boolean | undefined;
|
|
7097
7100
|
user_identity_id?: string | undefined;
|
|
7098
7101
|
issued_at?: string | null | undefined;
|
|
7102
|
+
is_issued?: boolean | undefined;
|
|
7099
7103
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7100
7104
|
external_type_display_name?: string | undefined;
|
|
7101
7105
|
acs_user_id?: string | undefined;
|
|
7102
7106
|
acs_credential_pool_id?: string | undefined;
|
|
7103
7107
|
parent_acs_credential_id?: string | undefined;
|
|
7104
7108
|
card_number?: string | null | undefined;
|
|
7105
|
-
is_issued?: boolean | undefined;
|
|
7106
7109
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7107
7110
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7108
7111
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7168,13 +7171,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7168
7171
|
is_one_time_use?: boolean | undefined;
|
|
7169
7172
|
user_identity_id?: string | undefined;
|
|
7170
7173
|
issued_at?: string | null | undefined;
|
|
7174
|
+
is_issued?: boolean | undefined;
|
|
7171
7175
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7172
7176
|
external_type_display_name?: string | undefined;
|
|
7173
7177
|
acs_user_id?: string | undefined;
|
|
7174
7178
|
acs_credential_pool_id?: string | undefined;
|
|
7175
7179
|
parent_acs_credential_id?: string | undefined;
|
|
7176
7180
|
card_number?: string | null | undefined;
|
|
7177
|
-
is_issued?: boolean | undefined;
|
|
7178
7181
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7179
7182
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7180
7183
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7198,8 +7201,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7198
7201
|
created_at: string | null;
|
|
7199
7202
|
starts_at: string | null;
|
|
7200
7203
|
ends_at: string | null;
|
|
7201
|
-
card_number: string | null;
|
|
7202
7204
|
is_issued: boolean | null;
|
|
7205
|
+
card_number: string | null;
|
|
7203
7206
|
visionline_metadata?: {
|
|
7204
7207
|
card_id: string;
|
|
7205
7208
|
cancelled: boolean;
|
|
@@ -7277,13 +7280,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7277
7280
|
is_one_time_use?: boolean | undefined;
|
|
7278
7281
|
user_identity_id?: string | undefined;
|
|
7279
7282
|
issued_at?: string | null | undefined;
|
|
7283
|
+
is_issued?: boolean | undefined;
|
|
7280
7284
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7281
7285
|
external_type_display_name?: string | undefined;
|
|
7282
7286
|
acs_user_id?: string | undefined;
|
|
7283
7287
|
acs_credential_pool_id?: string | undefined;
|
|
7284
7288
|
parent_acs_credential_id?: string | undefined;
|
|
7285
7289
|
card_number?: string | null | undefined;
|
|
7286
|
-
is_issued?: boolean | undefined;
|
|
7287
7290
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7288
7291
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7289
7292
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7349,13 +7352,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7349
7352
|
is_one_time_use?: boolean | undefined;
|
|
7350
7353
|
user_identity_id?: string | undefined;
|
|
7351
7354
|
issued_at?: string | null | undefined;
|
|
7355
|
+
is_issued?: boolean | undefined;
|
|
7352
7356
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7353
7357
|
external_type_display_name?: string | undefined;
|
|
7354
7358
|
acs_user_id?: string | undefined;
|
|
7355
7359
|
acs_credential_pool_id?: string | undefined;
|
|
7356
7360
|
parent_acs_credential_id?: string | undefined;
|
|
7357
7361
|
card_number?: string | null | undefined;
|
|
7358
|
-
is_issued?: boolean | undefined;
|
|
7359
7362
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7360
7363
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7361
7364
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7369,8 +7372,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7369
7372
|
created_at: string | null;
|
|
7370
7373
|
starts_at: string | null;
|
|
7371
7374
|
ends_at: string | null;
|
|
7372
|
-
card_number: string | null;
|
|
7373
7375
|
is_issued: boolean | null;
|
|
7376
|
+
card_number: string | null;
|
|
7374
7377
|
visionline_metadata?: {
|
|
7375
7378
|
card_id: string;
|
|
7376
7379
|
cancelled: boolean;
|
|
@@ -7448,13 +7451,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7448
7451
|
is_one_time_use?: boolean | undefined;
|
|
7449
7452
|
user_identity_id?: string | undefined;
|
|
7450
7453
|
issued_at?: string | null | undefined;
|
|
7454
|
+
is_issued?: boolean | undefined;
|
|
7451
7455
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7452
7456
|
external_type_display_name?: string | undefined;
|
|
7453
7457
|
acs_user_id?: string | undefined;
|
|
7454
7458
|
acs_credential_pool_id?: string | undefined;
|
|
7455
7459
|
parent_acs_credential_id?: string | undefined;
|
|
7456
7460
|
card_number?: string | null | undefined;
|
|
7457
|
-
is_issued?: boolean | undefined;
|
|
7458
7461
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7459
7462
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7460
7463
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7520,13 +7523,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7520
7523
|
is_one_time_use?: boolean | undefined;
|
|
7521
7524
|
user_identity_id?: string | undefined;
|
|
7522
7525
|
issued_at?: string | null | undefined;
|
|
7526
|
+
is_issued?: boolean | undefined;
|
|
7523
7527
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7524
7528
|
external_type_display_name?: string | undefined;
|
|
7525
7529
|
acs_user_id?: string | undefined;
|
|
7526
7530
|
acs_credential_pool_id?: string | undefined;
|
|
7527
7531
|
parent_acs_credential_id?: string | undefined;
|
|
7528
7532
|
card_number?: string | null | undefined;
|
|
7529
|
-
is_issued?: boolean | undefined;
|
|
7530
7533
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7531
7534
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7532
7535
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7545,8 +7548,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7545
7548
|
created_at: string | null;
|
|
7546
7549
|
starts_at: string | null;
|
|
7547
7550
|
ends_at: string | null;
|
|
7548
|
-
card_number: string | null;
|
|
7549
7551
|
is_issued: boolean | null;
|
|
7552
|
+
card_number: string | null;
|
|
7550
7553
|
visionline_metadata?: {
|
|
7551
7554
|
card_id: string;
|
|
7552
7555
|
cancelled: boolean;
|
|
@@ -7624,13 +7627,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7624
7627
|
is_one_time_use?: boolean | undefined;
|
|
7625
7628
|
user_identity_id?: string | undefined;
|
|
7626
7629
|
issued_at?: string | null | undefined;
|
|
7630
|
+
is_issued?: boolean | undefined;
|
|
7627
7631
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7628
7632
|
external_type_display_name?: string | undefined;
|
|
7629
7633
|
acs_user_id?: string | undefined;
|
|
7630
7634
|
acs_credential_pool_id?: string | undefined;
|
|
7631
7635
|
parent_acs_credential_id?: string | undefined;
|
|
7632
7636
|
card_number?: string | null | undefined;
|
|
7633
|
-
is_issued?: boolean | undefined;
|
|
7634
7637
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7635
7638
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7636
7639
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7696,13 +7699,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7696
7699
|
is_one_time_use?: boolean | undefined;
|
|
7697
7700
|
user_identity_id?: string | undefined;
|
|
7698
7701
|
issued_at?: string | null | undefined;
|
|
7702
|
+
is_issued?: boolean | undefined;
|
|
7699
7703
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7700
7704
|
external_type_display_name?: string | undefined;
|
|
7701
7705
|
acs_user_id?: string | undefined;
|
|
7702
7706
|
acs_credential_pool_id?: string | undefined;
|
|
7703
7707
|
parent_acs_credential_id?: string | undefined;
|
|
7704
7708
|
card_number?: string | null | undefined;
|
|
7705
|
-
is_issued?: boolean | undefined;
|
|
7706
7709
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7707
7710
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7708
7711
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7722,8 +7725,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7722
7725
|
created_at: string | null;
|
|
7723
7726
|
starts_at: string | null;
|
|
7724
7727
|
ends_at: string | null;
|
|
7725
|
-
card_number: string | null;
|
|
7726
7728
|
is_issued: boolean | null;
|
|
7729
|
+
card_number: string | null;
|
|
7727
7730
|
visionline_metadata?: {
|
|
7728
7731
|
card_id: string;
|
|
7729
7732
|
cancelled: boolean;
|
|
@@ -7801,13 +7804,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7801
7804
|
is_one_time_use?: boolean | undefined;
|
|
7802
7805
|
user_identity_id?: string | undefined;
|
|
7803
7806
|
issued_at?: string | null | undefined;
|
|
7807
|
+
is_issued?: boolean | undefined;
|
|
7804
7808
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7805
7809
|
external_type_display_name?: string | undefined;
|
|
7806
7810
|
acs_user_id?: string | undefined;
|
|
7807
7811
|
acs_credential_pool_id?: string | undefined;
|
|
7808
7812
|
parent_acs_credential_id?: string | undefined;
|
|
7809
7813
|
card_number?: string | null | undefined;
|
|
7810
|
-
is_issued?: boolean | undefined;
|
|
7811
7814
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7812
7815
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7813
7816
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -7873,13 +7876,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7873
7876
|
is_one_time_use?: boolean | undefined;
|
|
7874
7877
|
user_identity_id?: string | undefined;
|
|
7875
7878
|
issued_at?: string | null | undefined;
|
|
7879
|
+
is_issued?: boolean | undefined;
|
|
7876
7880
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7877
7881
|
external_type_display_name?: string | undefined;
|
|
7878
7882
|
acs_user_id?: string | undefined;
|
|
7879
7883
|
acs_credential_pool_id?: string | undefined;
|
|
7880
7884
|
parent_acs_credential_id?: string | undefined;
|
|
7881
7885
|
card_number?: string | null | undefined;
|
|
7882
|
-
is_issued?: boolean | undefined;
|
|
7883
7886
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
7884
7887
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
7885
7888
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8205,13 +8208,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8205
8208
|
is_one_time_use?: boolean | undefined;
|
|
8206
8209
|
user_identity_id?: string | undefined;
|
|
8207
8210
|
issued_at?: string | null | undefined;
|
|
8211
|
+
is_issued?: boolean | undefined;
|
|
8208
8212
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8209
8213
|
external_type_display_name?: string | undefined;
|
|
8210
8214
|
acs_user_id?: string | undefined;
|
|
8211
8215
|
acs_credential_pool_id?: string | undefined;
|
|
8212
8216
|
parent_acs_credential_id?: string | undefined;
|
|
8213
8217
|
card_number?: string | null | undefined;
|
|
8214
|
-
is_issued?: boolean | undefined;
|
|
8215
8218
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8216
8219
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8217
8220
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8277,13 +8280,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8277
8280
|
is_one_time_use?: boolean | undefined;
|
|
8278
8281
|
user_identity_id?: string | undefined;
|
|
8279
8282
|
issued_at?: string | null | undefined;
|
|
8283
|
+
is_issued?: boolean | undefined;
|
|
8280
8284
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8281
8285
|
external_type_display_name?: string | undefined;
|
|
8282
8286
|
acs_user_id?: string | undefined;
|
|
8283
8287
|
acs_credential_pool_id?: string | undefined;
|
|
8284
8288
|
parent_acs_credential_id?: string | undefined;
|
|
8285
8289
|
card_number?: string | null | undefined;
|
|
8286
|
-
is_issued?: boolean | undefined;
|
|
8287
8290
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8288
8291
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8289
8292
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8514,13 +8517,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8514
8517
|
is_one_time_use?: boolean | undefined;
|
|
8515
8518
|
user_identity_id?: string | undefined;
|
|
8516
8519
|
issued_at?: string | null | undefined;
|
|
8520
|
+
is_issued?: boolean | undefined;
|
|
8517
8521
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8518
8522
|
external_type_display_name?: string | undefined;
|
|
8519
8523
|
acs_user_id?: string | undefined;
|
|
8520
8524
|
acs_credential_pool_id?: string | undefined;
|
|
8521
8525
|
parent_acs_credential_id?: string | undefined;
|
|
8522
8526
|
card_number?: string | null | undefined;
|
|
8523
|
-
is_issued?: boolean | undefined;
|
|
8524
8527
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8525
8528
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8526
8529
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8586,13 +8589,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8586
8589
|
is_one_time_use?: boolean | undefined;
|
|
8587
8590
|
user_identity_id?: string | undefined;
|
|
8588
8591
|
issued_at?: string | null | undefined;
|
|
8592
|
+
is_issued?: boolean | undefined;
|
|
8589
8593
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8590
8594
|
external_type_display_name?: string | undefined;
|
|
8591
8595
|
acs_user_id?: string | undefined;
|
|
8592
8596
|
acs_credential_pool_id?: string | undefined;
|
|
8593
8597
|
parent_acs_credential_id?: string | undefined;
|
|
8594
8598
|
card_number?: string | null | undefined;
|
|
8595
|
-
is_issued?: boolean | undefined;
|
|
8596
8599
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8597
8600
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8598
8601
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8663,13 +8666,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8663
8666
|
is_one_time_use?: boolean | undefined;
|
|
8664
8667
|
user_identity_id?: string | undefined;
|
|
8665
8668
|
issued_at?: string | null | undefined;
|
|
8669
|
+
is_issued?: boolean | undefined;
|
|
8666
8670
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8667
8671
|
external_type_display_name?: string | undefined;
|
|
8668
8672
|
acs_user_id?: string | undefined;
|
|
8669
8673
|
acs_credential_pool_id?: string | undefined;
|
|
8670
8674
|
parent_acs_credential_id?: string | undefined;
|
|
8671
8675
|
card_number?: string | null | undefined;
|
|
8672
|
-
is_issued?: boolean | undefined;
|
|
8673
8676
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8674
8677
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8675
8678
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8735,13 +8738,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8735
8738
|
is_one_time_use?: boolean | undefined;
|
|
8736
8739
|
user_identity_id?: string | undefined;
|
|
8737
8740
|
issued_at?: string | null | undefined;
|
|
8741
|
+
is_issued?: boolean | undefined;
|
|
8738
8742
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8739
8743
|
external_type_display_name?: string | undefined;
|
|
8740
8744
|
acs_user_id?: string | undefined;
|
|
8741
8745
|
acs_credential_pool_id?: string | undefined;
|
|
8742
8746
|
parent_acs_credential_id?: string | undefined;
|
|
8743
8747
|
card_number?: string | null | undefined;
|
|
8744
|
-
is_issued?: boolean | undefined;
|
|
8745
8748
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8746
8749
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8747
8750
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8813,13 +8816,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8813
8816
|
is_one_time_use?: boolean | undefined;
|
|
8814
8817
|
user_identity_id?: string | undefined;
|
|
8815
8818
|
issued_at?: string | null | undefined;
|
|
8819
|
+
is_issued?: boolean | undefined;
|
|
8816
8820
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8817
8821
|
external_type_display_name?: string | undefined;
|
|
8818
8822
|
acs_user_id?: string | undefined;
|
|
8819
8823
|
acs_credential_pool_id?: string | undefined;
|
|
8820
8824
|
parent_acs_credential_id?: string | undefined;
|
|
8821
8825
|
card_number?: string | null | undefined;
|
|
8822
|
-
is_issued?: boolean | undefined;
|
|
8823
8826
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8824
8827
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8825
8828
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -8885,13 +8888,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8885
8888
|
is_one_time_use?: boolean | undefined;
|
|
8886
8889
|
user_identity_id?: string | undefined;
|
|
8887
8890
|
issued_at?: string | null | undefined;
|
|
8891
|
+
is_issued?: boolean | undefined;
|
|
8888
8892
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8889
8893
|
external_type_display_name?: string | undefined;
|
|
8890
8894
|
acs_user_id?: string | undefined;
|
|
8891
8895
|
acs_credential_pool_id?: string | undefined;
|
|
8892
8896
|
parent_acs_credential_id?: string | undefined;
|
|
8893
8897
|
card_number?: string | null | undefined;
|
|
8894
|
-
is_issued?: boolean | undefined;
|
|
8895
8898
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8896
8899
|
is_latest_desired_state_synced_with_provider?: boolean | null | undefined;
|
|
8897
8900
|
latest_desired_state_synced_with_provider_at?: string | null | undefined;
|
|
@@ -34253,9 +34256,14 @@ declare const _default: {
|
|
|
34253
34256
|
description: string;
|
|
34254
34257
|
type: string;
|
|
34255
34258
|
};
|
|
34259
|
+
is_issued: {
|
|
34260
|
+
description: string;
|
|
34261
|
+
type: string;
|
|
34262
|
+
};
|
|
34256
34263
|
issued_at: {
|
|
34257
34264
|
description: string;
|
|
34258
34265
|
format: string;
|
|
34266
|
+
nullable: boolean;
|
|
34259
34267
|
type: string;
|
|
34260
34268
|
};
|
|
34261
34269
|
mode: {
|
|
@@ -97144,7 +97152,9 @@ interface Routes {
|
|
|
97144
97152
|
/** Date and time at which the access method was created. */
|
|
97145
97153
|
created_at: string;
|
|
97146
97154
|
/** Date and time at which the access method was issued. */
|
|
97147
|
-
issued_at
|
|
97155
|
+
issued_at: string | null;
|
|
97156
|
+
/** Indicates whether the access method has been issued. */
|
|
97157
|
+
is_issued: boolean;
|
|
97148
97158
|
/** URL of the Instant Key for mobile key access methods. */
|
|
97149
97159
|
instant_key_url?: string | undefined;
|
|
97150
97160
|
/** Token of the client session associated with the access method. */
|
|
@@ -97185,7 +97195,9 @@ interface Routes {
|
|
|
97185
97195
|
/** Date and time at which the access method was created. */
|
|
97186
97196
|
created_at: string;
|
|
97187
97197
|
/** Date and time at which the access method was issued. */
|
|
97188
|
-
issued_at
|
|
97198
|
+
issued_at: string | null;
|
|
97199
|
+
/** Indicates whether the access method has been issued. */
|
|
97200
|
+
is_issued: boolean;
|
|
97189
97201
|
/** URL of the Instant Key for mobile key access methods. */
|
|
97190
97202
|
instant_key_url?: string | undefined;
|
|
97191
97203
|
/** Token of the client session associated with the access method. */
|
|
@@ -150692,7 +150704,9 @@ interface Routes {
|
|
|
150692
150704
|
/** Date and time at which the access method was created. */
|
|
150693
150705
|
created_at: string;
|
|
150694
150706
|
/** Date and time at which the access method was issued. */
|
|
150695
|
-
issued_at
|
|
150707
|
+
issued_at: string | null;
|
|
150708
|
+
/** Indicates whether the access method has been issued. */
|
|
150709
|
+
is_issued: boolean;
|
|
150696
150710
|
/** URL of the Instant Key for mobile key access methods. */
|
|
150697
150711
|
instant_key_url?: string | undefined;
|
|
150698
150712
|
/** Token of the client session associated with the access method. */
|
|
@@ -150727,7 +150741,9 @@ interface Routes {
|
|
|
150727
150741
|
/** Date and time at which the access method was created. */
|
|
150728
150742
|
created_at: string;
|
|
150729
150743
|
/** Date and time at which the access method was issued. */
|
|
150730
|
-
issued_at
|
|
150744
|
+
issued_at: string | null;
|
|
150745
|
+
/** Indicates whether the access method has been issued. */
|
|
150746
|
+
is_issued: boolean;
|
|
150731
150747
|
/** URL of the Instant Key for mobile key access methods. */
|
|
150732
150748
|
instant_key_url?: string | undefined;
|
|
150733
150749
|
/** Token of the client session associated with the access method. */
|
package/dist/index.cjs
CHANGED
|
@@ -7262,9 +7262,14 @@ var openapi_default = {
|
|
|
7262
7262
|
description: "Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.",
|
|
7263
7263
|
type: "boolean"
|
|
7264
7264
|
},
|
|
7265
|
+
is_issued: {
|
|
7266
|
+
description: "Indicates whether the access method has been issued.",
|
|
7267
|
+
type: "boolean"
|
|
7268
|
+
},
|
|
7265
7269
|
issued_at: {
|
|
7266
7270
|
description: "Date and time at which the access method was issued.",
|
|
7267
7271
|
format: "date-time",
|
|
7272
|
+
nullable: true,
|
|
7268
7273
|
type: "string"
|
|
7269
7274
|
},
|
|
7270
7275
|
mode: {
|
|
@@ -7283,7 +7288,9 @@ var openapi_default = {
|
|
|
7283
7288
|
"access_method_id",
|
|
7284
7289
|
"display_name",
|
|
7285
7290
|
"mode",
|
|
7286
|
-
"created_at"
|
|
7291
|
+
"created_at",
|
|
7292
|
+
"issued_at",
|
|
7293
|
+
"is_issued"
|
|
7287
7294
|
],
|
|
7288
7295
|
type: "object",
|
|
7289
7296
|
"x-draft": "Early access.",
|