@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
|
@@ -172,7 +172,7 @@ export interface Routes {
|
|
|
172
172
|
pending_auto_update: boolean;
|
|
173
173
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
174
174
|
card_format: 'TLCode' | 'rfid48';
|
|
175
|
-
/**
|
|
175
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
176
176
|
card_holder?: string | undefined;
|
|
177
177
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
178
178
|
number_of_issued_cards: number;
|
|
@@ -188,6 +188,8 @@ export interface Routes {
|
|
|
188
188
|
acs_credential_id: string;
|
|
189
189
|
/** 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. */
|
|
190
190
|
acs_user_id?: string | undefined;
|
|
191
|
+
/** 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. */
|
|
192
|
+
user_identity_id?: string | undefined;
|
|
191
193
|
/** 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. */
|
|
192
194
|
connected_account_id: string;
|
|
193
195
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -270,7 +272,7 @@ export interface Routes {
|
|
|
270
272
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
271
273
|
warning_code: 'needs_to_be_reissued';
|
|
272
274
|
}>;
|
|
273
|
-
/** 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
|
|
275
|
+
/** 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). */
|
|
274
276
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
275
277
|
/** 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. */
|
|
276
278
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -316,6 +318,8 @@ export interface Routes {
|
|
|
316
318
|
acs_credential_id: string;
|
|
317
319
|
/** 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. */
|
|
318
320
|
acs_user_id?: string | undefined;
|
|
321
|
+
/** 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. */
|
|
322
|
+
user_identity_id?: string | undefined;
|
|
319
323
|
/** 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. */
|
|
320
324
|
connected_account_id: string;
|
|
321
325
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -398,7 +402,7 @@ export interface Routes {
|
|
|
398
402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
399
403
|
warning_code: 'needs_to_be_reissued';
|
|
400
404
|
}>;
|
|
401
|
-
/** 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
|
|
405
|
+
/** 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). */
|
|
402
406
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
403
407
|
/** 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. */
|
|
404
408
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -496,6 +500,8 @@ export interface Routes {
|
|
|
496
500
|
acs_credential_id: string;
|
|
497
501
|
/** 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. */
|
|
498
502
|
acs_user_id?: string | undefined;
|
|
503
|
+
/** 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. */
|
|
504
|
+
user_identity_id?: string | undefined;
|
|
499
505
|
/** 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. */
|
|
500
506
|
connected_account_id: string;
|
|
501
507
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -578,7 +584,7 @@ export interface Routes {
|
|
|
578
584
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
579
585
|
warning_code: 'needs_to_be_reissued';
|
|
580
586
|
}>;
|
|
581
|
-
/** 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
|
|
587
|
+
/** 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). */
|
|
582
588
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
583
589
|
/** 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. */
|
|
584
590
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -624,6 +630,8 @@ export interface Routes {
|
|
|
624
630
|
acs_credential_id: string;
|
|
625
631
|
/** 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. */
|
|
626
632
|
acs_user_id?: string | undefined;
|
|
633
|
+
/** 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. */
|
|
634
|
+
user_identity_id?: string | undefined;
|
|
627
635
|
/** 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. */
|
|
628
636
|
connected_account_id: string;
|
|
629
637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -706,7 +714,7 @@ export interface Routes {
|
|
|
706
714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
707
715
|
warning_code: 'needs_to_be_reissued';
|
|
708
716
|
}>;
|
|
709
|
-
/** 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
|
|
717
|
+
/** 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). */
|
|
710
718
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
711
719
|
/** 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. */
|
|
712
720
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -2492,7 +2500,7 @@ export interface Routes {
|
|
|
2492
2500
|
pending_auto_update: boolean;
|
|
2493
2501
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2494
2502
|
card_format: 'TLCode' | 'rfid48';
|
|
2495
|
-
/**
|
|
2503
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2496
2504
|
card_holder?: string | undefined;
|
|
2497
2505
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2498
2506
|
number_of_issued_cards: number;
|
|
@@ -2508,6 +2516,8 @@ export interface Routes {
|
|
|
2508
2516
|
acs_credential_id: string;
|
|
2509
2517
|
/** 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. */
|
|
2510
2518
|
acs_user_id?: string | undefined;
|
|
2519
|
+
/** 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. */
|
|
2520
|
+
user_identity_id?: string | undefined;
|
|
2511
2521
|
/** 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. */
|
|
2512
2522
|
connected_account_id: string;
|
|
2513
2523
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2590,7 +2600,7 @@ export interface Routes {
|
|
|
2590
2600
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2591
2601
|
warning_code: 'needs_to_be_reissued';
|
|
2592
2602
|
}>;
|
|
2593
|
-
/** 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
|
|
2603
|
+
/** 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). */
|
|
2594
2604
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2595
2605
|
/** 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. */
|
|
2596
2606
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -2636,6 +2646,8 @@ export interface Routes {
|
|
|
2636
2646
|
acs_credential_id: string;
|
|
2637
2647
|
/** 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. */
|
|
2638
2648
|
acs_user_id?: string | undefined;
|
|
2649
|
+
/** 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. */
|
|
2650
|
+
user_identity_id?: string | undefined;
|
|
2639
2651
|
/** 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. */
|
|
2640
2652
|
connected_account_id: string;
|
|
2641
2653
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2718,7 +2730,7 @@ export interface Routes {
|
|
|
2718
2730
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2719
2731
|
warning_code: 'needs_to_be_reissued';
|
|
2720
2732
|
}>;
|
|
2721
|
-
/** 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
|
|
2733
|
+
/** 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). */
|
|
2722
2734
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2723
2735
|
/** 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. */
|
|
2724
2736
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -2816,6 +2828,8 @@ export interface Routes {
|
|
|
2816
2828
|
acs_credential_id: string;
|
|
2817
2829
|
/** 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. */
|
|
2818
2830
|
acs_user_id?: string | undefined;
|
|
2831
|
+
/** 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. */
|
|
2832
|
+
user_identity_id?: string | undefined;
|
|
2819
2833
|
/** 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. */
|
|
2820
2834
|
connected_account_id: string;
|
|
2821
2835
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2898,7 +2912,7 @@ export interface Routes {
|
|
|
2898
2912
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2899
2913
|
warning_code: 'needs_to_be_reissued';
|
|
2900
2914
|
}>;
|
|
2901
|
-
/** 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
|
|
2915
|
+
/** 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). */
|
|
2902
2916
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2903
2917
|
/** 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. */
|
|
2904
2918
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -2944,6 +2958,8 @@ export interface Routes {
|
|
|
2944
2958
|
acs_credential_id: string;
|
|
2945
2959
|
/** 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. */
|
|
2946
2960
|
acs_user_id?: string | undefined;
|
|
2961
|
+
/** 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. */
|
|
2962
|
+
user_identity_id?: string | undefined;
|
|
2947
2963
|
/** 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. */
|
|
2948
2964
|
connected_account_id: string;
|
|
2949
2965
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -3026,7 +3042,7 @@ export interface Routes {
|
|
|
3026
3042
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3027
3043
|
warning_code: 'needs_to_be_reissued';
|
|
3028
3044
|
}>;
|
|
3029
|
-
/** 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
|
|
3045
|
+
/** 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). */
|
|
3030
3046
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3031
3047
|
/** 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. */
|
|
3032
3048
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -6416,7 +6432,7 @@ export interface Routes {
|
|
|
6416
6432
|
pending_auto_update: boolean;
|
|
6417
6433
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6418
6434
|
card_format: 'TLCode' | 'rfid48';
|
|
6419
|
-
/**
|
|
6435
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6420
6436
|
card_holder?: string | undefined;
|
|
6421
6437
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6422
6438
|
number_of_issued_cards: number;
|
|
@@ -6432,6 +6448,8 @@ export interface Routes {
|
|
|
6432
6448
|
acs_credential_id: string;
|
|
6433
6449
|
/** 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. */
|
|
6434
6450
|
acs_user_id?: string | undefined;
|
|
6451
|
+
/** 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. */
|
|
6452
|
+
user_identity_id?: string | undefined;
|
|
6435
6453
|
/** 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. */
|
|
6436
6454
|
connected_account_id: string;
|
|
6437
6455
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6514,7 +6532,7 @@ export interface Routes {
|
|
|
6514
6532
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6515
6533
|
warning_code: 'needs_to_be_reissued';
|
|
6516
6534
|
}>;
|
|
6517
|
-
/** 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
|
|
6535
|
+
/** 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). */
|
|
6518
6536
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6519
6537
|
/** 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. */
|
|
6520
6538
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -6560,6 +6578,8 @@ export interface Routes {
|
|
|
6560
6578
|
acs_credential_id: string;
|
|
6561
6579
|
/** 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. */
|
|
6562
6580
|
acs_user_id?: string | undefined;
|
|
6581
|
+
/** 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. */
|
|
6582
|
+
user_identity_id?: string | undefined;
|
|
6563
6583
|
/** 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. */
|
|
6564
6584
|
connected_account_id: string;
|
|
6565
6585
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6642,7 +6662,7 @@ export interface Routes {
|
|
|
6642
6662
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6643
6663
|
warning_code: 'needs_to_be_reissued';
|
|
6644
6664
|
}>;
|
|
6645
|
-
/** 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
|
|
6665
|
+
/** 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). */
|
|
6646
6666
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6647
6667
|
/** 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. */
|
|
6648
6668
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -6740,6 +6760,8 @@ export interface Routes {
|
|
|
6740
6760
|
acs_credential_id: string;
|
|
6741
6761
|
/** 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. */
|
|
6742
6762
|
acs_user_id?: string | undefined;
|
|
6763
|
+
/** 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. */
|
|
6764
|
+
user_identity_id?: string | undefined;
|
|
6743
6765
|
/** 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. */
|
|
6744
6766
|
connected_account_id: string;
|
|
6745
6767
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6822,7 +6844,7 @@ export interface Routes {
|
|
|
6822
6844
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6823
6845
|
warning_code: 'needs_to_be_reissued';
|
|
6824
6846
|
}>;
|
|
6825
|
-
/** 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
|
|
6847
|
+
/** 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). */
|
|
6826
6848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6827
6849
|
/** 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. */
|
|
6828
6850
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -6868,6 +6890,8 @@ export interface Routes {
|
|
|
6868
6890
|
acs_credential_id: string;
|
|
6869
6891
|
/** 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. */
|
|
6870
6892
|
acs_user_id?: string | undefined;
|
|
6893
|
+
/** 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. */
|
|
6894
|
+
user_identity_id?: string | undefined;
|
|
6871
6895
|
/** 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. */
|
|
6872
6896
|
connected_account_id: string;
|
|
6873
6897
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -6950,7 +6974,7 @@ export interface Routes {
|
|
|
6950
6974
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6951
6975
|
warning_code: 'needs_to_be_reissued';
|
|
6952
6976
|
}>;
|
|
6953
|
-
/** 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
|
|
6977
|
+
/** 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). */
|
|
6954
6978
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
6955
6979
|
/** 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. */
|
|
6956
6980
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -8744,7 +8768,7 @@ export interface Routes {
|
|
|
8744
8768
|
pending_auto_update: boolean;
|
|
8745
8769
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8746
8770
|
card_format: 'TLCode' | 'rfid48';
|
|
8747
|
-
/**
|
|
8771
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8748
8772
|
card_holder?: string | undefined;
|
|
8749
8773
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8750
8774
|
number_of_issued_cards: number;
|
|
@@ -8760,6 +8784,8 @@ export interface Routes {
|
|
|
8760
8784
|
acs_credential_id: string;
|
|
8761
8785
|
/** 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. */
|
|
8762
8786
|
acs_user_id?: string | undefined;
|
|
8787
|
+
/** 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. */
|
|
8788
|
+
user_identity_id?: string | undefined;
|
|
8763
8789
|
/** 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. */
|
|
8764
8790
|
connected_account_id: string;
|
|
8765
8791
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8842,7 +8868,7 @@ export interface Routes {
|
|
|
8842
8868
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8843
8869
|
warning_code: 'needs_to_be_reissued';
|
|
8844
8870
|
}>;
|
|
8845
|
-
/** 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
|
|
8871
|
+
/** 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). */
|
|
8846
8872
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8847
8873
|
/** 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. */
|
|
8848
8874
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -8888,6 +8914,8 @@ export interface Routes {
|
|
|
8888
8914
|
acs_credential_id: string;
|
|
8889
8915
|
/** 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. */
|
|
8890
8916
|
acs_user_id?: string | undefined;
|
|
8917
|
+
/** 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. */
|
|
8918
|
+
user_identity_id?: string | undefined;
|
|
8891
8919
|
/** 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. */
|
|
8892
8920
|
connected_account_id: string;
|
|
8893
8921
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -8970,7 +8998,7 @@ export interface Routes {
|
|
|
8970
8998
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8971
8999
|
warning_code: 'needs_to_be_reissued';
|
|
8972
9000
|
}>;
|
|
8973
|
-
/** 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
|
|
9001
|
+
/** 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). */
|
|
8974
9002
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
8975
9003
|
/** 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. */
|
|
8976
9004
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -9068,6 +9096,8 @@ export interface Routes {
|
|
|
9068
9096
|
acs_credential_id: string;
|
|
9069
9097
|
/** 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. */
|
|
9070
9098
|
acs_user_id?: string | undefined;
|
|
9099
|
+
/** 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. */
|
|
9100
|
+
user_identity_id?: string | undefined;
|
|
9071
9101
|
/** 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. */
|
|
9072
9102
|
connected_account_id: string;
|
|
9073
9103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9150,7 +9180,7 @@ export interface Routes {
|
|
|
9150
9180
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9151
9181
|
warning_code: 'needs_to_be_reissued';
|
|
9152
9182
|
}>;
|
|
9153
|
-
/** 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
|
|
9183
|
+
/** 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). */
|
|
9154
9184
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9155
9185
|
/** 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. */
|
|
9156
9186
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -9196,6 +9226,8 @@ export interface Routes {
|
|
|
9196
9226
|
acs_credential_id: string;
|
|
9197
9227
|
/** 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. */
|
|
9198
9228
|
acs_user_id?: string | undefined;
|
|
9229
|
+
/** 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. */
|
|
9230
|
+
user_identity_id?: string | undefined;
|
|
9199
9231
|
/** 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. */
|
|
9200
9232
|
connected_account_id: string;
|
|
9201
9233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9278,7 +9310,7 @@ export interface Routes {
|
|
|
9278
9310
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9279
9311
|
warning_code: 'needs_to_be_reissued';
|
|
9280
9312
|
}>;
|
|
9281
|
-
/** 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
|
|
9313
|
+
/** 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). */
|
|
9282
9314
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
9283
9315
|
/** 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. */
|
|
9284
9316
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -10256,7 +10288,7 @@ export interface Routes {
|
|
|
10256
10288
|
pending_auto_update: boolean;
|
|
10257
10289
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10258
10290
|
card_format: 'TLCode' | 'rfid48';
|
|
10259
|
-
/**
|
|
10291
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10260
10292
|
card_holder?: string | undefined;
|
|
10261
10293
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10262
10294
|
number_of_issued_cards: number;
|
|
@@ -10272,6 +10304,8 @@ export interface Routes {
|
|
|
10272
10304
|
acs_credential_id: string;
|
|
10273
10305
|
/** 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. */
|
|
10274
10306
|
acs_user_id?: string | undefined;
|
|
10307
|
+
/** 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. */
|
|
10308
|
+
user_identity_id?: string | undefined;
|
|
10275
10309
|
/** 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. */
|
|
10276
10310
|
connected_account_id: string;
|
|
10277
10311
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10354,7 +10388,7 @@ export interface Routes {
|
|
|
10354
10388
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10355
10389
|
warning_code: 'needs_to_be_reissued';
|
|
10356
10390
|
}>;
|
|
10357
|
-
/** 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
|
|
10391
|
+
/** 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). */
|
|
10358
10392
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
10359
10393
|
/** 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. */
|
|
10360
10394
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -10400,6 +10434,8 @@ export interface Routes {
|
|
|
10400
10434
|
acs_credential_id: string;
|
|
10401
10435
|
/** 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. */
|
|
10402
10436
|
acs_user_id?: string | undefined;
|
|
10437
|
+
/** 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. */
|
|
10438
|
+
user_identity_id?: string | undefined;
|
|
10403
10439
|
/** 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. */
|
|
10404
10440
|
connected_account_id: string;
|
|
10405
10441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10482,7 +10518,7 @@ export interface Routes {
|
|
|
10482
10518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10483
10519
|
warning_code: 'needs_to_be_reissued';
|
|
10484
10520
|
}>;
|
|
10485
|
-
/** 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
|
|
10521
|
+
/** 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). */
|
|
10486
10522
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
10487
10523
|
/** 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. */
|
|
10488
10524
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -10580,6 +10616,8 @@ export interface Routes {
|
|
|
10580
10616
|
acs_credential_id: string;
|
|
10581
10617
|
/** 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. */
|
|
10582
10618
|
acs_user_id?: string | undefined;
|
|
10619
|
+
/** 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. */
|
|
10620
|
+
user_identity_id?: string | undefined;
|
|
10583
10621
|
/** 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. */
|
|
10584
10622
|
connected_account_id: string;
|
|
10585
10623
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10662,7 +10700,7 @@ export interface Routes {
|
|
|
10662
10700
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10663
10701
|
warning_code: 'needs_to_be_reissued';
|
|
10664
10702
|
}>;
|
|
10665
|
-
/** 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
|
|
10703
|
+
/** 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). */
|
|
10666
10704
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
10667
10705
|
/** 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. */
|
|
10668
10706
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -10708,6 +10746,8 @@ export interface Routes {
|
|
|
10708
10746
|
acs_credential_id: string;
|
|
10709
10747
|
/** 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. */
|
|
10710
10748
|
acs_user_id?: string | undefined;
|
|
10749
|
+
/** 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. */
|
|
10750
|
+
user_identity_id?: string | undefined;
|
|
10711
10751
|
/** 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. */
|
|
10712
10752
|
connected_account_id: string;
|
|
10713
10753
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -10790,7 +10830,7 @@ export interface Routes {
|
|
|
10790
10830
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10791
10831
|
warning_code: 'needs_to_be_reissued';
|
|
10792
10832
|
}>;
|
|
10793
|
-
/** 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
|
|
10833
|
+
/** 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). */
|
|
10794
10834
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
10795
10835
|
/** 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. */
|
|
10796
10836
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -12077,6 +12117,8 @@ export interface Routes {
|
|
|
12077
12117
|
acs_credential_id: string;
|
|
12078
12118
|
/** 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. */
|
|
12079
12119
|
acs_user_id?: string | undefined;
|
|
12120
|
+
/** 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. */
|
|
12121
|
+
user_identity_id?: string | undefined;
|
|
12080
12122
|
/** 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. */
|
|
12081
12123
|
connected_account_id: string;
|
|
12082
12124
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12159,7 +12201,7 @@ export interface Routes {
|
|
|
12159
12201
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12160
12202
|
warning_code: 'needs_to_be_reissued';
|
|
12161
12203
|
}>;
|
|
12162
|
-
/** 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
|
|
12204
|
+
/** 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). */
|
|
12163
12205
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
12164
12206
|
/** 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. */
|
|
12165
12207
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -12221,7 +12263,7 @@ export interface Routes {
|
|
|
12221
12263
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
12222
12264
|
/** 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). */
|
|
12223
12265
|
code?: string | undefined;
|
|
12224
|
-
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
12266
|
+
/** 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). */
|
|
12225
12267
|
is_multi_phone_sync_credential?: boolean;
|
|
12226
12268
|
/** 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. */
|
|
12227
12269
|
allowed_acs_entrance_ids?: string[];
|
|
@@ -12270,6 +12312,8 @@ export interface Routes {
|
|
|
12270
12312
|
acs_credential_id: string;
|
|
12271
12313
|
/** 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. */
|
|
12272
12314
|
acs_user_id?: string | undefined;
|
|
12315
|
+
/** 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. */
|
|
12316
|
+
user_identity_id?: string | undefined;
|
|
12273
12317
|
/** 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. */
|
|
12274
12318
|
connected_account_id: string;
|
|
12275
12319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12352,7 +12396,7 @@ export interface Routes {
|
|
|
12352
12396
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12353
12397
|
warning_code: 'needs_to_be_reissued';
|
|
12354
12398
|
}>;
|
|
12355
|
-
/** 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
|
|
12399
|
+
/** 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). */
|
|
12356
12400
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
12357
12401
|
/** 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. */
|
|
12358
12402
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -12425,6 +12469,8 @@ export interface Routes {
|
|
|
12425
12469
|
acs_credential_id: string;
|
|
12426
12470
|
/** 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. */
|
|
12427
12471
|
acs_user_id?: string | undefined;
|
|
12472
|
+
/** 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. */
|
|
12473
|
+
user_identity_id?: string | undefined;
|
|
12428
12474
|
/** 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. */
|
|
12429
12475
|
connected_account_id: string;
|
|
12430
12476
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12507,7 +12553,7 @@ export interface Routes {
|
|
|
12507
12553
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12508
12554
|
warning_code: 'needs_to_be_reissued';
|
|
12509
12555
|
}>;
|
|
12510
|
-
/** 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
|
|
12556
|
+
/** 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). */
|
|
12511
12557
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
12512
12558
|
/** 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. */
|
|
12513
12559
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -12584,6 +12630,8 @@ export interface Routes {
|
|
|
12584
12630
|
acs_credential_id: string;
|
|
12585
12631
|
/** 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. */
|
|
12586
12632
|
acs_user_id?: string | undefined;
|
|
12633
|
+
/** 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. */
|
|
12634
|
+
user_identity_id?: string | undefined;
|
|
12587
12635
|
/** 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. */
|
|
12588
12636
|
connected_account_id: string;
|
|
12589
12637
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12666,7 +12714,7 @@ export interface Routes {
|
|
|
12666
12714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12667
12715
|
warning_code: 'needs_to_be_reissued';
|
|
12668
12716
|
}>;
|
|
12669
|
-
/** 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
|
|
12717
|
+
/** 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). */
|
|
12670
12718
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
12671
12719
|
/** 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. */
|
|
12672
12720
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -12744,6 +12792,8 @@ export interface Routes {
|
|
|
12744
12792
|
acs_credential_id: string;
|
|
12745
12793
|
/** 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. */
|
|
12746
12794
|
acs_user_id?: string | undefined;
|
|
12795
|
+
/** 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. */
|
|
12796
|
+
user_identity_id?: string | undefined;
|
|
12747
12797
|
/** 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. */
|
|
12748
12798
|
connected_account_id: string;
|
|
12749
12799
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -12826,7 +12876,7 @@ export interface Routes {
|
|
|
12826
12876
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12827
12877
|
warning_code: 'needs_to_be_reissued';
|
|
12828
12878
|
}>;
|
|
12829
|
-
/** 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
|
|
12879
|
+
/** 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). */
|
|
12830
12880
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
12831
12881
|
/** 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. */
|
|
12832
12882
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13004,6 +13054,8 @@ export interface Routes {
|
|
|
13004
13054
|
acs_credential_id: string;
|
|
13005
13055
|
/** 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. */
|
|
13006
13056
|
acs_user_id?: string | undefined;
|
|
13057
|
+
/** 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. */
|
|
13058
|
+
user_identity_id?: string | undefined;
|
|
13007
13059
|
/** 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. */
|
|
13008
13060
|
connected_account_id: string;
|
|
13009
13061
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13086,7 +13138,7 @@ export interface Routes {
|
|
|
13086
13138
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13087
13139
|
warning_code: 'needs_to_be_reissued';
|
|
13088
13140
|
}>;
|
|
13089
|
-
/** 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
|
|
13141
|
+
/** 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). */
|
|
13090
13142
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13091
13143
|
/** 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. */
|
|
13092
13144
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13147,6 +13199,8 @@ export interface Routes {
|
|
|
13147
13199
|
acs_credential_id: string;
|
|
13148
13200
|
/** 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. */
|
|
13149
13201
|
acs_user_id?: string | undefined;
|
|
13202
|
+
/** 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. */
|
|
13203
|
+
user_identity_id?: string | undefined;
|
|
13150
13204
|
/** 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. */
|
|
13151
13205
|
connected_account_id: string;
|
|
13152
13206
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13229,7 +13283,7 @@ export interface Routes {
|
|
|
13229
13283
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13230
13284
|
warning_code: 'needs_to_be_reissued';
|
|
13231
13285
|
}>;
|
|
13232
|
-
/** 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
|
|
13286
|
+
/** 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). */
|
|
13233
13287
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13234
13288
|
/** 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. */
|
|
13235
13289
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13300,6 +13354,8 @@ export interface Routes {
|
|
|
13300
13354
|
acs_credential_id: string;
|
|
13301
13355
|
/** 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. */
|
|
13302
13356
|
acs_user_id?: string | undefined;
|
|
13357
|
+
/** 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. */
|
|
13358
|
+
user_identity_id?: string | undefined;
|
|
13303
13359
|
/** 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. */
|
|
13304
13360
|
connected_account_id: string;
|
|
13305
13361
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13382,7 +13438,7 @@ export interface Routes {
|
|
|
13382
13438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13383
13439
|
warning_code: 'needs_to_be_reissued';
|
|
13384
13440
|
}>;
|
|
13385
|
-
/** 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
|
|
13441
|
+
/** 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). */
|
|
13386
13442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13387
13443
|
/** 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. */
|
|
13388
13444
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13451,6 +13507,8 @@ export interface Routes {
|
|
|
13451
13507
|
acs_credential_id: string;
|
|
13452
13508
|
/** 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. */
|
|
13453
13509
|
acs_user_id?: string | undefined;
|
|
13510
|
+
/** 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. */
|
|
13511
|
+
user_identity_id?: string | undefined;
|
|
13454
13512
|
/** 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. */
|
|
13455
13513
|
connected_account_id: string;
|
|
13456
13514
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13533,7 +13591,7 @@ export interface Routes {
|
|
|
13533
13591
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13534
13592
|
warning_code: 'needs_to_be_reissued';
|
|
13535
13593
|
}>;
|
|
13536
|
-
/** 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
|
|
13594
|
+
/** 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). */
|
|
13537
13595
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13538
13596
|
/** 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. */
|
|
13539
13597
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13716,7 +13774,7 @@ export interface Routes {
|
|
|
13716
13774
|
pending_auto_update: boolean;
|
|
13717
13775
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13718
13776
|
card_format: 'TLCode' | 'rfid48';
|
|
13719
|
-
/**
|
|
13777
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13720
13778
|
card_holder?: string | undefined;
|
|
13721
13779
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13722
13780
|
number_of_issued_cards: number;
|
|
@@ -13732,6 +13790,8 @@ export interface Routes {
|
|
|
13732
13790
|
acs_credential_id: string;
|
|
13733
13791
|
/** 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. */
|
|
13734
13792
|
acs_user_id?: string | undefined;
|
|
13793
|
+
/** 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. */
|
|
13794
|
+
user_identity_id?: string | undefined;
|
|
13735
13795
|
/** 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. */
|
|
13736
13796
|
connected_account_id: string;
|
|
13737
13797
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13814,7 +13874,7 @@ export interface Routes {
|
|
|
13814
13874
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13815
13875
|
warning_code: 'needs_to_be_reissued';
|
|
13816
13876
|
}>;
|
|
13817
|
-
/** 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
|
|
13877
|
+
/** 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). */
|
|
13818
13878
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13819
13879
|
/** 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. */
|
|
13820
13880
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -13860,6 +13920,8 @@ export interface Routes {
|
|
|
13860
13920
|
acs_credential_id: string;
|
|
13861
13921
|
/** 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. */
|
|
13862
13922
|
acs_user_id?: string | undefined;
|
|
13923
|
+
/** 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. */
|
|
13924
|
+
user_identity_id?: string | undefined;
|
|
13863
13925
|
/** 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. */
|
|
13864
13926
|
connected_account_id: string;
|
|
13865
13927
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -13942,7 +14004,7 @@ export interface Routes {
|
|
|
13942
14004
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13943
14005
|
warning_code: 'needs_to_be_reissued';
|
|
13944
14006
|
}>;
|
|
13945
|
-
/** 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
|
|
14007
|
+
/** 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). */
|
|
13946
14008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
13947
14009
|
/** 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. */
|
|
13948
14010
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -14040,6 +14102,8 @@ export interface Routes {
|
|
|
14040
14102
|
acs_credential_id: string;
|
|
14041
14103
|
/** 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. */
|
|
14042
14104
|
acs_user_id?: string | undefined;
|
|
14105
|
+
/** 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. */
|
|
14106
|
+
user_identity_id?: string | undefined;
|
|
14043
14107
|
/** 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. */
|
|
14044
14108
|
connected_account_id: string;
|
|
14045
14109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14122,7 +14186,7 @@ export interface Routes {
|
|
|
14122
14186
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14123
14187
|
warning_code: 'needs_to_be_reissued';
|
|
14124
14188
|
}>;
|
|
14125
|
-
/** 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
|
|
14189
|
+
/** 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). */
|
|
14126
14190
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
14127
14191
|
/** 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. */
|
|
14128
14192
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -14168,6 +14232,8 @@ export interface Routes {
|
|
|
14168
14232
|
acs_credential_id: string;
|
|
14169
14233
|
/** 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. */
|
|
14170
14234
|
acs_user_id?: string | undefined;
|
|
14235
|
+
/** 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. */
|
|
14236
|
+
user_identity_id?: string | undefined;
|
|
14171
14237
|
/** 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. */
|
|
14172
14238
|
connected_account_id: string;
|
|
14173
14239
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -14250,7 +14316,7 @@ export interface Routes {
|
|
|
14250
14316
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14251
14317
|
warning_code: 'needs_to_be_reissued';
|
|
14252
14318
|
}>;
|
|
14253
|
-
/** 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
|
|
14319
|
+
/** 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). */
|
|
14254
14320
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
14255
14321
|
/** 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. */
|
|
14256
14322
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -15064,7 +15130,7 @@ export interface Routes {
|
|
|
15064
15130
|
pending_auto_update: boolean;
|
|
15065
15131
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15066
15132
|
card_format: 'TLCode' | 'rfid48';
|
|
15067
|
-
/**
|
|
15133
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15068
15134
|
card_holder?: string | undefined;
|
|
15069
15135
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15070
15136
|
number_of_issued_cards: number;
|
|
@@ -15080,6 +15146,8 @@ export interface Routes {
|
|
|
15080
15146
|
acs_credential_id: string;
|
|
15081
15147
|
/** 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. */
|
|
15082
15148
|
acs_user_id?: string | undefined;
|
|
15149
|
+
/** 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. */
|
|
15150
|
+
user_identity_id?: string | undefined;
|
|
15083
15151
|
/** 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. */
|
|
15084
15152
|
connected_account_id: string;
|
|
15085
15153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15162,7 +15230,7 @@ export interface Routes {
|
|
|
15162
15230
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15163
15231
|
warning_code: 'needs_to_be_reissued';
|
|
15164
15232
|
}>;
|
|
15165
|
-
/** 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
|
|
15233
|
+
/** 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). */
|
|
15166
15234
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
15167
15235
|
/** 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. */
|
|
15168
15236
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -15208,6 +15276,8 @@ export interface Routes {
|
|
|
15208
15276
|
acs_credential_id: string;
|
|
15209
15277
|
/** 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. */
|
|
15210
15278
|
acs_user_id?: string | undefined;
|
|
15279
|
+
/** 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. */
|
|
15280
|
+
user_identity_id?: string | undefined;
|
|
15211
15281
|
/** 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. */
|
|
15212
15282
|
connected_account_id: string;
|
|
15213
15283
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15290,7 +15360,7 @@ export interface Routes {
|
|
|
15290
15360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15291
15361
|
warning_code: 'needs_to_be_reissued';
|
|
15292
15362
|
}>;
|
|
15293
|
-
/** 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
|
|
15363
|
+
/** 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). */
|
|
15294
15364
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
15295
15365
|
/** 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. */
|
|
15296
15366
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -15388,6 +15458,8 @@ export interface Routes {
|
|
|
15388
15458
|
acs_credential_id: string;
|
|
15389
15459
|
/** 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. */
|
|
15390
15460
|
acs_user_id?: string | undefined;
|
|
15461
|
+
/** 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. */
|
|
15462
|
+
user_identity_id?: string | undefined;
|
|
15391
15463
|
/** 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. */
|
|
15392
15464
|
connected_account_id: string;
|
|
15393
15465
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15470,7 +15542,7 @@ export interface Routes {
|
|
|
15470
15542
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15471
15543
|
warning_code: 'needs_to_be_reissued';
|
|
15472
15544
|
}>;
|
|
15473
|
-
/** 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
|
|
15545
|
+
/** 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). */
|
|
15474
15546
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
15475
15547
|
/** 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. */
|
|
15476
15548
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -15516,6 +15588,8 @@ export interface Routes {
|
|
|
15516
15588
|
acs_credential_id: string;
|
|
15517
15589
|
/** 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. */
|
|
15518
15590
|
acs_user_id?: string | undefined;
|
|
15591
|
+
/** 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. */
|
|
15592
|
+
user_identity_id?: string | undefined;
|
|
15519
15593
|
/** 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. */
|
|
15520
15594
|
connected_account_id: string;
|
|
15521
15595
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -15598,7 +15672,7 @@ export interface Routes {
|
|
|
15598
15672
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15599
15673
|
warning_code: 'needs_to_be_reissued';
|
|
15600
15674
|
}>;
|
|
15601
|
-
/** 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
|
|
15675
|
+
/** 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). */
|
|
15602
15676
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
15603
15677
|
/** 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. */
|
|
15604
15678
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -16524,6 +16598,8 @@ export interface Routes {
|
|
|
16524
16598
|
acs_credential_id: string;
|
|
16525
16599
|
/** 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. */
|
|
16526
16600
|
acs_user_id?: string | undefined;
|
|
16601
|
+
/** 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. */
|
|
16602
|
+
user_identity_id?: string | undefined;
|
|
16527
16603
|
/** 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. */
|
|
16528
16604
|
connected_account_id: string;
|
|
16529
16605
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -16606,7 +16682,7 @@ export interface Routes {
|
|
|
16606
16682
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
16607
16683
|
warning_code: 'needs_to_be_reissued';
|
|
16608
16684
|
}>;
|
|
16609
|
-
/** 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
|
|
16685
|
+
/** 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). */
|
|
16610
16686
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16611
16687
|
/** 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. */
|
|
16612
16688
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -18594,7 +18670,7 @@ export interface Routes {
|
|
|
18594
18670
|
pending_auto_update: boolean;
|
|
18595
18671
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
18596
18672
|
card_format: 'TLCode' | 'rfid48';
|
|
18597
|
-
/**
|
|
18673
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
18598
18674
|
card_holder?: string | undefined;
|
|
18599
18675
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
18600
18676
|
number_of_issued_cards: number;
|
|
@@ -18610,6 +18686,8 @@ export interface Routes {
|
|
|
18610
18686
|
acs_credential_id: string;
|
|
18611
18687
|
/** 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. */
|
|
18612
18688
|
acs_user_id?: string | undefined;
|
|
18689
|
+
/** 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. */
|
|
18690
|
+
user_identity_id?: string | undefined;
|
|
18613
18691
|
/** 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. */
|
|
18614
18692
|
connected_account_id: string;
|
|
18615
18693
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18692,7 +18770,7 @@ export interface Routes {
|
|
|
18692
18770
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18693
18771
|
warning_code: 'needs_to_be_reissued';
|
|
18694
18772
|
}>;
|
|
18695
|
-
/** 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
|
|
18773
|
+
/** 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). */
|
|
18696
18774
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
18697
18775
|
/** 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. */
|
|
18698
18776
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -18738,6 +18816,8 @@ export interface Routes {
|
|
|
18738
18816
|
acs_credential_id: string;
|
|
18739
18817
|
/** 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. */
|
|
18740
18818
|
acs_user_id?: string | undefined;
|
|
18819
|
+
/** 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. */
|
|
18820
|
+
user_identity_id?: string | undefined;
|
|
18741
18821
|
/** 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. */
|
|
18742
18822
|
connected_account_id: string;
|
|
18743
18823
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -18820,7 +18900,7 @@ export interface Routes {
|
|
|
18820
18900
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18821
18901
|
warning_code: 'needs_to_be_reissued';
|
|
18822
18902
|
}>;
|
|
18823
|
-
/** 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
|
|
18903
|
+
/** 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). */
|
|
18824
18904
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
18825
18905
|
/** 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. */
|
|
18826
18906
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -18918,6 +18998,8 @@ export interface Routes {
|
|
|
18918
18998
|
acs_credential_id: string;
|
|
18919
18999
|
/** 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. */
|
|
18920
19000
|
acs_user_id?: string | undefined;
|
|
19001
|
+
/** 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. */
|
|
19002
|
+
user_identity_id?: string | undefined;
|
|
18921
19003
|
/** 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. */
|
|
18922
19004
|
connected_account_id: string;
|
|
18923
19005
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19000,7 +19082,7 @@ export interface Routes {
|
|
|
19000
19082
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19001
19083
|
warning_code: 'needs_to_be_reissued';
|
|
19002
19084
|
}>;
|
|
19003
|
-
/** 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
|
|
19085
|
+
/** 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). */
|
|
19004
19086
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19005
19087
|
/** 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. */
|
|
19006
19088
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -19046,6 +19128,8 @@ export interface Routes {
|
|
|
19046
19128
|
acs_credential_id: string;
|
|
19047
19129
|
/** 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. */
|
|
19048
19130
|
acs_user_id?: string | undefined;
|
|
19131
|
+
/** 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. */
|
|
19132
|
+
user_identity_id?: string | undefined;
|
|
19049
19133
|
/** 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. */
|
|
19050
19134
|
connected_account_id: string;
|
|
19051
19135
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19128,7 +19212,7 @@ export interface Routes {
|
|
|
19128
19212
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19129
19213
|
warning_code: 'needs_to_be_reissued';
|
|
19130
19214
|
}>;
|
|
19131
|
-
/** 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
|
|
19215
|
+
/** 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). */
|
|
19132
19216
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19133
19217
|
/** 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. */
|
|
19134
19218
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -19839,7 +19923,7 @@ export interface Routes {
|
|
|
19839
19923
|
pending_auto_update: boolean;
|
|
19840
19924
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19841
19925
|
card_format: 'TLCode' | 'rfid48';
|
|
19842
|
-
/**
|
|
19926
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19843
19927
|
card_holder?: string | undefined;
|
|
19844
19928
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
19845
19929
|
number_of_issued_cards: number;
|
|
@@ -19855,6 +19939,8 @@ export interface Routes {
|
|
|
19855
19939
|
acs_credential_id: string;
|
|
19856
19940
|
/** 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. */
|
|
19857
19941
|
acs_user_id?: string | undefined;
|
|
19942
|
+
/** 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. */
|
|
19943
|
+
user_identity_id?: string | undefined;
|
|
19858
19944
|
/** 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. */
|
|
19859
19945
|
connected_account_id: string;
|
|
19860
19946
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -19937,7 +20023,7 @@ export interface Routes {
|
|
|
19937
20023
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19938
20024
|
warning_code: 'needs_to_be_reissued';
|
|
19939
20025
|
}>;
|
|
19940
|
-
/** 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
|
|
20026
|
+
/** 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). */
|
|
19941
20027
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
19942
20028
|
/** 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. */
|
|
19943
20029
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -19983,6 +20069,8 @@ export interface Routes {
|
|
|
19983
20069
|
acs_credential_id: string;
|
|
19984
20070
|
/** 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. */
|
|
19985
20071
|
acs_user_id?: string | undefined;
|
|
20072
|
+
/** 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. */
|
|
20073
|
+
user_identity_id?: string | undefined;
|
|
19986
20074
|
/** 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. */
|
|
19987
20075
|
connected_account_id: string;
|
|
19988
20076
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20065,7 +20153,7 @@ export interface Routes {
|
|
|
20065
20153
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20066
20154
|
warning_code: 'needs_to_be_reissued';
|
|
20067
20155
|
}>;
|
|
20068
|
-
/** 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
|
|
20156
|
+
/** 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). */
|
|
20069
20157
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20070
20158
|
/** 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. */
|
|
20071
20159
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -20163,6 +20251,8 @@ export interface Routes {
|
|
|
20163
20251
|
acs_credential_id: string;
|
|
20164
20252
|
/** 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. */
|
|
20165
20253
|
acs_user_id?: string | undefined;
|
|
20254
|
+
/** 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. */
|
|
20255
|
+
user_identity_id?: string | undefined;
|
|
20166
20256
|
/** 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. */
|
|
20167
20257
|
connected_account_id: string;
|
|
20168
20258
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20245,7 +20335,7 @@ export interface Routes {
|
|
|
20245
20335
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20246
20336
|
warning_code: 'needs_to_be_reissued';
|
|
20247
20337
|
}>;
|
|
20248
|
-
/** 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
|
|
20338
|
+
/** 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). */
|
|
20249
20339
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20250
20340
|
/** 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. */
|
|
20251
20341
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -20291,6 +20381,8 @@ export interface Routes {
|
|
|
20291
20381
|
acs_credential_id: string;
|
|
20292
20382
|
/** 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. */
|
|
20293
20383
|
acs_user_id?: string | undefined;
|
|
20384
|
+
/** 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. */
|
|
20385
|
+
user_identity_id?: string | undefined;
|
|
20294
20386
|
/** 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. */
|
|
20295
20387
|
connected_account_id: string;
|
|
20296
20388
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -20373,7 +20465,7 @@ export interface Routes {
|
|
|
20373
20465
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20374
20466
|
warning_code: 'needs_to_be_reissued';
|
|
20375
20467
|
}>;
|
|
20376
|
-
/** 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
|
|
20468
|
+
/** 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). */
|
|
20377
20469
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
20378
20470
|
/** 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. */
|
|
20379
20471
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -33355,7 +33447,7 @@ export interface Routes {
|
|
|
33355
33447
|
pending_auto_update: boolean;
|
|
33356
33448
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33357
33449
|
card_format: 'TLCode' | 'rfid48';
|
|
33358
|
-
/**
|
|
33450
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33359
33451
|
card_holder?: string | undefined;
|
|
33360
33452
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33361
33453
|
number_of_issued_cards: number;
|
|
@@ -33371,6 +33463,8 @@ export interface Routes {
|
|
|
33371
33463
|
acs_credential_id: string;
|
|
33372
33464
|
/** 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. */
|
|
33373
33465
|
acs_user_id?: string | undefined;
|
|
33466
|
+
/** 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. */
|
|
33467
|
+
user_identity_id?: string | undefined;
|
|
33374
33468
|
/** 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. */
|
|
33375
33469
|
connected_account_id: string;
|
|
33376
33470
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33453,7 +33547,7 @@ export interface Routes {
|
|
|
33453
33547
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33454
33548
|
warning_code: 'needs_to_be_reissued';
|
|
33455
33549
|
}>;
|
|
33456
|
-
/** 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
|
|
33550
|
+
/** 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). */
|
|
33457
33551
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
33458
33552
|
/** 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. */
|
|
33459
33553
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -33499,6 +33593,8 @@ export interface Routes {
|
|
|
33499
33593
|
acs_credential_id: string;
|
|
33500
33594
|
/** 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. */
|
|
33501
33595
|
acs_user_id?: string | undefined;
|
|
33596
|
+
/** 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. */
|
|
33597
|
+
user_identity_id?: string | undefined;
|
|
33502
33598
|
/** 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. */
|
|
33503
33599
|
connected_account_id: string;
|
|
33504
33600
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33581,7 +33677,7 @@ export interface Routes {
|
|
|
33581
33677
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33582
33678
|
warning_code: 'needs_to_be_reissued';
|
|
33583
33679
|
}>;
|
|
33584
|
-
/** 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
|
|
33680
|
+
/** 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). */
|
|
33585
33681
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
33586
33682
|
/** 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. */
|
|
33587
33683
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -33679,6 +33775,8 @@ export interface Routes {
|
|
|
33679
33775
|
acs_credential_id: string;
|
|
33680
33776
|
/** 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. */
|
|
33681
33777
|
acs_user_id?: string | undefined;
|
|
33778
|
+
/** 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. */
|
|
33779
|
+
user_identity_id?: string | undefined;
|
|
33682
33780
|
/** 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. */
|
|
33683
33781
|
connected_account_id: string;
|
|
33684
33782
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33761,7 +33859,7 @@ export interface Routes {
|
|
|
33761
33859
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33762
33860
|
warning_code: 'needs_to_be_reissued';
|
|
33763
33861
|
}>;
|
|
33764
|
-
/** 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
|
|
33862
|
+
/** 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). */
|
|
33765
33863
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
33766
33864
|
/** 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. */
|
|
33767
33865
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -33807,6 +33905,8 @@ export interface Routes {
|
|
|
33807
33905
|
acs_credential_id: string;
|
|
33808
33906
|
/** 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. */
|
|
33809
33907
|
acs_user_id?: string | undefined;
|
|
33908
|
+
/** 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. */
|
|
33909
|
+
user_identity_id?: string | undefined;
|
|
33810
33910
|
/** 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. */
|
|
33811
33911
|
connected_account_id: string;
|
|
33812
33912
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -33889,7 +33989,7 @@ export interface Routes {
|
|
|
33889
33989
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
33890
33990
|
warning_code: 'needs_to_be_reissued';
|
|
33891
33991
|
}>;
|
|
33892
|
-
/** 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
|
|
33992
|
+
/** 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). */
|
|
33893
33993
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
33894
33994
|
/** 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. */
|
|
33895
33995
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -34607,7 +34707,7 @@ export interface Routes {
|
|
|
34607
34707
|
pending_auto_update: boolean;
|
|
34608
34708
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34609
34709
|
card_format: 'TLCode' | 'rfid48';
|
|
34610
|
-
/**
|
|
34710
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34611
34711
|
card_holder?: string | undefined;
|
|
34612
34712
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34613
34713
|
number_of_issued_cards: number;
|
|
@@ -34623,6 +34723,8 @@ export interface Routes {
|
|
|
34623
34723
|
acs_credential_id: string;
|
|
34624
34724
|
/** 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. */
|
|
34625
34725
|
acs_user_id?: string | undefined;
|
|
34726
|
+
/** 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. */
|
|
34727
|
+
user_identity_id?: string | undefined;
|
|
34626
34728
|
/** 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. */
|
|
34627
34729
|
connected_account_id: string;
|
|
34628
34730
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34705,7 +34807,7 @@ export interface Routes {
|
|
|
34705
34807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
34706
34808
|
warning_code: 'needs_to_be_reissued';
|
|
34707
34809
|
}>;
|
|
34708
|
-
/** 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
|
|
34810
|
+
/** 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). */
|
|
34709
34811
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
34710
34812
|
/** 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. */
|
|
34711
34813
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -34751,6 +34853,8 @@ export interface Routes {
|
|
|
34751
34853
|
acs_credential_id: string;
|
|
34752
34854
|
/** 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. */
|
|
34753
34855
|
acs_user_id?: string | undefined;
|
|
34856
|
+
/** 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. */
|
|
34857
|
+
user_identity_id?: string | undefined;
|
|
34754
34858
|
/** 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. */
|
|
34755
34859
|
connected_account_id: string;
|
|
34756
34860
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -34833,7 +34937,7 @@ export interface Routes {
|
|
|
34833
34937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
34834
34938
|
warning_code: 'needs_to_be_reissued';
|
|
34835
34939
|
}>;
|
|
34836
|
-
/** 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
|
|
34940
|
+
/** 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). */
|
|
34837
34941
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
34838
34942
|
/** 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. */
|
|
34839
34943
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -34931,6 +35035,8 @@ export interface Routes {
|
|
|
34931
35035
|
acs_credential_id: string;
|
|
34932
35036
|
/** 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. */
|
|
34933
35037
|
acs_user_id?: string | undefined;
|
|
35038
|
+
/** 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. */
|
|
35039
|
+
user_identity_id?: string | undefined;
|
|
34934
35040
|
/** 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. */
|
|
34935
35041
|
connected_account_id: string;
|
|
34936
35042
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35013,7 +35119,7 @@ export interface Routes {
|
|
|
35013
35119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35014
35120
|
warning_code: 'needs_to_be_reissued';
|
|
35015
35121
|
}>;
|
|
35016
|
-
/** 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
|
|
35122
|
+
/** 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). */
|
|
35017
35123
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
35018
35124
|
/** 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. */
|
|
35019
35125
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -35059,6 +35165,8 @@ export interface Routes {
|
|
|
35059
35165
|
acs_credential_id: string;
|
|
35060
35166
|
/** 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. */
|
|
35061
35167
|
acs_user_id?: string | undefined;
|
|
35168
|
+
/** 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. */
|
|
35169
|
+
user_identity_id?: string | undefined;
|
|
35062
35170
|
/** 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. */
|
|
35063
35171
|
connected_account_id: string;
|
|
35064
35172
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35141,7 +35249,7 @@ export interface Routes {
|
|
|
35141
35249
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35142
35250
|
warning_code: 'needs_to_be_reissued';
|
|
35143
35251
|
}>;
|
|
35144
|
-
/** 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
|
|
35252
|
+
/** 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). */
|
|
35145
35253
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
35146
35254
|
/** 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. */
|
|
35147
35255
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -35857,7 +35965,7 @@ export interface Routes {
|
|
|
35857
35965
|
pending_auto_update: boolean;
|
|
35858
35966
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35859
35967
|
card_format: 'TLCode' | 'rfid48';
|
|
35860
|
-
/**
|
|
35968
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35861
35969
|
card_holder?: string | undefined;
|
|
35862
35970
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35863
35971
|
number_of_issued_cards: number;
|
|
@@ -35873,6 +35981,8 @@ export interface Routes {
|
|
|
35873
35981
|
acs_credential_id: string;
|
|
35874
35982
|
/** 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. */
|
|
35875
35983
|
acs_user_id?: string | undefined;
|
|
35984
|
+
/** 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. */
|
|
35985
|
+
user_identity_id?: string | undefined;
|
|
35876
35986
|
/** 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. */
|
|
35877
35987
|
connected_account_id: string;
|
|
35878
35988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -35955,7 +36065,7 @@ export interface Routes {
|
|
|
35955
36065
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35956
36066
|
warning_code: 'needs_to_be_reissued';
|
|
35957
36067
|
}>;
|
|
35958
|
-
/** 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
|
|
36068
|
+
/** 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). */
|
|
35959
36069
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
35960
36070
|
/** 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. */
|
|
35961
36071
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -36001,6 +36111,8 @@ export interface Routes {
|
|
|
36001
36111
|
acs_credential_id: string;
|
|
36002
36112
|
/** 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. */
|
|
36003
36113
|
acs_user_id?: string | undefined;
|
|
36114
|
+
/** 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. */
|
|
36115
|
+
user_identity_id?: string | undefined;
|
|
36004
36116
|
/** 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. */
|
|
36005
36117
|
connected_account_id: string;
|
|
36006
36118
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36083,7 +36195,7 @@ export interface Routes {
|
|
|
36083
36195
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36084
36196
|
warning_code: 'needs_to_be_reissued';
|
|
36085
36197
|
}>;
|
|
36086
|
-
/** 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
|
|
36198
|
+
/** 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). */
|
|
36087
36199
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36088
36200
|
/** 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. */
|
|
36089
36201
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -36181,6 +36293,8 @@ export interface Routes {
|
|
|
36181
36293
|
acs_credential_id: string;
|
|
36182
36294
|
/** 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. */
|
|
36183
36295
|
acs_user_id?: string | undefined;
|
|
36296
|
+
/** 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. */
|
|
36297
|
+
user_identity_id?: string | undefined;
|
|
36184
36298
|
/** 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. */
|
|
36185
36299
|
connected_account_id: string;
|
|
36186
36300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36263,7 +36377,7 @@ export interface Routes {
|
|
|
36263
36377
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36264
36378
|
warning_code: 'needs_to_be_reissued';
|
|
36265
36379
|
}>;
|
|
36266
|
-
/** 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
|
|
36380
|
+
/** 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). */
|
|
36267
36381
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36268
36382
|
/** 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. */
|
|
36269
36383
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -36309,6 +36423,8 @@ export interface Routes {
|
|
|
36309
36423
|
acs_credential_id: string;
|
|
36310
36424
|
/** 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. */
|
|
36311
36425
|
acs_user_id?: string | undefined;
|
|
36426
|
+
/** 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. */
|
|
36427
|
+
user_identity_id?: string | undefined;
|
|
36312
36428
|
/** 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. */
|
|
36313
36429
|
connected_account_id: string;
|
|
36314
36430
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -36391,7 +36507,7 @@ export interface Routes {
|
|
|
36391
36507
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36392
36508
|
warning_code: 'needs_to_be_reissued';
|
|
36393
36509
|
}>;
|
|
36394
|
-
/** 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
|
|
36510
|
+
/** 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). */
|
|
36395
36511
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
36396
36512
|
/** 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. */
|
|
36397
36513
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -37109,7 +37225,7 @@ export interface Routes {
|
|
|
37109
37225
|
pending_auto_update: boolean;
|
|
37110
37226
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37111
37227
|
card_format: 'TLCode' | 'rfid48';
|
|
37112
|
-
/**
|
|
37228
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37113
37229
|
card_holder?: string | undefined;
|
|
37114
37230
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37115
37231
|
number_of_issued_cards: number;
|
|
@@ -37125,6 +37241,8 @@ export interface Routes {
|
|
|
37125
37241
|
acs_credential_id: string;
|
|
37126
37242
|
/** 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. */
|
|
37127
37243
|
acs_user_id?: string | undefined;
|
|
37244
|
+
/** 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. */
|
|
37245
|
+
user_identity_id?: string | undefined;
|
|
37128
37246
|
/** 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. */
|
|
37129
37247
|
connected_account_id: string;
|
|
37130
37248
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37207,7 +37325,7 @@ export interface Routes {
|
|
|
37207
37325
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37208
37326
|
warning_code: 'needs_to_be_reissued';
|
|
37209
37327
|
}>;
|
|
37210
|
-
/** 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
|
|
37328
|
+
/** 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). */
|
|
37211
37329
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37212
37330
|
/** 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. */
|
|
37213
37331
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -37253,6 +37371,8 @@ export interface Routes {
|
|
|
37253
37371
|
acs_credential_id: string;
|
|
37254
37372
|
/** 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. */
|
|
37255
37373
|
acs_user_id?: string | undefined;
|
|
37374
|
+
/** 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. */
|
|
37375
|
+
user_identity_id?: string | undefined;
|
|
37256
37376
|
/** 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. */
|
|
37257
37377
|
connected_account_id: string;
|
|
37258
37378
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37335,7 +37455,7 @@ export interface Routes {
|
|
|
37335
37455
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37336
37456
|
warning_code: 'needs_to_be_reissued';
|
|
37337
37457
|
}>;
|
|
37338
|
-
/** 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
|
|
37458
|
+
/** 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). */
|
|
37339
37459
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37340
37460
|
/** 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. */
|
|
37341
37461
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -37433,6 +37553,8 @@ export interface Routes {
|
|
|
37433
37553
|
acs_credential_id: string;
|
|
37434
37554
|
/** 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. */
|
|
37435
37555
|
acs_user_id?: string | undefined;
|
|
37556
|
+
/** 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. */
|
|
37557
|
+
user_identity_id?: string | undefined;
|
|
37436
37558
|
/** 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. */
|
|
37437
37559
|
connected_account_id: string;
|
|
37438
37560
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37515,7 +37637,7 @@ export interface Routes {
|
|
|
37515
37637
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37516
37638
|
warning_code: 'needs_to_be_reissued';
|
|
37517
37639
|
}>;
|
|
37518
|
-
/** 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
|
|
37640
|
+
/** 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). */
|
|
37519
37641
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37520
37642
|
/** 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. */
|
|
37521
37643
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -37561,6 +37683,8 @@ export interface Routes {
|
|
|
37561
37683
|
acs_credential_id: string;
|
|
37562
37684
|
/** 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. */
|
|
37563
37685
|
acs_user_id?: string | undefined;
|
|
37686
|
+
/** 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. */
|
|
37687
|
+
user_identity_id?: string | undefined;
|
|
37564
37688
|
/** 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. */
|
|
37565
37689
|
connected_account_id: string;
|
|
37566
37690
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -37643,7 +37767,7 @@ export interface Routes {
|
|
|
37643
37767
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37644
37768
|
warning_code: 'needs_to_be_reissued';
|
|
37645
37769
|
}>;
|
|
37646
|
-
/** 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
|
|
37770
|
+
/** 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). */
|
|
37647
37771
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
37648
37772
|
/** 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. */
|
|
37649
37773
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -40703,7 +40827,7 @@ export interface Routes {
|
|
|
40703
40827
|
pending_auto_update: boolean;
|
|
40704
40828
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40705
40829
|
card_format: 'TLCode' | 'rfid48';
|
|
40706
|
-
/**
|
|
40830
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40707
40831
|
card_holder?: string | undefined;
|
|
40708
40832
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40709
40833
|
number_of_issued_cards: number;
|
|
@@ -40719,6 +40843,8 @@ export interface Routes {
|
|
|
40719
40843
|
acs_credential_id: string;
|
|
40720
40844
|
/** 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. */
|
|
40721
40845
|
acs_user_id?: string | undefined;
|
|
40846
|
+
/** 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. */
|
|
40847
|
+
user_identity_id?: string | undefined;
|
|
40722
40848
|
/** 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. */
|
|
40723
40849
|
connected_account_id: string;
|
|
40724
40850
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40801,7 +40927,7 @@ export interface Routes {
|
|
|
40801
40927
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40802
40928
|
warning_code: 'needs_to_be_reissued';
|
|
40803
40929
|
}>;
|
|
40804
|
-
/** 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
|
|
40930
|
+
/** 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). */
|
|
40805
40931
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40806
40932
|
/** 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. */
|
|
40807
40933
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -40847,6 +40973,8 @@ export interface Routes {
|
|
|
40847
40973
|
acs_credential_id: string;
|
|
40848
40974
|
/** 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. */
|
|
40849
40975
|
acs_user_id?: string | undefined;
|
|
40976
|
+
/** 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. */
|
|
40977
|
+
user_identity_id?: string | undefined;
|
|
40850
40978
|
/** 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. */
|
|
40851
40979
|
connected_account_id: string;
|
|
40852
40980
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40929,7 +41057,7 @@ export interface Routes {
|
|
|
40929
41057
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40930
41058
|
warning_code: 'needs_to_be_reissued';
|
|
40931
41059
|
}>;
|
|
40932
|
-
/** 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
|
|
41060
|
+
/** 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). */
|
|
40933
41061
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
40934
41062
|
/** 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. */
|
|
40935
41063
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -41027,6 +41155,8 @@ export interface Routes {
|
|
|
41027
41155
|
acs_credential_id: string;
|
|
41028
41156
|
/** 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. */
|
|
41029
41157
|
acs_user_id?: string | undefined;
|
|
41158
|
+
/** 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. */
|
|
41159
|
+
user_identity_id?: string | undefined;
|
|
41030
41160
|
/** 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. */
|
|
41031
41161
|
connected_account_id: string;
|
|
41032
41162
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41109,7 +41239,7 @@ export interface Routes {
|
|
|
41109
41239
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41110
41240
|
warning_code: 'needs_to_be_reissued';
|
|
41111
41241
|
}>;
|
|
41112
|
-
/** 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
|
|
41242
|
+
/** 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). */
|
|
41113
41243
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41114
41244
|
/** 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. */
|
|
41115
41245
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -41155,6 +41285,8 @@ export interface Routes {
|
|
|
41155
41285
|
acs_credential_id: string;
|
|
41156
41286
|
/** 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. */
|
|
41157
41287
|
acs_user_id?: string | undefined;
|
|
41288
|
+
/** 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. */
|
|
41289
|
+
user_identity_id?: string | undefined;
|
|
41158
41290
|
/** 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. */
|
|
41159
41291
|
connected_account_id: string;
|
|
41160
41292
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41237,7 +41369,7 @@ export interface Routes {
|
|
|
41237
41369
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41238
41370
|
warning_code: 'needs_to_be_reissued';
|
|
41239
41371
|
}>;
|
|
41240
|
-
/** 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
|
|
41372
|
+
/** 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). */
|
|
41241
41373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
41242
41374
|
/** 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. */
|
|
41243
41375
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -41974,7 +42106,7 @@ export interface Routes {
|
|
|
41974
42106
|
pending_auto_update: boolean;
|
|
41975
42107
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41976
42108
|
card_format: 'TLCode' | 'rfid48';
|
|
41977
|
-
/**
|
|
42109
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41978
42110
|
card_holder?: string | undefined;
|
|
41979
42111
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
41980
42112
|
number_of_issued_cards: number;
|
|
@@ -41990,6 +42122,8 @@ export interface Routes {
|
|
|
41990
42122
|
acs_credential_id: string;
|
|
41991
42123
|
/** 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. */
|
|
41992
42124
|
acs_user_id?: string | undefined;
|
|
42125
|
+
/** 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. */
|
|
42126
|
+
user_identity_id?: string | undefined;
|
|
41993
42127
|
/** 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. */
|
|
41994
42128
|
connected_account_id: string;
|
|
41995
42129
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42072,7 +42206,7 @@ export interface Routes {
|
|
|
42072
42206
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42073
42207
|
warning_code: 'needs_to_be_reissued';
|
|
42074
42208
|
}>;
|
|
42075
|
-
/** 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
|
|
42209
|
+
/** 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). */
|
|
42076
42210
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42077
42211
|
/** 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. */
|
|
42078
42212
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -42118,6 +42252,8 @@ export interface Routes {
|
|
|
42118
42252
|
acs_credential_id: string;
|
|
42119
42253
|
/** 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. */
|
|
42120
42254
|
acs_user_id?: string | undefined;
|
|
42255
|
+
/** 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. */
|
|
42256
|
+
user_identity_id?: string | undefined;
|
|
42121
42257
|
/** 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. */
|
|
42122
42258
|
connected_account_id: string;
|
|
42123
42259
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42200,7 +42336,7 @@ export interface Routes {
|
|
|
42200
42336
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42201
42337
|
warning_code: 'needs_to_be_reissued';
|
|
42202
42338
|
}>;
|
|
42203
|
-
/** 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
|
|
42339
|
+
/** 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). */
|
|
42204
42340
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42205
42341
|
/** 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. */
|
|
42206
42342
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -42298,6 +42434,8 @@ export interface Routes {
|
|
|
42298
42434
|
acs_credential_id: string;
|
|
42299
42435
|
/** 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. */
|
|
42300
42436
|
acs_user_id?: string | undefined;
|
|
42437
|
+
/** 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. */
|
|
42438
|
+
user_identity_id?: string | undefined;
|
|
42301
42439
|
/** 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. */
|
|
42302
42440
|
connected_account_id: string;
|
|
42303
42441
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42380,7 +42518,7 @@ export interface Routes {
|
|
|
42380
42518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42381
42519
|
warning_code: 'needs_to_be_reissued';
|
|
42382
42520
|
}>;
|
|
42383
|
-
/** 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
|
|
42521
|
+
/** 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). */
|
|
42384
42522
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42385
42523
|
/** 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. */
|
|
42386
42524
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -42426,6 +42564,8 @@ export interface Routes {
|
|
|
42426
42564
|
acs_credential_id: string;
|
|
42427
42565
|
/** 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. */
|
|
42428
42566
|
acs_user_id?: string | undefined;
|
|
42567
|
+
/** 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. */
|
|
42568
|
+
user_identity_id?: string | undefined;
|
|
42429
42569
|
/** 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. */
|
|
42430
42570
|
connected_account_id: string;
|
|
42431
42571
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42508,7 +42648,7 @@ export interface Routes {
|
|
|
42508
42648
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42509
42649
|
warning_code: 'needs_to_be_reissued';
|
|
42510
42650
|
}>;
|
|
42511
|
-
/** 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
|
|
42651
|
+
/** 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). */
|
|
42512
42652
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
42513
42653
|
/** 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. */
|
|
42514
42654
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -43299,7 +43439,7 @@ export interface Routes {
|
|
|
43299
43439
|
pending_auto_update: boolean;
|
|
43300
43440
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43301
43441
|
card_format: 'TLCode' | 'rfid48';
|
|
43302
|
-
/**
|
|
43442
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43303
43443
|
card_holder?: string | undefined;
|
|
43304
43444
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43305
43445
|
number_of_issued_cards: number;
|
|
@@ -43315,6 +43455,8 @@ export interface Routes {
|
|
|
43315
43455
|
acs_credential_id: string;
|
|
43316
43456
|
/** 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. */
|
|
43317
43457
|
acs_user_id?: string | undefined;
|
|
43458
|
+
/** 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. */
|
|
43459
|
+
user_identity_id?: string | undefined;
|
|
43318
43460
|
/** 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. */
|
|
43319
43461
|
connected_account_id: string;
|
|
43320
43462
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43397,7 +43539,7 @@ export interface Routes {
|
|
|
43397
43539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43398
43540
|
warning_code: 'needs_to_be_reissued';
|
|
43399
43541
|
}>;
|
|
43400
|
-
/** 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
|
|
43542
|
+
/** 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). */
|
|
43401
43543
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43402
43544
|
/** 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. */
|
|
43403
43545
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -43443,6 +43585,8 @@ export interface Routes {
|
|
|
43443
43585
|
acs_credential_id: string;
|
|
43444
43586
|
/** 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. */
|
|
43445
43587
|
acs_user_id?: string | undefined;
|
|
43588
|
+
/** 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. */
|
|
43589
|
+
user_identity_id?: string | undefined;
|
|
43446
43590
|
/** 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. */
|
|
43447
43591
|
connected_account_id: string;
|
|
43448
43592
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43525,7 +43669,7 @@ export interface Routes {
|
|
|
43525
43669
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43526
43670
|
warning_code: 'needs_to_be_reissued';
|
|
43527
43671
|
}>;
|
|
43528
|
-
/** 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
|
|
43672
|
+
/** 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). */
|
|
43529
43673
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43530
43674
|
/** 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. */
|
|
43531
43675
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -43623,6 +43767,8 @@ export interface Routes {
|
|
|
43623
43767
|
acs_credential_id: string;
|
|
43624
43768
|
/** 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. */
|
|
43625
43769
|
acs_user_id?: string | undefined;
|
|
43770
|
+
/** 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. */
|
|
43771
|
+
user_identity_id?: string | undefined;
|
|
43626
43772
|
/** 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. */
|
|
43627
43773
|
connected_account_id: string;
|
|
43628
43774
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43705,7 +43851,7 @@ export interface Routes {
|
|
|
43705
43851
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43706
43852
|
warning_code: 'needs_to_be_reissued';
|
|
43707
43853
|
}>;
|
|
43708
|
-
/** 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
|
|
43854
|
+
/** 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). */
|
|
43709
43855
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43710
43856
|
/** 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. */
|
|
43711
43857
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -43751,6 +43897,8 @@ export interface Routes {
|
|
|
43751
43897
|
acs_credential_id: string;
|
|
43752
43898
|
/** 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. */
|
|
43753
43899
|
acs_user_id?: string | undefined;
|
|
43900
|
+
/** 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. */
|
|
43901
|
+
user_identity_id?: string | undefined;
|
|
43754
43902
|
/** 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. */
|
|
43755
43903
|
connected_account_id: string;
|
|
43756
43904
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -43833,7 +43981,7 @@ export interface Routes {
|
|
|
43833
43981
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43834
43982
|
warning_code: 'needs_to_be_reissued';
|
|
43835
43983
|
}>;
|
|
43836
|
-
/** 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
|
|
43984
|
+
/** 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). */
|
|
43837
43985
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
43838
43986
|
/** 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. */
|
|
43839
43987
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -45201,6 +45349,8 @@ export interface Routes {
|
|
|
45201
45349
|
acs_credential_id: string;
|
|
45202
45350
|
/** 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. */
|
|
45203
45351
|
acs_user_id?: string | undefined;
|
|
45352
|
+
/** 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. */
|
|
45353
|
+
user_identity_id?: string | undefined;
|
|
45204
45354
|
/** 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. */
|
|
45205
45355
|
connected_account_id: string;
|
|
45206
45356
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45283,7 +45433,7 @@ export interface Routes {
|
|
|
45283
45433
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45284
45434
|
warning_code: 'needs_to_be_reissued';
|
|
45285
45435
|
}>;
|
|
45286
|
-
/** 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
|
|
45436
|
+
/** 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). */
|
|
45287
45437
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45288
45438
|
/** 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. */
|
|
45289
45439
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -45365,6 +45515,8 @@ export interface Routes {
|
|
|
45365
45515
|
acs_credentials: Array<{
|
|
45366
45516
|
/** 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. */
|
|
45367
45517
|
acs_user_id?: string | undefined;
|
|
45518
|
+
/** 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. */
|
|
45519
|
+
user_identity_id?: string | undefined;
|
|
45368
45520
|
/** 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. */
|
|
45369
45521
|
connected_account_id: string;
|
|
45370
45522
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45447,7 +45599,7 @@ export interface Routes {
|
|
|
45447
45599
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45448
45600
|
warning_code: 'needs_to_be_reissued';
|
|
45449
45601
|
}>;
|
|
45450
|
-
/** 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
|
|
45602
|
+
/** 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). */
|
|
45451
45603
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
45452
45604
|
/** 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. */
|
|
45453
45605
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -45928,7 +46080,7 @@ export interface Routes {
|
|
|
45928
46080
|
pending_auto_update: boolean;
|
|
45929
46081
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45930
46082
|
card_format: 'TLCode' | 'rfid48';
|
|
45931
|
-
/**
|
|
46083
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45932
46084
|
card_holder?: string | undefined;
|
|
45933
46085
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45934
46086
|
number_of_issued_cards: number;
|
|
@@ -45944,6 +46096,8 @@ export interface Routes {
|
|
|
45944
46096
|
acs_credential_id: string;
|
|
45945
46097
|
/** 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. */
|
|
45946
46098
|
acs_user_id?: string | undefined;
|
|
46099
|
+
/** 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. */
|
|
46100
|
+
user_identity_id?: string | undefined;
|
|
45947
46101
|
/** 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. */
|
|
45948
46102
|
connected_account_id: string;
|
|
45949
46103
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46026,7 +46180,7 @@ export interface Routes {
|
|
|
46026
46180
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46027
46181
|
warning_code: 'needs_to_be_reissued';
|
|
46028
46182
|
}>;
|
|
46029
|
-
/** 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
|
|
46183
|
+
/** 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). */
|
|
46030
46184
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
46031
46185
|
/** 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. */
|
|
46032
46186
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -46072,6 +46226,8 @@ export interface Routes {
|
|
|
46072
46226
|
acs_credential_id: string;
|
|
46073
46227
|
/** 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. */
|
|
46074
46228
|
acs_user_id?: string | undefined;
|
|
46229
|
+
/** 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. */
|
|
46230
|
+
user_identity_id?: string | undefined;
|
|
46075
46231
|
/** 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. */
|
|
46076
46232
|
connected_account_id: string;
|
|
46077
46233
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46154,7 +46310,7 @@ export interface Routes {
|
|
|
46154
46310
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46155
46311
|
warning_code: 'needs_to_be_reissued';
|
|
46156
46312
|
}>;
|
|
46157
|
-
/** 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
|
|
46313
|
+
/** 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). */
|
|
46158
46314
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
46159
46315
|
/** 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. */
|
|
46160
46316
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -46252,6 +46408,8 @@ export interface Routes {
|
|
|
46252
46408
|
acs_credential_id: string;
|
|
46253
46409
|
/** 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. */
|
|
46254
46410
|
acs_user_id?: string | undefined;
|
|
46411
|
+
/** 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. */
|
|
46412
|
+
user_identity_id?: string | undefined;
|
|
46255
46413
|
/** 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. */
|
|
46256
46414
|
connected_account_id: string;
|
|
46257
46415
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46334,7 +46492,7 @@ export interface Routes {
|
|
|
46334
46492
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46335
46493
|
warning_code: 'needs_to_be_reissued';
|
|
46336
46494
|
}>;
|
|
46337
|
-
/** 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
|
|
46495
|
+
/** 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). */
|
|
46338
46496
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
46339
46497
|
/** 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. */
|
|
46340
46498
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -46380,6 +46538,8 @@ export interface Routes {
|
|
|
46380
46538
|
acs_credential_id: string;
|
|
46381
46539
|
/** 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. */
|
|
46382
46540
|
acs_user_id?: string | undefined;
|
|
46541
|
+
/** 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. */
|
|
46542
|
+
user_identity_id?: string | undefined;
|
|
46383
46543
|
/** 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. */
|
|
46384
46544
|
connected_account_id: string;
|
|
46385
46545
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46462,7 +46622,7 @@ export interface Routes {
|
|
|
46462
46622
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
46463
46623
|
warning_code: 'needs_to_be_reissued';
|
|
46464
46624
|
}>;
|
|
46465
|
-
/** 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
|
|
46625
|
+
/** 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). */
|
|
46466
46626
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
46467
46627
|
/** 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. */
|
|
46468
46628
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -47184,7 +47344,7 @@ export interface Routes {
|
|
|
47184
47344
|
pending_auto_update: boolean;
|
|
47185
47345
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47186
47346
|
card_format: 'TLCode' | 'rfid48';
|
|
47187
|
-
/**
|
|
47347
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47188
47348
|
card_holder?: string | undefined;
|
|
47189
47349
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47190
47350
|
number_of_issued_cards: number;
|
|
@@ -47200,6 +47360,8 @@ export interface Routes {
|
|
|
47200
47360
|
acs_credential_id: string;
|
|
47201
47361
|
/** 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. */
|
|
47202
47362
|
acs_user_id?: string | undefined;
|
|
47363
|
+
/** 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. */
|
|
47364
|
+
user_identity_id?: string | undefined;
|
|
47203
47365
|
/** 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. */
|
|
47204
47366
|
connected_account_id: string;
|
|
47205
47367
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47282,7 +47444,7 @@ export interface Routes {
|
|
|
47282
47444
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47283
47445
|
warning_code: 'needs_to_be_reissued';
|
|
47284
47446
|
}>;
|
|
47285
|
-
/** 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
|
|
47447
|
+
/** 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). */
|
|
47286
47448
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
47287
47449
|
/** 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. */
|
|
47288
47450
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -47328,6 +47490,8 @@ export interface Routes {
|
|
|
47328
47490
|
acs_credential_id: string;
|
|
47329
47491
|
/** 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. */
|
|
47330
47492
|
acs_user_id?: string | undefined;
|
|
47493
|
+
/** 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. */
|
|
47494
|
+
user_identity_id?: string | undefined;
|
|
47331
47495
|
/** 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. */
|
|
47332
47496
|
connected_account_id: string;
|
|
47333
47497
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47410,7 +47574,7 @@ export interface Routes {
|
|
|
47410
47574
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47411
47575
|
warning_code: 'needs_to_be_reissued';
|
|
47412
47576
|
}>;
|
|
47413
|
-
/** 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
|
|
47577
|
+
/** 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). */
|
|
47414
47578
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
47415
47579
|
/** 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. */
|
|
47416
47580
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -47508,6 +47672,8 @@ export interface Routes {
|
|
|
47508
47672
|
acs_credential_id: string;
|
|
47509
47673
|
/** 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. */
|
|
47510
47674
|
acs_user_id?: string | undefined;
|
|
47675
|
+
/** 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. */
|
|
47676
|
+
user_identity_id?: string | undefined;
|
|
47511
47677
|
/** 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. */
|
|
47512
47678
|
connected_account_id: string;
|
|
47513
47679
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47590,7 +47756,7 @@ export interface Routes {
|
|
|
47590
47756
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47591
47757
|
warning_code: 'needs_to_be_reissued';
|
|
47592
47758
|
}>;
|
|
47593
|
-
/** 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
|
|
47759
|
+
/** 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). */
|
|
47594
47760
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
47595
47761
|
/** 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. */
|
|
47596
47762
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -47636,6 +47802,8 @@ export interface Routes {
|
|
|
47636
47802
|
acs_credential_id: string;
|
|
47637
47803
|
/** 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. */
|
|
47638
47804
|
acs_user_id?: string | undefined;
|
|
47805
|
+
/** 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. */
|
|
47806
|
+
user_identity_id?: string | undefined;
|
|
47639
47807
|
/** 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. */
|
|
47640
47808
|
connected_account_id: string;
|
|
47641
47809
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -47718,7 +47886,7 @@ export interface Routes {
|
|
|
47718
47886
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
47719
47887
|
warning_code: 'needs_to_be_reissued';
|
|
47720
47888
|
}>;
|
|
47721
|
-
/** 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
|
|
47889
|
+
/** 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). */
|
|
47722
47890
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
47723
47891
|
/** 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. */
|
|
47724
47892
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -48532,7 +48700,7 @@ export interface Routes {
|
|
|
48532
48700
|
pending_auto_update: boolean;
|
|
48533
48701
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48534
48702
|
card_format: 'TLCode' | 'rfid48';
|
|
48535
|
-
/**
|
|
48703
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48536
48704
|
card_holder?: string | undefined;
|
|
48537
48705
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48538
48706
|
number_of_issued_cards: number;
|
|
@@ -48548,6 +48716,8 @@ export interface Routes {
|
|
|
48548
48716
|
acs_credential_id: string;
|
|
48549
48717
|
/** 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. */
|
|
48550
48718
|
acs_user_id?: string | undefined;
|
|
48719
|
+
/** 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. */
|
|
48720
|
+
user_identity_id?: string | undefined;
|
|
48551
48721
|
/** 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. */
|
|
48552
48722
|
connected_account_id: string;
|
|
48553
48723
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48630,7 +48800,7 @@ export interface Routes {
|
|
|
48630
48800
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48631
48801
|
warning_code: 'needs_to_be_reissued';
|
|
48632
48802
|
}>;
|
|
48633
|
-
/** 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
|
|
48803
|
+
/** 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). */
|
|
48634
48804
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
48635
48805
|
/** 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. */
|
|
48636
48806
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -48676,6 +48846,8 @@ export interface Routes {
|
|
|
48676
48846
|
acs_credential_id: string;
|
|
48677
48847
|
/** 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. */
|
|
48678
48848
|
acs_user_id?: string | undefined;
|
|
48849
|
+
/** 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. */
|
|
48850
|
+
user_identity_id?: string | undefined;
|
|
48679
48851
|
/** 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. */
|
|
48680
48852
|
connected_account_id: string;
|
|
48681
48853
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48758,7 +48930,7 @@ export interface Routes {
|
|
|
48758
48930
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48759
48931
|
warning_code: 'needs_to_be_reissued';
|
|
48760
48932
|
}>;
|
|
48761
|
-
/** 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
|
|
48933
|
+
/** 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). */
|
|
48762
48934
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
48763
48935
|
/** 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. */
|
|
48764
48936
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -48856,6 +49028,8 @@ export interface Routes {
|
|
|
48856
49028
|
acs_credential_id: string;
|
|
48857
49029
|
/** 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. */
|
|
48858
49030
|
acs_user_id?: string | undefined;
|
|
49031
|
+
/** 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. */
|
|
49032
|
+
user_identity_id?: string | undefined;
|
|
48859
49033
|
/** 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. */
|
|
48860
49034
|
connected_account_id: string;
|
|
48861
49035
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -48938,7 +49112,7 @@ export interface Routes {
|
|
|
48938
49112
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
48939
49113
|
warning_code: 'needs_to_be_reissued';
|
|
48940
49114
|
}>;
|
|
48941
|
-
/** 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
|
|
49115
|
+
/** 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). */
|
|
48942
49116
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
48943
49117
|
/** 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. */
|
|
48944
49118
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -48984,6 +49158,8 @@ export interface Routes {
|
|
|
48984
49158
|
acs_credential_id: string;
|
|
48985
49159
|
/** 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. */
|
|
48986
49160
|
acs_user_id?: string | undefined;
|
|
49161
|
+
/** 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. */
|
|
49162
|
+
user_identity_id?: string | undefined;
|
|
48987
49163
|
/** 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. */
|
|
48988
49164
|
connected_account_id: string;
|
|
48989
49165
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -49066,7 +49242,7 @@ export interface Routes {
|
|
|
49066
49242
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49067
49243
|
warning_code: 'needs_to_be_reissued';
|
|
49068
49244
|
}>;
|
|
49069
|
-
/** 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
|
|
49245
|
+
/** 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). */
|
|
49070
49246
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
49071
49247
|
/** 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. */
|
|
49072
49248
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -50943,7 +51119,7 @@ export interface Routes {
|
|
|
50943
51119
|
pending_auto_update: boolean;
|
|
50944
51120
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50945
51121
|
card_format: 'TLCode' | 'rfid48';
|
|
50946
|
-
/**
|
|
51122
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50947
51123
|
card_holder?: string | undefined;
|
|
50948
51124
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50949
51125
|
number_of_issued_cards: number;
|
|
@@ -50959,6 +51135,8 @@ export interface Routes {
|
|
|
50959
51135
|
acs_credential_id: string;
|
|
50960
51136
|
/** 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. */
|
|
50961
51137
|
acs_user_id?: string | undefined;
|
|
51138
|
+
/** 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. */
|
|
51139
|
+
user_identity_id?: string | undefined;
|
|
50962
51140
|
/** 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. */
|
|
50963
51141
|
connected_account_id: string;
|
|
50964
51142
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51041,7 +51219,7 @@ export interface Routes {
|
|
|
51041
51219
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51042
51220
|
warning_code: 'needs_to_be_reissued';
|
|
51043
51221
|
}>;
|
|
51044
|
-
/** 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
|
|
51222
|
+
/** 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). */
|
|
51045
51223
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
51046
51224
|
/** 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. */
|
|
51047
51225
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -51087,6 +51265,8 @@ export interface Routes {
|
|
|
51087
51265
|
acs_credential_id: string;
|
|
51088
51266
|
/** 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. */
|
|
51089
51267
|
acs_user_id?: string | undefined;
|
|
51268
|
+
/** 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. */
|
|
51269
|
+
user_identity_id?: string | undefined;
|
|
51090
51270
|
/** 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. */
|
|
51091
51271
|
connected_account_id: string;
|
|
51092
51272
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51169,7 +51349,7 @@ export interface Routes {
|
|
|
51169
51349
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51170
51350
|
warning_code: 'needs_to_be_reissued';
|
|
51171
51351
|
}>;
|
|
51172
|
-
/** 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
|
|
51352
|
+
/** 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). */
|
|
51173
51353
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
51174
51354
|
/** 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. */
|
|
51175
51355
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -51267,6 +51447,8 @@ export interface Routes {
|
|
|
51267
51447
|
acs_credential_id: string;
|
|
51268
51448
|
/** 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. */
|
|
51269
51449
|
acs_user_id?: string | undefined;
|
|
51450
|
+
/** 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. */
|
|
51451
|
+
user_identity_id?: string | undefined;
|
|
51270
51452
|
/** 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. */
|
|
51271
51453
|
connected_account_id: string;
|
|
51272
51454
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51349,7 +51531,7 @@ export interface Routes {
|
|
|
51349
51531
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51350
51532
|
warning_code: 'needs_to_be_reissued';
|
|
51351
51533
|
}>;
|
|
51352
|
-
/** 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
|
|
51534
|
+
/** 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). */
|
|
51353
51535
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
51354
51536
|
/** 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. */
|
|
51355
51537
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -51395,6 +51577,8 @@ export interface Routes {
|
|
|
51395
51577
|
acs_credential_id: string;
|
|
51396
51578
|
/** 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. */
|
|
51397
51579
|
acs_user_id?: string | undefined;
|
|
51580
|
+
/** 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. */
|
|
51581
|
+
user_identity_id?: string | undefined;
|
|
51398
51582
|
/** 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. */
|
|
51399
51583
|
connected_account_id: string;
|
|
51400
51584
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -51477,7 +51661,7 @@ export interface Routes {
|
|
|
51477
51661
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51478
51662
|
warning_code: 'needs_to_be_reissued';
|
|
51479
51663
|
}>;
|
|
51480
|
-
/** 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
|
|
51664
|
+
/** 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). */
|
|
51481
51665
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
51482
51666
|
/** 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. */
|
|
51483
51667
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -52203,7 +52387,7 @@ export interface Routes {
|
|
|
52203
52387
|
pending_auto_update: boolean;
|
|
52204
52388
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
52205
52389
|
card_format: 'TLCode' | 'rfid48';
|
|
52206
|
-
/**
|
|
52390
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
52207
52391
|
card_holder?: string | undefined;
|
|
52208
52392
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
52209
52393
|
number_of_issued_cards: number;
|
|
@@ -52219,6 +52403,8 @@ export interface Routes {
|
|
|
52219
52403
|
acs_credential_id: string;
|
|
52220
52404
|
/** 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. */
|
|
52221
52405
|
acs_user_id?: string | undefined;
|
|
52406
|
+
/** 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. */
|
|
52407
|
+
user_identity_id?: string | undefined;
|
|
52222
52408
|
/** 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. */
|
|
52223
52409
|
connected_account_id: string;
|
|
52224
52410
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52301,7 +52487,7 @@ export interface Routes {
|
|
|
52301
52487
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52302
52488
|
warning_code: 'needs_to_be_reissued';
|
|
52303
52489
|
}>;
|
|
52304
|
-
/** 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
|
|
52490
|
+
/** 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). */
|
|
52305
52491
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52306
52492
|
/** 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. */
|
|
52307
52493
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -52347,6 +52533,8 @@ export interface Routes {
|
|
|
52347
52533
|
acs_credential_id: string;
|
|
52348
52534
|
/** 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. */
|
|
52349
52535
|
acs_user_id?: string | undefined;
|
|
52536
|
+
/** 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. */
|
|
52537
|
+
user_identity_id?: string | undefined;
|
|
52350
52538
|
/** 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. */
|
|
52351
52539
|
connected_account_id: string;
|
|
52352
52540
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52429,7 +52617,7 @@ export interface Routes {
|
|
|
52429
52617
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52430
52618
|
warning_code: 'needs_to_be_reissued';
|
|
52431
52619
|
}>;
|
|
52432
|
-
/** 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
|
|
52620
|
+
/** 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). */
|
|
52433
52621
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52434
52622
|
/** 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. */
|
|
52435
52623
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -52527,6 +52715,8 @@ export interface Routes {
|
|
|
52527
52715
|
acs_credential_id: string;
|
|
52528
52716
|
/** 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. */
|
|
52529
52717
|
acs_user_id?: string | undefined;
|
|
52718
|
+
/** 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. */
|
|
52719
|
+
user_identity_id?: string | undefined;
|
|
52530
52720
|
/** 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. */
|
|
52531
52721
|
connected_account_id: string;
|
|
52532
52722
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52609,7 +52799,7 @@ export interface Routes {
|
|
|
52609
52799
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52610
52800
|
warning_code: 'needs_to_be_reissued';
|
|
52611
52801
|
}>;
|
|
52612
|
-
/** 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
|
|
52802
|
+
/** 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). */
|
|
52613
52803
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52614
52804
|
/** 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. */
|
|
52615
52805
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -52655,6 +52845,8 @@ export interface Routes {
|
|
|
52655
52845
|
acs_credential_id: string;
|
|
52656
52846
|
/** 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. */
|
|
52657
52847
|
acs_user_id?: string | undefined;
|
|
52848
|
+
/** 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. */
|
|
52849
|
+
user_identity_id?: string | undefined;
|
|
52658
52850
|
/** 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. */
|
|
52659
52851
|
connected_account_id: string;
|
|
52660
52852
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52737,7 +52929,7 @@ export interface Routes {
|
|
|
52737
52929
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52738
52930
|
warning_code: 'needs_to_be_reissued';
|
|
52739
52931
|
}>;
|
|
52740
|
-
/** 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
|
|
52932
|
+
/** 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). */
|
|
52741
52933
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
52742
52934
|
/** 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. */
|
|
52743
52935
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -55752,7 +55944,7 @@ export interface Routes {
|
|
|
55752
55944
|
pending_auto_update: boolean;
|
|
55753
55945
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55754
55946
|
card_format: 'TLCode' | 'rfid48';
|
|
55755
|
-
/**
|
|
55947
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55756
55948
|
card_holder?: string | undefined;
|
|
55757
55949
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55758
55950
|
number_of_issued_cards: number;
|
|
@@ -55768,6 +55960,8 @@ export interface Routes {
|
|
|
55768
55960
|
acs_credential_id: string;
|
|
55769
55961
|
/** 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. */
|
|
55770
55962
|
acs_user_id?: string | undefined;
|
|
55963
|
+
/** 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. */
|
|
55964
|
+
user_identity_id?: string | undefined;
|
|
55771
55965
|
/** 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. */
|
|
55772
55966
|
connected_account_id: string;
|
|
55773
55967
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55850,7 +56044,7 @@ export interface Routes {
|
|
|
55850
56044
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55851
56045
|
warning_code: 'needs_to_be_reissued';
|
|
55852
56046
|
}>;
|
|
55853
|
-
/** 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
|
|
56047
|
+
/** 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). */
|
|
55854
56048
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55855
56049
|
/** 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. */
|
|
55856
56050
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -55896,6 +56090,8 @@ export interface Routes {
|
|
|
55896
56090
|
acs_credential_id: string;
|
|
55897
56091
|
/** 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. */
|
|
55898
56092
|
acs_user_id?: string | undefined;
|
|
56093
|
+
/** 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. */
|
|
56094
|
+
user_identity_id?: string | undefined;
|
|
55899
56095
|
/** 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. */
|
|
55900
56096
|
connected_account_id: string;
|
|
55901
56097
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55978,7 +56174,7 @@ export interface Routes {
|
|
|
55978
56174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55979
56175
|
warning_code: 'needs_to_be_reissued';
|
|
55980
56176
|
}>;
|
|
55981
|
-
/** 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
|
|
56177
|
+
/** 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). */
|
|
55982
56178
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
55983
56179
|
/** 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. */
|
|
55984
56180
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -56076,6 +56272,8 @@ export interface Routes {
|
|
|
56076
56272
|
acs_credential_id: string;
|
|
56077
56273
|
/** 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. */
|
|
56078
56274
|
acs_user_id?: string | undefined;
|
|
56275
|
+
/** 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. */
|
|
56276
|
+
user_identity_id?: string | undefined;
|
|
56079
56277
|
/** 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. */
|
|
56080
56278
|
connected_account_id: string;
|
|
56081
56279
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56158,7 +56356,7 @@ export interface Routes {
|
|
|
56158
56356
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56159
56357
|
warning_code: 'needs_to_be_reissued';
|
|
56160
56358
|
}>;
|
|
56161
|
-
/** 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
|
|
56359
|
+
/** 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). */
|
|
56162
56360
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56163
56361
|
/** 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. */
|
|
56164
56362
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -56204,6 +56402,8 @@ export interface Routes {
|
|
|
56204
56402
|
acs_credential_id: string;
|
|
56205
56403
|
/** 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. */
|
|
56206
56404
|
acs_user_id?: string | undefined;
|
|
56405
|
+
/** 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. */
|
|
56406
|
+
user_identity_id?: string | undefined;
|
|
56207
56407
|
/** 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. */
|
|
56208
56408
|
connected_account_id: string;
|
|
56209
56409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56286,7 +56486,7 @@ export interface Routes {
|
|
|
56286
56486
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56287
56487
|
warning_code: 'needs_to_be_reissued';
|
|
56288
56488
|
}>;
|
|
56289
|
-
/** 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
|
|
56489
|
+
/** 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). */
|
|
56290
56490
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
56291
56491
|
/** 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. */
|
|
56292
56492
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -57201,7 +57401,7 @@ export interface Routes {
|
|
|
57201
57401
|
pending_auto_update: boolean;
|
|
57202
57402
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57203
57403
|
card_format: 'TLCode' | 'rfid48';
|
|
57204
|
-
/**
|
|
57404
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57205
57405
|
card_holder?: string | undefined;
|
|
57206
57406
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
57207
57407
|
number_of_issued_cards: number;
|
|
@@ -57217,6 +57417,8 @@ export interface Routes {
|
|
|
57217
57417
|
acs_credential_id: string;
|
|
57218
57418
|
/** 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. */
|
|
57219
57419
|
acs_user_id?: string | undefined;
|
|
57420
|
+
/** 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. */
|
|
57421
|
+
user_identity_id?: string | undefined;
|
|
57220
57422
|
/** 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. */
|
|
57221
57423
|
connected_account_id: string;
|
|
57222
57424
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57299,7 +57501,7 @@ export interface Routes {
|
|
|
57299
57501
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57300
57502
|
warning_code: 'needs_to_be_reissued';
|
|
57301
57503
|
}>;
|
|
57302
|
-
/** 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
|
|
57504
|
+
/** 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). */
|
|
57303
57505
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57304
57506
|
/** 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. */
|
|
57305
57507
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -57345,6 +57547,8 @@ export interface Routes {
|
|
|
57345
57547
|
acs_credential_id: string;
|
|
57346
57548
|
/** 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. */
|
|
57347
57549
|
acs_user_id?: string | undefined;
|
|
57550
|
+
/** 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. */
|
|
57551
|
+
user_identity_id?: string | undefined;
|
|
57348
57552
|
/** 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. */
|
|
57349
57553
|
connected_account_id: string;
|
|
57350
57554
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57427,7 +57631,7 @@ export interface Routes {
|
|
|
57427
57631
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57428
57632
|
warning_code: 'needs_to_be_reissued';
|
|
57429
57633
|
}>;
|
|
57430
|
-
/** 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
|
|
57634
|
+
/** 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). */
|
|
57431
57635
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57432
57636
|
/** 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. */
|
|
57433
57637
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -57525,6 +57729,8 @@ export interface Routes {
|
|
|
57525
57729
|
acs_credential_id: string;
|
|
57526
57730
|
/** 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. */
|
|
57527
57731
|
acs_user_id?: string | undefined;
|
|
57732
|
+
/** 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. */
|
|
57733
|
+
user_identity_id?: string | undefined;
|
|
57528
57734
|
/** 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. */
|
|
57529
57735
|
connected_account_id: string;
|
|
57530
57736
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57607,7 +57813,7 @@ export interface Routes {
|
|
|
57607
57813
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57608
57814
|
warning_code: 'needs_to_be_reissued';
|
|
57609
57815
|
}>;
|
|
57610
|
-
/** 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
|
|
57816
|
+
/** 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). */
|
|
57611
57817
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57612
57818
|
/** 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. */
|
|
57613
57819
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -57653,6 +57859,8 @@ export interface Routes {
|
|
|
57653
57859
|
acs_credential_id: string;
|
|
57654
57860
|
/** 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. */
|
|
57655
57861
|
acs_user_id?: string | undefined;
|
|
57862
|
+
/** 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. */
|
|
57863
|
+
user_identity_id?: string | undefined;
|
|
57656
57864
|
/** 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. */
|
|
57657
57865
|
connected_account_id: string;
|
|
57658
57866
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -57735,7 +57943,7 @@ export interface Routes {
|
|
|
57735
57943
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57736
57944
|
warning_code: 'needs_to_be_reissued';
|
|
57737
57945
|
}>;
|
|
57738
|
-
/** 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
|
|
57946
|
+
/** 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). */
|
|
57739
57947
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
57740
57948
|
/** 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. */
|
|
57741
57949
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -58480,7 +58688,7 @@ export interface Routes {
|
|
|
58480
58688
|
pending_auto_update: boolean;
|
|
58481
58689
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58482
58690
|
card_format: 'TLCode' | 'rfid48';
|
|
58483
|
-
/**
|
|
58691
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58484
58692
|
card_holder?: string | undefined;
|
|
58485
58693
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
58486
58694
|
number_of_issued_cards: number;
|
|
@@ -58496,6 +58704,8 @@ export interface Routes {
|
|
|
58496
58704
|
acs_credential_id: string;
|
|
58497
58705
|
/** 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. */
|
|
58498
58706
|
acs_user_id?: string | undefined;
|
|
58707
|
+
/** 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. */
|
|
58708
|
+
user_identity_id?: string | undefined;
|
|
58499
58709
|
/** 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. */
|
|
58500
58710
|
connected_account_id: string;
|
|
58501
58711
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58578,7 +58788,7 @@ export interface Routes {
|
|
|
58578
58788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58579
58789
|
warning_code: 'needs_to_be_reissued';
|
|
58580
58790
|
}>;
|
|
58581
|
-
/** 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
|
|
58791
|
+
/** 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). */
|
|
58582
58792
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58583
58793
|
/** 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. */
|
|
58584
58794
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -58624,6 +58834,8 @@ export interface Routes {
|
|
|
58624
58834
|
acs_credential_id: string;
|
|
58625
58835
|
/** 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. */
|
|
58626
58836
|
acs_user_id?: string | undefined;
|
|
58837
|
+
/** 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. */
|
|
58838
|
+
user_identity_id?: string | undefined;
|
|
58627
58839
|
/** 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. */
|
|
58628
58840
|
connected_account_id: string;
|
|
58629
58841
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58706,7 +58918,7 @@ export interface Routes {
|
|
|
58706
58918
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58707
58919
|
warning_code: 'needs_to_be_reissued';
|
|
58708
58920
|
}>;
|
|
58709
|
-
/** 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
|
|
58921
|
+
/** 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). */
|
|
58710
58922
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58711
58923
|
/** 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. */
|
|
58712
58924
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -58804,6 +59016,8 @@ export interface Routes {
|
|
|
58804
59016
|
acs_credential_id: string;
|
|
58805
59017
|
/** 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. */
|
|
58806
59018
|
acs_user_id?: string | undefined;
|
|
59019
|
+
/** 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. */
|
|
59020
|
+
user_identity_id?: string | undefined;
|
|
58807
59021
|
/** 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. */
|
|
58808
59022
|
connected_account_id: string;
|
|
58809
59023
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -58886,7 +59100,7 @@ export interface Routes {
|
|
|
58886
59100
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58887
59101
|
warning_code: 'needs_to_be_reissued';
|
|
58888
59102
|
}>;
|
|
58889
|
-
/** 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
|
|
59103
|
+
/** 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). */
|
|
58890
59104
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
58891
59105
|
/** 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. */
|
|
58892
59106
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -58932,6 +59146,8 @@ export interface Routes {
|
|
|
58932
59146
|
acs_credential_id: string;
|
|
58933
59147
|
/** 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. */
|
|
58934
59148
|
acs_user_id?: string | undefined;
|
|
59149
|
+
/** 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. */
|
|
59150
|
+
user_identity_id?: string | undefined;
|
|
58935
59151
|
/** 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. */
|
|
58936
59152
|
connected_account_id: string;
|
|
58937
59153
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59014,7 +59230,7 @@ export interface Routes {
|
|
|
59014
59230
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59015
59231
|
warning_code: 'needs_to_be_reissued';
|
|
59016
59232
|
}>;
|
|
59017
|
-
/** 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
|
|
59233
|
+
/** 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). */
|
|
59018
59234
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59019
59235
|
/** 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. */
|
|
59020
59236
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -59860,7 +60076,7 @@ export interface Routes {
|
|
|
59860
60076
|
pending_auto_update: boolean;
|
|
59861
60077
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59862
60078
|
card_format: 'TLCode' | 'rfid48';
|
|
59863
|
-
/**
|
|
60079
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59864
60080
|
card_holder?: string | undefined;
|
|
59865
60081
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59866
60082
|
number_of_issued_cards: number;
|
|
@@ -59876,6 +60092,8 @@ export interface Routes {
|
|
|
59876
60092
|
acs_credential_id: string;
|
|
59877
60093
|
/** 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. */
|
|
59878
60094
|
acs_user_id?: string | undefined;
|
|
60095
|
+
/** 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. */
|
|
60096
|
+
user_identity_id?: string | undefined;
|
|
59879
60097
|
/** 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. */
|
|
59880
60098
|
connected_account_id: string;
|
|
59881
60099
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -59958,7 +60176,7 @@ export interface Routes {
|
|
|
59958
60176
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59959
60177
|
warning_code: 'needs_to_be_reissued';
|
|
59960
60178
|
}>;
|
|
59961
|
-
/** 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
|
|
60179
|
+
/** 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). */
|
|
59962
60180
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
59963
60181
|
/** 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. */
|
|
59964
60182
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -60004,6 +60222,8 @@ export interface Routes {
|
|
|
60004
60222
|
acs_credential_id: string;
|
|
60005
60223
|
/** 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. */
|
|
60006
60224
|
acs_user_id?: string | undefined;
|
|
60225
|
+
/** 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. */
|
|
60226
|
+
user_identity_id?: string | undefined;
|
|
60007
60227
|
/** 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. */
|
|
60008
60228
|
connected_account_id: string;
|
|
60009
60229
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60086,7 +60306,7 @@ export interface Routes {
|
|
|
60086
60306
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60087
60307
|
warning_code: 'needs_to_be_reissued';
|
|
60088
60308
|
}>;
|
|
60089
|
-
/** 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
|
|
60309
|
+
/** 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). */
|
|
60090
60310
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60091
60311
|
/** 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. */
|
|
60092
60312
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -60184,6 +60404,8 @@ export interface Routes {
|
|
|
60184
60404
|
acs_credential_id: string;
|
|
60185
60405
|
/** 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. */
|
|
60186
60406
|
acs_user_id?: string | undefined;
|
|
60407
|
+
/** 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. */
|
|
60408
|
+
user_identity_id?: string | undefined;
|
|
60187
60409
|
/** 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. */
|
|
60188
60410
|
connected_account_id: string;
|
|
60189
60411
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60266,7 +60488,7 @@ export interface Routes {
|
|
|
60266
60488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60267
60489
|
warning_code: 'needs_to_be_reissued';
|
|
60268
60490
|
}>;
|
|
60269
|
-
/** 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
|
|
60491
|
+
/** 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). */
|
|
60270
60492
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60271
60493
|
/** 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. */
|
|
60272
60494
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -60312,6 +60534,8 @@ export interface Routes {
|
|
|
60312
60534
|
acs_credential_id: string;
|
|
60313
60535
|
/** 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. */
|
|
60314
60536
|
acs_user_id?: string | undefined;
|
|
60537
|
+
/** 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. */
|
|
60538
|
+
user_identity_id?: string | undefined;
|
|
60315
60539
|
/** 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. */
|
|
60316
60540
|
connected_account_id: string;
|
|
60317
60541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -60394,7 +60618,7 @@ export interface Routes {
|
|
|
60394
60618
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60395
60619
|
warning_code: 'needs_to_be_reissued';
|
|
60396
60620
|
}>;
|
|
60397
|
-
/** 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
|
|
60621
|
+
/** 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). */
|
|
60398
60622
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
60399
60623
|
/** 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. */
|
|
60400
60624
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -61667,12 +61891,18 @@ export interface Routes {
|
|
|
61667
61891
|
created_at: string;
|
|
61668
61892
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
61669
61893
|
workspace_id: string;
|
|
61670
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
61894
|
+
/** 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. */
|
|
61671
61895
|
errors: Array<{
|
|
61672
61896
|
/** Date and time at which Seam created the error. */
|
|
61673
61897
|
created_at: string;
|
|
61674
61898
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61675
61899
|
message: string;
|
|
61900
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61901
|
+
error_code: 'issue_with_acs_user';
|
|
61902
|
+
/** ID of the access system user that has an issue. */
|
|
61903
|
+
acs_user_id: string;
|
|
61904
|
+
/** ID of the access system that the user identity is associated with. */
|
|
61905
|
+
acs_system_id: string;
|
|
61676
61906
|
}>;
|
|
61677
61907
|
/** 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. */
|
|
61678
61908
|
warnings: Array<{
|
|
@@ -61721,14 +61951,14 @@ export interface Routes {
|
|
|
61721
61951
|
};
|
|
61722
61952
|
formData: {};
|
|
61723
61953
|
jsonResponse: {
|
|
61724
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61954
|
+
/** 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/).
|
|
61725
61955
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
61726
61956
|
enrollment_automation: {
|
|
61727
61957
|
/** ID of the enrollment automation. */
|
|
61728
61958
|
enrollment_automation_id: string;
|
|
61729
61959
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
61730
61960
|
credential_manager_acs_system_id: string;
|
|
61731
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61961
|
+
/** 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). */
|
|
61732
61962
|
user_identity_id: string;
|
|
61733
61963
|
/** Date and time at which the enrollment automation was created. */
|
|
61734
61964
|
created_at: string;
|
|
@@ -61756,14 +61986,14 @@ export interface Routes {
|
|
|
61756
61986
|
};
|
|
61757
61987
|
formData: {};
|
|
61758
61988
|
jsonResponse: {
|
|
61759
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61989
|
+
/** 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/).
|
|
61760
61990
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
61761
61991
|
enrollment_automation: {
|
|
61762
61992
|
/** ID of the enrollment automation. */
|
|
61763
61993
|
enrollment_automation_id: string;
|
|
61764
61994
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
61765
61995
|
credential_manager_acs_system_id: string;
|
|
61766
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61996
|
+
/** 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). */
|
|
61767
61997
|
user_identity_id: string;
|
|
61768
61998
|
/** Date and time at which the enrollment automation was created. */
|
|
61769
61999
|
created_at: string;
|
|
@@ -61788,7 +62018,7 @@ export interface Routes {
|
|
|
61788
62018
|
enrollment_automation_id: string;
|
|
61789
62019
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
61790
62020
|
credential_manager_acs_system_id: string;
|
|
61791
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
62021
|
+
/** 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). */
|
|
61792
62022
|
user_identity_id: string;
|
|
61793
62023
|
/** Date and time at which the enrollment automation was created. */
|
|
61794
62024
|
created_at: string;
|
|
@@ -61860,12 +62090,18 @@ export interface Routes {
|
|
|
61860
62090
|
created_at: string;
|
|
61861
62091
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
61862
62092
|
workspace_id: string;
|
|
61863
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
62093
|
+
/** 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. */
|
|
61864
62094
|
errors: Array<{
|
|
61865
62095
|
/** Date and time at which Seam created the error. */
|
|
61866
62096
|
created_at: string;
|
|
61867
62097
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61868
62098
|
message: string;
|
|
62099
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62100
|
+
error_code: 'issue_with_acs_user';
|
|
62101
|
+
/** ID of the access system user that has an issue. */
|
|
62102
|
+
acs_user_id: string;
|
|
62103
|
+
/** ID of the access system that the user identity is associated with. */
|
|
62104
|
+
acs_system_id: string;
|
|
61869
62105
|
}>;
|
|
61870
62106
|
/** 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. */
|
|
61871
62107
|
warnings: Array<{
|
|
@@ -61921,12 +62157,18 @@ export interface Routes {
|
|
|
61921
62157
|
created_at: string;
|
|
61922
62158
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
61923
62159
|
workspace_id: string;
|
|
61924
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
62160
|
+
/** 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. */
|
|
61925
62161
|
errors: Array<{
|
|
61926
62162
|
/** Date and time at which Seam created the error. */
|
|
61927
62163
|
created_at: string;
|
|
61928
62164
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61929
62165
|
message: string;
|
|
62166
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62167
|
+
error_code: 'issue_with_acs_user';
|
|
62168
|
+
/** ID of the access system user that has an issue. */
|
|
62169
|
+
acs_user_id: string;
|
|
62170
|
+
/** ID of the access system that the user identity is associated with. */
|
|
62171
|
+
acs_system_id: string;
|
|
61930
62172
|
}>;
|
|
61931
62173
|
/** 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. */
|
|
61932
62174
|
warnings: Array<{
|
|
@@ -64978,7 +65220,7 @@ export interface Routes {
|
|
|
64978
65220
|
pending_auto_update: boolean;
|
|
64979
65221
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
64980
65222
|
card_format: 'TLCode' | 'rfid48';
|
|
64981
|
-
/**
|
|
65223
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
64982
65224
|
card_holder?: string | undefined;
|
|
64983
65225
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
64984
65226
|
number_of_issued_cards: number;
|
|
@@ -64994,6 +65236,8 @@ export interface Routes {
|
|
|
64994
65236
|
acs_credential_id: string;
|
|
64995
65237
|
/** 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. */
|
|
64996
65238
|
acs_user_id?: string | undefined;
|
|
65239
|
+
/** 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. */
|
|
65240
|
+
user_identity_id?: string | undefined;
|
|
64997
65241
|
/** 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. */
|
|
64998
65242
|
connected_account_id: string;
|
|
64999
65243
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65076,7 +65320,7 @@ export interface Routes {
|
|
|
65076
65320
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65077
65321
|
warning_code: 'needs_to_be_reissued';
|
|
65078
65322
|
}>;
|
|
65079
|
-
/** 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
|
|
65323
|
+
/** 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). */
|
|
65080
65324
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65081
65325
|
/** 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. */
|
|
65082
65326
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -65122,6 +65366,8 @@ export interface Routes {
|
|
|
65122
65366
|
acs_credential_id: string;
|
|
65123
65367
|
/** 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. */
|
|
65124
65368
|
acs_user_id?: string | undefined;
|
|
65369
|
+
/** 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. */
|
|
65370
|
+
user_identity_id?: string | undefined;
|
|
65125
65371
|
/** 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. */
|
|
65126
65372
|
connected_account_id: string;
|
|
65127
65373
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65204,7 +65450,7 @@ export interface Routes {
|
|
|
65204
65450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65205
65451
|
warning_code: 'needs_to_be_reissued';
|
|
65206
65452
|
}>;
|
|
65207
|
-
/** 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
|
|
65453
|
+
/** 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). */
|
|
65208
65454
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65209
65455
|
/** 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. */
|
|
65210
65456
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -65302,6 +65548,8 @@ export interface Routes {
|
|
|
65302
65548
|
acs_credential_id: string;
|
|
65303
65549
|
/** 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. */
|
|
65304
65550
|
acs_user_id?: string | undefined;
|
|
65551
|
+
/** 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. */
|
|
65552
|
+
user_identity_id?: string | undefined;
|
|
65305
65553
|
/** 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. */
|
|
65306
65554
|
connected_account_id: string;
|
|
65307
65555
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65384,7 +65632,7 @@ export interface Routes {
|
|
|
65384
65632
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65385
65633
|
warning_code: 'needs_to_be_reissued';
|
|
65386
65634
|
}>;
|
|
65387
|
-
/** 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
|
|
65635
|
+
/** 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). */
|
|
65388
65636
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65389
65637
|
/** 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. */
|
|
65390
65638
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -65430,6 +65678,8 @@ export interface Routes {
|
|
|
65430
65678
|
acs_credential_id: string;
|
|
65431
65679
|
/** 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. */
|
|
65432
65680
|
acs_user_id?: string | undefined;
|
|
65681
|
+
/** 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. */
|
|
65682
|
+
user_identity_id?: string | undefined;
|
|
65433
65683
|
/** 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. */
|
|
65434
65684
|
connected_account_id: string;
|
|
65435
65685
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -65512,7 +65762,7 @@ export interface Routes {
|
|
|
65512
65762
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65513
65763
|
warning_code: 'needs_to_be_reissued';
|
|
65514
65764
|
}>;
|
|
65515
|
-
/** 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
|
|
65765
|
+
/** 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). */
|
|
65516
65766
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
65517
65767
|
/** 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. */
|
|
65518
65768
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|