@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
|
@@ -181,7 +181,7 @@ export interface Routes {
|
|
|
181
181
|
pending_auto_update: boolean
|
|
182
182
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
183
183
|
card_format: 'TLCode' | 'rfid48'
|
|
184
|
-
/**
|
|
184
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
185
185
|
card_holder?: string | undefined
|
|
186
186
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
187
187
|
number_of_issued_cards: number
|
|
@@ -200,6 +200,8 @@ export interface Routes {
|
|
|
200
200
|
acs_credential_id: string
|
|
201
201
|
/** 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. */
|
|
202
202
|
acs_user_id?: string | undefined
|
|
203
|
+
/** 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. */
|
|
204
|
+
user_identity_id?: string | undefined
|
|
203
205
|
/** 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. */
|
|
204
206
|
connected_account_id: string
|
|
205
207
|
acs_credential_pool_id?: string | undefined
|
|
@@ -300,7 +302,7 @@ export interface Routes {
|
|
|
300
302
|
warning_code: 'needs_to_be_reissued'
|
|
301
303
|
}
|
|
302
304
|
>
|
|
303
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
305
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
304
306
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
305
307
|
/** 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. */
|
|
306
308
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -357,6 +359,8 @@ export interface Routes {
|
|
|
357
359
|
acs_credential_id: string
|
|
358
360
|
/** 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. */
|
|
359
361
|
acs_user_id?: string | undefined
|
|
362
|
+
/** 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. */
|
|
363
|
+
user_identity_id?: string | undefined
|
|
360
364
|
/** 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. */
|
|
361
365
|
connected_account_id: string
|
|
362
366
|
acs_credential_pool_id?: string | undefined
|
|
@@ -457,7 +461,7 @@ export interface Routes {
|
|
|
457
461
|
warning_code: 'needs_to_be_reissued'
|
|
458
462
|
}
|
|
459
463
|
>
|
|
460
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
464
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
461
465
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
462
466
|
/** 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. */
|
|
463
467
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -576,6 +580,8 @@ export interface Routes {
|
|
|
576
580
|
acs_credential_id: string
|
|
577
581
|
/** 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. */
|
|
578
582
|
acs_user_id?: string | undefined
|
|
583
|
+
/** 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. */
|
|
584
|
+
user_identity_id?: string | undefined
|
|
579
585
|
/** 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. */
|
|
580
586
|
connected_account_id: string
|
|
581
587
|
acs_credential_pool_id?: string | undefined
|
|
@@ -676,7 +682,7 @@ export interface Routes {
|
|
|
676
682
|
warning_code: 'needs_to_be_reissued'
|
|
677
683
|
}
|
|
678
684
|
>
|
|
679
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
685
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
680
686
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
681
687
|
/** 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. */
|
|
682
688
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -731,6 +737,8 @@ export interface Routes {
|
|
|
731
737
|
acs_credential_id: string
|
|
732
738
|
/** 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. */
|
|
733
739
|
acs_user_id?: string | undefined
|
|
740
|
+
/** 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. */
|
|
741
|
+
user_identity_id?: string | undefined
|
|
734
742
|
/** 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. */
|
|
735
743
|
connected_account_id: string
|
|
736
744
|
acs_credential_pool_id?: string | undefined
|
|
@@ -831,7 +839,7 @@ export interface Routes {
|
|
|
831
839
|
warning_code: 'needs_to_be_reissued'
|
|
832
840
|
}
|
|
833
841
|
>
|
|
834
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
842
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
835
843
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
836
844
|
/** 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. */
|
|
837
845
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -2792,7 +2800,7 @@ export interface Routes {
|
|
|
2792
2800
|
pending_auto_update: boolean
|
|
2793
2801
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2794
2802
|
card_format: 'TLCode' | 'rfid48'
|
|
2795
|
-
/**
|
|
2803
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2796
2804
|
card_holder?: string | undefined
|
|
2797
2805
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2798
2806
|
number_of_issued_cards: number
|
|
@@ -2811,6 +2819,8 @@ export interface Routes {
|
|
|
2811
2819
|
acs_credential_id: string
|
|
2812
2820
|
/** 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. */
|
|
2813
2821
|
acs_user_id?: string | undefined
|
|
2822
|
+
/** 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. */
|
|
2823
|
+
user_identity_id?: string | undefined
|
|
2814
2824
|
/** 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. */
|
|
2815
2825
|
connected_account_id: string
|
|
2816
2826
|
acs_credential_pool_id?: string | undefined
|
|
@@ -2911,7 +2921,7 @@ export interface Routes {
|
|
|
2911
2921
|
warning_code: 'needs_to_be_reissued'
|
|
2912
2922
|
}
|
|
2913
2923
|
>
|
|
2914
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
2924
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
2915
2925
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
2916
2926
|
/** 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. */
|
|
2917
2927
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -2968,6 +2978,8 @@ export interface Routes {
|
|
|
2968
2978
|
acs_credential_id: string
|
|
2969
2979
|
/** 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. */
|
|
2970
2980
|
acs_user_id?: string | undefined
|
|
2981
|
+
/** 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. */
|
|
2982
|
+
user_identity_id?: string | undefined
|
|
2971
2983
|
/** 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. */
|
|
2972
2984
|
connected_account_id: string
|
|
2973
2985
|
acs_credential_pool_id?: string | undefined
|
|
@@ -3068,7 +3080,7 @@ export interface Routes {
|
|
|
3068
3080
|
warning_code: 'needs_to_be_reissued'
|
|
3069
3081
|
}
|
|
3070
3082
|
>
|
|
3071
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
3083
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
3072
3084
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3073
3085
|
/** 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. */
|
|
3074
3086
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -3187,6 +3199,8 @@ export interface Routes {
|
|
|
3187
3199
|
acs_credential_id: string
|
|
3188
3200
|
/** 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. */
|
|
3189
3201
|
acs_user_id?: string | undefined
|
|
3202
|
+
/** 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. */
|
|
3203
|
+
user_identity_id?: string | undefined
|
|
3190
3204
|
/** 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. */
|
|
3191
3205
|
connected_account_id: string
|
|
3192
3206
|
acs_credential_pool_id?: string | undefined
|
|
@@ -3287,7 +3301,7 @@ export interface Routes {
|
|
|
3287
3301
|
warning_code: 'needs_to_be_reissued'
|
|
3288
3302
|
}
|
|
3289
3303
|
>
|
|
3290
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
3304
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
3291
3305
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3292
3306
|
/** 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. */
|
|
3293
3307
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -3342,6 +3356,8 @@ export interface Routes {
|
|
|
3342
3356
|
acs_credential_id: string
|
|
3343
3357
|
/** 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. */
|
|
3344
3358
|
acs_user_id?: string | undefined
|
|
3359
|
+
/** 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. */
|
|
3360
|
+
user_identity_id?: string | undefined
|
|
3345
3361
|
/** 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. */
|
|
3346
3362
|
connected_account_id: string
|
|
3347
3363
|
acs_credential_pool_id?: string | undefined
|
|
@@ -3442,7 +3458,7 @@ export interface Routes {
|
|
|
3442
3458
|
warning_code: 'needs_to_be_reissued'
|
|
3443
3459
|
}
|
|
3444
3460
|
>
|
|
3445
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
3461
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
3446
3462
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
3447
3463
|
/** 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. */
|
|
3448
3464
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -7172,7 +7188,7 @@ export interface Routes {
|
|
|
7172
7188
|
pending_auto_update: boolean
|
|
7173
7189
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7174
7190
|
card_format: 'TLCode' | 'rfid48'
|
|
7175
|
-
/**
|
|
7191
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7176
7192
|
card_holder?: string | undefined
|
|
7177
7193
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7178
7194
|
number_of_issued_cards: number
|
|
@@ -7191,6 +7207,8 @@ export interface Routes {
|
|
|
7191
7207
|
acs_credential_id: string
|
|
7192
7208
|
/** 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. */
|
|
7193
7209
|
acs_user_id?: string | undefined
|
|
7210
|
+
/** 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. */
|
|
7211
|
+
user_identity_id?: string | undefined
|
|
7194
7212
|
/** 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. */
|
|
7195
7213
|
connected_account_id: string
|
|
7196
7214
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7291,7 +7309,7 @@ export interface Routes {
|
|
|
7291
7309
|
warning_code: 'needs_to_be_reissued'
|
|
7292
7310
|
}
|
|
7293
7311
|
>
|
|
7294
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
7312
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
7295
7313
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7296
7314
|
/** 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. */
|
|
7297
7315
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -7348,6 +7366,8 @@ export interface Routes {
|
|
|
7348
7366
|
acs_credential_id: string
|
|
7349
7367
|
/** 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. */
|
|
7350
7368
|
acs_user_id?: string | undefined
|
|
7369
|
+
/** 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. */
|
|
7370
|
+
user_identity_id?: string | undefined
|
|
7351
7371
|
/** 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. */
|
|
7352
7372
|
connected_account_id: string
|
|
7353
7373
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7448,7 +7468,7 @@ export interface Routes {
|
|
|
7448
7468
|
warning_code: 'needs_to_be_reissued'
|
|
7449
7469
|
}
|
|
7450
7470
|
>
|
|
7451
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
7471
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
7452
7472
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7453
7473
|
/** 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. */
|
|
7454
7474
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -7567,6 +7587,8 @@ export interface Routes {
|
|
|
7567
7587
|
acs_credential_id: string
|
|
7568
7588
|
/** 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. */
|
|
7569
7589
|
acs_user_id?: string | undefined
|
|
7590
|
+
/** 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. */
|
|
7591
|
+
user_identity_id?: string | undefined
|
|
7570
7592
|
/** 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. */
|
|
7571
7593
|
connected_account_id: string
|
|
7572
7594
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7667,7 +7689,7 @@ export interface Routes {
|
|
|
7667
7689
|
warning_code: 'needs_to_be_reissued'
|
|
7668
7690
|
}
|
|
7669
7691
|
>
|
|
7670
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
7692
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
7671
7693
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7672
7694
|
/** 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. */
|
|
7673
7695
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -7722,6 +7744,8 @@ export interface Routes {
|
|
|
7722
7744
|
acs_credential_id: string
|
|
7723
7745
|
/** 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. */
|
|
7724
7746
|
acs_user_id?: string | undefined
|
|
7747
|
+
/** 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. */
|
|
7748
|
+
user_identity_id?: string | undefined
|
|
7725
7749
|
/** 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. */
|
|
7726
7750
|
connected_account_id: string
|
|
7727
7751
|
acs_credential_pool_id?: string | undefined
|
|
@@ -7822,7 +7846,7 @@ export interface Routes {
|
|
|
7822
7846
|
warning_code: 'needs_to_be_reissued'
|
|
7823
7847
|
}
|
|
7824
7848
|
>
|
|
7825
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
7849
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
7826
7850
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
7827
7851
|
/** 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. */
|
|
7828
7852
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -9791,7 +9815,7 @@ export interface Routes {
|
|
|
9791
9815
|
pending_auto_update: boolean
|
|
9792
9816
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9793
9817
|
card_format: 'TLCode' | 'rfid48'
|
|
9794
|
-
/**
|
|
9818
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9795
9819
|
card_holder?: string | undefined
|
|
9796
9820
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9797
9821
|
number_of_issued_cards: number
|
|
@@ -9810,6 +9834,8 @@ export interface Routes {
|
|
|
9810
9834
|
acs_credential_id: string
|
|
9811
9835
|
/** 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. */
|
|
9812
9836
|
acs_user_id?: string | undefined
|
|
9837
|
+
/** 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. */
|
|
9838
|
+
user_identity_id?: string | undefined
|
|
9813
9839
|
/** 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. */
|
|
9814
9840
|
connected_account_id: string
|
|
9815
9841
|
acs_credential_pool_id?: string | undefined
|
|
@@ -9910,7 +9936,7 @@ export interface Routes {
|
|
|
9910
9936
|
warning_code: 'needs_to_be_reissued'
|
|
9911
9937
|
}
|
|
9912
9938
|
>
|
|
9913
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
9939
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
9914
9940
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
9915
9941
|
/** 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. */
|
|
9916
9942
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -9967,6 +9993,8 @@ export interface Routes {
|
|
|
9967
9993
|
acs_credential_id: string
|
|
9968
9994
|
/** 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. */
|
|
9969
9995
|
acs_user_id?: string | undefined
|
|
9996
|
+
/** 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. */
|
|
9997
|
+
user_identity_id?: string | undefined
|
|
9970
9998
|
/** 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. */
|
|
9971
9999
|
connected_account_id: string
|
|
9972
10000
|
acs_credential_pool_id?: string | undefined
|
|
@@ -10067,7 +10095,7 @@ export interface Routes {
|
|
|
10067
10095
|
warning_code: 'needs_to_be_reissued'
|
|
10068
10096
|
}
|
|
10069
10097
|
>
|
|
10070
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
10098
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
10071
10099
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10072
10100
|
/** 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. */
|
|
10073
10101
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -10186,6 +10214,8 @@ export interface Routes {
|
|
|
10186
10214
|
acs_credential_id: string
|
|
10187
10215
|
/** 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. */
|
|
10188
10216
|
acs_user_id?: string | undefined
|
|
10217
|
+
/** 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. */
|
|
10218
|
+
user_identity_id?: string | undefined
|
|
10189
10219
|
/** 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. */
|
|
10190
10220
|
connected_account_id: string
|
|
10191
10221
|
acs_credential_pool_id?: string | undefined
|
|
@@ -10286,7 +10316,7 @@ export interface Routes {
|
|
|
10286
10316
|
warning_code: 'needs_to_be_reissued'
|
|
10287
10317
|
}
|
|
10288
10318
|
>
|
|
10289
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
10319
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
10290
10320
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10291
10321
|
/** 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. */
|
|
10292
10322
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -10341,6 +10371,8 @@ export interface Routes {
|
|
|
10341
10371
|
acs_credential_id: string
|
|
10342
10372
|
/** 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. */
|
|
10343
10373
|
acs_user_id?: string | undefined
|
|
10374
|
+
/** 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. */
|
|
10375
|
+
user_identity_id?: string | undefined
|
|
10344
10376
|
/** 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. */
|
|
10345
10377
|
connected_account_id: string
|
|
10346
10378
|
acs_credential_pool_id?: string | undefined
|
|
@@ -10441,7 +10473,7 @@ export interface Routes {
|
|
|
10441
10473
|
warning_code: 'needs_to_be_reissued'
|
|
10442
10474
|
}
|
|
10443
10475
|
>
|
|
10444
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
10476
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
10445
10477
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
10446
10478
|
/** 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. */
|
|
10447
10479
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -11489,7 +11521,7 @@ export interface Routes {
|
|
|
11489
11521
|
pending_auto_update: boolean
|
|
11490
11522
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11491
11523
|
card_format: 'TLCode' | 'rfid48'
|
|
11492
|
-
/**
|
|
11524
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11493
11525
|
card_holder?: string | undefined
|
|
11494
11526
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11495
11527
|
number_of_issued_cards: number
|
|
@@ -11508,6 +11540,8 @@ export interface Routes {
|
|
|
11508
11540
|
acs_credential_id: string
|
|
11509
11541
|
/** 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. */
|
|
11510
11542
|
acs_user_id?: string | undefined
|
|
11543
|
+
/** 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. */
|
|
11544
|
+
user_identity_id?: string | undefined
|
|
11511
11545
|
/** 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. */
|
|
11512
11546
|
connected_account_id: string
|
|
11513
11547
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11608,7 +11642,7 @@ export interface Routes {
|
|
|
11608
11642
|
warning_code: 'needs_to_be_reissued'
|
|
11609
11643
|
}
|
|
11610
11644
|
>
|
|
11611
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
11645
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
11612
11646
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11613
11647
|
/** 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. */
|
|
11614
11648
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -11665,6 +11699,8 @@ export interface Routes {
|
|
|
11665
11699
|
acs_credential_id: string
|
|
11666
11700
|
/** 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. */
|
|
11667
11701
|
acs_user_id?: string | undefined
|
|
11702
|
+
/** 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. */
|
|
11703
|
+
user_identity_id?: string | undefined
|
|
11668
11704
|
/** 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. */
|
|
11669
11705
|
connected_account_id: string
|
|
11670
11706
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11765,7 +11801,7 @@ export interface Routes {
|
|
|
11765
11801
|
warning_code: 'needs_to_be_reissued'
|
|
11766
11802
|
}
|
|
11767
11803
|
>
|
|
11768
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
11804
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
11769
11805
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11770
11806
|
/** 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. */
|
|
11771
11807
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -11884,6 +11920,8 @@ export interface Routes {
|
|
|
11884
11920
|
acs_credential_id: string
|
|
11885
11921
|
/** 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. */
|
|
11886
11922
|
acs_user_id?: string | undefined
|
|
11923
|
+
/** 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. */
|
|
11924
|
+
user_identity_id?: string | undefined
|
|
11887
11925
|
/** 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. */
|
|
11888
11926
|
connected_account_id: string
|
|
11889
11927
|
acs_credential_pool_id?: string | undefined
|
|
@@ -11984,7 +12022,7 @@ export interface Routes {
|
|
|
11984
12022
|
warning_code: 'needs_to_be_reissued'
|
|
11985
12023
|
}
|
|
11986
12024
|
>
|
|
11987
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
12025
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
11988
12026
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
11989
12027
|
/** 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. */
|
|
11990
12028
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -12039,6 +12077,8 @@ export interface Routes {
|
|
|
12039
12077
|
acs_credential_id: string
|
|
12040
12078
|
/** 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. */
|
|
12041
12079
|
acs_user_id?: string | undefined
|
|
12080
|
+
/** 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. */
|
|
12081
|
+
user_identity_id?: string | undefined
|
|
12042
12082
|
/** 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. */
|
|
12043
12083
|
connected_account_id: string
|
|
12044
12084
|
acs_credential_pool_id?: string | undefined
|
|
@@ -12139,7 +12179,7 @@ export interface Routes {
|
|
|
12139
12179
|
warning_code: 'needs_to_be_reissued'
|
|
12140
12180
|
}
|
|
12141
12181
|
>
|
|
12142
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
12182
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
12143
12183
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
12144
12184
|
/** 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. */
|
|
12145
12185
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -13586,6 +13626,8 @@ export interface Routes {
|
|
|
13586
13626
|
acs_credential_id: string
|
|
13587
13627
|
/** 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. */
|
|
13588
13628
|
acs_user_id?: string | undefined
|
|
13629
|
+
/** 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. */
|
|
13630
|
+
user_identity_id?: string | undefined
|
|
13589
13631
|
/** 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. */
|
|
13590
13632
|
connected_account_id: string
|
|
13591
13633
|
acs_credential_pool_id?: string | undefined
|
|
@@ -13686,7 +13728,7 @@ export interface Routes {
|
|
|
13686
13728
|
warning_code: 'needs_to_be_reissued'
|
|
13687
13729
|
}
|
|
13688
13730
|
>
|
|
13689
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
13731
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
13690
13732
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
13691
13733
|
/** 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. */
|
|
13692
13734
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -13756,7 +13798,7 @@ export interface Routes {
|
|
|
13756
13798
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
13757
13799
|
/** 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). */
|
|
13758
13800
|
code?: string | undefined
|
|
13759
|
-
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
13801
|
+
/** 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). */
|
|
13760
13802
|
is_multi_phone_sync_credential?: boolean
|
|
13761
13803
|
/** 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. */
|
|
13762
13804
|
allowed_acs_entrance_ids?: string[]
|
|
@@ -13813,6 +13855,8 @@ export interface Routes {
|
|
|
13813
13855
|
acs_credential_id: string
|
|
13814
13856
|
/** 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. */
|
|
13815
13857
|
acs_user_id?: string | undefined
|
|
13858
|
+
/** 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. */
|
|
13859
|
+
user_identity_id?: string | undefined
|
|
13816
13860
|
/** 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. */
|
|
13817
13861
|
connected_account_id: string
|
|
13818
13862
|
acs_credential_pool_id?: string | undefined
|
|
@@ -13913,7 +13957,7 @@ export interface Routes {
|
|
|
13913
13957
|
warning_code: 'needs_to_be_reissued'
|
|
13914
13958
|
}
|
|
13915
13959
|
>
|
|
13916
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
13960
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
13917
13961
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
13918
13962
|
/** 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. */
|
|
13919
13963
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -13994,6 +14038,8 @@ export interface Routes {
|
|
|
13994
14038
|
acs_credential_id: string
|
|
13995
14039
|
/** 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. */
|
|
13996
14040
|
acs_user_id?: string | undefined
|
|
14041
|
+
/** 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. */
|
|
14042
|
+
user_identity_id?: string | undefined
|
|
13997
14043
|
/** 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. */
|
|
13998
14044
|
connected_account_id: string
|
|
13999
14045
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14094,7 +14140,7 @@ export interface Routes {
|
|
|
14094
14140
|
warning_code: 'needs_to_be_reissued'
|
|
14095
14141
|
}
|
|
14096
14142
|
>
|
|
14097
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
14143
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
14098
14144
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
14099
14145
|
/** 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. */
|
|
14100
14146
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -14179,6 +14225,8 @@ export interface Routes {
|
|
|
14179
14225
|
acs_credential_id: string
|
|
14180
14226
|
/** 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. */
|
|
14181
14227
|
acs_user_id?: string | undefined
|
|
14228
|
+
/** 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. */
|
|
14229
|
+
user_identity_id?: string | undefined
|
|
14182
14230
|
/** 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. */
|
|
14183
14231
|
connected_account_id: string
|
|
14184
14232
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14279,7 +14327,7 @@ export interface Routes {
|
|
|
14279
14327
|
warning_code: 'needs_to_be_reissued'
|
|
14280
14328
|
}
|
|
14281
14329
|
>
|
|
14282
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
14330
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
14283
14331
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
14284
14332
|
/** 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. */
|
|
14285
14333
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -14371,6 +14419,8 @@ export interface Routes {
|
|
|
14371
14419
|
acs_credential_id: string
|
|
14372
14420
|
/** 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. */
|
|
14373
14421
|
acs_user_id?: string | undefined
|
|
14422
|
+
/** 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. */
|
|
14423
|
+
user_identity_id?: string | undefined
|
|
14374
14424
|
/** 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. */
|
|
14375
14425
|
connected_account_id: string
|
|
14376
14426
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14471,7 +14521,7 @@ export interface Routes {
|
|
|
14471
14521
|
warning_code: 'needs_to_be_reissued'
|
|
14472
14522
|
}
|
|
14473
14523
|
>
|
|
14474
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
14524
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
14475
14525
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
14476
14526
|
/** 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. */
|
|
14477
14527
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -14680,6 +14730,8 @@ export interface Routes {
|
|
|
14680
14730
|
acs_credential_id: string
|
|
14681
14731
|
/** 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. */
|
|
14682
14732
|
acs_user_id?: string | undefined
|
|
14733
|
+
/** 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. */
|
|
14734
|
+
user_identity_id?: string | undefined
|
|
14683
14735
|
/** 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. */
|
|
14684
14736
|
connected_account_id: string
|
|
14685
14737
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14780,7 +14832,7 @@ export interface Routes {
|
|
|
14780
14832
|
warning_code: 'needs_to_be_reissued'
|
|
14781
14833
|
}
|
|
14782
14834
|
>
|
|
14783
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
14835
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
14784
14836
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
14785
14837
|
/** 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. */
|
|
14786
14838
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -14849,6 +14901,8 @@ export interface Routes {
|
|
|
14849
14901
|
acs_credential_id: string
|
|
14850
14902
|
/** 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. */
|
|
14851
14903
|
acs_user_id?: string | undefined
|
|
14904
|
+
/** 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. */
|
|
14905
|
+
user_identity_id?: string | undefined
|
|
14852
14906
|
/** 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. */
|
|
14853
14907
|
connected_account_id: string
|
|
14854
14908
|
acs_credential_pool_id?: string | undefined
|
|
@@ -14949,7 +15003,7 @@ export interface Routes {
|
|
|
14949
15003
|
warning_code: 'needs_to_be_reissued'
|
|
14950
15004
|
}
|
|
14951
15005
|
>
|
|
14952
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
15006
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
14953
15007
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
14954
15008
|
/** 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. */
|
|
14955
15009
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -15032,6 +15086,8 @@ export interface Routes {
|
|
|
15032
15086
|
acs_credential_id: string
|
|
15033
15087
|
/** 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. */
|
|
15034
15088
|
acs_user_id?: string | undefined
|
|
15089
|
+
/** 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. */
|
|
15090
|
+
user_identity_id?: string | undefined
|
|
15035
15091
|
/** 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. */
|
|
15036
15092
|
connected_account_id: string
|
|
15037
15093
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15132,7 +15188,7 @@ export interface Routes {
|
|
|
15132
15188
|
warning_code: 'needs_to_be_reissued'
|
|
15133
15189
|
}
|
|
15134
15190
|
>
|
|
15135
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
15191
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
15136
15192
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
15137
15193
|
/** 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. */
|
|
15138
15194
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -15209,6 +15265,8 @@ export interface Routes {
|
|
|
15209
15265
|
acs_credential_id: string
|
|
15210
15266
|
/** 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. */
|
|
15211
15267
|
acs_user_id?: string | undefined
|
|
15268
|
+
/** 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. */
|
|
15269
|
+
user_identity_id?: string | undefined
|
|
15212
15270
|
/** 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. */
|
|
15213
15271
|
connected_account_id: string
|
|
15214
15272
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15309,7 +15367,7 @@ export interface Routes {
|
|
|
15309
15367
|
warning_code: 'needs_to_be_reissued'
|
|
15310
15368
|
}
|
|
15311
15369
|
>
|
|
15312
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
15370
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
15313
15371
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
15314
15372
|
/** 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. */
|
|
15315
15373
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -15509,7 +15567,7 @@ export interface Routes {
|
|
|
15509
15567
|
pending_auto_update: boolean
|
|
15510
15568
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15511
15569
|
card_format: 'TLCode' | 'rfid48'
|
|
15512
|
-
/**
|
|
15570
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15513
15571
|
card_holder?: string | undefined
|
|
15514
15572
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
15515
15573
|
number_of_issued_cards: number
|
|
@@ -15528,6 +15586,8 @@ export interface Routes {
|
|
|
15528
15586
|
acs_credential_id: string
|
|
15529
15587
|
/** 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. */
|
|
15530
15588
|
acs_user_id?: string | undefined
|
|
15589
|
+
/** 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. */
|
|
15590
|
+
user_identity_id?: string | undefined
|
|
15531
15591
|
/** 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. */
|
|
15532
15592
|
connected_account_id: string
|
|
15533
15593
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15628,7 +15688,7 @@ export interface Routes {
|
|
|
15628
15688
|
warning_code: 'needs_to_be_reissued'
|
|
15629
15689
|
}
|
|
15630
15690
|
>
|
|
15631
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
15691
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
15632
15692
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
15633
15693
|
/** 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. */
|
|
15634
15694
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -15685,6 +15745,8 @@ export interface Routes {
|
|
|
15685
15745
|
acs_credential_id: string
|
|
15686
15746
|
/** 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. */
|
|
15687
15747
|
acs_user_id?: string | undefined
|
|
15748
|
+
/** 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. */
|
|
15749
|
+
user_identity_id?: string | undefined
|
|
15688
15750
|
/** 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. */
|
|
15689
15751
|
connected_account_id: string
|
|
15690
15752
|
acs_credential_pool_id?: string | undefined
|
|
@@ -15785,7 +15847,7 @@ export interface Routes {
|
|
|
15785
15847
|
warning_code: 'needs_to_be_reissued'
|
|
15786
15848
|
}
|
|
15787
15849
|
>
|
|
15788
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
15850
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
15789
15851
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
15790
15852
|
/** 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. */
|
|
15791
15853
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -15904,6 +15966,8 @@ export interface Routes {
|
|
|
15904
15966
|
acs_credential_id: string
|
|
15905
15967
|
/** 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. */
|
|
15906
15968
|
acs_user_id?: string | undefined
|
|
15969
|
+
/** 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. */
|
|
15970
|
+
user_identity_id?: string | undefined
|
|
15907
15971
|
/** 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. */
|
|
15908
15972
|
connected_account_id: string
|
|
15909
15973
|
acs_credential_pool_id?: string | undefined
|
|
@@ -16004,7 +16068,7 @@ export interface Routes {
|
|
|
16004
16068
|
warning_code: 'needs_to_be_reissued'
|
|
16005
16069
|
}
|
|
16006
16070
|
>
|
|
16007
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
16071
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
16008
16072
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
16009
16073
|
/** 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. */
|
|
16010
16074
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -16059,6 +16123,8 @@ export interface Routes {
|
|
|
16059
16123
|
acs_credential_id: string
|
|
16060
16124
|
/** 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. */
|
|
16061
16125
|
acs_user_id?: string | undefined
|
|
16126
|
+
/** 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. */
|
|
16127
|
+
user_identity_id?: string | undefined
|
|
16062
16128
|
/** 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. */
|
|
16063
16129
|
connected_account_id: string
|
|
16064
16130
|
acs_credential_pool_id?: string | undefined
|
|
@@ -16159,7 +16225,7 @@ export interface Routes {
|
|
|
16159
16225
|
warning_code: 'needs_to_be_reissued'
|
|
16160
16226
|
}
|
|
16161
16227
|
>
|
|
16162
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
16228
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
16163
16229
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
16164
16230
|
/** 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. */
|
|
16165
16231
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -17041,7 +17107,7 @@ export interface Routes {
|
|
|
17041
17107
|
pending_auto_update: boolean
|
|
17042
17108
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17043
17109
|
card_format: 'TLCode' | 'rfid48'
|
|
17044
|
-
/**
|
|
17110
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17045
17111
|
card_holder?: string | undefined
|
|
17046
17112
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17047
17113
|
number_of_issued_cards: number
|
|
@@ -17060,6 +17126,8 @@ export interface Routes {
|
|
|
17060
17126
|
acs_credential_id: string
|
|
17061
17127
|
/** 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. */
|
|
17062
17128
|
acs_user_id?: string | undefined
|
|
17129
|
+
/** 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. */
|
|
17130
|
+
user_identity_id?: string | undefined
|
|
17063
17131
|
/** 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. */
|
|
17064
17132
|
connected_account_id: string
|
|
17065
17133
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17160,7 +17228,7 @@ export interface Routes {
|
|
|
17160
17228
|
warning_code: 'needs_to_be_reissued'
|
|
17161
17229
|
}
|
|
17162
17230
|
>
|
|
17163
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
17231
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
17164
17232
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
17165
17233
|
/** 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. */
|
|
17166
17234
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -17217,6 +17285,8 @@ export interface Routes {
|
|
|
17217
17285
|
acs_credential_id: string
|
|
17218
17286
|
/** 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. */
|
|
17219
17287
|
acs_user_id?: string | undefined
|
|
17288
|
+
/** 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. */
|
|
17289
|
+
user_identity_id?: string | undefined
|
|
17220
17290
|
/** 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. */
|
|
17221
17291
|
connected_account_id: string
|
|
17222
17292
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17317,7 +17387,7 @@ export interface Routes {
|
|
|
17317
17387
|
warning_code: 'needs_to_be_reissued'
|
|
17318
17388
|
}
|
|
17319
17389
|
>
|
|
17320
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
17390
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
17321
17391
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
17322
17392
|
/** 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. */
|
|
17323
17393
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -17436,6 +17506,8 @@ export interface Routes {
|
|
|
17436
17506
|
acs_credential_id: string
|
|
17437
17507
|
/** 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. */
|
|
17438
17508
|
acs_user_id?: string | undefined
|
|
17509
|
+
/** 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. */
|
|
17510
|
+
user_identity_id?: string | undefined
|
|
17439
17511
|
/** 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. */
|
|
17440
17512
|
connected_account_id: string
|
|
17441
17513
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17536,7 +17608,7 @@ export interface Routes {
|
|
|
17536
17608
|
warning_code: 'needs_to_be_reissued'
|
|
17537
17609
|
}
|
|
17538
17610
|
>
|
|
17539
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
17611
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
17540
17612
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
17541
17613
|
/** 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. */
|
|
17542
17614
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -17591,6 +17663,8 @@ export interface Routes {
|
|
|
17591
17663
|
acs_credential_id: string
|
|
17592
17664
|
/** 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. */
|
|
17593
17665
|
acs_user_id?: string | undefined
|
|
17666
|
+
/** 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. */
|
|
17667
|
+
user_identity_id?: string | undefined
|
|
17594
17668
|
/** 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. */
|
|
17595
17669
|
connected_account_id: string
|
|
17596
17670
|
acs_credential_pool_id?: string | undefined
|
|
@@ -17691,7 +17765,7 @@ export interface Routes {
|
|
|
17691
17765
|
warning_code: 'needs_to_be_reissued'
|
|
17692
17766
|
}
|
|
17693
17767
|
>
|
|
17694
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
17768
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
17695
17769
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
17696
17770
|
/** 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. */
|
|
17697
17771
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -18728,6 +18802,8 @@ export interface Routes {
|
|
|
18728
18802
|
acs_credential_id: string
|
|
18729
18803
|
/** 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. */
|
|
18730
18804
|
acs_user_id?: string | undefined
|
|
18805
|
+
/** 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. */
|
|
18806
|
+
user_identity_id?: string | undefined
|
|
18731
18807
|
/** 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. */
|
|
18732
18808
|
connected_account_id: string
|
|
18733
18809
|
acs_credential_pool_id?: string | undefined
|
|
@@ -18828,7 +18904,7 @@ export interface Routes {
|
|
|
18828
18904
|
warning_code: 'needs_to_be_reissued'
|
|
18829
18905
|
}
|
|
18830
18906
|
>
|
|
18831
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
18907
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
18832
18908
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
18833
18909
|
/** 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. */
|
|
18834
18910
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -21160,7 +21236,7 @@ export interface Routes {
|
|
|
21160
21236
|
pending_auto_update: boolean
|
|
21161
21237
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
21162
21238
|
card_format: 'TLCode' | 'rfid48'
|
|
21163
|
-
/**
|
|
21239
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
21164
21240
|
card_holder?: string | undefined
|
|
21165
21241
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
21166
21242
|
number_of_issued_cards: number
|
|
@@ -21179,6 +21255,8 @@ export interface Routes {
|
|
|
21179
21255
|
acs_credential_id: string
|
|
21180
21256
|
/** 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. */
|
|
21181
21257
|
acs_user_id?: string | undefined
|
|
21258
|
+
/** 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. */
|
|
21259
|
+
user_identity_id?: string | undefined
|
|
21182
21260
|
/** 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. */
|
|
21183
21261
|
connected_account_id: string
|
|
21184
21262
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21279,7 +21357,7 @@ export interface Routes {
|
|
|
21279
21357
|
warning_code: 'needs_to_be_reissued'
|
|
21280
21358
|
}
|
|
21281
21359
|
>
|
|
21282
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
21360
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
21283
21361
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21284
21362
|
/** 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. */
|
|
21285
21363
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -21336,6 +21414,8 @@ export interface Routes {
|
|
|
21336
21414
|
acs_credential_id: string
|
|
21337
21415
|
/** 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. */
|
|
21338
21416
|
acs_user_id?: string | undefined
|
|
21417
|
+
/** 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. */
|
|
21418
|
+
user_identity_id?: string | undefined
|
|
21339
21419
|
/** 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. */
|
|
21340
21420
|
connected_account_id: string
|
|
21341
21421
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21436,7 +21516,7 @@ export interface Routes {
|
|
|
21436
21516
|
warning_code: 'needs_to_be_reissued'
|
|
21437
21517
|
}
|
|
21438
21518
|
>
|
|
21439
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
21519
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
21440
21520
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21441
21521
|
/** 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. */
|
|
21442
21522
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -21555,6 +21635,8 @@ export interface Routes {
|
|
|
21555
21635
|
acs_credential_id: string
|
|
21556
21636
|
/** 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. */
|
|
21557
21637
|
acs_user_id?: string | undefined
|
|
21638
|
+
/** 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. */
|
|
21639
|
+
user_identity_id?: string | undefined
|
|
21558
21640
|
/** 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. */
|
|
21559
21641
|
connected_account_id: string
|
|
21560
21642
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21655,7 +21737,7 @@ export interface Routes {
|
|
|
21655
21737
|
warning_code: 'needs_to_be_reissued'
|
|
21656
21738
|
}
|
|
21657
21739
|
>
|
|
21658
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
21740
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
21659
21741
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21660
21742
|
/** 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. */
|
|
21661
21743
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -21710,6 +21792,8 @@ export interface Routes {
|
|
|
21710
21792
|
acs_credential_id: string
|
|
21711
21793
|
/** 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. */
|
|
21712
21794
|
acs_user_id?: string | undefined
|
|
21795
|
+
/** 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. */
|
|
21796
|
+
user_identity_id?: string | undefined
|
|
21713
21797
|
/** 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. */
|
|
21714
21798
|
connected_account_id: string
|
|
21715
21799
|
acs_credential_pool_id?: string | undefined
|
|
@@ -21810,7 +21894,7 @@ export interface Routes {
|
|
|
21810
21894
|
warning_code: 'needs_to_be_reissued'
|
|
21811
21895
|
}
|
|
21812
21896
|
>
|
|
21813
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
21897
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
21814
21898
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
21815
21899
|
/** 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. */
|
|
21816
21900
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -22586,7 +22670,7 @@ export interface Routes {
|
|
|
22586
22670
|
pending_auto_update: boolean
|
|
22587
22671
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
22588
22672
|
card_format: 'TLCode' | 'rfid48'
|
|
22589
|
-
/**
|
|
22673
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
22590
22674
|
card_holder?: string | undefined
|
|
22591
22675
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
22592
22676
|
number_of_issued_cards: number
|
|
@@ -22605,6 +22689,8 @@ export interface Routes {
|
|
|
22605
22689
|
acs_credential_id: string
|
|
22606
22690
|
/** 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. */
|
|
22607
22691
|
acs_user_id?: string | undefined
|
|
22692
|
+
/** 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. */
|
|
22693
|
+
user_identity_id?: string | undefined
|
|
22608
22694
|
/** 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. */
|
|
22609
22695
|
connected_account_id: string
|
|
22610
22696
|
acs_credential_pool_id?: string | undefined
|
|
@@ -22705,7 +22791,7 @@ export interface Routes {
|
|
|
22705
22791
|
warning_code: 'needs_to_be_reissued'
|
|
22706
22792
|
}
|
|
22707
22793
|
>
|
|
22708
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
22794
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
22709
22795
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
22710
22796
|
/** 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. */
|
|
22711
22797
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -22762,6 +22848,8 @@ export interface Routes {
|
|
|
22762
22848
|
acs_credential_id: string
|
|
22763
22849
|
/** 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. */
|
|
22764
22850
|
acs_user_id?: string | undefined
|
|
22851
|
+
/** 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. */
|
|
22852
|
+
user_identity_id?: string | undefined
|
|
22765
22853
|
/** 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. */
|
|
22766
22854
|
connected_account_id: string
|
|
22767
22855
|
acs_credential_pool_id?: string | undefined
|
|
@@ -22862,7 +22950,7 @@ export interface Routes {
|
|
|
22862
22950
|
warning_code: 'needs_to_be_reissued'
|
|
22863
22951
|
}
|
|
22864
22952
|
>
|
|
22865
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
22953
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
22866
22954
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
22867
22955
|
/** 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. */
|
|
22868
22956
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -22981,6 +23069,8 @@ export interface Routes {
|
|
|
22981
23069
|
acs_credential_id: string
|
|
22982
23070
|
/** 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. */
|
|
22983
23071
|
acs_user_id?: string | undefined
|
|
23072
|
+
/** 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. */
|
|
23073
|
+
user_identity_id?: string | undefined
|
|
22984
23074
|
/** 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. */
|
|
22985
23075
|
connected_account_id: string
|
|
22986
23076
|
acs_credential_pool_id?: string | undefined
|
|
@@ -23081,7 +23171,7 @@ export interface Routes {
|
|
|
23081
23171
|
warning_code: 'needs_to_be_reissued'
|
|
23082
23172
|
}
|
|
23083
23173
|
>
|
|
23084
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
23174
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
23085
23175
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
23086
23176
|
/** 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. */
|
|
23087
23177
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -23136,6 +23226,8 @@ export interface Routes {
|
|
|
23136
23226
|
acs_credential_id: string
|
|
23137
23227
|
/** 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. */
|
|
23138
23228
|
acs_user_id?: string | undefined
|
|
23229
|
+
/** 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. */
|
|
23230
|
+
user_identity_id?: string | undefined
|
|
23139
23231
|
/** 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. */
|
|
23140
23232
|
connected_account_id: string
|
|
23141
23233
|
acs_credential_pool_id?: string | undefined
|
|
@@ -23236,7 +23328,7 @@ export interface Routes {
|
|
|
23236
23328
|
warning_code: 'needs_to_be_reissued'
|
|
23237
23329
|
}
|
|
23238
23330
|
>
|
|
23239
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
23331
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
23240
23332
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
23241
23333
|
/** 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. */
|
|
23242
23334
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -39181,7 +39273,7 @@ export interface Routes {
|
|
|
39181
39273
|
pending_auto_update: boolean
|
|
39182
39274
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39183
39275
|
card_format: 'TLCode' | 'rfid48'
|
|
39184
|
-
/**
|
|
39276
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39185
39277
|
card_holder?: string | undefined
|
|
39186
39278
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
39187
39279
|
number_of_issued_cards: number
|
|
@@ -39200,6 +39292,8 @@ export interface Routes {
|
|
|
39200
39292
|
acs_credential_id: string
|
|
39201
39293
|
/** 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. */
|
|
39202
39294
|
acs_user_id?: string | undefined
|
|
39295
|
+
/** 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. */
|
|
39296
|
+
user_identity_id?: string | undefined
|
|
39203
39297
|
/** 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. */
|
|
39204
39298
|
connected_account_id: string
|
|
39205
39299
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39300,7 +39394,7 @@ export interface Routes {
|
|
|
39300
39394
|
warning_code: 'needs_to_be_reissued'
|
|
39301
39395
|
}
|
|
39302
39396
|
>
|
|
39303
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
39397
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
39304
39398
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
39305
39399
|
/** 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. */
|
|
39306
39400
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -39357,6 +39451,8 @@ export interface Routes {
|
|
|
39357
39451
|
acs_credential_id: string
|
|
39358
39452
|
/** 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. */
|
|
39359
39453
|
acs_user_id?: string | undefined
|
|
39454
|
+
/** 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. */
|
|
39455
|
+
user_identity_id?: string | undefined
|
|
39360
39456
|
/** 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. */
|
|
39361
39457
|
connected_account_id: string
|
|
39362
39458
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39457,7 +39553,7 @@ export interface Routes {
|
|
|
39457
39553
|
warning_code: 'needs_to_be_reissued'
|
|
39458
39554
|
}
|
|
39459
39555
|
>
|
|
39460
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
39556
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
39461
39557
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
39462
39558
|
/** 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. */
|
|
39463
39559
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -39576,6 +39672,8 @@ export interface Routes {
|
|
|
39576
39672
|
acs_credential_id: string
|
|
39577
39673
|
/** 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. */
|
|
39578
39674
|
acs_user_id?: string | undefined
|
|
39675
|
+
/** 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. */
|
|
39676
|
+
user_identity_id?: string | undefined
|
|
39579
39677
|
/** 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. */
|
|
39580
39678
|
connected_account_id: string
|
|
39581
39679
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39676,7 +39774,7 @@ export interface Routes {
|
|
|
39676
39774
|
warning_code: 'needs_to_be_reissued'
|
|
39677
39775
|
}
|
|
39678
39776
|
>
|
|
39679
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
39777
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
39680
39778
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
39681
39779
|
/** 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. */
|
|
39682
39780
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -39731,6 +39829,8 @@ export interface Routes {
|
|
|
39731
39829
|
acs_credential_id: string
|
|
39732
39830
|
/** 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. */
|
|
39733
39831
|
acs_user_id?: string | undefined
|
|
39832
|
+
/** 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. */
|
|
39833
|
+
user_identity_id?: string | undefined
|
|
39734
39834
|
/** 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. */
|
|
39735
39835
|
connected_account_id: string
|
|
39736
39836
|
acs_credential_pool_id?: string | undefined
|
|
@@ -39831,7 +39931,7 @@ export interface Routes {
|
|
|
39831
39931
|
warning_code: 'needs_to_be_reissued'
|
|
39832
39932
|
}
|
|
39833
39933
|
>
|
|
39834
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
39934
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
39835
39935
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
39836
39936
|
/** 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. */
|
|
39837
39937
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -40614,7 +40714,7 @@ export interface Routes {
|
|
|
40614
40714
|
pending_auto_update: boolean
|
|
40615
40715
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40616
40716
|
card_format: 'TLCode' | 'rfid48'
|
|
40617
|
-
/**
|
|
40717
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40618
40718
|
card_holder?: string | undefined
|
|
40619
40719
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40620
40720
|
number_of_issued_cards: number
|
|
@@ -40633,6 +40733,8 @@ export interface Routes {
|
|
|
40633
40733
|
acs_credential_id: string
|
|
40634
40734
|
/** 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. */
|
|
40635
40735
|
acs_user_id?: string | undefined
|
|
40736
|
+
/** 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. */
|
|
40737
|
+
user_identity_id?: string | undefined
|
|
40636
40738
|
/** 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. */
|
|
40637
40739
|
connected_account_id: string
|
|
40638
40740
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40733,7 +40835,7 @@ export interface Routes {
|
|
|
40733
40835
|
warning_code: 'needs_to_be_reissued'
|
|
40734
40836
|
}
|
|
40735
40837
|
>
|
|
40736
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
40838
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
40737
40839
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
40738
40840
|
/** 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. */
|
|
40739
40841
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -40790,6 +40892,8 @@ export interface Routes {
|
|
|
40790
40892
|
acs_credential_id: string
|
|
40791
40893
|
/** 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. */
|
|
40792
40894
|
acs_user_id?: string | undefined
|
|
40895
|
+
/** 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. */
|
|
40896
|
+
user_identity_id?: string | undefined
|
|
40793
40897
|
/** 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. */
|
|
40794
40898
|
connected_account_id: string
|
|
40795
40899
|
acs_credential_pool_id?: string | undefined
|
|
@@ -40890,7 +40994,7 @@ export interface Routes {
|
|
|
40890
40994
|
warning_code: 'needs_to_be_reissued'
|
|
40891
40995
|
}
|
|
40892
40996
|
>
|
|
40893
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
40997
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
40894
40998
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
40895
40999
|
/** 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. */
|
|
40896
41000
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -41009,6 +41113,8 @@ export interface Routes {
|
|
|
41009
41113
|
acs_credential_id: string
|
|
41010
41114
|
/** 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. */
|
|
41011
41115
|
acs_user_id?: string | undefined
|
|
41116
|
+
/** 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. */
|
|
41117
|
+
user_identity_id?: string | undefined
|
|
41012
41118
|
/** 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. */
|
|
41013
41119
|
connected_account_id: string
|
|
41014
41120
|
acs_credential_pool_id?: string | undefined
|
|
@@ -41109,7 +41215,7 @@ export interface Routes {
|
|
|
41109
41215
|
warning_code: 'needs_to_be_reissued'
|
|
41110
41216
|
}
|
|
41111
41217
|
>
|
|
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
|
|
41218
|
+
/** Indicates whether the [credential](https://docs.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
41219
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
41114
41220
|
/** 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
41221
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -41164,6 +41270,8 @@ export interface Routes {
|
|
|
41164
41270
|
acs_credential_id: string
|
|
41165
41271
|
/** 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. */
|
|
41166
41272
|
acs_user_id?: string | undefined
|
|
41273
|
+
/** 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. */
|
|
41274
|
+
user_identity_id?: string | undefined
|
|
41167
41275
|
/** 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. */
|
|
41168
41276
|
connected_account_id: string
|
|
41169
41277
|
acs_credential_pool_id?: string | undefined
|
|
@@ -41264,7 +41372,7 @@ export interface Routes {
|
|
|
41264
41372
|
warning_code: 'needs_to_be_reissued'
|
|
41265
41373
|
}
|
|
41266
41374
|
>
|
|
41267
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
41375
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
41268
41376
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
41269
41377
|
/** 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. */
|
|
41270
41378
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -42045,7 +42153,7 @@ export interface Routes {
|
|
|
42045
42153
|
pending_auto_update: boolean
|
|
42046
42154
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42047
42155
|
card_format: 'TLCode' | 'rfid48'
|
|
42048
|
-
/**
|
|
42156
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42049
42157
|
card_holder?: string | undefined
|
|
42050
42158
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
42051
42159
|
number_of_issued_cards: number
|
|
@@ -42064,6 +42172,8 @@ export interface Routes {
|
|
|
42064
42172
|
acs_credential_id: string
|
|
42065
42173
|
/** 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. */
|
|
42066
42174
|
acs_user_id?: string | undefined
|
|
42175
|
+
/** 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. */
|
|
42176
|
+
user_identity_id?: string | undefined
|
|
42067
42177
|
/** 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. */
|
|
42068
42178
|
connected_account_id: string
|
|
42069
42179
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42164,7 +42274,7 @@ export interface Routes {
|
|
|
42164
42274
|
warning_code: 'needs_to_be_reissued'
|
|
42165
42275
|
}
|
|
42166
42276
|
>
|
|
42167
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
42277
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
42168
42278
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
42169
42279
|
/** 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. */
|
|
42170
42280
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -42221,6 +42331,8 @@ export interface Routes {
|
|
|
42221
42331
|
acs_credential_id: string
|
|
42222
42332
|
/** 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. */
|
|
42223
42333
|
acs_user_id?: string | undefined
|
|
42334
|
+
/** 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. */
|
|
42335
|
+
user_identity_id?: string | undefined
|
|
42224
42336
|
/** 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. */
|
|
42225
42337
|
connected_account_id: string
|
|
42226
42338
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42321,7 +42433,7 @@ export interface Routes {
|
|
|
42321
42433
|
warning_code: 'needs_to_be_reissued'
|
|
42322
42434
|
}
|
|
42323
42435
|
>
|
|
42324
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
42436
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
42325
42437
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
42326
42438
|
/** 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. */
|
|
42327
42439
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -42440,6 +42552,8 @@ export interface Routes {
|
|
|
42440
42552
|
acs_credential_id: string
|
|
42441
42553
|
/** 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. */
|
|
42442
42554
|
acs_user_id?: string | undefined
|
|
42555
|
+
/** 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. */
|
|
42556
|
+
user_identity_id?: string | undefined
|
|
42443
42557
|
/** 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. */
|
|
42444
42558
|
connected_account_id: string
|
|
42445
42559
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42540,7 +42654,7 @@ export interface Routes {
|
|
|
42540
42654
|
warning_code: 'needs_to_be_reissued'
|
|
42541
42655
|
}
|
|
42542
42656
|
>
|
|
42543
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
42657
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
42544
42658
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
42545
42659
|
/** 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. */
|
|
42546
42660
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -42595,6 +42709,8 @@ export interface Routes {
|
|
|
42595
42709
|
acs_credential_id: string
|
|
42596
42710
|
/** 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. */
|
|
42597
42711
|
acs_user_id?: string | undefined
|
|
42712
|
+
/** 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. */
|
|
42713
|
+
user_identity_id?: string | undefined
|
|
42598
42714
|
/** 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. */
|
|
42599
42715
|
connected_account_id: string
|
|
42600
42716
|
acs_credential_pool_id?: string | undefined
|
|
@@ -42695,7 +42811,7 @@ export interface Routes {
|
|
|
42695
42811
|
warning_code: 'needs_to_be_reissued'
|
|
42696
42812
|
}
|
|
42697
42813
|
>
|
|
42698
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
42814
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
42699
42815
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
42700
42816
|
/** 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. */
|
|
42701
42817
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -43478,7 +43594,7 @@ export interface Routes {
|
|
|
43478
43594
|
pending_auto_update: boolean
|
|
43479
43595
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43480
43596
|
card_format: 'TLCode' | 'rfid48'
|
|
43481
|
-
/**
|
|
43597
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43482
43598
|
card_holder?: string | undefined
|
|
43483
43599
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43484
43600
|
number_of_issued_cards: number
|
|
@@ -43497,6 +43613,8 @@ export interface Routes {
|
|
|
43497
43613
|
acs_credential_id: string
|
|
43498
43614
|
/** 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. */
|
|
43499
43615
|
acs_user_id?: string | undefined
|
|
43616
|
+
/** 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. */
|
|
43617
|
+
user_identity_id?: string | undefined
|
|
43500
43618
|
/** 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. */
|
|
43501
43619
|
connected_account_id: string
|
|
43502
43620
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43597,7 +43715,7 @@ export interface Routes {
|
|
|
43597
43715
|
warning_code: 'needs_to_be_reissued'
|
|
43598
43716
|
}
|
|
43599
43717
|
>
|
|
43600
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
43718
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
43601
43719
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
43602
43720
|
/** 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. */
|
|
43603
43721
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -43654,6 +43772,8 @@ export interface Routes {
|
|
|
43654
43772
|
acs_credential_id: string
|
|
43655
43773
|
/** 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. */
|
|
43656
43774
|
acs_user_id?: string | undefined
|
|
43775
|
+
/** 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. */
|
|
43776
|
+
user_identity_id?: string | undefined
|
|
43657
43777
|
/** 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. */
|
|
43658
43778
|
connected_account_id: string
|
|
43659
43779
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43754,7 +43874,7 @@ export interface Routes {
|
|
|
43754
43874
|
warning_code: 'needs_to_be_reissued'
|
|
43755
43875
|
}
|
|
43756
43876
|
>
|
|
43757
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
43877
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
43758
43878
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
43759
43879
|
/** 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. */
|
|
43760
43880
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -43873,6 +43993,8 @@ export interface Routes {
|
|
|
43873
43993
|
acs_credential_id: string
|
|
43874
43994
|
/** 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. */
|
|
43875
43995
|
acs_user_id?: string | undefined
|
|
43996
|
+
/** 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. */
|
|
43997
|
+
user_identity_id?: string | undefined
|
|
43876
43998
|
/** 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. */
|
|
43877
43999
|
connected_account_id: string
|
|
43878
44000
|
acs_credential_pool_id?: string | undefined
|
|
@@ -43973,7 +44095,7 @@ export interface Routes {
|
|
|
43973
44095
|
warning_code: 'needs_to_be_reissued'
|
|
43974
44096
|
}
|
|
43975
44097
|
>
|
|
43976
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
44098
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
43977
44099
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
43978
44100
|
/** 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. */
|
|
43979
44101
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -44028,6 +44150,8 @@ export interface Routes {
|
|
|
44028
44150
|
acs_credential_id: string
|
|
44029
44151
|
/** 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. */
|
|
44030
44152
|
acs_user_id?: string | undefined
|
|
44153
|
+
/** 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. */
|
|
44154
|
+
user_identity_id?: string | undefined
|
|
44031
44155
|
/** 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. */
|
|
44032
44156
|
connected_account_id: string
|
|
44033
44157
|
acs_credential_pool_id?: string | undefined
|
|
@@ -44128,7 +44252,7 @@ export interface Routes {
|
|
|
44128
44252
|
warning_code: 'needs_to_be_reissued'
|
|
44129
44253
|
}
|
|
44130
44254
|
>
|
|
44131
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
44255
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
44132
44256
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
44133
44257
|
/** 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. */
|
|
44134
44258
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -47833,7 +47957,7 @@ export interface Routes {
|
|
|
47833
47957
|
pending_auto_update: boolean
|
|
47834
47958
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47835
47959
|
card_format: 'TLCode' | 'rfid48'
|
|
47836
|
-
/**
|
|
47960
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47837
47961
|
card_holder?: string | undefined
|
|
47838
47962
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47839
47963
|
number_of_issued_cards: number
|
|
@@ -47852,6 +47976,8 @@ export interface Routes {
|
|
|
47852
47976
|
acs_credential_id: string
|
|
47853
47977
|
/** 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. */
|
|
47854
47978
|
acs_user_id?: string | undefined
|
|
47979
|
+
/** 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. */
|
|
47980
|
+
user_identity_id?: string | undefined
|
|
47855
47981
|
/** 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. */
|
|
47856
47982
|
connected_account_id: string
|
|
47857
47983
|
acs_credential_pool_id?: string | undefined
|
|
@@ -47952,7 +48078,7 @@ export interface Routes {
|
|
|
47952
48078
|
warning_code: 'needs_to_be_reissued'
|
|
47953
48079
|
}
|
|
47954
48080
|
>
|
|
47955
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
48081
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
47956
48082
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
47957
48083
|
/** 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. */
|
|
47958
48084
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -48009,6 +48135,8 @@ export interface Routes {
|
|
|
48009
48135
|
acs_credential_id: string
|
|
48010
48136
|
/** 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. */
|
|
48011
48137
|
acs_user_id?: string | undefined
|
|
48138
|
+
/** 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. */
|
|
48139
|
+
user_identity_id?: string | undefined
|
|
48012
48140
|
/** 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. */
|
|
48013
48141
|
connected_account_id: string
|
|
48014
48142
|
acs_credential_pool_id?: string | undefined
|
|
@@ -48109,7 +48237,7 @@ export interface Routes {
|
|
|
48109
48237
|
warning_code: 'needs_to_be_reissued'
|
|
48110
48238
|
}
|
|
48111
48239
|
>
|
|
48112
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
48240
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
48113
48241
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
48114
48242
|
/** 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. */
|
|
48115
48243
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -48228,6 +48356,8 @@ export interface Routes {
|
|
|
48228
48356
|
acs_credential_id: string
|
|
48229
48357
|
/** 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. */
|
|
48230
48358
|
acs_user_id?: string | undefined
|
|
48359
|
+
/** 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. */
|
|
48360
|
+
user_identity_id?: string | undefined
|
|
48231
48361
|
/** 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. */
|
|
48232
48362
|
connected_account_id: string
|
|
48233
48363
|
acs_credential_pool_id?: string | undefined
|
|
@@ -48328,7 +48458,7 @@ export interface Routes {
|
|
|
48328
48458
|
warning_code: 'needs_to_be_reissued'
|
|
48329
48459
|
}
|
|
48330
48460
|
>
|
|
48331
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
48461
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
48332
48462
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
48333
48463
|
/** 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. */
|
|
48334
48464
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -48383,6 +48513,8 @@ export interface Routes {
|
|
|
48383
48513
|
acs_credential_id: string
|
|
48384
48514
|
/** 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. */
|
|
48385
48515
|
acs_user_id?: string | undefined
|
|
48516
|
+
/** 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. */
|
|
48517
|
+
user_identity_id?: string | undefined
|
|
48386
48518
|
/** 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. */
|
|
48387
48519
|
connected_account_id: string
|
|
48388
48520
|
acs_credential_pool_id?: string | undefined
|
|
@@ -48483,7 +48615,7 @@ export interface Routes {
|
|
|
48483
48615
|
warning_code: 'needs_to_be_reissued'
|
|
48484
48616
|
}
|
|
48485
48617
|
>
|
|
48486
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
48618
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
48487
48619
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
48488
48620
|
/** 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. */
|
|
48489
48621
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -49285,7 +49417,7 @@ export interface Routes {
|
|
|
49285
49417
|
pending_auto_update: boolean
|
|
49286
49418
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49287
49419
|
card_format: 'TLCode' | 'rfid48'
|
|
49288
|
-
/**
|
|
49420
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49289
49421
|
card_holder?: string | undefined
|
|
49290
49422
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49291
49423
|
number_of_issued_cards: number
|
|
@@ -49304,6 +49436,8 @@ export interface Routes {
|
|
|
49304
49436
|
acs_credential_id: string
|
|
49305
49437
|
/** 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. */
|
|
49306
49438
|
acs_user_id?: string | undefined
|
|
49439
|
+
/** 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. */
|
|
49440
|
+
user_identity_id?: string | undefined
|
|
49307
49441
|
/** 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. */
|
|
49308
49442
|
connected_account_id: string
|
|
49309
49443
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49404,7 +49538,7 @@ export interface Routes {
|
|
|
49404
49538
|
warning_code: 'needs_to_be_reissued'
|
|
49405
49539
|
}
|
|
49406
49540
|
>
|
|
49407
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
49541
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
49408
49542
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
49409
49543
|
/** 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. */
|
|
49410
49544
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -49461,6 +49595,8 @@ export interface Routes {
|
|
|
49461
49595
|
acs_credential_id: string
|
|
49462
49596
|
/** 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. */
|
|
49463
49597
|
acs_user_id?: string | undefined
|
|
49598
|
+
/** 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. */
|
|
49599
|
+
user_identity_id?: string | undefined
|
|
49464
49600
|
/** 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. */
|
|
49465
49601
|
connected_account_id: string
|
|
49466
49602
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49561,7 +49697,7 @@ export interface Routes {
|
|
|
49561
49697
|
warning_code: 'needs_to_be_reissued'
|
|
49562
49698
|
}
|
|
49563
49699
|
>
|
|
49564
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
49700
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
49565
49701
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
49566
49702
|
/** 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. */
|
|
49567
49703
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -49680,6 +49816,8 @@ export interface Routes {
|
|
|
49680
49816
|
acs_credential_id: string
|
|
49681
49817
|
/** 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. */
|
|
49682
49818
|
acs_user_id?: string | undefined
|
|
49819
|
+
/** 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. */
|
|
49820
|
+
user_identity_id?: string | undefined
|
|
49683
49821
|
/** 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. */
|
|
49684
49822
|
connected_account_id: string
|
|
49685
49823
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49780,7 +49918,7 @@ export interface Routes {
|
|
|
49780
49918
|
warning_code: 'needs_to_be_reissued'
|
|
49781
49919
|
}
|
|
49782
49920
|
>
|
|
49783
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
49921
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
49784
49922
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
49785
49923
|
/** 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. */
|
|
49786
49924
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -49835,6 +49973,8 @@ export interface Routes {
|
|
|
49835
49973
|
acs_credential_id: string
|
|
49836
49974
|
/** 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. */
|
|
49837
49975
|
acs_user_id?: string | undefined
|
|
49976
|
+
/** 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. */
|
|
49977
|
+
user_identity_id?: string | undefined
|
|
49838
49978
|
/** 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. */
|
|
49839
49979
|
connected_account_id: string
|
|
49840
49980
|
acs_credential_pool_id?: string | undefined
|
|
@@ -49935,7 +50075,7 @@ export interface Routes {
|
|
|
49935
50075
|
warning_code: 'needs_to_be_reissued'
|
|
49936
50076
|
}
|
|
49937
50077
|
>
|
|
49938
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
50078
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
49939
50079
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
49940
50080
|
/** 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. */
|
|
49941
50081
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -50791,7 +50931,7 @@ export interface Routes {
|
|
|
50791
50931
|
pending_auto_update: boolean
|
|
50792
50932
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50793
50933
|
card_format: 'TLCode' | 'rfid48'
|
|
50794
|
-
/**
|
|
50934
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50795
50935
|
card_holder?: string | undefined
|
|
50796
50936
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50797
50937
|
number_of_issued_cards: number
|
|
@@ -50810,6 +50950,8 @@ export interface Routes {
|
|
|
50810
50950
|
acs_credential_id: string
|
|
50811
50951
|
/** 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. */
|
|
50812
50952
|
acs_user_id?: string | undefined
|
|
50953
|
+
/** 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. */
|
|
50954
|
+
user_identity_id?: string | undefined
|
|
50813
50955
|
/** 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. */
|
|
50814
50956
|
connected_account_id: string
|
|
50815
50957
|
acs_credential_pool_id?: string | undefined
|
|
@@ -50910,7 +51052,7 @@ export interface Routes {
|
|
|
50910
51052
|
warning_code: 'needs_to_be_reissued'
|
|
50911
51053
|
}
|
|
50912
51054
|
>
|
|
50913
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
51055
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
50914
51056
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
50915
51057
|
/** 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. */
|
|
50916
51058
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -50967,6 +51109,8 @@ export interface Routes {
|
|
|
50967
51109
|
acs_credential_id: string
|
|
50968
51110
|
/** 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. */
|
|
50969
51111
|
acs_user_id?: string | undefined
|
|
51112
|
+
/** 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. */
|
|
51113
|
+
user_identity_id?: string | undefined
|
|
50970
51114
|
/** 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. */
|
|
50971
51115
|
connected_account_id: string
|
|
50972
51116
|
acs_credential_pool_id?: string | undefined
|
|
@@ -51067,7 +51211,7 @@ export interface Routes {
|
|
|
51067
51211
|
warning_code: 'needs_to_be_reissued'
|
|
51068
51212
|
}
|
|
51069
51213
|
>
|
|
51070
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
51214
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
51071
51215
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
51072
51216
|
/** 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. */
|
|
51073
51217
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -51186,6 +51330,8 @@ export interface Routes {
|
|
|
51186
51330
|
acs_credential_id: string
|
|
51187
51331
|
/** 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. */
|
|
51188
51332
|
acs_user_id?: string | undefined
|
|
51333
|
+
/** 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. */
|
|
51334
|
+
user_identity_id?: string | undefined
|
|
51189
51335
|
/** 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. */
|
|
51190
51336
|
connected_account_id: string
|
|
51191
51337
|
acs_credential_pool_id?: string | undefined
|
|
@@ -51286,7 +51432,7 @@ export interface Routes {
|
|
|
51286
51432
|
warning_code: 'needs_to_be_reissued'
|
|
51287
51433
|
}
|
|
51288
51434
|
>
|
|
51289
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
51435
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
51290
51436
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
51291
51437
|
/** 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. */
|
|
51292
51438
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -51341,6 +51487,8 @@ export interface Routes {
|
|
|
51341
51487
|
acs_credential_id: string
|
|
51342
51488
|
/** 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. */
|
|
51343
51489
|
acs_user_id?: string | undefined
|
|
51490
|
+
/** 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. */
|
|
51491
|
+
user_identity_id?: string | undefined
|
|
51344
51492
|
/** 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. */
|
|
51345
51493
|
connected_account_id: string
|
|
51346
51494
|
acs_credential_pool_id?: string | undefined
|
|
@@ -51441,7 +51589,7 @@ export interface Routes {
|
|
|
51441
51589
|
warning_code: 'needs_to_be_reissued'
|
|
51442
51590
|
}
|
|
51443
51591
|
>
|
|
51444
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
51592
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
51445
51593
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
51446
51594
|
/** 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. */
|
|
51447
51595
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -52946,6 +53094,8 @@ export interface Routes {
|
|
|
52946
53094
|
acs_credential_id: string
|
|
52947
53095
|
/** 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. */
|
|
52948
53096
|
acs_user_id?: string | undefined
|
|
53097
|
+
/** 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. */
|
|
53098
|
+
user_identity_id?: string | undefined
|
|
52949
53099
|
/** 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. */
|
|
52950
53100
|
connected_account_id: string
|
|
52951
53101
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53046,7 +53196,7 @@ export interface Routes {
|
|
|
53046
53196
|
warning_code: 'needs_to_be_reissued'
|
|
53047
53197
|
}
|
|
53048
53198
|
>
|
|
53049
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
53199
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
53050
53200
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
53051
53201
|
/** 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. */
|
|
53052
53202
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -53138,6 +53288,8 @@ export interface Routes {
|
|
|
53138
53288
|
acs_credentials: Array<{
|
|
53139
53289
|
/** 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. */
|
|
53140
53290
|
acs_user_id?: string | undefined
|
|
53291
|
+
/** 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. */
|
|
53292
|
+
user_identity_id?: string | undefined
|
|
53141
53293
|
/** 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. */
|
|
53142
53294
|
connected_account_id: string
|
|
53143
53295
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53238,7 +53390,7 @@ export interface Routes {
|
|
|
53238
53390
|
warning_code: 'needs_to_be_reissued'
|
|
53239
53391
|
}
|
|
53240
53392
|
>
|
|
53241
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
53393
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
53242
53394
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
53243
53395
|
/** 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. */
|
|
53244
53396
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -53762,7 +53914,7 @@ export interface Routes {
|
|
|
53762
53914
|
pending_auto_update: boolean
|
|
53763
53915
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53764
53916
|
card_format: 'TLCode' | 'rfid48'
|
|
53765
|
-
/**
|
|
53917
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53766
53918
|
card_holder?: string | undefined
|
|
53767
53919
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53768
53920
|
number_of_issued_cards: number
|
|
@@ -53781,6 +53933,8 @@ export interface Routes {
|
|
|
53781
53933
|
acs_credential_id: string
|
|
53782
53934
|
/** 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. */
|
|
53783
53935
|
acs_user_id?: string | undefined
|
|
53936
|
+
/** 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. */
|
|
53937
|
+
user_identity_id?: string | undefined
|
|
53784
53938
|
/** 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. */
|
|
53785
53939
|
connected_account_id: string
|
|
53786
53940
|
acs_credential_pool_id?: string | undefined
|
|
@@ -53881,7 +54035,7 @@ export interface Routes {
|
|
|
53881
54035
|
warning_code: 'needs_to_be_reissued'
|
|
53882
54036
|
}
|
|
53883
54037
|
>
|
|
53884
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
54038
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
53885
54039
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
53886
54040
|
/** 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. */
|
|
53887
54041
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -53938,6 +54092,8 @@ export interface Routes {
|
|
|
53938
54092
|
acs_credential_id: string
|
|
53939
54093
|
/** 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. */
|
|
53940
54094
|
acs_user_id?: string | undefined
|
|
54095
|
+
/** 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. */
|
|
54096
|
+
user_identity_id?: string | undefined
|
|
53941
54097
|
/** 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. */
|
|
53942
54098
|
connected_account_id: string
|
|
53943
54099
|
acs_credential_pool_id?: string | undefined
|
|
@@ -54038,7 +54194,7 @@ export interface Routes {
|
|
|
54038
54194
|
warning_code: 'needs_to_be_reissued'
|
|
54039
54195
|
}
|
|
54040
54196
|
>
|
|
54041
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
54197
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
54042
54198
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
54043
54199
|
/** 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. */
|
|
54044
54200
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -54157,6 +54313,8 @@ export interface Routes {
|
|
|
54157
54313
|
acs_credential_id: string
|
|
54158
54314
|
/** 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. */
|
|
54159
54315
|
acs_user_id?: string | undefined
|
|
54316
|
+
/** 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. */
|
|
54317
|
+
user_identity_id?: string | undefined
|
|
54160
54318
|
/** 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. */
|
|
54161
54319
|
connected_account_id: string
|
|
54162
54320
|
acs_credential_pool_id?: string | undefined
|
|
@@ -54257,7 +54415,7 @@ export interface Routes {
|
|
|
54257
54415
|
warning_code: 'needs_to_be_reissued'
|
|
54258
54416
|
}
|
|
54259
54417
|
>
|
|
54260
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
54418
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
54261
54419
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
54262
54420
|
/** 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. */
|
|
54263
54421
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -54312,6 +54470,8 @@ export interface Routes {
|
|
|
54312
54470
|
acs_credential_id: string
|
|
54313
54471
|
/** 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. */
|
|
54314
54472
|
acs_user_id?: string | undefined
|
|
54473
|
+
/** 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. */
|
|
54474
|
+
user_identity_id?: string | undefined
|
|
54315
54475
|
/** 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. */
|
|
54316
54476
|
connected_account_id: string
|
|
54317
54477
|
acs_credential_pool_id?: string | undefined
|
|
@@ -54412,7 +54572,7 @@ export interface Routes {
|
|
|
54412
54572
|
warning_code: 'needs_to_be_reissued'
|
|
54413
54573
|
}
|
|
54414
54574
|
>
|
|
54415
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
54575
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
54416
54576
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
54417
54577
|
/** 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. */
|
|
54418
54578
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -55199,7 +55359,7 @@ export interface Routes {
|
|
|
55199
55359
|
pending_auto_update: boolean
|
|
55200
55360
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55201
55361
|
card_format: 'TLCode' | 'rfid48'
|
|
55202
|
-
/**
|
|
55362
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55203
55363
|
card_holder?: string | undefined
|
|
55204
55364
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
55205
55365
|
number_of_issued_cards: number
|
|
@@ -55218,6 +55378,8 @@ export interface Routes {
|
|
|
55218
55378
|
acs_credential_id: string
|
|
55219
55379
|
/** 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. */
|
|
55220
55380
|
acs_user_id?: string | undefined
|
|
55381
|
+
/** 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. */
|
|
55382
|
+
user_identity_id?: string | undefined
|
|
55221
55383
|
/** 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. */
|
|
55222
55384
|
connected_account_id: string
|
|
55223
55385
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55318,7 +55480,7 @@ export interface Routes {
|
|
|
55318
55480
|
warning_code: 'needs_to_be_reissued'
|
|
55319
55481
|
}
|
|
55320
55482
|
>
|
|
55321
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
55483
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
55322
55484
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
55323
55485
|
/** 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. */
|
|
55324
55486
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -55375,6 +55537,8 @@ export interface Routes {
|
|
|
55375
55537
|
acs_credential_id: string
|
|
55376
55538
|
/** 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. */
|
|
55377
55539
|
acs_user_id?: string | undefined
|
|
55540
|
+
/** 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. */
|
|
55541
|
+
user_identity_id?: string | undefined
|
|
55378
55542
|
/** 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. */
|
|
55379
55543
|
connected_account_id: string
|
|
55380
55544
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55475,7 +55639,7 @@ export interface Routes {
|
|
|
55475
55639
|
warning_code: 'needs_to_be_reissued'
|
|
55476
55640
|
}
|
|
55477
55641
|
>
|
|
55478
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
55642
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
55479
55643
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
55480
55644
|
/** 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. */
|
|
55481
55645
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -55594,6 +55758,8 @@ export interface Routes {
|
|
|
55594
55758
|
acs_credential_id: string
|
|
55595
55759
|
/** 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. */
|
|
55596
55760
|
acs_user_id?: string | undefined
|
|
55761
|
+
/** 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. */
|
|
55762
|
+
user_identity_id?: string | undefined
|
|
55597
55763
|
/** 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. */
|
|
55598
55764
|
connected_account_id: string
|
|
55599
55765
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55694,7 +55860,7 @@ export interface Routes {
|
|
|
55694
55860
|
warning_code: 'needs_to_be_reissued'
|
|
55695
55861
|
}
|
|
55696
55862
|
>
|
|
55697
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
55863
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
55698
55864
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
55699
55865
|
/** 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. */
|
|
55700
55866
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -55749,6 +55915,8 @@ export interface Routes {
|
|
|
55749
55915
|
acs_credential_id: string
|
|
55750
55916
|
/** 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. */
|
|
55751
55917
|
acs_user_id?: string | undefined
|
|
55918
|
+
/** 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. */
|
|
55919
|
+
user_identity_id?: string | undefined
|
|
55752
55920
|
/** 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. */
|
|
55753
55921
|
connected_account_id: string
|
|
55754
55922
|
acs_credential_pool_id?: string | undefined
|
|
@@ -55849,7 +56017,7 @@ export interface Routes {
|
|
|
55849
56017
|
warning_code: 'needs_to_be_reissued'
|
|
55850
56018
|
}
|
|
55851
56019
|
>
|
|
55852
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
56020
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
55853
56021
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
55854
56022
|
/** 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. */
|
|
55855
56023
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -56730,7 +56898,7 @@ export interface Routes {
|
|
|
56730
56898
|
pending_auto_update: boolean
|
|
56731
56899
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56732
56900
|
card_format: 'TLCode' | 'rfid48'
|
|
56733
|
-
/**
|
|
56901
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56734
56902
|
card_holder?: string | undefined
|
|
56735
56903
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
56736
56904
|
number_of_issued_cards: number
|
|
@@ -56749,6 +56917,8 @@ export interface Routes {
|
|
|
56749
56917
|
acs_credential_id: string
|
|
56750
56918
|
/** 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. */
|
|
56751
56919
|
acs_user_id?: string | undefined
|
|
56920
|
+
/** 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. */
|
|
56921
|
+
user_identity_id?: string | undefined
|
|
56752
56922
|
/** 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. */
|
|
56753
56923
|
connected_account_id: string
|
|
56754
56924
|
acs_credential_pool_id?: string | undefined
|
|
@@ -56849,7 +57019,7 @@ export interface Routes {
|
|
|
56849
57019
|
warning_code: 'needs_to_be_reissued'
|
|
56850
57020
|
}
|
|
56851
57021
|
>
|
|
56852
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
57022
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
56853
57023
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
56854
57024
|
/** 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. */
|
|
56855
57025
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -56906,6 +57076,8 @@ export interface Routes {
|
|
|
56906
57076
|
acs_credential_id: string
|
|
56907
57077
|
/** 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. */
|
|
56908
57078
|
acs_user_id?: string | undefined
|
|
57079
|
+
/** 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. */
|
|
57080
|
+
user_identity_id?: string | undefined
|
|
56909
57081
|
/** 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. */
|
|
56910
57082
|
connected_account_id: string
|
|
56911
57083
|
acs_credential_pool_id?: string | undefined
|
|
@@ -57006,7 +57178,7 @@ export interface Routes {
|
|
|
57006
57178
|
warning_code: 'needs_to_be_reissued'
|
|
57007
57179
|
}
|
|
57008
57180
|
>
|
|
57009
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
57181
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
57010
57182
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
57011
57183
|
/** 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. */
|
|
57012
57184
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -57125,6 +57297,8 @@ export interface Routes {
|
|
|
57125
57297
|
acs_credential_id: string
|
|
57126
57298
|
/** 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. */
|
|
57127
57299
|
acs_user_id?: string | undefined
|
|
57300
|
+
/** 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. */
|
|
57301
|
+
user_identity_id?: string | undefined
|
|
57128
57302
|
/** 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. */
|
|
57129
57303
|
connected_account_id: string
|
|
57130
57304
|
acs_credential_pool_id?: string | undefined
|
|
@@ -57225,7 +57399,7 @@ export interface Routes {
|
|
|
57225
57399
|
warning_code: 'needs_to_be_reissued'
|
|
57226
57400
|
}
|
|
57227
57401
|
>
|
|
57228
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
57402
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
57229
57403
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
57230
57404
|
/** 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. */
|
|
57231
57405
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -57280,6 +57454,8 @@ export interface Routes {
|
|
|
57280
57454
|
acs_credential_id: string
|
|
57281
57455
|
/** 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. */
|
|
57282
57456
|
acs_user_id?: string | undefined
|
|
57457
|
+
/** 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. */
|
|
57458
|
+
user_identity_id?: string | undefined
|
|
57283
57459
|
/** 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. */
|
|
57284
57460
|
connected_account_id: string
|
|
57285
57461
|
acs_credential_pool_id?: string | undefined
|
|
@@ -57380,7 +57556,7 @@ export interface Routes {
|
|
|
57380
57556
|
warning_code: 'needs_to_be_reissued'
|
|
57381
57557
|
}
|
|
57382
57558
|
>
|
|
57383
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
57559
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
57384
57560
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
57385
57561
|
/** 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. */
|
|
57386
57562
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -59596,7 +59772,7 @@ export interface Routes {
|
|
|
59596
59772
|
pending_auto_update: boolean
|
|
59597
59773
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59598
59774
|
card_format: 'TLCode' | 'rfid48'
|
|
59599
|
-
/**
|
|
59775
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59600
59776
|
card_holder?: string | undefined
|
|
59601
59777
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
59602
59778
|
number_of_issued_cards: number
|
|
@@ -59615,6 +59791,8 @@ export interface Routes {
|
|
|
59615
59791
|
acs_credential_id: string
|
|
59616
59792
|
/** 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. */
|
|
59617
59793
|
acs_user_id?: string | undefined
|
|
59794
|
+
/** 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. */
|
|
59795
|
+
user_identity_id?: string | undefined
|
|
59618
59796
|
/** 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. */
|
|
59619
59797
|
connected_account_id: string
|
|
59620
59798
|
acs_credential_pool_id?: string | undefined
|
|
@@ -59715,7 +59893,7 @@ export interface Routes {
|
|
|
59715
59893
|
warning_code: 'needs_to_be_reissued'
|
|
59716
59894
|
}
|
|
59717
59895
|
>
|
|
59718
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
59896
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
59719
59897
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
59720
59898
|
/** 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. */
|
|
59721
59899
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -59772,6 +59950,8 @@ export interface Routes {
|
|
|
59772
59950
|
acs_credential_id: string
|
|
59773
59951
|
/** 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. */
|
|
59774
59952
|
acs_user_id?: string | undefined
|
|
59953
|
+
/** 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. */
|
|
59954
|
+
user_identity_id?: string | undefined
|
|
59775
59955
|
/** 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. */
|
|
59776
59956
|
connected_account_id: string
|
|
59777
59957
|
acs_credential_pool_id?: string | undefined
|
|
@@ -59872,7 +60052,7 @@ export interface Routes {
|
|
|
59872
60052
|
warning_code: 'needs_to_be_reissued'
|
|
59873
60053
|
}
|
|
59874
60054
|
>
|
|
59875
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
60055
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
59876
60056
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
59877
60057
|
/** 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. */
|
|
59878
60058
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -59991,6 +60171,8 @@ export interface Routes {
|
|
|
59991
60171
|
acs_credential_id: string
|
|
59992
60172
|
/** 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. */
|
|
59993
60173
|
acs_user_id?: string | undefined
|
|
60174
|
+
/** 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. */
|
|
60175
|
+
user_identity_id?: string | undefined
|
|
59994
60176
|
/** 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. */
|
|
59995
60177
|
connected_account_id: string
|
|
59996
60178
|
acs_credential_pool_id?: string | undefined
|
|
@@ -60091,7 +60273,7 @@ export interface Routes {
|
|
|
60091
60273
|
warning_code: 'needs_to_be_reissued'
|
|
60092
60274
|
}
|
|
60093
60275
|
>
|
|
60094
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
60276
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
60095
60277
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
60096
60278
|
/** 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. */
|
|
60097
60279
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -60146,6 +60328,8 @@ export interface Routes {
|
|
|
60146
60328
|
acs_credential_id: string
|
|
60147
60329
|
/** 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. */
|
|
60148
60330
|
acs_user_id?: string | undefined
|
|
60331
|
+
/** 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. */
|
|
60332
|
+
user_identity_id?: string | undefined
|
|
60149
60333
|
/** 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. */
|
|
60150
60334
|
connected_account_id: string
|
|
60151
60335
|
acs_credential_pool_id?: string | undefined
|
|
@@ -60246,7 +60430,7 @@ export interface Routes {
|
|
|
60246
60430
|
warning_code: 'needs_to_be_reissued'
|
|
60247
60431
|
}
|
|
60248
60432
|
>
|
|
60249
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
60433
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
60250
60434
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
60251
60435
|
/** 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. */
|
|
60252
60436
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -61037,7 +61221,7 @@ export interface Routes {
|
|
|
61037
61221
|
pending_auto_update: boolean
|
|
61038
61222
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61039
61223
|
card_format: 'TLCode' | 'rfid48'
|
|
61040
|
-
/**
|
|
61224
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61041
61225
|
card_holder?: string | undefined
|
|
61042
61226
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
61043
61227
|
number_of_issued_cards: number
|
|
@@ -61056,6 +61240,8 @@ export interface Routes {
|
|
|
61056
61240
|
acs_credential_id: string
|
|
61057
61241
|
/** 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. */
|
|
61058
61242
|
acs_user_id?: string | undefined
|
|
61243
|
+
/** 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. */
|
|
61244
|
+
user_identity_id?: string | undefined
|
|
61059
61245
|
/** 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. */
|
|
61060
61246
|
connected_account_id: string
|
|
61061
61247
|
acs_credential_pool_id?: string | undefined
|
|
@@ -61156,7 +61342,7 @@ export interface Routes {
|
|
|
61156
61342
|
warning_code: 'needs_to_be_reissued'
|
|
61157
61343
|
}
|
|
61158
61344
|
>
|
|
61159
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61345
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
61160
61346
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
61161
61347
|
/** 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. */
|
|
61162
61348
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -61213,6 +61399,8 @@ export interface Routes {
|
|
|
61213
61399
|
acs_credential_id: string
|
|
61214
61400
|
/** 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. */
|
|
61215
61401
|
acs_user_id?: string | undefined
|
|
61402
|
+
/** 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. */
|
|
61403
|
+
user_identity_id?: string | undefined
|
|
61216
61404
|
/** 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. */
|
|
61217
61405
|
connected_account_id: string
|
|
61218
61406
|
acs_credential_pool_id?: string | undefined
|
|
@@ -61313,7 +61501,7 @@ export interface Routes {
|
|
|
61313
61501
|
warning_code: 'needs_to_be_reissued'
|
|
61314
61502
|
}
|
|
61315
61503
|
>
|
|
61316
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61504
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
61317
61505
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
61318
61506
|
/** 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. */
|
|
61319
61507
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -61432,6 +61620,8 @@ export interface Routes {
|
|
|
61432
61620
|
acs_credential_id: string
|
|
61433
61621
|
/** 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. */
|
|
61434
61622
|
acs_user_id?: string | undefined
|
|
61623
|
+
/** 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. */
|
|
61624
|
+
user_identity_id?: string | undefined
|
|
61435
61625
|
/** 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. */
|
|
61436
61626
|
connected_account_id: string
|
|
61437
61627
|
acs_credential_pool_id?: string | undefined
|
|
@@ -61532,7 +61722,7 @@ export interface Routes {
|
|
|
61532
61722
|
warning_code: 'needs_to_be_reissued'
|
|
61533
61723
|
}
|
|
61534
61724
|
>
|
|
61535
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61725
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
61536
61726
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
61537
61727
|
/** 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. */
|
|
61538
61728
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -61587,6 +61777,8 @@ export interface Routes {
|
|
|
61587
61777
|
acs_credential_id: string
|
|
61588
61778
|
/** 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. */
|
|
61589
61779
|
acs_user_id?: string | undefined
|
|
61780
|
+
/** 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. */
|
|
61781
|
+
user_identity_id?: string | undefined
|
|
61590
61782
|
/** 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. */
|
|
61591
61783
|
connected_account_id: string
|
|
61592
61784
|
acs_credential_pool_id?: string | undefined
|
|
@@ -61687,7 +61879,7 @@ export interface Routes {
|
|
|
61687
61879
|
warning_code: 'needs_to_be_reissued'
|
|
61688
61880
|
}
|
|
61689
61881
|
>
|
|
61690
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
61882
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
61691
61883
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
61692
61884
|
/** 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. */
|
|
61693
61885
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -65372,7 +65564,7 @@ export interface Routes {
|
|
|
65372
65564
|
pending_auto_update: boolean
|
|
65373
65565
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
65374
65566
|
card_format: 'TLCode' | 'rfid48'
|
|
65375
|
-
/**
|
|
65567
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
65376
65568
|
card_holder?: string | undefined
|
|
65377
65569
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
65378
65570
|
number_of_issued_cards: number
|
|
@@ -65391,6 +65583,8 @@ export interface Routes {
|
|
|
65391
65583
|
acs_credential_id: string
|
|
65392
65584
|
/** 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. */
|
|
65393
65585
|
acs_user_id?: string | undefined
|
|
65586
|
+
/** 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. */
|
|
65587
|
+
user_identity_id?: string | undefined
|
|
65394
65588
|
/** 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. */
|
|
65395
65589
|
connected_account_id: string
|
|
65396
65590
|
acs_credential_pool_id?: string | undefined
|
|
@@ -65491,7 +65685,7 @@ export interface Routes {
|
|
|
65491
65685
|
warning_code: 'needs_to_be_reissued'
|
|
65492
65686
|
}
|
|
65493
65687
|
>
|
|
65494
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
65688
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
65495
65689
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
65496
65690
|
/** 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. */
|
|
65497
65691
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -65548,6 +65742,8 @@ export interface Routes {
|
|
|
65548
65742
|
acs_credential_id: string
|
|
65549
65743
|
/** 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. */
|
|
65550
65744
|
acs_user_id?: string | undefined
|
|
65745
|
+
/** 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. */
|
|
65746
|
+
user_identity_id?: string | undefined
|
|
65551
65747
|
/** 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. */
|
|
65552
65748
|
connected_account_id: string
|
|
65553
65749
|
acs_credential_pool_id?: string | undefined
|
|
@@ -65648,7 +65844,7 @@ export interface Routes {
|
|
|
65648
65844
|
warning_code: 'needs_to_be_reissued'
|
|
65649
65845
|
}
|
|
65650
65846
|
>
|
|
65651
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
65847
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
65652
65848
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
65653
65849
|
/** 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. */
|
|
65654
65850
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -65767,6 +65963,8 @@ export interface Routes {
|
|
|
65767
65963
|
acs_credential_id: string
|
|
65768
65964
|
/** 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. */
|
|
65769
65965
|
acs_user_id?: string | undefined
|
|
65966
|
+
/** 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. */
|
|
65967
|
+
user_identity_id?: string | undefined
|
|
65770
65968
|
/** 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. */
|
|
65771
65969
|
connected_account_id: string
|
|
65772
65970
|
acs_credential_pool_id?: string | undefined
|
|
@@ -65867,7 +66065,7 @@ export interface Routes {
|
|
|
65867
66065
|
warning_code: 'needs_to_be_reissued'
|
|
65868
66066
|
}
|
|
65869
66067
|
>
|
|
65870
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
66068
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
65871
66069
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
65872
66070
|
/** 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. */
|
|
65873
66071
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -65922,6 +66120,8 @@ export interface Routes {
|
|
|
65922
66120
|
acs_credential_id: string
|
|
65923
66121
|
/** 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. */
|
|
65924
66122
|
acs_user_id?: string | undefined
|
|
66123
|
+
/** 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. */
|
|
66124
|
+
user_identity_id?: string | undefined
|
|
65925
66125
|
/** 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. */
|
|
65926
66126
|
connected_account_id: string
|
|
65927
66127
|
acs_credential_pool_id?: string | undefined
|
|
@@ -66022,7 +66222,7 @@ export interface Routes {
|
|
|
66022
66222
|
warning_code: 'needs_to_be_reissued'
|
|
66023
66223
|
}
|
|
66024
66224
|
>
|
|
66025
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
66225
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
66026
66226
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
66027
66227
|
/** 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. */
|
|
66028
66228
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -67002,7 +67202,7 @@ export interface Routes {
|
|
|
67002
67202
|
pending_auto_update: boolean
|
|
67003
67203
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
67004
67204
|
card_format: 'TLCode' | 'rfid48'
|
|
67005
|
-
/**
|
|
67205
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
67006
67206
|
card_holder?: string | undefined
|
|
67007
67207
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
67008
67208
|
number_of_issued_cards: number
|
|
@@ -67021,6 +67221,8 @@ export interface Routes {
|
|
|
67021
67221
|
acs_credential_id: string
|
|
67022
67222
|
/** 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. */
|
|
67023
67223
|
acs_user_id?: string | undefined
|
|
67224
|
+
/** 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. */
|
|
67225
|
+
user_identity_id?: string | undefined
|
|
67024
67226
|
/** 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. */
|
|
67025
67227
|
connected_account_id: string
|
|
67026
67228
|
acs_credential_pool_id?: string | undefined
|
|
@@ -67121,7 +67323,7 @@ export interface Routes {
|
|
|
67121
67323
|
warning_code: 'needs_to_be_reissued'
|
|
67122
67324
|
}
|
|
67123
67325
|
>
|
|
67124
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
67326
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
67125
67327
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
67126
67328
|
/** 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. */
|
|
67127
67329
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -67178,6 +67380,8 @@ export interface Routes {
|
|
|
67178
67380
|
acs_credential_id: string
|
|
67179
67381
|
/** 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. */
|
|
67180
67382
|
acs_user_id?: string | undefined
|
|
67383
|
+
/** 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. */
|
|
67384
|
+
user_identity_id?: string | undefined
|
|
67181
67385
|
/** 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. */
|
|
67182
67386
|
connected_account_id: string
|
|
67183
67387
|
acs_credential_pool_id?: string | undefined
|
|
@@ -67278,7 +67482,7 @@ export interface Routes {
|
|
|
67278
67482
|
warning_code: 'needs_to_be_reissued'
|
|
67279
67483
|
}
|
|
67280
67484
|
>
|
|
67281
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
67485
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
67282
67486
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
67283
67487
|
/** 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. */
|
|
67284
67488
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -67397,6 +67601,8 @@ export interface Routes {
|
|
|
67397
67601
|
acs_credential_id: string
|
|
67398
67602
|
/** 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. */
|
|
67399
67603
|
acs_user_id?: string | undefined
|
|
67604
|
+
/** 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. */
|
|
67605
|
+
user_identity_id?: string | undefined
|
|
67400
67606
|
/** 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. */
|
|
67401
67607
|
connected_account_id: string
|
|
67402
67608
|
acs_credential_pool_id?: string | undefined
|
|
@@ -67497,7 +67703,7 @@ export interface Routes {
|
|
|
67497
67703
|
warning_code: 'needs_to_be_reissued'
|
|
67498
67704
|
}
|
|
67499
67705
|
>
|
|
67500
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
67706
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
67501
67707
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
67502
67708
|
/** 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. */
|
|
67503
67709
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -67552,6 +67758,8 @@ export interface Routes {
|
|
|
67552
67758
|
acs_credential_id: string
|
|
67553
67759
|
/** 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. */
|
|
67554
67760
|
acs_user_id?: string | undefined
|
|
67761
|
+
/** 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. */
|
|
67762
|
+
user_identity_id?: string | undefined
|
|
67555
67763
|
/** 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. */
|
|
67556
67764
|
connected_account_id: string
|
|
67557
67765
|
acs_credential_pool_id?: string | undefined
|
|
@@ -67652,7 +67860,7 @@ export interface Routes {
|
|
|
67652
67860
|
warning_code: 'needs_to_be_reissued'
|
|
67653
67861
|
}
|
|
67654
67862
|
>
|
|
67655
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
67863
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
67656
67864
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
67657
67865
|
/** 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. */
|
|
67658
67866
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -68466,7 +68674,7 @@ export interface Routes {
|
|
|
68466
68674
|
pending_auto_update: boolean
|
|
68467
68675
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68468
68676
|
card_format: 'TLCode' | 'rfid48'
|
|
68469
|
-
/**
|
|
68677
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68470
68678
|
card_holder?: string | undefined
|
|
68471
68679
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
68472
68680
|
number_of_issued_cards: number
|
|
@@ -68485,6 +68693,8 @@ export interface Routes {
|
|
|
68485
68693
|
acs_credential_id: string
|
|
68486
68694
|
/** 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. */
|
|
68487
68695
|
acs_user_id?: string | undefined
|
|
68696
|
+
/** 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. */
|
|
68697
|
+
user_identity_id?: string | undefined
|
|
68488
68698
|
/** 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. */
|
|
68489
68699
|
connected_account_id: string
|
|
68490
68700
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68585,7 +68795,7 @@ export interface Routes {
|
|
|
68585
68795
|
warning_code: 'needs_to_be_reissued'
|
|
68586
68796
|
}
|
|
68587
68797
|
>
|
|
68588
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
68798
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
68589
68799
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
68590
68800
|
/** 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. */
|
|
68591
68801
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -68642,6 +68852,8 @@ export interface Routes {
|
|
|
68642
68852
|
acs_credential_id: string
|
|
68643
68853
|
/** 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. */
|
|
68644
68854
|
acs_user_id?: string | undefined
|
|
68855
|
+
/** 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. */
|
|
68856
|
+
user_identity_id?: string | undefined
|
|
68645
68857
|
/** 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. */
|
|
68646
68858
|
connected_account_id: string
|
|
68647
68859
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68742,7 +68954,7 @@ export interface Routes {
|
|
|
68742
68954
|
warning_code: 'needs_to_be_reissued'
|
|
68743
68955
|
}
|
|
68744
68956
|
>
|
|
68745
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
68957
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
68746
68958
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
68747
68959
|
/** 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. */
|
|
68748
68960
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -68861,6 +69073,8 @@ export interface Routes {
|
|
|
68861
69073
|
acs_credential_id: string
|
|
68862
69074
|
/** 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. */
|
|
68863
69075
|
acs_user_id?: string | undefined
|
|
69076
|
+
/** 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. */
|
|
69077
|
+
user_identity_id?: string | undefined
|
|
68864
69078
|
/** 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. */
|
|
68865
69079
|
connected_account_id: string
|
|
68866
69080
|
acs_credential_pool_id?: string | undefined
|
|
@@ -68961,7 +69175,7 @@ export interface Routes {
|
|
|
68961
69175
|
warning_code: 'needs_to_be_reissued'
|
|
68962
69176
|
}
|
|
68963
69177
|
>
|
|
68964
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69178
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
68965
69179
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
68966
69180
|
/** 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. */
|
|
68967
69181
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -69016,6 +69230,8 @@ export interface Routes {
|
|
|
69016
69230
|
acs_credential_id: string
|
|
69017
69231
|
/** 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. */
|
|
69018
69232
|
acs_user_id?: string | undefined
|
|
69233
|
+
/** 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. */
|
|
69234
|
+
user_identity_id?: string | undefined
|
|
69019
69235
|
/** 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. */
|
|
69020
69236
|
connected_account_id: string
|
|
69021
69237
|
acs_credential_pool_id?: string | undefined
|
|
@@ -69116,7 +69332,7 @@ export interface Routes {
|
|
|
69116
69332
|
warning_code: 'needs_to_be_reissued'
|
|
69117
69333
|
}
|
|
69118
69334
|
>
|
|
69119
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69335
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
69120
69336
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
69121
69337
|
/** 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. */
|
|
69122
69338
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -70033,7 +70249,7 @@ export interface Routes {
|
|
|
70033
70249
|
pending_auto_update: boolean
|
|
70034
70250
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
70035
70251
|
card_format: 'TLCode' | 'rfid48'
|
|
70036
|
-
/**
|
|
70252
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
70037
70253
|
card_holder?: string | undefined
|
|
70038
70254
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
70039
70255
|
number_of_issued_cards: number
|
|
@@ -70052,6 +70268,8 @@ export interface Routes {
|
|
|
70052
70268
|
acs_credential_id: string
|
|
70053
70269
|
/** 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. */
|
|
70054
70270
|
acs_user_id?: string | undefined
|
|
70271
|
+
/** 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. */
|
|
70272
|
+
user_identity_id?: string | undefined
|
|
70055
70273
|
/** 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. */
|
|
70056
70274
|
connected_account_id: string
|
|
70057
70275
|
acs_credential_pool_id?: string | undefined
|
|
@@ -70152,7 +70370,7 @@ export interface Routes {
|
|
|
70152
70370
|
warning_code: 'needs_to_be_reissued'
|
|
70153
70371
|
}
|
|
70154
70372
|
>
|
|
70155
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70373
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
70156
70374
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
70157
70375
|
/** 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. */
|
|
70158
70376
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -70209,6 +70427,8 @@ export interface Routes {
|
|
|
70209
70427
|
acs_credential_id: string
|
|
70210
70428
|
/** 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. */
|
|
70211
70429
|
acs_user_id?: string | undefined
|
|
70430
|
+
/** 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. */
|
|
70431
|
+
user_identity_id?: string | undefined
|
|
70212
70432
|
/** 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. */
|
|
70213
70433
|
connected_account_id: string
|
|
70214
70434
|
acs_credential_pool_id?: string | undefined
|
|
@@ -70309,7 +70529,7 @@ export interface Routes {
|
|
|
70309
70529
|
warning_code: 'needs_to_be_reissued'
|
|
70310
70530
|
}
|
|
70311
70531
|
>
|
|
70312
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70532
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
70313
70533
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
70314
70534
|
/** 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. */
|
|
70315
70535
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -70428,6 +70648,8 @@ export interface Routes {
|
|
|
70428
70648
|
acs_credential_id: string
|
|
70429
70649
|
/** 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. */
|
|
70430
70650
|
acs_user_id?: string | undefined
|
|
70651
|
+
/** 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. */
|
|
70652
|
+
user_identity_id?: string | undefined
|
|
70431
70653
|
/** 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. */
|
|
70432
70654
|
connected_account_id: string
|
|
70433
70655
|
acs_credential_pool_id?: string | undefined
|
|
@@ -70528,7 +70750,7 @@ export interface Routes {
|
|
|
70528
70750
|
warning_code: 'needs_to_be_reissued'
|
|
70529
70751
|
}
|
|
70530
70752
|
>
|
|
70531
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70753
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
70532
70754
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
70533
70755
|
/** 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. */
|
|
70534
70756
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -70583,6 +70805,8 @@ export interface Routes {
|
|
|
70583
70805
|
acs_credential_id: string
|
|
70584
70806
|
/** 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. */
|
|
70585
70807
|
acs_user_id?: string | undefined
|
|
70808
|
+
/** 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. */
|
|
70809
|
+
user_identity_id?: string | undefined
|
|
70586
70810
|
/** 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. */
|
|
70587
70811
|
connected_account_id: string
|
|
70588
70812
|
acs_credential_pool_id?: string | undefined
|
|
@@ -70683,7 +70907,7 @@ export interface Routes {
|
|
|
70683
70907
|
warning_code: 'needs_to_be_reissued'
|
|
70684
70908
|
}
|
|
70685
70909
|
>
|
|
70686
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70910
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
70687
70911
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
70688
70912
|
/** 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. */
|
|
70689
70913
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -72053,12 +72277,18 @@ export interface Routes {
|
|
|
72053
72277
|
created_at: string
|
|
72054
72278
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
72055
72279
|
workspace_id: string
|
|
72056
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
72280
|
+
/** 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. */
|
|
72057
72281
|
errors: Array<{
|
|
72058
72282
|
/** Date and time at which Seam created the error. */
|
|
72059
72283
|
created_at: string
|
|
72060
72284
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72061
72285
|
message: string
|
|
72286
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72287
|
+
error_code: 'issue_with_acs_user'
|
|
72288
|
+
/** ID of the access system user that has an issue. */
|
|
72289
|
+
acs_user_id: string
|
|
72290
|
+
/** ID of the access system that the user identity is associated with. */
|
|
72291
|
+
acs_system_id: string
|
|
72062
72292
|
}>
|
|
72063
72293
|
/** 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. */
|
|
72064
72294
|
warnings: Array<{
|
|
@@ -72107,14 +72337,14 @@ export interface Routes {
|
|
|
72107
72337
|
}
|
|
72108
72338
|
formData: {}
|
|
72109
72339
|
jsonResponse: {
|
|
72110
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72340
|
+
/** 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/).
|
|
72111
72341
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
72112
72342
|
enrollment_automation: {
|
|
72113
72343
|
/** ID of the enrollment automation. */
|
|
72114
72344
|
enrollment_automation_id: string
|
|
72115
72345
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
72116
72346
|
credential_manager_acs_system_id: string
|
|
72117
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72347
|
+
/** 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). */
|
|
72118
72348
|
user_identity_id: string
|
|
72119
72349
|
/** Date and time at which the enrollment automation was created. */
|
|
72120
72350
|
created_at: string
|
|
@@ -72142,14 +72372,14 @@ export interface Routes {
|
|
|
72142
72372
|
}
|
|
72143
72373
|
formData: {}
|
|
72144
72374
|
jsonResponse: {
|
|
72145
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72375
|
+
/** 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/).
|
|
72146
72376
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
72147
72377
|
enrollment_automation: {
|
|
72148
72378
|
/** ID of the enrollment automation. */
|
|
72149
72379
|
enrollment_automation_id: string
|
|
72150
72380
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
72151
72381
|
credential_manager_acs_system_id: string
|
|
72152
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72382
|
+
/** 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). */
|
|
72153
72383
|
user_identity_id: string
|
|
72154
72384
|
/** Date and time at which the enrollment automation was created. */
|
|
72155
72385
|
created_at: string
|
|
@@ -72174,7 +72404,7 @@ export interface Routes {
|
|
|
72174
72404
|
enrollment_automation_id: string
|
|
72175
72405
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
72176
72406
|
credential_manager_acs_system_id: string
|
|
72177
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72407
|
+
/** 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). */
|
|
72178
72408
|
user_identity_id: string
|
|
72179
72409
|
/** Date and time at which the enrollment automation was created. */
|
|
72180
72410
|
created_at: string
|
|
@@ -72248,12 +72478,18 @@ export interface Routes {
|
|
|
72248
72478
|
created_at: string
|
|
72249
72479
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
72250
72480
|
workspace_id: string
|
|
72251
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
72481
|
+
/** 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. */
|
|
72252
72482
|
errors: Array<{
|
|
72253
72483
|
/** Date and time at which Seam created the error. */
|
|
72254
72484
|
created_at: string
|
|
72255
72485
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72256
72486
|
message: string
|
|
72487
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72488
|
+
error_code: 'issue_with_acs_user'
|
|
72489
|
+
/** ID of the access system user that has an issue. */
|
|
72490
|
+
acs_user_id: string
|
|
72491
|
+
/** ID of the access system that the user identity is associated with. */
|
|
72492
|
+
acs_system_id: string
|
|
72257
72493
|
}>
|
|
72258
72494
|
/** 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. */
|
|
72259
72495
|
warnings: Array<{
|
|
@@ -72309,12 +72545,18 @@ export interface Routes {
|
|
|
72309
72545
|
created_at: string
|
|
72310
72546
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
72311
72547
|
workspace_id: string
|
|
72312
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
72548
|
+
/** 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. */
|
|
72313
72549
|
errors: Array<{
|
|
72314
72550
|
/** Date and time at which Seam created the error. */
|
|
72315
72551
|
created_at: string
|
|
72316
72552
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72317
72553
|
message: string
|
|
72554
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72555
|
+
error_code: 'issue_with_acs_user'
|
|
72556
|
+
/** ID of the access system user that has an issue. */
|
|
72557
|
+
acs_user_id: string
|
|
72558
|
+
/** ID of the access system that the user identity is associated with. */
|
|
72559
|
+
acs_system_id: string
|
|
72318
72560
|
}>
|
|
72319
72561
|
/** 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. */
|
|
72320
72562
|
warnings: Array<{
|
|
@@ -76003,7 +76245,7 @@ export interface Routes {
|
|
|
76003
76245
|
pending_auto_update: boolean
|
|
76004
76246
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
76005
76247
|
card_format: 'TLCode' | 'rfid48'
|
|
76006
|
-
/**
|
|
76248
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
76007
76249
|
card_holder?: string | undefined
|
|
76008
76250
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
76009
76251
|
number_of_issued_cards: number
|
|
@@ -76022,6 +76264,8 @@ export interface Routes {
|
|
|
76022
76264
|
acs_credential_id: string
|
|
76023
76265
|
/** 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. */
|
|
76024
76266
|
acs_user_id?: string | undefined
|
|
76267
|
+
/** 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. */
|
|
76268
|
+
user_identity_id?: string | undefined
|
|
76025
76269
|
/** 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. */
|
|
76026
76270
|
connected_account_id: string
|
|
76027
76271
|
acs_credential_pool_id?: string | undefined
|
|
@@ -76122,7 +76366,7 @@ export interface Routes {
|
|
|
76122
76366
|
warning_code: 'needs_to_be_reissued'
|
|
76123
76367
|
}
|
|
76124
76368
|
>
|
|
76125
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76369
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
76126
76370
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
76127
76371
|
/** 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. */
|
|
76128
76372
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -76179,6 +76423,8 @@ export interface Routes {
|
|
|
76179
76423
|
acs_credential_id: string
|
|
76180
76424
|
/** 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. */
|
|
76181
76425
|
acs_user_id?: string | undefined
|
|
76426
|
+
/** 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. */
|
|
76427
|
+
user_identity_id?: string | undefined
|
|
76182
76428
|
/** 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. */
|
|
76183
76429
|
connected_account_id: string
|
|
76184
76430
|
acs_credential_pool_id?: string | undefined
|
|
@@ -76279,7 +76525,7 @@ export interface Routes {
|
|
|
76279
76525
|
warning_code: 'needs_to_be_reissued'
|
|
76280
76526
|
}
|
|
76281
76527
|
>
|
|
76282
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76528
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
76283
76529
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
76284
76530
|
/** 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. */
|
|
76285
76531
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -76398,6 +76644,8 @@ export interface Routes {
|
|
|
76398
76644
|
acs_credential_id: string
|
|
76399
76645
|
/** 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. */
|
|
76400
76646
|
acs_user_id?: string | undefined
|
|
76647
|
+
/** 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. */
|
|
76648
|
+
user_identity_id?: string | undefined
|
|
76401
76649
|
/** 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. */
|
|
76402
76650
|
connected_account_id: string
|
|
76403
76651
|
acs_credential_pool_id?: string | undefined
|
|
@@ -76498,7 +76746,7 @@ export interface Routes {
|
|
|
76498
76746
|
warning_code: 'needs_to_be_reissued'
|
|
76499
76747
|
}
|
|
76500
76748
|
>
|
|
76501
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76749
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
76502
76750
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
76503
76751
|
/** 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. */
|
|
76504
76752
|
is_latest_desired_state_synced_with_provider?:
|
|
@@ -76553,6 +76801,8 @@ export interface Routes {
|
|
|
76553
76801
|
acs_credential_id: string
|
|
76554
76802
|
/** 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. */
|
|
76555
76803
|
acs_user_id?: string | undefined
|
|
76804
|
+
/** 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. */
|
|
76805
|
+
user_identity_id?: string | undefined
|
|
76556
76806
|
/** 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. */
|
|
76557
76807
|
connected_account_id: string
|
|
76558
76808
|
acs_credential_pool_id?: string | undefined
|
|
@@ -76653,7 +76903,7 @@ export interface Routes {
|
|
|
76653
76903
|
warning_code: 'needs_to_be_reissued'
|
|
76654
76904
|
}
|
|
76655
76905
|
>
|
|
76656
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76906
|
+
/** Indicates whether the [credential](https://docs.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). */
|
|
76657
76907
|
is_multi_phone_sync_credential?: boolean | undefined
|
|
76658
76908
|
/** 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. */
|
|
76659
76909
|
is_latest_desired_state_synced_with_provider?:
|