@seamapi/types 1.430.0 → 1.432.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 +142 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +519 -166
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +2 -2
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +7 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +57 -4
- package/lib/seam/connect/models/user-identities/user-identity.js +27 -3
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +69 -12
- package/lib/seam/connect/openapi.js +118 -55
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +401 -151
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -2
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +37 -3
- package/src/lib/seam/connect/openapi.ts +130 -55
- package/src/lib/seam/connect/route-types.ts +401 -151
package/dist/connect.d.cts
CHANGED
|
@@ -3847,6 +3847,7 @@ type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
|
3847
3847
|
declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
3848
3848
|
acs_credential_id: z.ZodString;
|
|
3849
3849
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
3850
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
3850
3851
|
connected_account_id: z.ZodString;
|
|
3851
3852
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
3852
3853
|
acs_system_id: z.ZodString;
|
|
@@ -4068,6 +4069,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4068
4069
|
door_names?: string[] | undefined;
|
|
4069
4070
|
} | undefined;
|
|
4070
4071
|
is_one_time_use?: boolean | undefined;
|
|
4072
|
+
user_identity_id?: string | undefined;
|
|
4071
4073
|
issued_at?: string | null | undefined;
|
|
4072
4074
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4073
4075
|
external_type_display_name?: string | undefined;
|
|
@@ -4139,6 +4141,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4139
4141
|
door_names?: string[] | undefined;
|
|
4140
4142
|
} | undefined;
|
|
4141
4143
|
is_one_time_use?: boolean | undefined;
|
|
4144
|
+
user_identity_id?: string | undefined;
|
|
4142
4145
|
issued_at?: string | null | undefined;
|
|
4143
4146
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4144
4147
|
external_type_display_name?: string | undefined;
|
|
@@ -4154,6 +4157,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4154
4157
|
declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
4155
4158
|
acs_credential_id: z.ZodString;
|
|
4156
4159
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
4160
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
4157
4161
|
connected_account_id: z.ZodString;
|
|
4158
4162
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
4159
4163
|
acs_system_id: z.ZodString;
|
|
@@ -4375,6 +4379,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4375
4379
|
door_names?: string[] | undefined;
|
|
4376
4380
|
} | undefined;
|
|
4377
4381
|
is_one_time_use?: boolean | undefined;
|
|
4382
|
+
user_identity_id?: string | undefined;
|
|
4378
4383
|
issued_at?: string | null | undefined;
|
|
4379
4384
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4380
4385
|
external_type_display_name?: string | undefined;
|
|
@@ -4446,6 +4451,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4446
4451
|
door_names?: string[] | undefined;
|
|
4447
4452
|
} | undefined;
|
|
4448
4453
|
is_one_time_use?: boolean | undefined;
|
|
4454
|
+
user_identity_id?: string | undefined;
|
|
4449
4455
|
issued_at?: string | null | undefined;
|
|
4450
4456
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
4451
4457
|
external_type_display_name?: string | undefined;
|
|
@@ -6565,6 +6571,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6565
6571
|
acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6566
6572
|
acs_credential_id: z.ZodString;
|
|
6567
6573
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
6574
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
6568
6575
|
connected_account_id: z.ZodString;
|
|
6569
6576
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
6570
6577
|
acs_system_id: z.ZodString;
|
|
@@ -6786,6 +6793,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6786
6793
|
door_names?: string[] | undefined;
|
|
6787
6794
|
} | undefined;
|
|
6788
6795
|
is_one_time_use?: boolean | undefined;
|
|
6796
|
+
user_identity_id?: string | undefined;
|
|
6789
6797
|
issued_at?: string | null | undefined;
|
|
6790
6798
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
6791
6799
|
external_type_display_name?: string | undefined;
|
|
@@ -6857,6 +6865,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6857
6865
|
door_names?: string[] | undefined;
|
|
6858
6866
|
} | undefined;
|
|
6859
6867
|
is_one_time_use?: boolean | undefined;
|
|
6868
|
+
user_identity_id?: string | undefined;
|
|
6860
6869
|
issued_at?: string | null | undefined;
|
|
6861
6870
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
6862
6871
|
external_type_display_name?: string | undefined;
|
|
@@ -6871,6 +6880,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
6871
6880
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6872
6881
|
acs_credential_id: z.ZodString;
|
|
6873
6882
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
6883
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
6874
6884
|
connected_account_id: z.ZodString;
|
|
6875
6885
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
6876
6886
|
acs_system_id: z.ZodString;
|
|
@@ -7092,6 +7102,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7092
7102
|
door_names?: string[] | undefined;
|
|
7093
7103
|
} | undefined;
|
|
7094
7104
|
is_one_time_use?: boolean | undefined;
|
|
7105
|
+
user_identity_id?: string | undefined;
|
|
7095
7106
|
issued_at?: string | null | undefined;
|
|
7096
7107
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7097
7108
|
external_type_display_name?: string | undefined;
|
|
@@ -7163,6 +7174,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7163
7174
|
door_names?: string[] | undefined;
|
|
7164
7175
|
} | undefined;
|
|
7165
7176
|
is_one_time_use?: boolean | undefined;
|
|
7177
|
+
user_identity_id?: string | undefined;
|
|
7166
7178
|
issued_at?: string | null | undefined;
|
|
7167
7179
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7168
7180
|
external_type_display_name?: string | undefined;
|
|
@@ -7271,6 +7283,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7271
7283
|
door_names?: string[] | undefined;
|
|
7272
7284
|
} | undefined;
|
|
7273
7285
|
is_one_time_use?: boolean | undefined;
|
|
7286
|
+
user_identity_id?: string | undefined;
|
|
7274
7287
|
issued_at?: string | null | undefined;
|
|
7275
7288
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7276
7289
|
external_type_display_name?: string | undefined;
|
|
@@ -7342,6 +7355,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7342
7355
|
door_names?: string[] | undefined;
|
|
7343
7356
|
} | undefined;
|
|
7344
7357
|
is_one_time_use?: boolean | undefined;
|
|
7358
|
+
user_identity_id?: string | undefined;
|
|
7345
7359
|
issued_at?: string | null | undefined;
|
|
7346
7360
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7347
7361
|
external_type_display_name?: string | undefined;
|
|
@@ -7440,6 +7454,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7440
7454
|
door_names?: string[] | undefined;
|
|
7441
7455
|
} | undefined;
|
|
7442
7456
|
is_one_time_use?: boolean | undefined;
|
|
7457
|
+
user_identity_id?: string | undefined;
|
|
7443
7458
|
issued_at?: string | null | undefined;
|
|
7444
7459
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7445
7460
|
external_type_display_name?: string | undefined;
|
|
@@ -7511,6 +7526,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7511
7526
|
door_names?: string[] | undefined;
|
|
7512
7527
|
} | undefined;
|
|
7513
7528
|
is_one_time_use?: boolean | undefined;
|
|
7529
|
+
user_identity_id?: string | undefined;
|
|
7514
7530
|
issued_at?: string | null | undefined;
|
|
7515
7531
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7516
7532
|
external_type_display_name?: string | undefined;
|
|
@@ -7614,6 +7630,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7614
7630
|
door_names?: string[] | undefined;
|
|
7615
7631
|
} | undefined;
|
|
7616
7632
|
is_one_time_use?: boolean | undefined;
|
|
7633
|
+
user_identity_id?: string | undefined;
|
|
7617
7634
|
issued_at?: string | null | undefined;
|
|
7618
7635
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7619
7636
|
external_type_display_name?: string | undefined;
|
|
@@ -7685,6 +7702,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7685
7702
|
door_names?: string[] | undefined;
|
|
7686
7703
|
} | undefined;
|
|
7687
7704
|
is_one_time_use?: boolean | undefined;
|
|
7705
|
+
user_identity_id?: string | undefined;
|
|
7688
7706
|
issued_at?: string | null | undefined;
|
|
7689
7707
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7690
7708
|
external_type_display_name?: string | undefined;
|
|
@@ -7789,6 +7807,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7789
7807
|
door_names?: string[] | undefined;
|
|
7790
7808
|
} | undefined;
|
|
7791
7809
|
is_one_time_use?: boolean | undefined;
|
|
7810
|
+
user_identity_id?: string | undefined;
|
|
7792
7811
|
issued_at?: string | null | undefined;
|
|
7793
7812
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7794
7813
|
external_type_display_name?: string | undefined;
|
|
@@ -7860,6 +7879,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7860
7879
|
door_names?: string[] | undefined;
|
|
7861
7880
|
} | undefined;
|
|
7862
7881
|
is_one_time_use?: boolean | undefined;
|
|
7882
|
+
user_identity_id?: string | undefined;
|
|
7863
7883
|
issued_at?: string | null | undefined;
|
|
7864
7884
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
7865
7885
|
external_type_display_name?: string | undefined;
|
|
@@ -7972,6 +7992,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
7972
7992
|
result: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
7973
7993
|
acs_credential_id: z.ZodString;
|
|
7974
7994
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
7995
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
7975
7996
|
connected_account_id: z.ZodString;
|
|
7976
7997
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
7977
7998
|
acs_system_id: z.ZodString;
|
|
@@ -8193,6 +8214,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8193
8214
|
door_names?: string[] | undefined;
|
|
8194
8215
|
} | undefined;
|
|
8195
8216
|
is_one_time_use?: boolean | undefined;
|
|
8217
|
+
user_identity_id?: string | undefined;
|
|
8196
8218
|
issued_at?: string | null | undefined;
|
|
8197
8219
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8198
8220
|
external_type_display_name?: string | undefined;
|
|
@@ -8264,6 +8286,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8264
8286
|
door_names?: string[] | undefined;
|
|
8265
8287
|
} | undefined;
|
|
8266
8288
|
is_one_time_use?: boolean | undefined;
|
|
8289
|
+
user_identity_id?: string | undefined;
|
|
8267
8290
|
issued_at?: string | null | undefined;
|
|
8268
8291
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8269
8292
|
external_type_display_name?: string | undefined;
|
|
@@ -8278,6 +8301,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8278
8301
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8279
8302
|
acs_credential_id: z.ZodString;
|
|
8280
8303
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
8304
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
8281
8305
|
connected_account_id: z.ZodString;
|
|
8282
8306
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
8283
8307
|
acs_system_id: z.ZodString;
|
|
@@ -8499,6 +8523,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8499
8523
|
door_names?: string[] | undefined;
|
|
8500
8524
|
} | undefined;
|
|
8501
8525
|
is_one_time_use?: boolean | undefined;
|
|
8526
|
+
user_identity_id?: string | undefined;
|
|
8502
8527
|
issued_at?: string | null | undefined;
|
|
8503
8528
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8504
8529
|
external_type_display_name?: string | undefined;
|
|
@@ -8570,6 +8595,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8570
8595
|
door_names?: string[] | undefined;
|
|
8571
8596
|
} | undefined;
|
|
8572
8597
|
is_one_time_use?: boolean | undefined;
|
|
8598
|
+
user_identity_id?: string | undefined;
|
|
8573
8599
|
issued_at?: string | null | undefined;
|
|
8574
8600
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8575
8601
|
external_type_display_name?: string | undefined;
|
|
@@ -8646,6 +8672,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8646
8672
|
door_names?: string[] | undefined;
|
|
8647
8673
|
} | undefined;
|
|
8648
8674
|
is_one_time_use?: boolean | undefined;
|
|
8675
|
+
user_identity_id?: string | undefined;
|
|
8649
8676
|
issued_at?: string | null | undefined;
|
|
8650
8677
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8651
8678
|
external_type_display_name?: string | undefined;
|
|
@@ -8717,6 +8744,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8717
8744
|
door_names?: string[] | undefined;
|
|
8718
8745
|
} | undefined;
|
|
8719
8746
|
is_one_time_use?: boolean | undefined;
|
|
8747
|
+
user_identity_id?: string | undefined;
|
|
8720
8748
|
issued_at?: string | null | undefined;
|
|
8721
8749
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8722
8750
|
external_type_display_name?: string | undefined;
|
|
@@ -8794,6 +8822,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8794
8822
|
door_names?: string[] | undefined;
|
|
8795
8823
|
} | undefined;
|
|
8796
8824
|
is_one_time_use?: boolean | undefined;
|
|
8825
|
+
user_identity_id?: string | undefined;
|
|
8797
8826
|
issued_at?: string | null | undefined;
|
|
8798
8827
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8799
8828
|
external_type_display_name?: string | undefined;
|
|
@@ -8865,6 +8894,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
8865
8894
|
door_names?: string[] | undefined;
|
|
8866
8895
|
} | undefined;
|
|
8867
8896
|
is_one_time_use?: boolean | undefined;
|
|
8897
|
+
user_identity_id?: string | undefined;
|
|
8868
8898
|
issued_at?: string | null | undefined;
|
|
8869
8899
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
8870
8900
|
external_type_display_name?: string | undefined;
|
|
@@ -21515,16 +21545,26 @@ declare const user_identity: z.ZodObject<{
|
|
|
21515
21545
|
full_name: z.ZodNullable<z.ZodString>;
|
|
21516
21546
|
created_at: z.ZodString;
|
|
21517
21547
|
workspace_id: z.ZodString;
|
|
21518
|
-
errors: z.ZodArray<z.ZodObject<{
|
|
21548
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
21519
21549
|
created_at: z.ZodString;
|
|
21520
21550
|
message: z.ZodString;
|
|
21521
|
-
},
|
|
21551
|
+
}, {
|
|
21552
|
+
error_code: z.ZodLiteral<"issue_with_acs_user">;
|
|
21553
|
+
acs_user_id: z.ZodString;
|
|
21554
|
+
acs_system_id: z.ZodString;
|
|
21555
|
+
}>, "strip", z.ZodTypeAny, {
|
|
21522
21556
|
message: string;
|
|
21523
21557
|
created_at: string;
|
|
21558
|
+
error_code: "issue_with_acs_user";
|
|
21559
|
+
acs_system_id: string;
|
|
21560
|
+
acs_user_id: string;
|
|
21524
21561
|
}, {
|
|
21525
21562
|
message: string;
|
|
21526
21563
|
created_at: string;
|
|
21527
|
-
|
|
21564
|
+
error_code: "issue_with_acs_user";
|
|
21565
|
+
acs_system_id: string;
|
|
21566
|
+
acs_user_id: string;
|
|
21567
|
+
}>]>, "many">;
|
|
21528
21568
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
21529
21569
|
created_at: z.ZodString;
|
|
21530
21570
|
message: z.ZodString;
|
|
@@ -21546,6 +21586,9 @@ declare const user_identity: z.ZodObject<{
|
|
|
21546
21586
|
errors: {
|
|
21547
21587
|
message: string;
|
|
21548
21588
|
created_at: string;
|
|
21589
|
+
error_code: "issue_with_acs_user";
|
|
21590
|
+
acs_system_id: string;
|
|
21591
|
+
acs_user_id: string;
|
|
21549
21592
|
}[];
|
|
21550
21593
|
warnings: {
|
|
21551
21594
|
message: string;
|
|
@@ -21564,6 +21607,9 @@ declare const user_identity: z.ZodObject<{
|
|
|
21564
21607
|
errors: {
|
|
21565
21608
|
message: string;
|
|
21566
21609
|
created_at: string;
|
|
21610
|
+
error_code: "issue_with_acs_user";
|
|
21611
|
+
acs_system_id: string;
|
|
21612
|
+
acs_user_id: string;
|
|
21567
21613
|
}[];
|
|
21568
21614
|
warnings: {
|
|
21569
21615
|
message: string;
|
|
@@ -22467,6 +22513,11 @@ declare const _default: {
|
|
|
22467
22513
|
description: string;
|
|
22468
22514
|
type: string;
|
|
22469
22515
|
};
|
|
22516
|
+
user_identity_id: {
|
|
22517
|
+
description: string;
|
|
22518
|
+
format: string;
|
|
22519
|
+
type: string;
|
|
22520
|
+
};
|
|
22470
22521
|
visionline_metadata: {
|
|
22471
22522
|
description: string;
|
|
22472
22523
|
properties: {
|
|
@@ -24017,6 +24068,11 @@ declare const _default: {
|
|
|
24017
24068
|
description: string;
|
|
24018
24069
|
type: string;
|
|
24019
24070
|
};
|
|
24071
|
+
user_identity_id: {
|
|
24072
|
+
description: string;
|
|
24073
|
+
format: string;
|
|
24074
|
+
type: string;
|
|
24075
|
+
};
|
|
24020
24076
|
visionline_metadata: {
|
|
24021
24077
|
description: string;
|
|
24022
24078
|
properties: {
|
|
@@ -24269,6 +24325,11 @@ declare const _default: {
|
|
|
24269
24325
|
description: string;
|
|
24270
24326
|
type: string;
|
|
24271
24327
|
};
|
|
24328
|
+
user_identity_id: {
|
|
24329
|
+
description: string;
|
|
24330
|
+
format: string;
|
|
24331
|
+
type: string;
|
|
24332
|
+
};
|
|
24272
24333
|
visionline_metadata: {
|
|
24273
24334
|
description: string;
|
|
24274
24335
|
properties: {
|
|
@@ -24633,6 +24694,11 @@ declare const _default: {
|
|
|
24633
24694
|
description: string;
|
|
24634
24695
|
type: string;
|
|
24635
24696
|
};
|
|
24697
|
+
user_identity_id: {
|
|
24698
|
+
description: string;
|
|
24699
|
+
format: string;
|
|
24700
|
+
type: string;
|
|
24701
|
+
};
|
|
24636
24702
|
visionline_metadata: {
|
|
24637
24703
|
description: string;
|
|
24638
24704
|
properties: {
|
|
@@ -24885,6 +24951,11 @@ declare const _default: {
|
|
|
24885
24951
|
description: string;
|
|
24886
24952
|
type: string;
|
|
24887
24953
|
};
|
|
24954
|
+
user_identity_id: {
|
|
24955
|
+
description: string;
|
|
24956
|
+
format: string;
|
|
24957
|
+
type: string;
|
|
24958
|
+
};
|
|
24888
24959
|
visionline_metadata: {
|
|
24889
24960
|
description: string;
|
|
24890
24961
|
properties: {
|
|
@@ -32153,6 +32224,11 @@ declare const _default: {
|
|
|
32153
32224
|
description: string;
|
|
32154
32225
|
type: string;
|
|
32155
32226
|
};
|
|
32227
|
+
user_identity_id: {
|
|
32228
|
+
description: string;
|
|
32229
|
+
format: string;
|
|
32230
|
+
type: string;
|
|
32231
|
+
};
|
|
32156
32232
|
visionline_metadata: {
|
|
32157
32233
|
description: string;
|
|
32158
32234
|
properties: {
|
|
@@ -33026,6 +33102,11 @@ declare const _default: {
|
|
|
33026
33102
|
description: string;
|
|
33027
33103
|
type: string;
|
|
33028
33104
|
};
|
|
33105
|
+
user_identity_id: {
|
|
33106
|
+
description: string;
|
|
33107
|
+
format: string;
|
|
33108
|
+
type: string;
|
|
33109
|
+
};
|
|
33029
33110
|
visionline_metadata: {
|
|
33030
33111
|
description: string;
|
|
33031
33112
|
properties: {
|
|
@@ -34148,19 +34229,41 @@ declare const _default: {
|
|
|
34148
34229
|
errors: {
|
|
34149
34230
|
description: string;
|
|
34150
34231
|
items: {
|
|
34151
|
-
|
|
34152
|
-
|
|
34153
|
-
|
|
34154
|
-
format: string;
|
|
34155
|
-
type: string;
|
|
34156
|
-
};
|
|
34157
|
-
message: {
|
|
34158
|
-
description: string;
|
|
34159
|
-
type: string;
|
|
34160
|
-
};
|
|
34232
|
+
description: string;
|
|
34233
|
+
discriminator: {
|
|
34234
|
+
propertyName: string;
|
|
34161
34235
|
};
|
|
34162
|
-
|
|
34163
|
-
|
|
34236
|
+
oneOf: {
|
|
34237
|
+
description: string;
|
|
34238
|
+
properties: {
|
|
34239
|
+
acs_system_id: {
|
|
34240
|
+
description: string;
|
|
34241
|
+
format: string;
|
|
34242
|
+
type: string;
|
|
34243
|
+
};
|
|
34244
|
+
acs_user_id: {
|
|
34245
|
+
description: string;
|
|
34246
|
+
format: string;
|
|
34247
|
+
type: string;
|
|
34248
|
+
};
|
|
34249
|
+
created_at: {
|
|
34250
|
+
description: string;
|
|
34251
|
+
format: string;
|
|
34252
|
+
type: string;
|
|
34253
|
+
};
|
|
34254
|
+
error_code: {
|
|
34255
|
+
description: string;
|
|
34256
|
+
enum: string[];
|
|
34257
|
+
type: string;
|
|
34258
|
+
};
|
|
34259
|
+
message: {
|
|
34260
|
+
description: string;
|
|
34261
|
+
type: string;
|
|
34262
|
+
};
|
|
34263
|
+
};
|
|
34264
|
+
required: string[];
|
|
34265
|
+
type: string;
|
|
34266
|
+
}[];
|
|
34164
34267
|
};
|
|
34165
34268
|
type: string;
|
|
34166
34269
|
};
|
|
@@ -69570,7 +69673,7 @@ interface Routes {
|
|
|
69570
69673
|
pending_auto_update: boolean;
|
|
69571
69674
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69572
69675
|
card_format: 'TLCode' | 'rfid48';
|
|
69573
|
-
/**
|
|
69676
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69574
69677
|
card_holder?: string | undefined;
|
|
69575
69678
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69576
69679
|
number_of_issued_cards: number;
|
|
@@ -69586,6 +69689,8 @@ interface Routes {
|
|
|
69586
69689
|
acs_credential_id: string;
|
|
69587
69690
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69588
69691
|
acs_user_id?: string | undefined;
|
|
69692
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69693
|
+
user_identity_id?: string | undefined;
|
|
69589
69694
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69590
69695
|
connected_account_id: string;
|
|
69591
69696
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69668,7 +69773,7 @@ interface Routes {
|
|
|
69668
69773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69669
69774
|
warning_code: 'needs_to_be_reissued';
|
|
69670
69775
|
}>;
|
|
69671
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69776
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
69672
69777
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69673
69778
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
69674
69779
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -69714,6 +69819,8 @@ interface Routes {
|
|
|
69714
69819
|
acs_credential_id: string;
|
|
69715
69820
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69716
69821
|
acs_user_id?: string | undefined;
|
|
69822
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69823
|
+
user_identity_id?: string | undefined;
|
|
69717
69824
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69718
69825
|
connected_account_id: string;
|
|
69719
69826
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69796,7 +69903,7 @@ interface Routes {
|
|
|
69796
69903
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69797
69904
|
warning_code: 'needs_to_be_reissued';
|
|
69798
69905
|
}>;
|
|
69799
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69906
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
69800
69907
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69801
69908
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
69802
69909
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -69894,6 +70001,8 @@ interface Routes {
|
|
|
69894
70001
|
acs_credential_id: string;
|
|
69895
70002
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69896
70003
|
acs_user_id?: string | undefined;
|
|
70004
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70005
|
+
user_identity_id?: string | undefined;
|
|
69897
70006
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
69898
70007
|
connected_account_id: string;
|
|
69899
70008
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69976,7 +70085,7 @@ interface Routes {
|
|
|
69976
70085
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69977
70086
|
warning_code: 'needs_to_be_reissued';
|
|
69978
70087
|
}>;
|
|
69979
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70088
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
69980
70089
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69981
70090
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
69982
70091
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -70022,6 +70131,8 @@ interface Routes {
|
|
|
70022
70131
|
acs_credential_id: string;
|
|
70023
70132
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70024
70133
|
acs_user_id?: string | undefined;
|
|
70134
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70135
|
+
user_identity_id?: string | undefined;
|
|
70025
70136
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
70026
70137
|
connected_account_id: string;
|
|
70027
70138
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70104,7 +70215,7 @@ interface Routes {
|
|
|
70104
70215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70105
70216
|
warning_code: 'needs_to_be_reissued';
|
|
70106
70217
|
}>;
|
|
70107
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70218
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
70108
70219
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
70109
70220
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
70110
70221
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -71890,7 +72001,7 @@ interface Routes {
|
|
|
71890
72001
|
pending_auto_update: boolean;
|
|
71891
72002
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71892
72003
|
card_format: 'TLCode' | 'rfid48';
|
|
71893
|
-
/**
|
|
72004
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71894
72005
|
card_holder?: string | undefined;
|
|
71895
72006
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71896
72007
|
number_of_issued_cards: number;
|
|
@@ -71906,6 +72017,8 @@ interface Routes {
|
|
|
71906
72017
|
acs_credential_id: string;
|
|
71907
72018
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71908
72019
|
acs_user_id?: string | undefined;
|
|
72020
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72021
|
+
user_identity_id?: string | undefined;
|
|
71909
72022
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
71910
72023
|
connected_account_id: string;
|
|
71911
72024
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -71988,7 +72101,7 @@ interface Routes {
|
|
|
71988
72101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71989
72102
|
warning_code: 'needs_to_be_reissued';
|
|
71990
72103
|
}>;
|
|
71991
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72104
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
71992
72105
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
71993
72106
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
71994
72107
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72034,6 +72147,8 @@ interface Routes {
|
|
|
72034
72147
|
acs_credential_id: string;
|
|
72035
72148
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72036
72149
|
acs_user_id?: string | undefined;
|
|
72150
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72151
|
+
user_identity_id?: string | undefined;
|
|
72037
72152
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72038
72153
|
connected_account_id: string;
|
|
72039
72154
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72116,7 +72231,7 @@ interface Routes {
|
|
|
72116
72231
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72117
72232
|
warning_code: 'needs_to_be_reissued';
|
|
72118
72233
|
}>;
|
|
72119
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72234
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72120
72235
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72121
72236
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72122
72237
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72214,6 +72329,8 @@ interface Routes {
|
|
|
72214
72329
|
acs_credential_id: string;
|
|
72215
72330
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72216
72331
|
acs_user_id?: string | undefined;
|
|
72332
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72333
|
+
user_identity_id?: string | undefined;
|
|
72217
72334
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72218
72335
|
connected_account_id: string;
|
|
72219
72336
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72296,7 +72413,7 @@ interface Routes {
|
|
|
72296
72413
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72297
72414
|
warning_code: 'needs_to_be_reissued';
|
|
72298
72415
|
}>;
|
|
72299
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72416
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72300
72417
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72301
72418
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72302
72419
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72342,6 +72459,8 @@ interface Routes {
|
|
|
72342
72459
|
acs_credential_id: string;
|
|
72343
72460
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72344
72461
|
acs_user_id?: string | undefined;
|
|
72462
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72463
|
+
user_identity_id?: string | undefined;
|
|
72345
72464
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
72346
72465
|
connected_account_id: string;
|
|
72347
72466
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -72424,7 +72543,7 @@ interface Routes {
|
|
|
72424
72543
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72425
72544
|
warning_code: 'needs_to_be_reissued';
|
|
72426
72545
|
}>;
|
|
72427
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72546
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72428
72547
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72429
72548
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72430
72549
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -75814,7 +75933,7 @@ interface Routes {
|
|
|
75814
75933
|
pending_auto_update: boolean;
|
|
75815
75934
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75816
75935
|
card_format: 'TLCode' | 'rfid48';
|
|
75817
|
-
/**
|
|
75936
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75818
75937
|
card_holder?: string | undefined;
|
|
75819
75938
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75820
75939
|
number_of_issued_cards: number;
|
|
@@ -75830,6 +75949,8 @@ interface Routes {
|
|
|
75830
75949
|
acs_credential_id: string;
|
|
75831
75950
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75832
75951
|
acs_user_id?: string | undefined;
|
|
75952
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75953
|
+
user_identity_id?: string | undefined;
|
|
75833
75954
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75834
75955
|
connected_account_id: string;
|
|
75835
75956
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -75912,7 +76033,7 @@ interface Routes {
|
|
|
75912
76033
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75913
76034
|
warning_code: 'needs_to_be_reissued';
|
|
75914
76035
|
}>;
|
|
75915
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76036
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
75916
76037
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
75917
76038
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
75918
76039
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -75958,6 +76079,8 @@ interface Routes {
|
|
|
75958
76079
|
acs_credential_id: string;
|
|
75959
76080
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75960
76081
|
acs_user_id?: string | undefined;
|
|
76082
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76083
|
+
user_identity_id?: string | undefined;
|
|
75961
76084
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
75962
76085
|
connected_account_id: string;
|
|
75963
76086
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -76040,7 +76163,7 @@ interface Routes {
|
|
|
76040
76163
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76041
76164
|
warning_code: 'needs_to_be_reissued';
|
|
76042
76165
|
}>;
|
|
76043
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76166
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76044
76167
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76045
76168
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76046
76169
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76138,6 +76261,8 @@ interface Routes {
|
|
|
76138
76261
|
acs_credential_id: string;
|
|
76139
76262
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76140
76263
|
acs_user_id?: string | undefined;
|
|
76264
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76265
|
+
user_identity_id?: string | undefined;
|
|
76141
76266
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76142
76267
|
connected_account_id: string;
|
|
76143
76268
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -76220,7 +76345,7 @@ interface Routes {
|
|
|
76220
76345
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76221
76346
|
warning_code: 'needs_to_be_reissued';
|
|
76222
76347
|
}>;
|
|
76223
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76348
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76224
76349
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76225
76350
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76226
76351
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76266,6 +76391,8 @@ interface Routes {
|
|
|
76266
76391
|
acs_credential_id: string;
|
|
76267
76392
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76268
76393
|
acs_user_id?: string | undefined;
|
|
76394
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76395
|
+
user_identity_id?: string | undefined;
|
|
76269
76396
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
76270
76397
|
connected_account_id: string;
|
|
76271
76398
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -76348,7 +76475,7 @@ interface Routes {
|
|
|
76348
76475
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76349
76476
|
warning_code: 'needs_to_be_reissued';
|
|
76350
76477
|
}>;
|
|
76351
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76478
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76352
76479
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76353
76480
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76354
76481
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78142,7 +78269,7 @@ interface Routes {
|
|
|
78142
78269
|
pending_auto_update: boolean;
|
|
78143
78270
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78144
78271
|
card_format: 'TLCode' | 'rfid48';
|
|
78145
|
-
/**
|
|
78272
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78146
78273
|
card_holder?: string | undefined;
|
|
78147
78274
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78148
78275
|
number_of_issued_cards: number;
|
|
@@ -78158,6 +78285,8 @@ interface Routes {
|
|
|
78158
78285
|
acs_credential_id: string;
|
|
78159
78286
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78160
78287
|
acs_user_id?: string | undefined;
|
|
78288
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78289
|
+
user_identity_id?: string | undefined;
|
|
78161
78290
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78162
78291
|
connected_account_id: string;
|
|
78163
78292
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -78240,7 +78369,7 @@ interface Routes {
|
|
|
78240
78369
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78241
78370
|
warning_code: 'needs_to_be_reissued';
|
|
78242
78371
|
}>;
|
|
78243
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78372
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78244
78373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78245
78374
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78246
78375
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78286,6 +78415,8 @@ interface Routes {
|
|
|
78286
78415
|
acs_credential_id: string;
|
|
78287
78416
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78288
78417
|
acs_user_id?: string | undefined;
|
|
78418
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78419
|
+
user_identity_id?: string | undefined;
|
|
78289
78420
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78290
78421
|
connected_account_id: string;
|
|
78291
78422
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -78368,7 +78499,7 @@ interface Routes {
|
|
|
78368
78499
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78369
78500
|
warning_code: 'needs_to_be_reissued';
|
|
78370
78501
|
}>;
|
|
78371
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78502
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78372
78503
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78373
78504
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78374
78505
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78466,6 +78597,8 @@ interface Routes {
|
|
|
78466
78597
|
acs_credential_id: string;
|
|
78467
78598
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78468
78599
|
acs_user_id?: string | undefined;
|
|
78600
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78601
|
+
user_identity_id?: string | undefined;
|
|
78469
78602
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78470
78603
|
connected_account_id: string;
|
|
78471
78604
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -78548,7 +78681,7 @@ interface Routes {
|
|
|
78548
78681
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78549
78682
|
warning_code: 'needs_to_be_reissued';
|
|
78550
78683
|
}>;
|
|
78551
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78684
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78552
78685
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78553
78686
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78554
78687
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78594,6 +78727,8 @@ interface Routes {
|
|
|
78594
78727
|
acs_credential_id: string;
|
|
78595
78728
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78596
78729
|
acs_user_id?: string | undefined;
|
|
78730
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78731
|
+
user_identity_id?: string | undefined;
|
|
78597
78732
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
78598
78733
|
connected_account_id: string;
|
|
78599
78734
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -78676,7 +78811,7 @@ interface Routes {
|
|
|
78676
78811
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78677
78812
|
warning_code: 'needs_to_be_reissued';
|
|
78678
78813
|
}>;
|
|
78679
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78814
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78680
78815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78681
78816
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78682
78817
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79654,7 +79789,7 @@ interface Routes {
|
|
|
79654
79789
|
pending_auto_update: boolean;
|
|
79655
79790
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79656
79791
|
card_format: 'TLCode' | 'rfid48';
|
|
79657
|
-
/**
|
|
79792
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79658
79793
|
card_holder?: string | undefined;
|
|
79659
79794
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79660
79795
|
number_of_issued_cards: number;
|
|
@@ -79670,6 +79805,8 @@ interface Routes {
|
|
|
79670
79805
|
acs_credential_id: string;
|
|
79671
79806
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79672
79807
|
acs_user_id?: string | undefined;
|
|
79808
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79809
|
+
user_identity_id?: string | undefined;
|
|
79673
79810
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79674
79811
|
connected_account_id: string;
|
|
79675
79812
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -79752,7 +79889,7 @@ interface Routes {
|
|
|
79752
79889
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79753
79890
|
warning_code: 'needs_to_be_reissued';
|
|
79754
79891
|
}>;
|
|
79755
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
79892
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
79756
79893
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79757
79894
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
79758
79895
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79798,6 +79935,8 @@ interface Routes {
|
|
|
79798
79935
|
acs_credential_id: string;
|
|
79799
79936
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79800
79937
|
acs_user_id?: string | undefined;
|
|
79938
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79939
|
+
user_identity_id?: string | undefined;
|
|
79801
79940
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79802
79941
|
connected_account_id: string;
|
|
79803
79942
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -79880,7 +80019,7 @@ interface Routes {
|
|
|
79880
80019
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79881
80020
|
warning_code: 'needs_to_be_reissued';
|
|
79882
80021
|
}>;
|
|
79883
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80022
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
79884
80023
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79885
80024
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
79886
80025
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79978,6 +80117,8 @@ interface Routes {
|
|
|
79978
80117
|
acs_credential_id: string;
|
|
79979
80118
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79980
80119
|
acs_user_id?: string | undefined;
|
|
80120
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80121
|
+
user_identity_id?: string | undefined;
|
|
79981
80122
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
79982
80123
|
connected_account_id: string;
|
|
79983
80124
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -80060,7 +80201,7 @@ interface Routes {
|
|
|
80060
80201
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80061
80202
|
warning_code: 'needs_to_be_reissued';
|
|
80062
80203
|
}>;
|
|
80063
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80204
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
80064
80205
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80065
80206
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
80066
80207
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -80106,6 +80247,8 @@ interface Routes {
|
|
|
80106
80247
|
acs_credential_id: string;
|
|
80107
80248
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80108
80249
|
acs_user_id?: string | undefined;
|
|
80250
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80251
|
+
user_identity_id?: string | undefined;
|
|
80109
80252
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
80110
80253
|
connected_account_id: string;
|
|
80111
80254
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -80188,7 +80331,7 @@ interface Routes {
|
|
|
80188
80331
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80189
80332
|
warning_code: 'needs_to_be_reissued';
|
|
80190
80333
|
}>;
|
|
80191
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80334
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
80192
80335
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80193
80336
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
80194
80337
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81475,6 +81618,8 @@ interface Routes {
|
|
|
81475
81618
|
acs_credential_id: string;
|
|
81476
81619
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81477
81620
|
acs_user_id?: string | undefined;
|
|
81621
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81622
|
+
user_identity_id?: string | undefined;
|
|
81478
81623
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81479
81624
|
connected_account_id: string;
|
|
81480
81625
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -81557,7 +81702,7 @@ interface Routes {
|
|
|
81557
81702
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81558
81703
|
warning_code: 'needs_to_be_reissued';
|
|
81559
81704
|
}>;
|
|
81560
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81705
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81561
81706
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81562
81707
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
81563
81708
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81619,7 +81764,7 @@ interface Routes {
|
|
|
81619
81764
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
81620
81765
|
/** Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview). */
|
|
81621
81766
|
code?: string | undefined;
|
|
81622
|
-
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81767
|
+
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81623
81768
|
is_multi_phone_sync_credential?: boolean;
|
|
81624
81769
|
/** Set of IDs of the [entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
|
|
81625
81770
|
allowed_acs_entrance_ids?: string[];
|
|
@@ -81668,6 +81813,8 @@ interface Routes {
|
|
|
81668
81813
|
acs_credential_id: string;
|
|
81669
81814
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81670
81815
|
acs_user_id?: string | undefined;
|
|
81816
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81817
|
+
user_identity_id?: string | undefined;
|
|
81671
81818
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81672
81819
|
connected_account_id: string;
|
|
81673
81820
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -81750,7 +81897,7 @@ interface Routes {
|
|
|
81750
81897
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81751
81898
|
warning_code: 'needs_to_be_reissued';
|
|
81752
81899
|
}>;
|
|
81753
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81900
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81754
81901
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81755
81902
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
81756
81903
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81823,6 +81970,8 @@ interface Routes {
|
|
|
81823
81970
|
acs_credential_id: string;
|
|
81824
81971
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81825
81972
|
acs_user_id?: string | undefined;
|
|
81973
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81974
|
+
user_identity_id?: string | undefined;
|
|
81826
81975
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81827
81976
|
connected_account_id: string;
|
|
81828
81977
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -81905,7 +82054,7 @@ interface Routes {
|
|
|
81905
82054
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81906
82055
|
warning_code: 'needs_to_be_reissued';
|
|
81907
82056
|
}>;
|
|
81908
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82057
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81909
82058
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81910
82059
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
81911
82060
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81982,6 +82131,8 @@ interface Routes {
|
|
|
81982
82131
|
acs_credential_id: string;
|
|
81983
82132
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81984
82133
|
acs_user_id?: string | undefined;
|
|
82134
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82135
|
+
user_identity_id?: string | undefined;
|
|
81985
82136
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
81986
82137
|
connected_account_id: string;
|
|
81987
82138
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82064,7 +82215,7 @@ interface Routes {
|
|
|
82064
82215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82065
82216
|
warning_code: 'needs_to_be_reissued';
|
|
82066
82217
|
}>;
|
|
82067
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82218
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82068
82219
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82069
82220
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82070
82221
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82142,6 +82293,8 @@ interface Routes {
|
|
|
82142
82293
|
acs_credential_id: string;
|
|
82143
82294
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82144
82295
|
acs_user_id?: string | undefined;
|
|
82296
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82297
|
+
user_identity_id?: string | undefined;
|
|
82145
82298
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82146
82299
|
connected_account_id: string;
|
|
82147
82300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82224,7 +82377,7 @@ interface Routes {
|
|
|
82224
82377
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82225
82378
|
warning_code: 'needs_to_be_reissued';
|
|
82226
82379
|
}>;
|
|
82227
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82380
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82228
82381
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82229
82382
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82230
82383
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82402,6 +82555,8 @@ interface Routes {
|
|
|
82402
82555
|
acs_credential_id: string;
|
|
82403
82556
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82404
82557
|
acs_user_id?: string | undefined;
|
|
82558
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82559
|
+
user_identity_id?: string | undefined;
|
|
82405
82560
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82406
82561
|
connected_account_id: string;
|
|
82407
82562
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82484,7 +82639,7 @@ interface Routes {
|
|
|
82484
82639
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82485
82640
|
warning_code: 'needs_to_be_reissued';
|
|
82486
82641
|
}>;
|
|
82487
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82642
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82488
82643
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82489
82644
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82490
82645
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82545,6 +82700,8 @@ interface Routes {
|
|
|
82545
82700
|
acs_credential_id: string;
|
|
82546
82701
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82547
82702
|
acs_user_id?: string | undefined;
|
|
82703
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82704
|
+
user_identity_id?: string | undefined;
|
|
82548
82705
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82549
82706
|
connected_account_id: string;
|
|
82550
82707
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82627,7 +82784,7 @@ interface Routes {
|
|
|
82627
82784
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82628
82785
|
warning_code: 'needs_to_be_reissued';
|
|
82629
82786
|
}>;
|
|
82630
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82787
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82631
82788
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82632
82789
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82633
82790
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82698,6 +82855,8 @@ interface Routes {
|
|
|
82698
82855
|
acs_credential_id: string;
|
|
82699
82856
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82700
82857
|
acs_user_id?: string | undefined;
|
|
82858
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82859
|
+
user_identity_id?: string | undefined;
|
|
82701
82860
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82702
82861
|
connected_account_id: string;
|
|
82703
82862
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82780,7 +82939,7 @@ interface Routes {
|
|
|
82780
82939
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82781
82940
|
warning_code: 'needs_to_be_reissued';
|
|
82782
82941
|
}>;
|
|
82783
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82942
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82784
82943
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82785
82944
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82786
82945
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82849,6 +83008,8 @@ interface Routes {
|
|
|
82849
83008
|
acs_credential_id: string;
|
|
82850
83009
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82851
83010
|
acs_user_id?: string | undefined;
|
|
83011
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83012
|
+
user_identity_id?: string | undefined;
|
|
82852
83013
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
82853
83014
|
connected_account_id: string;
|
|
82854
83015
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -82931,7 +83092,7 @@ interface Routes {
|
|
|
82931
83092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82932
83093
|
warning_code: 'needs_to_be_reissued';
|
|
82933
83094
|
}>;
|
|
82934
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83095
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82935
83096
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82936
83097
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82937
83098
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83114,7 +83275,7 @@ interface Routes {
|
|
|
83114
83275
|
pending_auto_update: boolean;
|
|
83115
83276
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83116
83277
|
card_format: 'TLCode' | 'rfid48';
|
|
83117
|
-
/**
|
|
83278
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83118
83279
|
card_holder?: string | undefined;
|
|
83119
83280
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83120
83281
|
number_of_issued_cards: number;
|
|
@@ -83130,6 +83291,8 @@ interface Routes {
|
|
|
83130
83291
|
acs_credential_id: string;
|
|
83131
83292
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83132
83293
|
acs_user_id?: string | undefined;
|
|
83294
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83295
|
+
user_identity_id?: string | undefined;
|
|
83133
83296
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83134
83297
|
connected_account_id: string;
|
|
83135
83298
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -83212,7 +83375,7 @@ interface Routes {
|
|
|
83212
83375
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83213
83376
|
warning_code: 'needs_to_be_reissued';
|
|
83214
83377
|
}>;
|
|
83215
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83378
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83216
83379
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83217
83380
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83218
83381
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83258,6 +83421,8 @@ interface Routes {
|
|
|
83258
83421
|
acs_credential_id: string;
|
|
83259
83422
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83260
83423
|
acs_user_id?: string | undefined;
|
|
83424
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83425
|
+
user_identity_id?: string | undefined;
|
|
83261
83426
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83262
83427
|
connected_account_id: string;
|
|
83263
83428
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -83340,7 +83505,7 @@ interface Routes {
|
|
|
83340
83505
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83341
83506
|
warning_code: 'needs_to_be_reissued';
|
|
83342
83507
|
}>;
|
|
83343
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83508
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83344
83509
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83345
83510
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83346
83511
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83438,6 +83603,8 @@ interface Routes {
|
|
|
83438
83603
|
acs_credential_id: string;
|
|
83439
83604
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83440
83605
|
acs_user_id?: string | undefined;
|
|
83606
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83607
|
+
user_identity_id?: string | undefined;
|
|
83441
83608
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83442
83609
|
connected_account_id: string;
|
|
83443
83610
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -83520,7 +83687,7 @@ interface Routes {
|
|
|
83520
83687
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83521
83688
|
warning_code: 'needs_to_be_reissued';
|
|
83522
83689
|
}>;
|
|
83523
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83690
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83524
83691
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83525
83692
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83526
83693
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83566,6 +83733,8 @@ interface Routes {
|
|
|
83566
83733
|
acs_credential_id: string;
|
|
83567
83734
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83568
83735
|
acs_user_id?: string | undefined;
|
|
83736
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83737
|
+
user_identity_id?: string | undefined;
|
|
83569
83738
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
83570
83739
|
connected_account_id: string;
|
|
83571
83740
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -83648,7 +83817,7 @@ interface Routes {
|
|
|
83648
83817
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83649
83818
|
warning_code: 'needs_to_be_reissued';
|
|
83650
83819
|
}>;
|
|
83651
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83820
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83652
83821
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83653
83822
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83654
83823
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84462,7 +84631,7 @@ interface Routes {
|
|
|
84462
84631
|
pending_auto_update: boolean;
|
|
84463
84632
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84464
84633
|
card_format: 'TLCode' | 'rfid48';
|
|
84465
|
-
/**
|
|
84634
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84466
84635
|
card_holder?: string | undefined;
|
|
84467
84636
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84468
84637
|
number_of_issued_cards: number;
|
|
@@ -84478,6 +84647,8 @@ interface Routes {
|
|
|
84478
84647
|
acs_credential_id: string;
|
|
84479
84648
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84480
84649
|
acs_user_id?: string | undefined;
|
|
84650
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84651
|
+
user_identity_id?: string | undefined;
|
|
84481
84652
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84482
84653
|
connected_account_id: string;
|
|
84483
84654
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -84560,7 +84731,7 @@ interface Routes {
|
|
|
84560
84731
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84561
84732
|
warning_code: 'needs_to_be_reissued';
|
|
84562
84733
|
}>;
|
|
84563
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
84734
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84564
84735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84565
84736
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
84566
84737
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84606,6 +84777,8 @@ interface Routes {
|
|
|
84606
84777
|
acs_credential_id: string;
|
|
84607
84778
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84608
84779
|
acs_user_id?: string | undefined;
|
|
84780
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84781
|
+
user_identity_id?: string | undefined;
|
|
84609
84782
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84610
84783
|
connected_account_id: string;
|
|
84611
84784
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -84688,7 +84861,7 @@ interface Routes {
|
|
|
84688
84861
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84689
84862
|
warning_code: 'needs_to_be_reissued';
|
|
84690
84863
|
}>;
|
|
84691
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
84864
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84692
84865
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84693
84866
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
84694
84867
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84786,6 +84959,8 @@ interface Routes {
|
|
|
84786
84959
|
acs_credential_id: string;
|
|
84787
84960
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84788
84961
|
acs_user_id?: string | undefined;
|
|
84962
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84963
|
+
user_identity_id?: string | undefined;
|
|
84789
84964
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84790
84965
|
connected_account_id: string;
|
|
84791
84966
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -84868,7 +85043,7 @@ interface Routes {
|
|
|
84868
85043
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84869
85044
|
warning_code: 'needs_to_be_reissued';
|
|
84870
85045
|
}>;
|
|
84871
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
85046
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84872
85047
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84873
85048
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
84874
85049
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84914,6 +85089,8 @@ interface Routes {
|
|
|
84914
85089
|
acs_credential_id: string;
|
|
84915
85090
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84916
85091
|
acs_user_id?: string | undefined;
|
|
85092
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
85093
|
+
user_identity_id?: string | undefined;
|
|
84917
85094
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
84918
85095
|
connected_account_id: string;
|
|
84919
85096
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -84996,7 +85173,7 @@ interface Routes {
|
|
|
84996
85173
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84997
85174
|
warning_code: 'needs_to_be_reissued';
|
|
84998
85175
|
}>;
|
|
84999
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
85176
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
85000
85177
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
85001
85178
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
85002
85179
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85922,6 +86099,8 @@ interface Routes {
|
|
|
85922
86099
|
acs_credential_id: string;
|
|
85923
86100
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
85924
86101
|
acs_user_id?: string | undefined;
|
|
86102
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
86103
|
+
user_identity_id?: string | undefined;
|
|
85925
86104
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
85926
86105
|
connected_account_id: string;
|
|
85927
86106
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -86004,7 +86183,7 @@ interface Routes {
|
|
|
86004
86183
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86005
86184
|
warning_code: 'needs_to_be_reissued';
|
|
86006
86185
|
}>;
|
|
86007
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
86186
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
86008
86187
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
86009
86188
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
86010
86189
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -87992,7 +88171,7 @@ interface Routes {
|
|
|
87992
88171
|
pending_auto_update: boolean;
|
|
87993
88172
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87994
88173
|
card_format: 'TLCode' | 'rfid48';
|
|
87995
|
-
/**
|
|
88174
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87996
88175
|
card_holder?: string | undefined;
|
|
87997
88176
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
87998
88177
|
number_of_issued_cards: number;
|
|
@@ -88008,6 +88187,8 @@ interface Routes {
|
|
|
88008
88187
|
acs_credential_id: string;
|
|
88009
88188
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88010
88189
|
acs_user_id?: string | undefined;
|
|
88190
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88191
|
+
user_identity_id?: string | undefined;
|
|
88011
88192
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88012
88193
|
connected_account_id: string;
|
|
88013
88194
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88090,7 +88271,7 @@ interface Routes {
|
|
|
88090
88271
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88091
88272
|
warning_code: 'needs_to_be_reissued';
|
|
88092
88273
|
}>;
|
|
88093
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88274
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88094
88275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88095
88276
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88096
88277
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88136,6 +88317,8 @@ interface Routes {
|
|
|
88136
88317
|
acs_credential_id: string;
|
|
88137
88318
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88138
88319
|
acs_user_id?: string | undefined;
|
|
88320
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88321
|
+
user_identity_id?: string | undefined;
|
|
88139
88322
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88140
88323
|
connected_account_id: string;
|
|
88141
88324
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88218,7 +88401,7 @@ interface Routes {
|
|
|
88218
88401
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88219
88402
|
warning_code: 'needs_to_be_reissued';
|
|
88220
88403
|
}>;
|
|
88221
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88404
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88222
88405
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88223
88406
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88224
88407
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88316,6 +88499,8 @@ interface Routes {
|
|
|
88316
88499
|
acs_credential_id: string;
|
|
88317
88500
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88318
88501
|
acs_user_id?: string | undefined;
|
|
88502
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88503
|
+
user_identity_id?: string | undefined;
|
|
88319
88504
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88320
88505
|
connected_account_id: string;
|
|
88321
88506
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88398,7 +88583,7 @@ interface Routes {
|
|
|
88398
88583
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88399
88584
|
warning_code: 'needs_to_be_reissued';
|
|
88400
88585
|
}>;
|
|
88401
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88586
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88402
88587
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88403
88588
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88404
88589
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88444,6 +88629,8 @@ interface Routes {
|
|
|
88444
88629
|
acs_credential_id: string;
|
|
88445
88630
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88446
88631
|
acs_user_id?: string | undefined;
|
|
88632
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88633
|
+
user_identity_id?: string | undefined;
|
|
88447
88634
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
88448
88635
|
connected_account_id: string;
|
|
88449
88636
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -88526,7 +88713,7 @@ interface Routes {
|
|
|
88526
88713
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88527
88714
|
warning_code: 'needs_to_be_reissued';
|
|
88528
88715
|
}>;
|
|
88529
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88716
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88530
88717
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88531
88718
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88532
88719
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89237,7 +89424,7 @@ interface Routes {
|
|
|
89237
89424
|
pending_auto_update: boolean;
|
|
89238
89425
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89239
89426
|
card_format: 'TLCode' | 'rfid48';
|
|
89240
|
-
/**
|
|
89427
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89241
89428
|
card_holder?: string | undefined;
|
|
89242
89429
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89243
89430
|
number_of_issued_cards: number;
|
|
@@ -89253,6 +89440,8 @@ interface Routes {
|
|
|
89253
89440
|
acs_credential_id: string;
|
|
89254
89441
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89255
89442
|
acs_user_id?: string | undefined;
|
|
89443
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89444
|
+
user_identity_id?: string | undefined;
|
|
89256
89445
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89257
89446
|
connected_account_id: string;
|
|
89258
89447
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -89335,7 +89524,7 @@ interface Routes {
|
|
|
89335
89524
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89336
89525
|
warning_code: 'needs_to_be_reissued';
|
|
89337
89526
|
}>;
|
|
89338
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89527
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89339
89528
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89340
89529
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89341
89530
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89381,6 +89570,8 @@ interface Routes {
|
|
|
89381
89570
|
acs_credential_id: string;
|
|
89382
89571
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89383
89572
|
acs_user_id?: string | undefined;
|
|
89573
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89574
|
+
user_identity_id?: string | undefined;
|
|
89384
89575
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89385
89576
|
connected_account_id: string;
|
|
89386
89577
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -89463,7 +89654,7 @@ interface Routes {
|
|
|
89463
89654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89464
89655
|
warning_code: 'needs_to_be_reissued';
|
|
89465
89656
|
}>;
|
|
89466
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89657
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89467
89658
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89468
89659
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89469
89660
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89561,6 +89752,8 @@ interface Routes {
|
|
|
89561
89752
|
acs_credential_id: string;
|
|
89562
89753
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89563
89754
|
acs_user_id?: string | undefined;
|
|
89755
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89756
|
+
user_identity_id?: string | undefined;
|
|
89564
89757
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89565
89758
|
connected_account_id: string;
|
|
89566
89759
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -89643,7 +89836,7 @@ interface Routes {
|
|
|
89643
89836
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89644
89837
|
warning_code: 'needs_to_be_reissued';
|
|
89645
89838
|
}>;
|
|
89646
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89839
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89647
89840
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89648
89841
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89649
89842
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89689,6 +89882,8 @@ interface Routes {
|
|
|
89689
89882
|
acs_credential_id: string;
|
|
89690
89883
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89691
89884
|
acs_user_id?: string | undefined;
|
|
89885
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89886
|
+
user_identity_id?: string | undefined;
|
|
89692
89887
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
89693
89888
|
connected_account_id: string;
|
|
89694
89889
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -89771,7 +89966,7 @@ interface Routes {
|
|
|
89771
89966
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89772
89967
|
warning_code: 'needs_to_be_reissued';
|
|
89773
89968
|
}>;
|
|
89774
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89969
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89775
89970
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89776
89971
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89777
89972
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -102753,7 +102948,7 @@ interface Routes {
|
|
|
102753
102948
|
pending_auto_update: boolean;
|
|
102754
102949
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102755
102950
|
card_format: 'TLCode' | 'rfid48';
|
|
102756
|
-
/**
|
|
102951
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102757
102952
|
card_holder?: string | undefined;
|
|
102758
102953
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102759
102954
|
number_of_issued_cards: number;
|
|
@@ -102769,6 +102964,8 @@ interface Routes {
|
|
|
102769
102964
|
acs_credential_id: string;
|
|
102770
102965
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102771
102966
|
acs_user_id?: string | undefined;
|
|
102967
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102968
|
+
user_identity_id?: string | undefined;
|
|
102772
102969
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102773
102970
|
connected_account_id: string;
|
|
102774
102971
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -102851,7 +103048,7 @@ interface Routes {
|
|
|
102851
103048
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102852
103049
|
warning_code: 'needs_to_be_reissued';
|
|
102853
103050
|
}>;
|
|
102854
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103051
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
102855
103052
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
102856
103053
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
102857
103054
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -102897,6 +103094,8 @@ interface Routes {
|
|
|
102897
103094
|
acs_credential_id: string;
|
|
102898
103095
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102899
103096
|
acs_user_id?: string | undefined;
|
|
103097
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103098
|
+
user_identity_id?: string | undefined;
|
|
102900
103099
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
102901
103100
|
connected_account_id: string;
|
|
102902
103101
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -102979,7 +103178,7 @@ interface Routes {
|
|
|
102979
103178
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102980
103179
|
warning_code: 'needs_to_be_reissued';
|
|
102981
103180
|
}>;
|
|
102982
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103181
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
102983
103182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
102984
103183
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
102985
103184
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103077,6 +103276,8 @@ interface Routes {
|
|
|
103077
103276
|
acs_credential_id: string;
|
|
103078
103277
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103079
103278
|
acs_user_id?: string | undefined;
|
|
103279
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103280
|
+
user_identity_id?: string | undefined;
|
|
103080
103281
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103081
103282
|
connected_account_id: string;
|
|
103082
103283
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103159,7 +103360,7 @@ interface Routes {
|
|
|
103159
103360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103160
103361
|
warning_code: 'needs_to_be_reissued';
|
|
103161
103362
|
}>;
|
|
103162
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103363
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103163
103364
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103164
103365
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103165
103366
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103205,6 +103406,8 @@ interface Routes {
|
|
|
103205
103406
|
acs_credential_id: string;
|
|
103206
103407
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103207
103408
|
acs_user_id?: string | undefined;
|
|
103409
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103410
|
+
user_identity_id?: string | undefined;
|
|
103208
103411
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
103209
103412
|
connected_account_id: string;
|
|
103210
103413
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -103287,7 +103490,7 @@ interface Routes {
|
|
|
103287
103490
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103288
103491
|
warning_code: 'needs_to_be_reissued';
|
|
103289
103492
|
}>;
|
|
103290
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103493
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103291
103494
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103292
103495
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103293
103496
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104005,7 +104208,7 @@ interface Routes {
|
|
|
104005
104208
|
pending_auto_update: boolean;
|
|
104006
104209
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104007
104210
|
card_format: 'TLCode' | 'rfid48';
|
|
104008
|
-
/**
|
|
104211
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104009
104212
|
card_holder?: string | undefined;
|
|
104010
104213
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104011
104214
|
number_of_issued_cards: number;
|
|
@@ -104021,6 +104224,8 @@ interface Routes {
|
|
|
104021
104224
|
acs_credential_id: string;
|
|
104022
104225
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104023
104226
|
acs_user_id?: string | undefined;
|
|
104227
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104228
|
+
user_identity_id?: string | undefined;
|
|
104024
104229
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104025
104230
|
connected_account_id: string;
|
|
104026
104231
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -104103,7 +104308,7 @@ interface Routes {
|
|
|
104103
104308
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104104
104309
|
warning_code: 'needs_to_be_reissued';
|
|
104105
104310
|
}>;
|
|
104106
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104311
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104107
104312
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104108
104313
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104109
104314
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104149,6 +104354,8 @@ interface Routes {
|
|
|
104149
104354
|
acs_credential_id: string;
|
|
104150
104355
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104151
104356
|
acs_user_id?: string | undefined;
|
|
104357
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104358
|
+
user_identity_id?: string | undefined;
|
|
104152
104359
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104153
104360
|
connected_account_id: string;
|
|
104154
104361
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -104231,7 +104438,7 @@ interface Routes {
|
|
|
104231
104438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104232
104439
|
warning_code: 'needs_to_be_reissued';
|
|
104233
104440
|
}>;
|
|
104234
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104441
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104235
104442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104236
104443
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104237
104444
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104329,6 +104536,8 @@ interface Routes {
|
|
|
104329
104536
|
acs_credential_id: string;
|
|
104330
104537
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104331
104538
|
acs_user_id?: string | undefined;
|
|
104539
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104540
|
+
user_identity_id?: string | undefined;
|
|
104332
104541
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104333
104542
|
connected_account_id: string;
|
|
104334
104543
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -104411,7 +104620,7 @@ interface Routes {
|
|
|
104411
104620
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104412
104621
|
warning_code: 'needs_to_be_reissued';
|
|
104413
104622
|
}>;
|
|
104414
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104623
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104415
104624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104416
104625
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104417
104626
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104457,6 +104666,8 @@ interface Routes {
|
|
|
104457
104666
|
acs_credential_id: string;
|
|
104458
104667
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104459
104668
|
acs_user_id?: string | undefined;
|
|
104669
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104670
|
+
user_identity_id?: string | undefined;
|
|
104460
104671
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
104461
104672
|
connected_account_id: string;
|
|
104462
104673
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -104539,7 +104750,7 @@ interface Routes {
|
|
|
104539
104750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104540
104751
|
warning_code: 'needs_to_be_reissued';
|
|
104541
104752
|
}>;
|
|
104542
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104753
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104543
104754
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104544
104755
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104545
104756
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105255,7 +105466,7 @@ interface Routes {
|
|
|
105255
105466
|
pending_auto_update: boolean;
|
|
105256
105467
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105257
105468
|
card_format: 'TLCode' | 'rfid48';
|
|
105258
|
-
/**
|
|
105469
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105259
105470
|
card_holder?: string | undefined;
|
|
105260
105471
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105261
105472
|
number_of_issued_cards: number;
|
|
@@ -105271,6 +105482,8 @@ interface Routes {
|
|
|
105271
105482
|
acs_credential_id: string;
|
|
105272
105483
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105273
105484
|
acs_user_id?: string | undefined;
|
|
105485
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105486
|
+
user_identity_id?: string | undefined;
|
|
105274
105487
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105275
105488
|
connected_account_id: string;
|
|
105276
105489
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -105353,7 +105566,7 @@ interface Routes {
|
|
|
105353
105566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105354
105567
|
warning_code: 'needs_to_be_reissued';
|
|
105355
105568
|
}>;
|
|
105356
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105569
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105357
105570
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105358
105571
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105359
105572
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105399,6 +105612,8 @@ interface Routes {
|
|
|
105399
105612
|
acs_credential_id: string;
|
|
105400
105613
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105401
105614
|
acs_user_id?: string | undefined;
|
|
105615
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105616
|
+
user_identity_id?: string | undefined;
|
|
105402
105617
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105403
105618
|
connected_account_id: string;
|
|
105404
105619
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -105481,7 +105696,7 @@ interface Routes {
|
|
|
105481
105696
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105482
105697
|
warning_code: 'needs_to_be_reissued';
|
|
105483
105698
|
}>;
|
|
105484
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105699
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105485
105700
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105486
105701
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105487
105702
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105579,6 +105794,8 @@ interface Routes {
|
|
|
105579
105794
|
acs_credential_id: string;
|
|
105580
105795
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105581
105796
|
acs_user_id?: string | undefined;
|
|
105797
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105798
|
+
user_identity_id?: string | undefined;
|
|
105582
105799
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105583
105800
|
connected_account_id: string;
|
|
105584
105801
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -105661,7 +105878,7 @@ interface Routes {
|
|
|
105661
105878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105662
105879
|
warning_code: 'needs_to_be_reissued';
|
|
105663
105880
|
}>;
|
|
105664
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105881
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105665
105882
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105666
105883
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105667
105884
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105707,6 +105924,8 @@ interface Routes {
|
|
|
105707
105924
|
acs_credential_id: string;
|
|
105708
105925
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105709
105926
|
acs_user_id?: string | undefined;
|
|
105927
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105928
|
+
user_identity_id?: string | undefined;
|
|
105710
105929
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
105711
105930
|
connected_account_id: string;
|
|
105712
105931
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -105789,7 +106008,7 @@ interface Routes {
|
|
|
105789
106008
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105790
106009
|
warning_code: 'needs_to_be_reissued';
|
|
105791
106010
|
}>;
|
|
105792
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106011
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105793
106012
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105794
106013
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105795
106014
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106507,7 +106726,7 @@ interface Routes {
|
|
|
106507
106726
|
pending_auto_update: boolean;
|
|
106508
106727
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106509
106728
|
card_format: 'TLCode' | 'rfid48';
|
|
106510
|
-
/**
|
|
106729
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106511
106730
|
card_holder?: string | undefined;
|
|
106512
106731
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106513
106732
|
number_of_issued_cards: number;
|
|
@@ -106523,6 +106742,8 @@ interface Routes {
|
|
|
106523
106742
|
acs_credential_id: string;
|
|
106524
106743
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106525
106744
|
acs_user_id?: string | undefined;
|
|
106745
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106746
|
+
user_identity_id?: string | undefined;
|
|
106526
106747
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106527
106748
|
connected_account_id: string;
|
|
106528
106749
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -106605,7 +106826,7 @@ interface Routes {
|
|
|
106605
106826
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106606
106827
|
warning_code: 'needs_to_be_reissued';
|
|
106607
106828
|
}>;
|
|
106608
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106829
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106609
106830
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106610
106831
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
106611
106832
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106651,6 +106872,8 @@ interface Routes {
|
|
|
106651
106872
|
acs_credential_id: string;
|
|
106652
106873
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106653
106874
|
acs_user_id?: string | undefined;
|
|
106875
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106876
|
+
user_identity_id?: string | undefined;
|
|
106654
106877
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106655
106878
|
connected_account_id: string;
|
|
106656
106879
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -106733,7 +106956,7 @@ interface Routes {
|
|
|
106733
106956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106734
106957
|
warning_code: 'needs_to_be_reissued';
|
|
106735
106958
|
}>;
|
|
106736
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106959
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106737
106960
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106738
106961
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
106739
106962
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106831,6 +107054,8 @@ interface Routes {
|
|
|
106831
107054
|
acs_credential_id: string;
|
|
106832
107055
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106833
107056
|
acs_user_id?: string | undefined;
|
|
107057
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
107058
|
+
user_identity_id?: string | undefined;
|
|
106834
107059
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106835
107060
|
connected_account_id: string;
|
|
106836
107061
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -106913,7 +107138,7 @@ interface Routes {
|
|
|
106913
107138
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106914
107139
|
warning_code: 'needs_to_be_reissued';
|
|
106915
107140
|
}>;
|
|
106916
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
107141
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106917
107142
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106918
107143
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
106919
107144
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106959,6 +107184,8 @@ interface Routes {
|
|
|
106959
107184
|
acs_credential_id: string;
|
|
106960
107185
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106961
107186
|
acs_user_id?: string | undefined;
|
|
107187
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
107188
|
+
user_identity_id?: string | undefined;
|
|
106962
107189
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
106963
107190
|
connected_account_id: string;
|
|
106964
107191
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -107041,7 +107268,7 @@ interface Routes {
|
|
|
107041
107268
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107042
107269
|
warning_code: 'needs_to_be_reissued';
|
|
107043
107270
|
}>;
|
|
107044
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
107271
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107045
107272
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
107046
107273
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
107047
107274
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110101,7 +110328,7 @@ interface Routes {
|
|
|
110101
110328
|
pending_auto_update: boolean;
|
|
110102
110329
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110103
110330
|
card_format: 'TLCode' | 'rfid48';
|
|
110104
|
-
/**
|
|
110331
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110105
110332
|
card_holder?: string | undefined;
|
|
110106
110333
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110107
110334
|
number_of_issued_cards: number;
|
|
@@ -110117,6 +110344,8 @@ interface Routes {
|
|
|
110117
110344
|
acs_credential_id: string;
|
|
110118
110345
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110119
110346
|
acs_user_id?: string | undefined;
|
|
110347
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110348
|
+
user_identity_id?: string | undefined;
|
|
110120
110349
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110121
110350
|
connected_account_id: string;
|
|
110122
110351
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -110199,7 +110428,7 @@ interface Routes {
|
|
|
110199
110428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110200
110429
|
warning_code: 'needs_to_be_reissued';
|
|
110201
110430
|
}>;
|
|
110202
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110431
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110203
110432
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110204
110433
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110205
110434
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110245,6 +110474,8 @@ interface Routes {
|
|
|
110245
110474
|
acs_credential_id: string;
|
|
110246
110475
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110247
110476
|
acs_user_id?: string | undefined;
|
|
110477
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110478
|
+
user_identity_id?: string | undefined;
|
|
110248
110479
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110249
110480
|
connected_account_id: string;
|
|
110250
110481
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -110327,7 +110558,7 @@ interface Routes {
|
|
|
110327
110558
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110328
110559
|
warning_code: 'needs_to_be_reissued';
|
|
110329
110560
|
}>;
|
|
110330
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110561
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110331
110562
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110332
110563
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110333
110564
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110425,6 +110656,8 @@ interface Routes {
|
|
|
110425
110656
|
acs_credential_id: string;
|
|
110426
110657
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110427
110658
|
acs_user_id?: string | undefined;
|
|
110659
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110660
|
+
user_identity_id?: string | undefined;
|
|
110428
110661
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110429
110662
|
connected_account_id: string;
|
|
110430
110663
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -110507,7 +110740,7 @@ interface Routes {
|
|
|
110507
110740
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110508
110741
|
warning_code: 'needs_to_be_reissued';
|
|
110509
110742
|
}>;
|
|
110510
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110743
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110511
110744
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110512
110745
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110513
110746
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110553,6 +110786,8 @@ interface Routes {
|
|
|
110553
110786
|
acs_credential_id: string;
|
|
110554
110787
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110555
110788
|
acs_user_id?: string | undefined;
|
|
110789
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110790
|
+
user_identity_id?: string | undefined;
|
|
110556
110791
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
110557
110792
|
connected_account_id: string;
|
|
110558
110793
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -110635,7 +110870,7 @@ interface Routes {
|
|
|
110635
110870
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110636
110871
|
warning_code: 'needs_to_be_reissued';
|
|
110637
110872
|
}>;
|
|
110638
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110873
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110639
110874
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110640
110875
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110641
110876
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111372,7 +111607,7 @@ interface Routes {
|
|
|
111372
111607
|
pending_auto_update: boolean;
|
|
111373
111608
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111374
111609
|
card_format: 'TLCode' | 'rfid48';
|
|
111375
|
-
/**
|
|
111610
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111376
111611
|
card_holder?: string | undefined;
|
|
111377
111612
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111378
111613
|
number_of_issued_cards: number;
|
|
@@ -111388,6 +111623,8 @@ interface Routes {
|
|
|
111388
111623
|
acs_credential_id: string;
|
|
111389
111624
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111390
111625
|
acs_user_id?: string | undefined;
|
|
111626
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111627
|
+
user_identity_id?: string | undefined;
|
|
111391
111628
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111392
111629
|
connected_account_id: string;
|
|
111393
111630
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -111470,7 +111707,7 @@ interface Routes {
|
|
|
111470
111707
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111471
111708
|
warning_code: 'needs_to_be_reissued';
|
|
111472
111709
|
}>;
|
|
111473
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
111710
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111474
111711
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111475
111712
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111476
111713
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111516,6 +111753,8 @@ interface Routes {
|
|
|
111516
111753
|
acs_credential_id: string;
|
|
111517
111754
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111518
111755
|
acs_user_id?: string | undefined;
|
|
111756
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111757
|
+
user_identity_id?: string | undefined;
|
|
111519
111758
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111520
111759
|
connected_account_id: string;
|
|
111521
111760
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -111598,7 +111837,7 @@ interface Routes {
|
|
|
111598
111837
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111599
111838
|
warning_code: 'needs_to_be_reissued';
|
|
111600
111839
|
}>;
|
|
111601
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
111840
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111602
111841
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111603
111842
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111604
111843
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111696,6 +111935,8 @@ interface Routes {
|
|
|
111696
111935
|
acs_credential_id: string;
|
|
111697
111936
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111698
111937
|
acs_user_id?: string | undefined;
|
|
111938
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111939
|
+
user_identity_id?: string | undefined;
|
|
111699
111940
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111700
111941
|
connected_account_id: string;
|
|
111701
111942
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -111778,7 +112019,7 @@ interface Routes {
|
|
|
111778
112019
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111779
112020
|
warning_code: 'needs_to_be_reissued';
|
|
111780
112021
|
}>;
|
|
111781
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
112022
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111782
112023
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111783
112024
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111784
112025
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111824,6 +112065,8 @@ interface Routes {
|
|
|
111824
112065
|
acs_credential_id: string;
|
|
111825
112066
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111826
112067
|
acs_user_id?: string | undefined;
|
|
112068
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112069
|
+
user_identity_id?: string | undefined;
|
|
111827
112070
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
111828
112071
|
connected_account_id: string;
|
|
111829
112072
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -111906,7 +112149,7 @@ interface Routes {
|
|
|
111906
112149
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111907
112150
|
warning_code: 'needs_to_be_reissued';
|
|
111908
112151
|
}>;
|
|
111909
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
112152
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111910
112153
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111911
112154
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111912
112155
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112697,7 +112940,7 @@ interface Routes {
|
|
|
112697
112940
|
pending_auto_update: boolean;
|
|
112698
112941
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112699
112942
|
card_format: 'TLCode' | 'rfid48';
|
|
112700
|
-
/**
|
|
112943
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112701
112944
|
card_holder?: string | undefined;
|
|
112702
112945
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112703
112946
|
number_of_issued_cards: number;
|
|
@@ -112713,6 +112956,8 @@ interface Routes {
|
|
|
112713
112956
|
acs_credential_id: string;
|
|
112714
112957
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112715
112958
|
acs_user_id?: string | undefined;
|
|
112959
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112960
|
+
user_identity_id?: string | undefined;
|
|
112716
112961
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112717
112962
|
connected_account_id: string;
|
|
112718
112963
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112795,7 +113040,7 @@ interface Routes {
|
|
|
112795
113040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112796
113041
|
warning_code: 'needs_to_be_reissued';
|
|
112797
113042
|
}>;
|
|
112798
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113043
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
112799
113044
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
112800
113045
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
112801
113046
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112841,6 +113086,8 @@ interface Routes {
|
|
|
112841
113086
|
acs_credential_id: string;
|
|
112842
113087
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112843
113088
|
acs_user_id?: string | undefined;
|
|
113089
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113090
|
+
user_identity_id?: string | undefined;
|
|
112844
113091
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
112845
113092
|
connected_account_id: string;
|
|
112846
113093
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -112923,7 +113170,7 @@ interface Routes {
|
|
|
112923
113170
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112924
113171
|
warning_code: 'needs_to_be_reissued';
|
|
112925
113172
|
}>;
|
|
112926
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113173
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
112927
113174
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
112928
113175
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
112929
113176
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113021,6 +113268,8 @@ interface Routes {
|
|
|
113021
113268
|
acs_credential_id: string;
|
|
113022
113269
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113023
113270
|
acs_user_id?: string | undefined;
|
|
113271
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113272
|
+
user_identity_id?: string | undefined;
|
|
113024
113273
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113025
113274
|
connected_account_id: string;
|
|
113026
113275
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -113103,7 +113352,7 @@ interface Routes {
|
|
|
113103
113352
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113104
113353
|
warning_code: 'needs_to_be_reissued';
|
|
113105
113354
|
}>;
|
|
113106
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113355
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113107
113356
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113108
113357
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113109
113358
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113149,6 +113398,8 @@ interface Routes {
|
|
|
113149
113398
|
acs_credential_id: string;
|
|
113150
113399
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113151
113400
|
acs_user_id?: string | undefined;
|
|
113401
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113402
|
+
user_identity_id?: string | undefined;
|
|
113152
113403
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
113153
113404
|
connected_account_id: string;
|
|
113154
113405
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -113231,7 +113482,7 @@ interface Routes {
|
|
|
113231
113482
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113232
113483
|
warning_code: 'needs_to_be_reissued';
|
|
113233
113484
|
}>;
|
|
113234
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113485
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113235
113486
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113236
113487
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113237
113488
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -114599,6 +114850,8 @@ interface Routes {
|
|
|
114599
114850
|
acs_credential_id: string;
|
|
114600
114851
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114601
114852
|
acs_user_id?: string | undefined;
|
|
114853
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114854
|
+
user_identity_id?: string | undefined;
|
|
114602
114855
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114603
114856
|
connected_account_id: string;
|
|
114604
114857
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -114681,7 +114934,7 @@ interface Routes {
|
|
|
114681
114934
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114682
114935
|
warning_code: 'needs_to_be_reissued';
|
|
114683
114936
|
}>;
|
|
114684
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
114937
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
114685
114938
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
114686
114939
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
114687
114940
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -114763,6 +115016,8 @@ interface Routes {
|
|
|
114763
115016
|
acs_credentials: Array<{
|
|
114764
115017
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114765
115018
|
acs_user_id?: string | undefined;
|
|
115019
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115020
|
+
user_identity_id?: string | undefined;
|
|
114766
115021
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
114767
115022
|
connected_account_id: string;
|
|
114768
115023
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -114845,7 +115100,7 @@ interface Routes {
|
|
|
114845
115100
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114846
115101
|
warning_code: 'needs_to_be_reissued';
|
|
114847
115102
|
}>;
|
|
114848
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115103
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
114849
115104
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
114850
115105
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
114851
115106
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115326,7 +115581,7 @@ interface Routes {
|
|
|
115326
115581
|
pending_auto_update: boolean;
|
|
115327
115582
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115328
115583
|
card_format: 'TLCode' | 'rfid48';
|
|
115329
|
-
/**
|
|
115584
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115330
115585
|
card_holder?: string | undefined;
|
|
115331
115586
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115332
115587
|
number_of_issued_cards: number;
|
|
@@ -115342,6 +115597,8 @@ interface Routes {
|
|
|
115342
115597
|
acs_credential_id: string;
|
|
115343
115598
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115344
115599
|
acs_user_id?: string | undefined;
|
|
115600
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115601
|
+
user_identity_id?: string | undefined;
|
|
115345
115602
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115346
115603
|
connected_account_id: string;
|
|
115347
115604
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -115424,7 +115681,7 @@ interface Routes {
|
|
|
115424
115681
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115425
115682
|
warning_code: 'needs_to_be_reissued';
|
|
115426
115683
|
}>;
|
|
115427
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115684
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115428
115685
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115429
115686
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115430
115687
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115470,6 +115727,8 @@ interface Routes {
|
|
|
115470
115727
|
acs_credential_id: string;
|
|
115471
115728
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115472
115729
|
acs_user_id?: string | undefined;
|
|
115730
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115731
|
+
user_identity_id?: string | undefined;
|
|
115473
115732
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115474
115733
|
connected_account_id: string;
|
|
115475
115734
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -115552,7 +115811,7 @@ interface Routes {
|
|
|
115552
115811
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115553
115812
|
warning_code: 'needs_to_be_reissued';
|
|
115554
115813
|
}>;
|
|
115555
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115814
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115556
115815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115557
115816
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115558
115817
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115650,6 +115909,8 @@ interface Routes {
|
|
|
115650
115909
|
acs_credential_id: string;
|
|
115651
115910
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115652
115911
|
acs_user_id?: string | undefined;
|
|
115912
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115913
|
+
user_identity_id?: string | undefined;
|
|
115653
115914
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115654
115915
|
connected_account_id: string;
|
|
115655
115916
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -115732,7 +115993,7 @@ interface Routes {
|
|
|
115732
115993
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115733
115994
|
warning_code: 'needs_to_be_reissued';
|
|
115734
115995
|
}>;
|
|
115735
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115996
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115736
115997
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115737
115998
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115738
115999
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115778,6 +116039,8 @@ interface Routes {
|
|
|
115778
116039
|
acs_credential_id: string;
|
|
115779
116040
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115780
116041
|
acs_user_id?: string | undefined;
|
|
116042
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116043
|
+
user_identity_id?: string | undefined;
|
|
115781
116044
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
115782
116045
|
connected_account_id: string;
|
|
115783
116046
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -115860,7 +116123,7 @@ interface Routes {
|
|
|
115860
116123
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115861
116124
|
warning_code: 'needs_to_be_reissued';
|
|
115862
116125
|
}>;
|
|
115863
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
116126
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115864
116127
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115865
116128
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115866
116129
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116582,7 +116845,7 @@ interface Routes {
|
|
|
116582
116845
|
pending_auto_update: boolean;
|
|
116583
116846
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116584
116847
|
card_format: 'TLCode' | 'rfid48';
|
|
116585
|
-
/**
|
|
116848
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116586
116849
|
card_holder?: string | undefined;
|
|
116587
116850
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116588
116851
|
number_of_issued_cards: number;
|
|
@@ -116598,6 +116861,8 @@ interface Routes {
|
|
|
116598
116861
|
acs_credential_id: string;
|
|
116599
116862
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116600
116863
|
acs_user_id?: string | undefined;
|
|
116864
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116865
|
+
user_identity_id?: string | undefined;
|
|
116601
116866
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116602
116867
|
connected_account_id: string;
|
|
116603
116868
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -116680,7 +116945,7 @@ interface Routes {
|
|
|
116680
116945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116681
116946
|
warning_code: 'needs_to_be_reissued';
|
|
116682
116947
|
}>;
|
|
116683
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
116948
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116684
116949
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116685
116950
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
116686
116951
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116726,6 +116991,8 @@ interface Routes {
|
|
|
116726
116991
|
acs_credential_id: string;
|
|
116727
116992
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116728
116993
|
acs_user_id?: string | undefined;
|
|
116994
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116995
|
+
user_identity_id?: string | undefined;
|
|
116729
116996
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116730
116997
|
connected_account_id: string;
|
|
116731
116998
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -116808,7 +117075,7 @@ interface Routes {
|
|
|
116808
117075
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116809
117076
|
warning_code: 'needs_to_be_reissued';
|
|
116810
117077
|
}>;
|
|
116811
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117078
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116812
117079
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116813
117080
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
116814
117081
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116906,6 +117173,8 @@ interface Routes {
|
|
|
116906
117173
|
acs_credential_id: string;
|
|
116907
117174
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116908
117175
|
acs_user_id?: string | undefined;
|
|
117176
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117177
|
+
user_identity_id?: string | undefined;
|
|
116909
117178
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
116910
117179
|
connected_account_id: string;
|
|
116911
117180
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -116988,7 +117257,7 @@ interface Routes {
|
|
|
116988
117257
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116989
117258
|
warning_code: 'needs_to_be_reissued';
|
|
116990
117259
|
}>;
|
|
116991
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117260
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116992
117261
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116993
117262
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
116994
117263
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117034,6 +117303,8 @@ interface Routes {
|
|
|
117034
117303
|
acs_credential_id: string;
|
|
117035
117304
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117036
117305
|
acs_user_id?: string | undefined;
|
|
117306
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117307
|
+
user_identity_id?: string | undefined;
|
|
117037
117308
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117038
117309
|
connected_account_id: string;
|
|
117039
117310
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -117116,7 +117387,7 @@ interface Routes {
|
|
|
117116
117387
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117117
117388
|
warning_code: 'needs_to_be_reissued';
|
|
117118
117389
|
}>;
|
|
117119
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117390
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
117120
117391
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117121
117392
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
117122
117393
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117930,7 +118201,7 @@ interface Routes {
|
|
|
117930
118201
|
pending_auto_update: boolean;
|
|
117931
118202
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
117932
118203
|
card_format: 'TLCode' | 'rfid48';
|
|
117933
|
-
/**
|
|
118204
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
117934
118205
|
card_holder?: string | undefined;
|
|
117935
118206
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
117936
118207
|
number_of_issued_cards: number;
|
|
@@ -117946,6 +118217,8 @@ interface Routes {
|
|
|
117946
118217
|
acs_credential_id: string;
|
|
117947
118218
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117948
118219
|
acs_user_id?: string | undefined;
|
|
118220
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118221
|
+
user_identity_id?: string | undefined;
|
|
117949
118222
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
117950
118223
|
connected_account_id: string;
|
|
117951
118224
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -118028,7 +118301,7 @@ interface Routes {
|
|
|
118028
118301
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118029
118302
|
warning_code: 'needs_to_be_reissued';
|
|
118030
118303
|
}>;
|
|
118031
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118304
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118032
118305
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118033
118306
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118034
118307
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118074,6 +118347,8 @@ interface Routes {
|
|
|
118074
118347
|
acs_credential_id: string;
|
|
118075
118348
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118076
118349
|
acs_user_id?: string | undefined;
|
|
118350
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118351
|
+
user_identity_id?: string | undefined;
|
|
118077
118352
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118078
118353
|
connected_account_id: string;
|
|
118079
118354
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -118156,7 +118431,7 @@ interface Routes {
|
|
|
118156
118431
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118157
118432
|
warning_code: 'needs_to_be_reissued';
|
|
118158
118433
|
}>;
|
|
118159
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118434
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118160
118435
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118161
118436
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118162
118437
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118254,6 +118529,8 @@ interface Routes {
|
|
|
118254
118529
|
acs_credential_id: string;
|
|
118255
118530
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118256
118531
|
acs_user_id?: string | undefined;
|
|
118532
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118533
|
+
user_identity_id?: string | undefined;
|
|
118257
118534
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118258
118535
|
connected_account_id: string;
|
|
118259
118536
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -118336,7 +118613,7 @@ interface Routes {
|
|
|
118336
118613
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118337
118614
|
warning_code: 'needs_to_be_reissued';
|
|
118338
118615
|
}>;
|
|
118339
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118616
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118340
118617
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118341
118618
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118342
118619
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118382,6 +118659,8 @@ interface Routes {
|
|
|
118382
118659
|
acs_credential_id: string;
|
|
118383
118660
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118384
118661
|
acs_user_id?: string | undefined;
|
|
118662
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118663
|
+
user_identity_id?: string | undefined;
|
|
118385
118664
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
118386
118665
|
connected_account_id: string;
|
|
118387
118666
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -118464,7 +118743,7 @@ interface Routes {
|
|
|
118464
118743
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118465
118744
|
warning_code: 'needs_to_be_reissued';
|
|
118466
118745
|
}>;
|
|
118467
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118746
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118468
118747
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118469
118748
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118470
118749
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120341,7 +120620,7 @@ interface Routes {
|
|
|
120341
120620
|
pending_auto_update: boolean;
|
|
120342
120621
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120343
120622
|
card_format: 'TLCode' | 'rfid48';
|
|
120344
|
-
/**
|
|
120623
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120345
120624
|
card_holder?: string | undefined;
|
|
120346
120625
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120347
120626
|
number_of_issued_cards: number;
|
|
@@ -120357,6 +120636,8 @@ interface Routes {
|
|
|
120357
120636
|
acs_credential_id: string;
|
|
120358
120637
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120359
120638
|
acs_user_id?: string | undefined;
|
|
120639
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120640
|
+
user_identity_id?: string | undefined;
|
|
120360
120641
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120361
120642
|
connected_account_id: string;
|
|
120362
120643
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120439,7 +120720,7 @@ interface Routes {
|
|
|
120439
120720
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120440
120721
|
warning_code: 'needs_to_be_reissued';
|
|
120441
120722
|
}>;
|
|
120442
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
120723
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120443
120724
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120444
120725
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120445
120726
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120485,6 +120766,8 @@ interface Routes {
|
|
|
120485
120766
|
acs_credential_id: string;
|
|
120486
120767
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120487
120768
|
acs_user_id?: string | undefined;
|
|
120769
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120770
|
+
user_identity_id?: string | undefined;
|
|
120488
120771
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120489
120772
|
connected_account_id: string;
|
|
120490
120773
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120567,7 +120850,7 @@ interface Routes {
|
|
|
120567
120850
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120568
120851
|
warning_code: 'needs_to_be_reissued';
|
|
120569
120852
|
}>;
|
|
120570
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
120853
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120571
120854
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120572
120855
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120573
120856
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120665,6 +120948,8 @@ interface Routes {
|
|
|
120665
120948
|
acs_credential_id: string;
|
|
120666
120949
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120667
120950
|
acs_user_id?: string | undefined;
|
|
120951
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120952
|
+
user_identity_id?: string | undefined;
|
|
120668
120953
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120669
120954
|
connected_account_id: string;
|
|
120670
120955
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120747,7 +121032,7 @@ interface Routes {
|
|
|
120747
121032
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120748
121033
|
warning_code: 'needs_to_be_reissued';
|
|
120749
121034
|
}>;
|
|
120750
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121035
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120751
121036
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120752
121037
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120753
121038
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120793,6 +121078,8 @@ interface Routes {
|
|
|
120793
121078
|
acs_credential_id: string;
|
|
120794
121079
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120795
121080
|
acs_user_id?: string | undefined;
|
|
121081
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121082
|
+
user_identity_id?: string | undefined;
|
|
120796
121083
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
120797
121084
|
connected_account_id: string;
|
|
120798
121085
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -120875,7 +121162,7 @@ interface Routes {
|
|
|
120875
121162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120876
121163
|
warning_code: 'needs_to_be_reissued';
|
|
120877
121164
|
}>;
|
|
120878
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121165
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120879
121166
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120880
121167
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120881
121168
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121601,7 +121888,7 @@ interface Routes {
|
|
|
121601
121888
|
pending_auto_update: boolean;
|
|
121602
121889
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121603
121890
|
card_format: 'TLCode' | 'rfid48';
|
|
121604
|
-
/**
|
|
121891
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121605
121892
|
card_holder?: string | undefined;
|
|
121606
121893
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121607
121894
|
number_of_issued_cards: number;
|
|
@@ -121617,6 +121904,8 @@ interface Routes {
|
|
|
121617
121904
|
acs_credential_id: string;
|
|
121618
121905
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121619
121906
|
acs_user_id?: string | undefined;
|
|
121907
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121908
|
+
user_identity_id?: string | undefined;
|
|
121620
121909
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121621
121910
|
connected_account_id: string;
|
|
121622
121911
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -121699,7 +121988,7 @@ interface Routes {
|
|
|
121699
121988
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121700
121989
|
warning_code: 'needs_to_be_reissued';
|
|
121701
121990
|
}>;
|
|
121702
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121991
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
121703
121992
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121704
121993
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
121705
121994
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121745,6 +122034,8 @@ interface Routes {
|
|
|
121745
122034
|
acs_credential_id: string;
|
|
121746
122035
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121747
122036
|
acs_user_id?: string | undefined;
|
|
122037
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122038
|
+
user_identity_id?: string | undefined;
|
|
121748
122039
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121749
122040
|
connected_account_id: string;
|
|
121750
122041
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -121827,7 +122118,7 @@ interface Routes {
|
|
|
121827
122118
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121828
122119
|
warning_code: 'needs_to_be_reissued';
|
|
121829
122120
|
}>;
|
|
121830
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122121
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
121831
122122
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121832
122123
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
121833
122124
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121925,6 +122216,8 @@ interface Routes {
|
|
|
121925
122216
|
acs_credential_id: string;
|
|
121926
122217
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121927
122218
|
acs_user_id?: string | undefined;
|
|
122219
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122220
|
+
user_identity_id?: string | undefined;
|
|
121928
122221
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
121929
122222
|
connected_account_id: string;
|
|
121930
122223
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -122007,7 +122300,7 @@ interface Routes {
|
|
|
122007
122300
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122008
122301
|
warning_code: 'needs_to_be_reissued';
|
|
122009
122302
|
}>;
|
|
122010
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122303
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122011
122304
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122012
122305
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
122013
122306
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122053,6 +122346,8 @@ interface Routes {
|
|
|
122053
122346
|
acs_credential_id: string;
|
|
122054
122347
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122055
122348
|
acs_user_id?: string | undefined;
|
|
122349
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122350
|
+
user_identity_id?: string | undefined;
|
|
122056
122351
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
122057
122352
|
connected_account_id: string;
|
|
122058
122353
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -122135,7 +122430,7 @@ interface Routes {
|
|
|
122135
122430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122136
122431
|
warning_code: 'needs_to_be_reissued';
|
|
122137
122432
|
}>;
|
|
122138
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122433
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122139
122434
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122140
122435
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
122141
122436
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125150,7 +125445,7 @@ interface Routes {
|
|
|
125150
125445
|
pending_auto_update: boolean;
|
|
125151
125446
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125152
125447
|
card_format: 'TLCode' | 'rfid48';
|
|
125153
|
-
/**
|
|
125448
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125154
125449
|
card_holder?: string | undefined;
|
|
125155
125450
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125156
125451
|
number_of_issued_cards: number;
|
|
@@ -125166,6 +125461,8 @@ interface Routes {
|
|
|
125166
125461
|
acs_credential_id: string;
|
|
125167
125462
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125168
125463
|
acs_user_id?: string | undefined;
|
|
125464
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125465
|
+
user_identity_id?: string | undefined;
|
|
125169
125466
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125170
125467
|
connected_account_id: string;
|
|
125171
125468
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -125248,7 +125545,7 @@ interface Routes {
|
|
|
125248
125545
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125249
125546
|
warning_code: 'needs_to_be_reissued';
|
|
125250
125547
|
}>;
|
|
125251
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125548
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125252
125549
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125253
125550
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125254
125551
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125294,6 +125591,8 @@ interface Routes {
|
|
|
125294
125591
|
acs_credential_id: string;
|
|
125295
125592
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125296
125593
|
acs_user_id?: string | undefined;
|
|
125594
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125595
|
+
user_identity_id?: string | undefined;
|
|
125297
125596
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125298
125597
|
connected_account_id: string;
|
|
125299
125598
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -125376,7 +125675,7 @@ interface Routes {
|
|
|
125376
125675
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125377
125676
|
warning_code: 'needs_to_be_reissued';
|
|
125378
125677
|
}>;
|
|
125379
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125678
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125380
125679
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125381
125680
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125382
125681
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125474,6 +125773,8 @@ interface Routes {
|
|
|
125474
125773
|
acs_credential_id: string;
|
|
125475
125774
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125476
125775
|
acs_user_id?: string | undefined;
|
|
125776
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125777
|
+
user_identity_id?: string | undefined;
|
|
125477
125778
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125478
125779
|
connected_account_id: string;
|
|
125479
125780
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -125556,7 +125857,7 @@ interface Routes {
|
|
|
125556
125857
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125557
125858
|
warning_code: 'needs_to_be_reissued';
|
|
125558
125859
|
}>;
|
|
125559
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125860
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125560
125861
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125561
125862
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125562
125863
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125602,6 +125903,8 @@ interface Routes {
|
|
|
125602
125903
|
acs_credential_id: string;
|
|
125603
125904
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125604
125905
|
acs_user_id?: string | undefined;
|
|
125906
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125907
|
+
user_identity_id?: string | undefined;
|
|
125605
125908
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
125606
125909
|
connected_account_id: string;
|
|
125607
125910
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -125684,7 +125987,7 @@ interface Routes {
|
|
|
125684
125987
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125685
125988
|
warning_code: 'needs_to_be_reissued';
|
|
125686
125989
|
}>;
|
|
125687
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125990
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125688
125991
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125689
125992
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125690
125993
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -126599,7 +126902,7 @@ interface Routes {
|
|
|
126599
126902
|
pending_auto_update: boolean;
|
|
126600
126903
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126601
126904
|
card_format: 'TLCode' | 'rfid48';
|
|
126602
|
-
/**
|
|
126905
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126603
126906
|
card_holder?: string | undefined;
|
|
126604
126907
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126605
126908
|
number_of_issued_cards: number;
|
|
@@ -126615,6 +126918,8 @@ interface Routes {
|
|
|
126615
126918
|
acs_credential_id: string;
|
|
126616
126919
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126617
126920
|
acs_user_id?: string | undefined;
|
|
126921
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126922
|
+
user_identity_id?: string | undefined;
|
|
126618
126923
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126619
126924
|
connected_account_id: string;
|
|
126620
126925
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -126697,7 +127002,7 @@ interface Routes {
|
|
|
126697
127002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126698
127003
|
warning_code: 'needs_to_be_reissued';
|
|
126699
127004
|
}>;
|
|
126700
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127005
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
126701
127006
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
126702
127007
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
126703
127008
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -126743,6 +127048,8 @@ interface Routes {
|
|
|
126743
127048
|
acs_credential_id: string;
|
|
126744
127049
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126745
127050
|
acs_user_id?: string | undefined;
|
|
127051
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127052
|
+
user_identity_id?: string | undefined;
|
|
126746
127053
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126747
127054
|
connected_account_id: string;
|
|
126748
127055
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -126825,7 +127132,7 @@ interface Routes {
|
|
|
126825
127132
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126826
127133
|
warning_code: 'needs_to_be_reissued';
|
|
126827
127134
|
}>;
|
|
126828
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127135
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
126829
127136
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
126830
127137
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
126831
127138
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -126923,6 +127230,8 @@ interface Routes {
|
|
|
126923
127230
|
acs_credential_id: string;
|
|
126924
127231
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126925
127232
|
acs_user_id?: string | undefined;
|
|
127233
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127234
|
+
user_identity_id?: string | undefined;
|
|
126926
127235
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
126927
127236
|
connected_account_id: string;
|
|
126928
127237
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -127005,7 +127314,7 @@ interface Routes {
|
|
|
127005
127314
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127006
127315
|
warning_code: 'needs_to_be_reissued';
|
|
127007
127316
|
}>;
|
|
127008
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127317
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127009
127318
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127010
127319
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127011
127320
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127051,6 +127360,8 @@ interface Routes {
|
|
|
127051
127360
|
acs_credential_id: string;
|
|
127052
127361
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127053
127362
|
acs_user_id?: string | undefined;
|
|
127363
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127364
|
+
user_identity_id?: string | undefined;
|
|
127054
127365
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127055
127366
|
connected_account_id: string;
|
|
127056
127367
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -127133,7 +127444,7 @@ interface Routes {
|
|
|
127133
127444
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127134
127445
|
warning_code: 'needs_to_be_reissued';
|
|
127135
127446
|
}>;
|
|
127136
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127447
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127137
127448
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127138
127449
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127139
127450
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127878,7 +128189,7 @@ interface Routes {
|
|
|
127878
128189
|
pending_auto_update: boolean;
|
|
127879
128190
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
127880
128191
|
card_format: 'TLCode' | 'rfid48';
|
|
127881
|
-
/**
|
|
128192
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
127882
128193
|
card_holder?: string | undefined;
|
|
127883
128194
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
127884
128195
|
number_of_issued_cards: number;
|
|
@@ -127894,6 +128205,8 @@ interface Routes {
|
|
|
127894
128205
|
acs_credential_id: string;
|
|
127895
128206
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127896
128207
|
acs_user_id?: string | undefined;
|
|
128208
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128209
|
+
user_identity_id?: string | undefined;
|
|
127897
128210
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
127898
128211
|
connected_account_id: string;
|
|
127899
128212
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -127976,7 +128289,7 @@ interface Routes {
|
|
|
127976
128289
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127977
128290
|
warning_code: 'needs_to_be_reissued';
|
|
127978
128291
|
}>;
|
|
127979
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128292
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127980
128293
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127981
128294
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127982
128295
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128022,6 +128335,8 @@ interface Routes {
|
|
|
128022
128335
|
acs_credential_id: string;
|
|
128023
128336
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128024
128337
|
acs_user_id?: string | undefined;
|
|
128338
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128339
|
+
user_identity_id?: string | undefined;
|
|
128025
128340
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128026
128341
|
connected_account_id: string;
|
|
128027
128342
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -128104,7 +128419,7 @@ interface Routes {
|
|
|
128104
128419
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128105
128420
|
warning_code: 'needs_to_be_reissued';
|
|
128106
128421
|
}>;
|
|
128107
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128422
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128108
128423
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128109
128424
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128110
128425
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128202,6 +128517,8 @@ interface Routes {
|
|
|
128202
128517
|
acs_credential_id: string;
|
|
128203
128518
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128204
128519
|
acs_user_id?: string | undefined;
|
|
128520
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128521
|
+
user_identity_id?: string | undefined;
|
|
128205
128522
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128206
128523
|
connected_account_id: string;
|
|
128207
128524
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -128284,7 +128601,7 @@ interface Routes {
|
|
|
128284
128601
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128285
128602
|
warning_code: 'needs_to_be_reissued';
|
|
128286
128603
|
}>;
|
|
128287
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128604
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128288
128605
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128289
128606
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128290
128607
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128330,6 +128647,8 @@ interface Routes {
|
|
|
128330
128647
|
acs_credential_id: string;
|
|
128331
128648
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128332
128649
|
acs_user_id?: string | undefined;
|
|
128650
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128651
|
+
user_identity_id?: string | undefined;
|
|
128333
128652
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
128334
128653
|
connected_account_id: string;
|
|
128335
128654
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -128412,7 +128731,7 @@ interface Routes {
|
|
|
128412
128731
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128413
128732
|
warning_code: 'needs_to_be_reissued';
|
|
128414
128733
|
}>;
|
|
128415
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128734
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128416
128735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128417
128736
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128418
128737
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129258,7 +129577,7 @@ interface Routes {
|
|
|
129258
129577
|
pending_auto_update: boolean;
|
|
129259
129578
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129260
129579
|
card_format: 'TLCode' | 'rfid48';
|
|
129261
|
-
/**
|
|
129580
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129262
129581
|
card_holder?: string | undefined;
|
|
129263
129582
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129264
129583
|
number_of_issued_cards: number;
|
|
@@ -129274,6 +129593,8 @@ interface Routes {
|
|
|
129274
129593
|
acs_credential_id: string;
|
|
129275
129594
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129276
129595
|
acs_user_id?: string | undefined;
|
|
129596
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129597
|
+
user_identity_id?: string | undefined;
|
|
129277
129598
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129278
129599
|
connected_account_id: string;
|
|
129279
129600
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129356,7 +129677,7 @@ interface Routes {
|
|
|
129356
129677
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129357
129678
|
warning_code: 'needs_to_be_reissued';
|
|
129358
129679
|
}>;
|
|
129359
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129680
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129360
129681
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129361
129682
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129362
129683
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129402,6 +129723,8 @@ interface Routes {
|
|
|
129402
129723
|
acs_credential_id: string;
|
|
129403
129724
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129404
129725
|
acs_user_id?: string | undefined;
|
|
129726
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129727
|
+
user_identity_id?: string | undefined;
|
|
129405
129728
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129406
129729
|
connected_account_id: string;
|
|
129407
129730
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129484,7 +129807,7 @@ interface Routes {
|
|
|
129484
129807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129485
129808
|
warning_code: 'needs_to_be_reissued';
|
|
129486
129809
|
}>;
|
|
129487
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129810
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129488
129811
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129489
129812
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129490
129813
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129582,6 +129905,8 @@ interface Routes {
|
|
|
129582
129905
|
acs_credential_id: string;
|
|
129583
129906
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129584
129907
|
acs_user_id?: string | undefined;
|
|
129908
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129909
|
+
user_identity_id?: string | undefined;
|
|
129585
129910
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129586
129911
|
connected_account_id: string;
|
|
129587
129912
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129664,7 +129989,7 @@ interface Routes {
|
|
|
129664
129989
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129665
129990
|
warning_code: 'needs_to_be_reissued';
|
|
129666
129991
|
}>;
|
|
129667
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129992
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129668
129993
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129669
129994
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129670
129995
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129710,6 +130035,8 @@ interface Routes {
|
|
|
129710
130035
|
acs_credential_id: string;
|
|
129711
130036
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129712
130037
|
acs_user_id?: string | undefined;
|
|
130038
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
130039
|
+
user_identity_id?: string | undefined;
|
|
129713
130040
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
129714
130041
|
connected_account_id: string;
|
|
129715
130042
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129792,7 +130119,7 @@ interface Routes {
|
|
|
129792
130119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129793
130120
|
warning_code: 'needs_to_be_reissued';
|
|
129794
130121
|
}>;
|
|
129795
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
130122
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129796
130123
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129797
130124
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129798
130125
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -131065,12 +131392,18 @@ interface Routes {
|
|
|
131065
131392
|
created_at: string;
|
|
131066
131393
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131067
131394
|
workspace_id: string;
|
|
131068
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131395
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131069
131396
|
errors: Array<{
|
|
131070
131397
|
/** Date and time at which Seam created the error. */
|
|
131071
131398
|
created_at: string;
|
|
131072
131399
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131073
131400
|
message: string;
|
|
131401
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131402
|
+
error_code: 'issue_with_acs_user';
|
|
131403
|
+
/** ID of the access system user that has an issue. */
|
|
131404
|
+
acs_user_id: string;
|
|
131405
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131406
|
+
acs_system_id: string;
|
|
131074
131407
|
}>;
|
|
131075
131408
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131076
131409
|
warnings: Array<{
|
|
@@ -131119,14 +131452,14 @@ interface Routes {
|
|
|
131119
131452
|
};
|
|
131120
131453
|
formData: {};
|
|
131121
131454
|
jsonResponse: {
|
|
131122
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131455
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access/).
|
|
131123
131456
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
131124
131457
|
enrollment_automation: {
|
|
131125
131458
|
/** ID of the enrollment automation. */
|
|
131126
131459
|
enrollment_automation_id: string;
|
|
131127
131460
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131128
131461
|
credential_manager_acs_system_id: string;
|
|
131129
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131462
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131130
131463
|
user_identity_id: string;
|
|
131131
131464
|
/** Date and time at which the enrollment automation was created. */
|
|
131132
131465
|
created_at: string;
|
|
@@ -131154,14 +131487,14 @@ interface Routes {
|
|
|
131154
131487
|
};
|
|
131155
131488
|
formData: {};
|
|
131156
131489
|
jsonResponse: {
|
|
131157
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131490
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access/).
|
|
131158
131491
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
131159
131492
|
enrollment_automation: {
|
|
131160
131493
|
/** ID of the enrollment automation. */
|
|
131161
131494
|
enrollment_automation_id: string;
|
|
131162
131495
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131163
131496
|
credential_manager_acs_system_id: string;
|
|
131164
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131497
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131165
131498
|
user_identity_id: string;
|
|
131166
131499
|
/** Date and time at which the enrollment automation was created. */
|
|
131167
131500
|
created_at: string;
|
|
@@ -131186,7 +131519,7 @@ interface Routes {
|
|
|
131186
131519
|
enrollment_automation_id: string;
|
|
131187
131520
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131188
131521
|
credential_manager_acs_system_id: string;
|
|
131189
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131522
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131190
131523
|
user_identity_id: string;
|
|
131191
131524
|
/** Date and time at which the enrollment automation was created. */
|
|
131192
131525
|
created_at: string;
|
|
@@ -131258,12 +131591,18 @@ interface Routes {
|
|
|
131258
131591
|
created_at: string;
|
|
131259
131592
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131260
131593
|
workspace_id: string;
|
|
131261
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131594
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131262
131595
|
errors: Array<{
|
|
131263
131596
|
/** Date and time at which Seam created the error. */
|
|
131264
131597
|
created_at: string;
|
|
131265
131598
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131266
131599
|
message: string;
|
|
131600
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131601
|
+
error_code: 'issue_with_acs_user';
|
|
131602
|
+
/** ID of the access system user that has an issue. */
|
|
131603
|
+
acs_user_id: string;
|
|
131604
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131605
|
+
acs_system_id: string;
|
|
131267
131606
|
}>;
|
|
131268
131607
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131269
131608
|
warnings: Array<{
|
|
@@ -131319,12 +131658,18 @@ interface Routes {
|
|
|
131319
131658
|
created_at: string;
|
|
131320
131659
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131321
131660
|
workspace_id: string;
|
|
131322
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131661
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131323
131662
|
errors: Array<{
|
|
131324
131663
|
/** Date and time at which Seam created the error. */
|
|
131325
131664
|
created_at: string;
|
|
131326
131665
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131327
131666
|
message: string;
|
|
131667
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131668
|
+
error_code: 'issue_with_acs_user';
|
|
131669
|
+
/** ID of the access system user that has an issue. */
|
|
131670
|
+
acs_user_id: string;
|
|
131671
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131672
|
+
acs_system_id: string;
|
|
131328
131673
|
}>;
|
|
131329
131674
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131330
131675
|
warnings: Array<{
|
|
@@ -134376,7 +134721,7 @@ interface Routes {
|
|
|
134376
134721
|
pending_auto_update: boolean;
|
|
134377
134722
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134378
134723
|
card_format: 'TLCode' | 'rfid48';
|
|
134379
|
-
/**
|
|
134724
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134380
134725
|
card_holder?: string | undefined;
|
|
134381
134726
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134382
134727
|
number_of_issued_cards: number;
|
|
@@ -134392,6 +134737,8 @@ interface Routes {
|
|
|
134392
134737
|
acs_credential_id: string;
|
|
134393
134738
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134394
134739
|
acs_user_id?: string | undefined;
|
|
134740
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134741
|
+
user_identity_id?: string | undefined;
|
|
134395
134742
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134396
134743
|
connected_account_id: string;
|
|
134397
134744
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -134474,7 +134821,7 @@ interface Routes {
|
|
|
134474
134821
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134475
134822
|
warning_code: 'needs_to_be_reissued';
|
|
134476
134823
|
}>;
|
|
134477
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
134824
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134478
134825
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134479
134826
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134480
134827
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -134520,6 +134867,8 @@ interface Routes {
|
|
|
134520
134867
|
acs_credential_id: string;
|
|
134521
134868
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134522
134869
|
acs_user_id?: string | undefined;
|
|
134870
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134871
|
+
user_identity_id?: string | undefined;
|
|
134523
134872
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134524
134873
|
connected_account_id: string;
|
|
134525
134874
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -134602,7 +134951,7 @@ interface Routes {
|
|
|
134602
134951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134603
134952
|
warning_code: 'needs_to_be_reissued';
|
|
134604
134953
|
}>;
|
|
134605
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
134954
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134606
134955
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134607
134956
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134608
134957
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -134700,6 +135049,8 @@ interface Routes {
|
|
|
134700
135049
|
acs_credential_id: string;
|
|
134701
135050
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134702
135051
|
acs_user_id?: string | undefined;
|
|
135052
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135053
|
+
user_identity_id?: string | undefined;
|
|
134703
135054
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134704
135055
|
connected_account_id: string;
|
|
134705
135056
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -134782,7 +135133,7 @@ interface Routes {
|
|
|
134782
135133
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134783
135134
|
warning_code: 'needs_to_be_reissued';
|
|
134784
135135
|
}>;
|
|
134785
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
135136
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134786
135137
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134787
135138
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134788
135139
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -134828,6 +135179,8 @@ interface Routes {
|
|
|
134828
135179
|
acs_credential_id: string;
|
|
134829
135180
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134830
135181
|
acs_user_id?: string | undefined;
|
|
135182
|
+
/** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
135183
|
+
user_identity_id?: string | undefined;
|
|
134831
135184
|
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
134832
135185
|
connected_account_id: string;
|
|
134833
135186
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -134910,7 +135263,7 @@ interface Routes {
|
|
|
134910
135263
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134911
135264
|
warning_code: 'needs_to_be_reissued';
|
|
134912
135265
|
}>;
|
|
134913
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
135266
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134914
135267
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134915
135268
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134916
135269
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|