@seamapi/types 1.431.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 +104 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +222 -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.js +2 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- 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 +34 -12
- package/lib/seam/connect/openapi.js +83 -55
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +169 -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 +2 -2
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +37 -3
- package/src/lib/seam/connect/openapi.ts +88 -55
- package/src/lib/seam/connect/route-types.ts +169 -151
package/dist/connect.d.cts
CHANGED
|
@@ -21545,16 +21545,26 @@ declare const user_identity: z.ZodObject<{
|
|
|
21545
21545
|
full_name: z.ZodNullable<z.ZodString>;
|
|
21546
21546
|
created_at: z.ZodString;
|
|
21547
21547
|
workspace_id: z.ZodString;
|
|
21548
|
-
errors: z.ZodArray<z.ZodObject<{
|
|
21548
|
+
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
21549
21549
|
created_at: z.ZodString;
|
|
21550
21550
|
message: z.ZodString;
|
|
21551
|
-
},
|
|
21551
|
+
}, {
|
|
21552
|
+
error_code: z.ZodLiteral<"issue_with_acs_user">;
|
|
21553
|
+
acs_user_id: z.ZodString;
|
|
21554
|
+
acs_system_id: z.ZodString;
|
|
21555
|
+
}>, "strip", z.ZodTypeAny, {
|
|
21552
21556
|
message: string;
|
|
21553
21557
|
created_at: string;
|
|
21558
|
+
error_code: "issue_with_acs_user";
|
|
21559
|
+
acs_system_id: string;
|
|
21560
|
+
acs_user_id: string;
|
|
21554
21561
|
}, {
|
|
21555
21562
|
message: string;
|
|
21556
21563
|
created_at: string;
|
|
21557
|
-
|
|
21564
|
+
error_code: "issue_with_acs_user";
|
|
21565
|
+
acs_system_id: string;
|
|
21566
|
+
acs_user_id: string;
|
|
21567
|
+
}>]>, "many">;
|
|
21558
21568
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
21559
21569
|
created_at: z.ZodString;
|
|
21560
21570
|
message: z.ZodString;
|
|
@@ -21576,6 +21586,9 @@ declare const user_identity: z.ZodObject<{
|
|
|
21576
21586
|
errors: {
|
|
21577
21587
|
message: string;
|
|
21578
21588
|
created_at: string;
|
|
21589
|
+
error_code: "issue_with_acs_user";
|
|
21590
|
+
acs_system_id: string;
|
|
21591
|
+
acs_user_id: string;
|
|
21579
21592
|
}[];
|
|
21580
21593
|
warnings: {
|
|
21581
21594
|
message: string;
|
|
@@ -21594,6 +21607,9 @@ declare const user_identity: z.ZodObject<{
|
|
|
21594
21607
|
errors: {
|
|
21595
21608
|
message: string;
|
|
21596
21609
|
created_at: string;
|
|
21610
|
+
error_code: "issue_with_acs_user";
|
|
21611
|
+
acs_system_id: string;
|
|
21612
|
+
acs_user_id: string;
|
|
21597
21613
|
}[];
|
|
21598
21614
|
warnings: {
|
|
21599
21615
|
message: string;
|
|
@@ -34213,19 +34229,41 @@ declare const _default: {
|
|
|
34213
34229
|
errors: {
|
|
34214
34230
|
description: string;
|
|
34215
34231
|
items: {
|
|
34216
|
-
|
|
34217
|
-
|
|
34218
|
-
|
|
34219
|
-
format: string;
|
|
34220
|
-
type: string;
|
|
34221
|
-
};
|
|
34222
|
-
message: {
|
|
34223
|
-
description: string;
|
|
34224
|
-
type: string;
|
|
34225
|
-
};
|
|
34232
|
+
description: string;
|
|
34233
|
+
discriminator: {
|
|
34234
|
+
propertyName: string;
|
|
34226
34235
|
};
|
|
34227
|
-
|
|
34228
|
-
|
|
34236
|
+
oneOf: {
|
|
34237
|
+
description: string;
|
|
34238
|
+
properties: {
|
|
34239
|
+
acs_system_id: {
|
|
34240
|
+
description: string;
|
|
34241
|
+
format: string;
|
|
34242
|
+
type: string;
|
|
34243
|
+
};
|
|
34244
|
+
acs_user_id: {
|
|
34245
|
+
description: string;
|
|
34246
|
+
format: string;
|
|
34247
|
+
type: string;
|
|
34248
|
+
};
|
|
34249
|
+
created_at: {
|
|
34250
|
+
description: string;
|
|
34251
|
+
format: string;
|
|
34252
|
+
type: string;
|
|
34253
|
+
};
|
|
34254
|
+
error_code: {
|
|
34255
|
+
description: string;
|
|
34256
|
+
enum: string[];
|
|
34257
|
+
type: string;
|
|
34258
|
+
};
|
|
34259
|
+
message: {
|
|
34260
|
+
description: string;
|
|
34261
|
+
type: string;
|
|
34262
|
+
};
|
|
34263
|
+
};
|
|
34264
|
+
required: string[];
|
|
34265
|
+
type: string;
|
|
34266
|
+
}[];
|
|
34229
34267
|
};
|
|
34230
34268
|
type: string;
|
|
34231
34269
|
};
|
|
@@ -69635,7 +69673,7 @@ interface Routes {
|
|
|
69635
69673
|
pending_auto_update: boolean;
|
|
69636
69674
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69637
69675
|
card_format: 'TLCode' | 'rfid48';
|
|
69638
|
-
/**
|
|
69676
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69639
69677
|
card_holder?: string | undefined;
|
|
69640
69678
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69641
69679
|
number_of_issued_cards: number;
|
|
@@ -69735,7 +69773,7 @@ interface Routes {
|
|
|
69735
69773
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69736
69774
|
warning_code: 'needs_to_be_reissued';
|
|
69737
69775
|
}>;
|
|
69738
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69776
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
69739
69777
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69740
69778
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
69741
69779
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -69865,7 +69903,7 @@ interface Routes {
|
|
|
69865
69903
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69866
69904
|
warning_code: 'needs_to_be_reissued';
|
|
69867
69905
|
}>;
|
|
69868
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
69906
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
69869
69907
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69870
69908
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
69871
69909
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -70047,7 +70085,7 @@ interface Routes {
|
|
|
70047
70085
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70048
70086
|
warning_code: 'needs_to_be_reissued';
|
|
70049
70087
|
}>;
|
|
70050
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70088
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
70051
70089
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
70052
70090
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
70053
70091
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -70177,7 +70215,7 @@ interface Routes {
|
|
|
70177
70215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70178
70216
|
warning_code: 'needs_to_be_reissued';
|
|
70179
70217
|
}>;
|
|
70180
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
70218
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
70181
70219
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
70182
70220
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
70183
70221
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -71963,7 +72001,7 @@ interface Routes {
|
|
|
71963
72001
|
pending_auto_update: boolean;
|
|
71964
72002
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71965
72003
|
card_format: 'TLCode' | 'rfid48';
|
|
71966
|
-
/**
|
|
72004
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71967
72005
|
card_holder?: string | undefined;
|
|
71968
72006
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71969
72007
|
number_of_issued_cards: number;
|
|
@@ -72063,7 +72101,7 @@ interface Routes {
|
|
|
72063
72101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72064
72102
|
warning_code: 'needs_to_be_reissued';
|
|
72065
72103
|
}>;
|
|
72066
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72104
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72067
72105
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72068
72106
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72069
72107
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72193,7 +72231,7 @@ interface Routes {
|
|
|
72193
72231
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72194
72232
|
warning_code: 'needs_to_be_reissued';
|
|
72195
72233
|
}>;
|
|
72196
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72234
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72197
72235
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72198
72236
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72199
72237
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72375,7 +72413,7 @@ interface Routes {
|
|
|
72375
72413
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72376
72414
|
warning_code: 'needs_to_be_reissued';
|
|
72377
72415
|
}>;
|
|
72378
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72416
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72379
72417
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72380
72418
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72381
72419
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72505,7 +72543,7 @@ interface Routes {
|
|
|
72505
72543
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72506
72544
|
warning_code: 'needs_to_be_reissued';
|
|
72507
72545
|
}>;
|
|
72508
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
72546
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
72509
72547
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72510
72548
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
72511
72549
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -75895,7 +75933,7 @@ interface Routes {
|
|
|
75895
75933
|
pending_auto_update: boolean;
|
|
75896
75934
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75897
75935
|
card_format: 'TLCode' | 'rfid48';
|
|
75898
|
-
/**
|
|
75936
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75899
75937
|
card_holder?: string | undefined;
|
|
75900
75938
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75901
75939
|
number_of_issued_cards: number;
|
|
@@ -75995,7 +76033,7 @@ interface Routes {
|
|
|
75995
76033
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75996
76034
|
warning_code: 'needs_to_be_reissued';
|
|
75997
76035
|
}>;
|
|
75998
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76036
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
75999
76037
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76000
76038
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76001
76039
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76125,7 +76163,7 @@ interface Routes {
|
|
|
76125
76163
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76126
76164
|
warning_code: 'needs_to_be_reissued';
|
|
76127
76165
|
}>;
|
|
76128
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76166
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76129
76167
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76130
76168
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76131
76169
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76307,7 +76345,7 @@ interface Routes {
|
|
|
76307
76345
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76308
76346
|
warning_code: 'needs_to_be_reissued';
|
|
76309
76347
|
}>;
|
|
76310
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76348
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76311
76349
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76312
76350
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76313
76351
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76437,7 +76475,7 @@ interface Routes {
|
|
|
76437
76475
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76438
76476
|
warning_code: 'needs_to_be_reissued';
|
|
76439
76477
|
}>;
|
|
76440
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
76478
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
76441
76479
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76442
76480
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
76443
76481
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78231,7 +78269,7 @@ interface Routes {
|
|
|
78231
78269
|
pending_auto_update: boolean;
|
|
78232
78270
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78233
78271
|
card_format: 'TLCode' | 'rfid48';
|
|
78234
|
-
/**
|
|
78272
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78235
78273
|
card_holder?: string | undefined;
|
|
78236
78274
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78237
78275
|
number_of_issued_cards: number;
|
|
@@ -78331,7 +78369,7 @@ interface Routes {
|
|
|
78331
78369
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78332
78370
|
warning_code: 'needs_to_be_reissued';
|
|
78333
78371
|
}>;
|
|
78334
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78372
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78335
78373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78336
78374
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78337
78375
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78461,7 +78499,7 @@ interface Routes {
|
|
|
78461
78499
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78462
78500
|
warning_code: 'needs_to_be_reissued';
|
|
78463
78501
|
}>;
|
|
78464
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78502
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78465
78503
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78466
78504
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78467
78505
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78643,7 +78681,7 @@ interface Routes {
|
|
|
78643
78681
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78644
78682
|
warning_code: 'needs_to_be_reissued';
|
|
78645
78683
|
}>;
|
|
78646
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78684
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78647
78685
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78648
78686
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78649
78687
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78773,7 +78811,7 @@ interface Routes {
|
|
|
78773
78811
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78774
78812
|
warning_code: 'needs_to_be_reissued';
|
|
78775
78813
|
}>;
|
|
78776
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
78814
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
78777
78815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78778
78816
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
78779
78817
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79751,7 +79789,7 @@ interface Routes {
|
|
|
79751
79789
|
pending_auto_update: boolean;
|
|
79752
79790
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79753
79791
|
card_format: 'TLCode' | 'rfid48';
|
|
79754
|
-
/**
|
|
79792
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79755
79793
|
card_holder?: string | undefined;
|
|
79756
79794
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79757
79795
|
number_of_issued_cards: number;
|
|
@@ -79851,7 +79889,7 @@ interface Routes {
|
|
|
79851
79889
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79852
79890
|
warning_code: 'needs_to_be_reissued';
|
|
79853
79891
|
}>;
|
|
79854
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
79892
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
79855
79893
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79856
79894
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
79857
79895
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79981,7 +80019,7 @@ interface Routes {
|
|
|
79981
80019
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79982
80020
|
warning_code: 'needs_to_be_reissued';
|
|
79983
80021
|
}>;
|
|
79984
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80022
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
79985
80023
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79986
80024
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
79987
80025
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -80163,7 +80201,7 @@ interface Routes {
|
|
|
80163
80201
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80164
80202
|
warning_code: 'needs_to_be_reissued';
|
|
80165
80203
|
}>;
|
|
80166
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80204
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
80167
80205
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80168
80206
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
80169
80207
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -80293,7 +80331,7 @@ interface Routes {
|
|
|
80293
80331
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80294
80332
|
warning_code: 'needs_to_be_reissued';
|
|
80295
80333
|
}>;
|
|
80296
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
80334
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
80297
80335
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80298
80336
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
80299
80337
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81664,7 +81702,7 @@ interface Routes {
|
|
|
81664
81702
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81665
81703
|
warning_code: 'needs_to_be_reissued';
|
|
81666
81704
|
}>;
|
|
81667
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81705
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81668
81706
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81669
81707
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
81670
81708
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81726,7 +81764,7 @@ interface Routes {
|
|
|
81726
81764
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
81727
81765
|
/** Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview). */
|
|
81728
81766
|
code?: string | undefined;
|
|
81729
|
-
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81767
|
+
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81730
81768
|
is_multi_phone_sync_credential?: boolean;
|
|
81731
81769
|
/** Set of IDs of the [entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) for which the new credential grants access. */
|
|
81732
81770
|
allowed_acs_entrance_ids?: string[];
|
|
@@ -81859,7 +81897,7 @@ interface Routes {
|
|
|
81859
81897
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81860
81898
|
warning_code: 'needs_to_be_reissued';
|
|
81861
81899
|
}>;
|
|
81862
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81900
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
81863
81901
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81864
81902
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
81865
81903
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82016,7 +82054,7 @@ interface Routes {
|
|
|
82016
82054
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82017
82055
|
warning_code: 'needs_to_be_reissued';
|
|
82018
82056
|
}>;
|
|
82019
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82057
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82020
82058
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82021
82059
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82022
82060
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82177,7 +82215,7 @@ interface Routes {
|
|
|
82177
82215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82178
82216
|
warning_code: 'needs_to_be_reissued';
|
|
82179
82217
|
}>;
|
|
82180
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82218
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82181
82219
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82182
82220
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82183
82221
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82339,7 +82377,7 @@ interface Routes {
|
|
|
82339
82377
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82340
82378
|
warning_code: 'needs_to_be_reissued';
|
|
82341
82379
|
}>;
|
|
82342
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82380
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82343
82381
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82344
82382
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82345
82383
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82601,7 +82639,7 @@ interface Routes {
|
|
|
82601
82639
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82602
82640
|
warning_code: 'needs_to_be_reissued';
|
|
82603
82641
|
}>;
|
|
82604
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82642
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82605
82643
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82606
82644
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82607
82645
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82746,7 +82784,7 @@ interface Routes {
|
|
|
82746
82784
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82747
82785
|
warning_code: 'needs_to_be_reissued';
|
|
82748
82786
|
}>;
|
|
82749
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82787
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82750
82788
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82751
82789
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82752
82790
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82901,7 +82939,7 @@ interface Routes {
|
|
|
82901
82939
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82902
82940
|
warning_code: 'needs_to_be_reissued';
|
|
82903
82941
|
}>;
|
|
82904
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
82942
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
82905
82943
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82906
82944
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
82907
82945
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83054,7 +83092,7 @@ interface Routes {
|
|
|
83054
83092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83055
83093
|
warning_code: 'needs_to_be_reissued';
|
|
83056
83094
|
}>;
|
|
83057
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83095
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83058
83096
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83059
83097
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83060
83098
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83237,7 +83275,7 @@ interface Routes {
|
|
|
83237
83275
|
pending_auto_update: boolean;
|
|
83238
83276
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83239
83277
|
card_format: 'TLCode' | 'rfid48';
|
|
83240
|
-
/**
|
|
83278
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83241
83279
|
card_holder?: string | undefined;
|
|
83242
83280
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83243
83281
|
number_of_issued_cards: number;
|
|
@@ -83337,7 +83375,7 @@ interface Routes {
|
|
|
83337
83375
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83338
83376
|
warning_code: 'needs_to_be_reissued';
|
|
83339
83377
|
}>;
|
|
83340
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83378
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83341
83379
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83342
83380
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83343
83381
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83467,7 +83505,7 @@ interface Routes {
|
|
|
83467
83505
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83468
83506
|
warning_code: 'needs_to_be_reissued';
|
|
83469
83507
|
}>;
|
|
83470
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83508
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83471
83509
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83472
83510
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83473
83511
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83649,7 +83687,7 @@ interface Routes {
|
|
|
83649
83687
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83650
83688
|
warning_code: 'needs_to_be_reissued';
|
|
83651
83689
|
}>;
|
|
83652
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83690
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83653
83691
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83654
83692
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83655
83693
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83779,7 +83817,7 @@ interface Routes {
|
|
|
83779
83817
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83780
83818
|
warning_code: 'needs_to_be_reissued';
|
|
83781
83819
|
}>;
|
|
83782
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
83820
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
83783
83821
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83784
83822
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
83785
83823
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84593,7 +84631,7 @@ interface Routes {
|
|
|
84593
84631
|
pending_auto_update: boolean;
|
|
84594
84632
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84595
84633
|
card_format: 'TLCode' | 'rfid48';
|
|
84596
|
-
/**
|
|
84634
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84597
84635
|
card_holder?: string | undefined;
|
|
84598
84636
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84599
84637
|
number_of_issued_cards: number;
|
|
@@ -84693,7 +84731,7 @@ interface Routes {
|
|
|
84693
84731
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84694
84732
|
warning_code: 'needs_to_be_reissued';
|
|
84695
84733
|
}>;
|
|
84696
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
84734
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84697
84735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84698
84736
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
84699
84737
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84823,7 +84861,7 @@ interface Routes {
|
|
|
84823
84861
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84824
84862
|
warning_code: 'needs_to_be_reissued';
|
|
84825
84863
|
}>;
|
|
84826
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
84864
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
84827
84865
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84828
84866
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
84829
84867
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85005,7 +85043,7 @@ interface Routes {
|
|
|
85005
85043
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85006
85044
|
warning_code: 'needs_to_be_reissued';
|
|
85007
85045
|
}>;
|
|
85008
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
85046
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
85009
85047
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
85010
85048
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
85011
85049
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85135,7 +85173,7 @@ interface Routes {
|
|
|
85135
85173
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85136
85174
|
warning_code: 'needs_to_be_reissued';
|
|
85137
85175
|
}>;
|
|
85138
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
85176
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
85139
85177
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
85140
85178
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
85141
85179
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -86145,7 +86183,7 @@ interface Routes {
|
|
|
86145
86183
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86146
86184
|
warning_code: 'needs_to_be_reissued';
|
|
86147
86185
|
}>;
|
|
86148
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
86186
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
86149
86187
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
86150
86188
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
86151
86189
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88133,7 +88171,7 @@ interface Routes {
|
|
|
88133
88171
|
pending_auto_update: boolean;
|
|
88134
88172
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88135
88173
|
card_format: 'TLCode' | 'rfid48';
|
|
88136
|
-
/**
|
|
88174
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88137
88175
|
card_holder?: string | undefined;
|
|
88138
88176
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88139
88177
|
number_of_issued_cards: number;
|
|
@@ -88233,7 +88271,7 @@ interface Routes {
|
|
|
88233
88271
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88234
88272
|
warning_code: 'needs_to_be_reissued';
|
|
88235
88273
|
}>;
|
|
88236
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88274
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88237
88275
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88238
88276
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88239
88277
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88363,7 +88401,7 @@ interface Routes {
|
|
|
88363
88401
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88364
88402
|
warning_code: 'needs_to_be_reissued';
|
|
88365
88403
|
}>;
|
|
88366
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88404
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88367
88405
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88368
88406
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88369
88407
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88545,7 +88583,7 @@ interface Routes {
|
|
|
88545
88583
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88546
88584
|
warning_code: 'needs_to_be_reissued';
|
|
88547
88585
|
}>;
|
|
88548
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88586
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88549
88587
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88550
88588
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88551
88589
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88675,7 +88713,7 @@ interface Routes {
|
|
|
88675
88713
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88676
88714
|
warning_code: 'needs_to_be_reissued';
|
|
88677
88715
|
}>;
|
|
88678
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
88716
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
88679
88717
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88680
88718
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
88681
88719
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89386,7 +89424,7 @@ interface Routes {
|
|
|
89386
89424
|
pending_auto_update: boolean;
|
|
89387
89425
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89388
89426
|
card_format: 'TLCode' | 'rfid48';
|
|
89389
|
-
/**
|
|
89427
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89390
89428
|
card_holder?: string | undefined;
|
|
89391
89429
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89392
89430
|
number_of_issued_cards: number;
|
|
@@ -89486,7 +89524,7 @@ interface Routes {
|
|
|
89486
89524
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89487
89525
|
warning_code: 'needs_to_be_reissued';
|
|
89488
89526
|
}>;
|
|
89489
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89527
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89490
89528
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89491
89529
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89492
89530
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89616,7 +89654,7 @@ interface Routes {
|
|
|
89616
89654
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89617
89655
|
warning_code: 'needs_to_be_reissued';
|
|
89618
89656
|
}>;
|
|
89619
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89657
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89620
89658
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89621
89659
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89622
89660
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89798,7 +89836,7 @@ interface Routes {
|
|
|
89798
89836
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89799
89837
|
warning_code: 'needs_to_be_reissued';
|
|
89800
89838
|
}>;
|
|
89801
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89839
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89802
89840
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89803
89841
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89804
89842
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89928,7 +89966,7 @@ interface Routes {
|
|
|
89928
89966
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89929
89967
|
warning_code: 'needs_to_be_reissued';
|
|
89930
89968
|
}>;
|
|
89931
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
89969
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
89932
89970
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89933
89971
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
89934
89972
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -102910,7 +102948,7 @@ interface Routes {
|
|
|
102910
102948
|
pending_auto_update: boolean;
|
|
102911
102949
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102912
102950
|
card_format: 'TLCode' | 'rfid48';
|
|
102913
|
-
/**
|
|
102951
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102914
102952
|
card_holder?: string | undefined;
|
|
102915
102953
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102916
102954
|
number_of_issued_cards: number;
|
|
@@ -103010,7 +103048,7 @@ interface Routes {
|
|
|
103010
103048
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103011
103049
|
warning_code: 'needs_to_be_reissued';
|
|
103012
103050
|
}>;
|
|
103013
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103051
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103014
103052
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103015
103053
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103016
103054
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103140,7 +103178,7 @@ interface Routes {
|
|
|
103140
103178
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103141
103179
|
warning_code: 'needs_to_be_reissued';
|
|
103142
103180
|
}>;
|
|
103143
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103181
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103144
103182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103145
103183
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103146
103184
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103322,7 +103360,7 @@ interface Routes {
|
|
|
103322
103360
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103323
103361
|
warning_code: 'needs_to_be_reissued';
|
|
103324
103362
|
}>;
|
|
103325
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103363
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103326
103364
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103327
103365
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103328
103366
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103452,7 +103490,7 @@ interface Routes {
|
|
|
103452
103490
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103453
103491
|
warning_code: 'needs_to_be_reissued';
|
|
103454
103492
|
}>;
|
|
103455
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
103493
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
103456
103494
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103457
103495
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
103458
103496
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104170,7 +104208,7 @@ interface Routes {
|
|
|
104170
104208
|
pending_auto_update: boolean;
|
|
104171
104209
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104172
104210
|
card_format: 'TLCode' | 'rfid48';
|
|
104173
|
-
/**
|
|
104211
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104174
104212
|
card_holder?: string | undefined;
|
|
104175
104213
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104176
104214
|
number_of_issued_cards: number;
|
|
@@ -104270,7 +104308,7 @@ interface Routes {
|
|
|
104270
104308
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104271
104309
|
warning_code: 'needs_to_be_reissued';
|
|
104272
104310
|
}>;
|
|
104273
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104311
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104274
104312
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104275
104313
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104276
104314
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104400,7 +104438,7 @@ interface Routes {
|
|
|
104400
104438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104401
104439
|
warning_code: 'needs_to_be_reissued';
|
|
104402
104440
|
}>;
|
|
104403
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104441
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104404
104442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104405
104443
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104406
104444
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104582,7 +104620,7 @@ interface Routes {
|
|
|
104582
104620
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104583
104621
|
warning_code: 'needs_to_be_reissued';
|
|
104584
104622
|
}>;
|
|
104585
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104623
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104586
104624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104587
104625
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104588
104626
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104712,7 +104750,7 @@ interface Routes {
|
|
|
104712
104750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104713
104751
|
warning_code: 'needs_to_be_reissued';
|
|
104714
104752
|
}>;
|
|
104715
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
104753
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
104716
104754
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104717
104755
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
104718
104756
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105428,7 +105466,7 @@ interface Routes {
|
|
|
105428
105466
|
pending_auto_update: boolean;
|
|
105429
105467
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105430
105468
|
card_format: 'TLCode' | 'rfid48';
|
|
105431
|
-
/**
|
|
105469
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105432
105470
|
card_holder?: string | undefined;
|
|
105433
105471
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105434
105472
|
number_of_issued_cards: number;
|
|
@@ -105528,7 +105566,7 @@ interface Routes {
|
|
|
105528
105566
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105529
105567
|
warning_code: 'needs_to_be_reissued';
|
|
105530
105568
|
}>;
|
|
105531
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105569
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105532
105570
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105533
105571
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105534
105572
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105658,7 +105696,7 @@ interface Routes {
|
|
|
105658
105696
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105659
105697
|
warning_code: 'needs_to_be_reissued';
|
|
105660
105698
|
}>;
|
|
105661
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105699
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105662
105700
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105663
105701
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105664
105702
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105840,7 +105878,7 @@ interface Routes {
|
|
|
105840
105878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105841
105879
|
warning_code: 'needs_to_be_reissued';
|
|
105842
105880
|
}>;
|
|
105843
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
105881
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105844
105882
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105845
105883
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105846
105884
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105970,7 +106008,7 @@ interface Routes {
|
|
|
105970
106008
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105971
106009
|
warning_code: 'needs_to_be_reissued';
|
|
105972
106010
|
}>;
|
|
105973
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106011
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
105974
106012
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105975
106013
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
105976
106014
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106688,7 +106726,7 @@ interface Routes {
|
|
|
106688
106726
|
pending_auto_update: boolean;
|
|
106689
106727
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106690
106728
|
card_format: 'TLCode' | 'rfid48';
|
|
106691
|
-
/**
|
|
106729
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106692
106730
|
card_holder?: string | undefined;
|
|
106693
106731
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106694
106732
|
number_of_issued_cards: number;
|
|
@@ -106788,7 +106826,7 @@ interface Routes {
|
|
|
106788
106826
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106789
106827
|
warning_code: 'needs_to_be_reissued';
|
|
106790
106828
|
}>;
|
|
106791
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106829
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106792
106830
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106793
106831
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
106794
106832
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106918,7 +106956,7 @@ interface Routes {
|
|
|
106918
106956
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106919
106957
|
warning_code: 'needs_to_be_reissued';
|
|
106920
106958
|
}>;
|
|
106921
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
106959
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
106922
106960
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106923
106961
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
106924
106962
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -107100,7 +107138,7 @@ interface Routes {
|
|
|
107100
107138
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107101
107139
|
warning_code: 'needs_to_be_reissued';
|
|
107102
107140
|
}>;
|
|
107103
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
107141
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107104
107142
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
107105
107143
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
107106
107144
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -107230,7 +107268,7 @@ interface Routes {
|
|
|
107230
107268
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107231
107269
|
warning_code: 'needs_to_be_reissued';
|
|
107232
107270
|
}>;
|
|
107233
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
107271
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
107234
107272
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
107235
107273
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
107236
107274
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110290,7 +110328,7 @@ interface Routes {
|
|
|
110290
110328
|
pending_auto_update: boolean;
|
|
110291
110329
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110292
110330
|
card_format: 'TLCode' | 'rfid48';
|
|
110293
|
-
/**
|
|
110331
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110294
110332
|
card_holder?: string | undefined;
|
|
110295
110333
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110296
110334
|
number_of_issued_cards: number;
|
|
@@ -110390,7 +110428,7 @@ interface Routes {
|
|
|
110390
110428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110391
110429
|
warning_code: 'needs_to_be_reissued';
|
|
110392
110430
|
}>;
|
|
110393
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110431
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110394
110432
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110395
110433
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110396
110434
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110520,7 +110558,7 @@ interface Routes {
|
|
|
110520
110558
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110521
110559
|
warning_code: 'needs_to_be_reissued';
|
|
110522
110560
|
}>;
|
|
110523
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110561
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110524
110562
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110525
110563
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110526
110564
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110702,7 +110740,7 @@ interface Routes {
|
|
|
110702
110740
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110703
110741
|
warning_code: 'needs_to_be_reissued';
|
|
110704
110742
|
}>;
|
|
110705
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110743
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110706
110744
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110707
110745
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110708
110746
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110832,7 +110870,7 @@ interface Routes {
|
|
|
110832
110870
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110833
110871
|
warning_code: 'needs_to_be_reissued';
|
|
110834
110872
|
}>;
|
|
110835
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
110873
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
110836
110874
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110837
110875
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
110838
110876
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111569,7 +111607,7 @@ interface Routes {
|
|
|
111569
111607
|
pending_auto_update: boolean;
|
|
111570
111608
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111571
111609
|
card_format: 'TLCode' | 'rfid48';
|
|
111572
|
-
/**
|
|
111610
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111573
111611
|
card_holder?: string | undefined;
|
|
111574
111612
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111575
111613
|
number_of_issued_cards: number;
|
|
@@ -111669,7 +111707,7 @@ interface Routes {
|
|
|
111669
111707
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111670
111708
|
warning_code: 'needs_to_be_reissued';
|
|
111671
111709
|
}>;
|
|
111672
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
111710
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111673
111711
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111674
111712
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111675
111713
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111799,7 +111837,7 @@ interface Routes {
|
|
|
111799
111837
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111800
111838
|
warning_code: 'needs_to_be_reissued';
|
|
111801
111839
|
}>;
|
|
111802
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
111840
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111803
111841
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111804
111842
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111805
111843
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111981,7 +112019,7 @@ interface Routes {
|
|
|
111981
112019
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111982
112020
|
warning_code: 'needs_to_be_reissued';
|
|
111983
112021
|
}>;
|
|
111984
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
112022
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
111985
112023
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111986
112024
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
111987
112025
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112111,7 +112149,7 @@ interface Routes {
|
|
|
112111
112149
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112112
112150
|
warning_code: 'needs_to_be_reissued';
|
|
112113
112151
|
}>;
|
|
112114
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
112152
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
112115
112153
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
112116
112154
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
112117
112155
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112902,7 +112940,7 @@ interface Routes {
|
|
|
112902
112940
|
pending_auto_update: boolean;
|
|
112903
112941
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112904
112942
|
card_format: 'TLCode' | 'rfid48';
|
|
112905
|
-
/**
|
|
112943
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112906
112944
|
card_holder?: string | undefined;
|
|
112907
112945
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112908
112946
|
number_of_issued_cards: number;
|
|
@@ -113002,7 +113040,7 @@ interface Routes {
|
|
|
113002
113040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113003
113041
|
warning_code: 'needs_to_be_reissued';
|
|
113004
113042
|
}>;
|
|
113005
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113043
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113006
113044
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113007
113045
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113008
113046
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113132,7 +113170,7 @@ interface Routes {
|
|
|
113132
113170
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113133
113171
|
warning_code: 'needs_to_be_reissued';
|
|
113134
113172
|
}>;
|
|
113135
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113173
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113136
113174
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113137
113175
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113138
113176
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113314,7 +113352,7 @@ interface Routes {
|
|
|
113314
113352
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113315
113353
|
warning_code: 'needs_to_be_reissued';
|
|
113316
113354
|
}>;
|
|
113317
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113355
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113318
113356
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113319
113357
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113320
113358
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113444,7 +113482,7 @@ interface Routes {
|
|
|
113444
113482
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113445
113483
|
warning_code: 'needs_to_be_reissued';
|
|
113446
113484
|
}>;
|
|
113447
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
113485
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
113448
113486
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113449
113487
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
113450
113488
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -114896,7 +114934,7 @@ interface Routes {
|
|
|
114896
114934
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114897
114935
|
warning_code: 'needs_to_be_reissued';
|
|
114898
114936
|
}>;
|
|
114899
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
114937
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
114900
114938
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
114901
114939
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
114902
114940
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115062,7 +115100,7 @@ interface Routes {
|
|
|
115062
115100
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115063
115101
|
warning_code: 'needs_to_be_reissued';
|
|
115064
115102
|
}>;
|
|
115065
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115103
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115066
115104
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115067
115105
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115068
115106
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115543,7 +115581,7 @@ interface Routes {
|
|
|
115543
115581
|
pending_auto_update: boolean;
|
|
115544
115582
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115545
115583
|
card_format: 'TLCode' | 'rfid48';
|
|
115546
|
-
/**
|
|
115584
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115547
115585
|
card_holder?: string | undefined;
|
|
115548
115586
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115549
115587
|
number_of_issued_cards: number;
|
|
@@ -115643,7 +115681,7 @@ interface Routes {
|
|
|
115643
115681
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115644
115682
|
warning_code: 'needs_to_be_reissued';
|
|
115645
115683
|
}>;
|
|
115646
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115684
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115647
115685
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115648
115686
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115649
115687
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115773,7 +115811,7 @@ interface Routes {
|
|
|
115773
115811
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115774
115812
|
warning_code: 'needs_to_be_reissued';
|
|
115775
115813
|
}>;
|
|
115776
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115814
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115777
115815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115778
115816
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115779
115817
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115955,7 +115993,7 @@ interface Routes {
|
|
|
115955
115993
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115956
115994
|
warning_code: 'needs_to_be_reissued';
|
|
115957
115995
|
}>;
|
|
115958
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
115996
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
115959
115997
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115960
115998
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
115961
115999
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116085,7 +116123,7 @@ interface Routes {
|
|
|
116085
116123
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116086
116124
|
warning_code: 'needs_to_be_reissued';
|
|
116087
116125
|
}>;
|
|
116088
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
116126
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116089
116127
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116090
116128
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
116091
116129
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116807,7 +116845,7 @@ interface Routes {
|
|
|
116807
116845
|
pending_auto_update: boolean;
|
|
116808
116846
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116809
116847
|
card_format: 'TLCode' | 'rfid48';
|
|
116810
|
-
/**
|
|
116848
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116811
116849
|
card_holder?: string | undefined;
|
|
116812
116850
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116813
116851
|
number_of_issued_cards: number;
|
|
@@ -116907,7 +116945,7 @@ interface Routes {
|
|
|
116907
116945
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116908
116946
|
warning_code: 'needs_to_be_reissued';
|
|
116909
116947
|
}>;
|
|
116910
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
116948
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
116911
116949
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116912
116950
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
116913
116951
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117037,7 +117075,7 @@ interface Routes {
|
|
|
117037
117075
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117038
117076
|
warning_code: 'needs_to_be_reissued';
|
|
117039
117077
|
}>;
|
|
117040
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117078
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
117041
117079
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117042
117080
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
117043
117081
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117219,7 +117257,7 @@ interface Routes {
|
|
|
117219
117257
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117220
117258
|
warning_code: 'needs_to_be_reissued';
|
|
117221
117259
|
}>;
|
|
117222
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117260
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
117223
117261
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117224
117262
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
117225
117263
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117349,7 +117387,7 @@ interface Routes {
|
|
|
117349
117387
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117350
117388
|
warning_code: 'needs_to_be_reissued';
|
|
117351
117389
|
}>;
|
|
117352
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
117390
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
117353
117391
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117354
117392
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
117355
117393
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118163,7 +118201,7 @@ interface Routes {
|
|
|
118163
118201
|
pending_auto_update: boolean;
|
|
118164
118202
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118165
118203
|
card_format: 'TLCode' | 'rfid48';
|
|
118166
|
-
/**
|
|
118204
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118167
118205
|
card_holder?: string | undefined;
|
|
118168
118206
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118169
118207
|
number_of_issued_cards: number;
|
|
@@ -118263,7 +118301,7 @@ interface Routes {
|
|
|
118263
118301
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118264
118302
|
warning_code: 'needs_to_be_reissued';
|
|
118265
118303
|
}>;
|
|
118266
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118304
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118267
118305
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118268
118306
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118269
118307
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118393,7 +118431,7 @@ interface Routes {
|
|
|
118393
118431
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118394
118432
|
warning_code: 'needs_to_be_reissued';
|
|
118395
118433
|
}>;
|
|
118396
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118434
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118397
118435
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118398
118436
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118399
118437
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118575,7 +118613,7 @@ interface Routes {
|
|
|
118575
118613
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118576
118614
|
warning_code: 'needs_to_be_reissued';
|
|
118577
118615
|
}>;
|
|
118578
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118616
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118579
118617
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118580
118618
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118581
118619
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118705,7 +118743,7 @@ interface Routes {
|
|
|
118705
118743
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118706
118744
|
warning_code: 'needs_to_be_reissued';
|
|
118707
118745
|
}>;
|
|
118708
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
118746
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
118709
118747
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118710
118748
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
118711
118749
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120582,7 +120620,7 @@ interface Routes {
|
|
|
120582
120620
|
pending_auto_update: boolean;
|
|
120583
120621
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120584
120622
|
card_format: 'TLCode' | 'rfid48';
|
|
120585
|
-
/**
|
|
120623
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120586
120624
|
card_holder?: string | undefined;
|
|
120587
120625
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120588
120626
|
number_of_issued_cards: number;
|
|
@@ -120682,7 +120720,7 @@ interface Routes {
|
|
|
120682
120720
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120683
120721
|
warning_code: 'needs_to_be_reissued';
|
|
120684
120722
|
}>;
|
|
120685
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
120723
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120686
120724
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120687
120725
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120688
120726
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120812,7 +120850,7 @@ interface Routes {
|
|
|
120812
120850
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120813
120851
|
warning_code: 'needs_to_be_reissued';
|
|
120814
120852
|
}>;
|
|
120815
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
120853
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120816
120854
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120817
120855
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
120818
120856
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120994,7 +121032,7 @@ interface Routes {
|
|
|
120994
121032
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120995
121033
|
warning_code: 'needs_to_be_reissued';
|
|
120996
121034
|
}>;
|
|
120997
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121035
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
120998
121036
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120999
121037
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
121000
121038
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121124,7 +121162,7 @@ interface Routes {
|
|
|
121124
121162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121125
121163
|
warning_code: 'needs_to_be_reissued';
|
|
121126
121164
|
}>;
|
|
121127
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121165
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
121128
121166
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121129
121167
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
121130
121168
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121850,7 +121888,7 @@ interface Routes {
|
|
|
121850
121888
|
pending_auto_update: boolean;
|
|
121851
121889
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121852
121890
|
card_format: 'TLCode' | 'rfid48';
|
|
121853
|
-
/**
|
|
121891
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121854
121892
|
card_holder?: string | undefined;
|
|
121855
121893
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121856
121894
|
number_of_issued_cards: number;
|
|
@@ -121950,7 +121988,7 @@ interface Routes {
|
|
|
121950
121988
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121951
121989
|
warning_code: 'needs_to_be_reissued';
|
|
121952
121990
|
}>;
|
|
121953
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
121991
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
121954
121992
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121955
121993
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
121956
121994
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122080,7 +122118,7 @@ interface Routes {
|
|
|
122080
122118
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122081
122119
|
warning_code: 'needs_to_be_reissued';
|
|
122082
122120
|
}>;
|
|
122083
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122121
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122084
122122
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122085
122123
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
122086
122124
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122262,7 +122300,7 @@ interface Routes {
|
|
|
122262
122300
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122263
122301
|
warning_code: 'needs_to_be_reissued';
|
|
122264
122302
|
}>;
|
|
122265
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122303
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122266
122304
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122267
122305
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
122268
122306
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122392,7 +122430,7 @@ interface Routes {
|
|
|
122392
122430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122393
122431
|
warning_code: 'needs_to_be_reissued';
|
|
122394
122432
|
}>;
|
|
122395
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
122433
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
122396
122434
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122397
122435
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
122398
122436
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125407,7 +125445,7 @@ interface Routes {
|
|
|
125407
125445
|
pending_auto_update: boolean;
|
|
125408
125446
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125409
125447
|
card_format: 'TLCode' | 'rfid48';
|
|
125410
|
-
/**
|
|
125448
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125411
125449
|
card_holder?: string | undefined;
|
|
125412
125450
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125413
125451
|
number_of_issued_cards: number;
|
|
@@ -125507,7 +125545,7 @@ interface Routes {
|
|
|
125507
125545
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125508
125546
|
warning_code: 'needs_to_be_reissued';
|
|
125509
125547
|
}>;
|
|
125510
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125548
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125511
125549
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125512
125550
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125513
125551
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125637,7 +125675,7 @@ interface Routes {
|
|
|
125637
125675
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125638
125676
|
warning_code: 'needs_to_be_reissued';
|
|
125639
125677
|
}>;
|
|
125640
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125678
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125641
125679
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125642
125680
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125643
125681
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125819,7 +125857,7 @@ interface Routes {
|
|
|
125819
125857
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125820
125858
|
warning_code: 'needs_to_be_reissued';
|
|
125821
125859
|
}>;
|
|
125822
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125860
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125823
125861
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125824
125862
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125825
125863
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125949,7 +125987,7 @@ interface Routes {
|
|
|
125949
125987
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125950
125988
|
warning_code: 'needs_to_be_reissued';
|
|
125951
125989
|
}>;
|
|
125952
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
125990
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
125953
125991
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125954
125992
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
125955
125993
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -126864,7 +126902,7 @@ interface Routes {
|
|
|
126864
126902
|
pending_auto_update: boolean;
|
|
126865
126903
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126866
126904
|
card_format: 'TLCode' | 'rfid48';
|
|
126867
|
-
/**
|
|
126905
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126868
126906
|
card_holder?: string | undefined;
|
|
126869
126907
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126870
126908
|
number_of_issued_cards: number;
|
|
@@ -126964,7 +127002,7 @@ interface Routes {
|
|
|
126964
127002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126965
127003
|
warning_code: 'needs_to_be_reissued';
|
|
126966
127004
|
}>;
|
|
126967
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127005
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
126968
127006
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
126969
127007
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
126970
127008
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127094,7 +127132,7 @@ interface Routes {
|
|
|
127094
127132
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127095
127133
|
warning_code: 'needs_to_be_reissued';
|
|
127096
127134
|
}>;
|
|
127097
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127135
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127098
127136
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127099
127137
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127100
127138
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127276,7 +127314,7 @@ interface Routes {
|
|
|
127276
127314
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127277
127315
|
warning_code: 'needs_to_be_reissued';
|
|
127278
127316
|
}>;
|
|
127279
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127317
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127280
127318
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127281
127319
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127282
127320
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127406,7 +127444,7 @@ interface Routes {
|
|
|
127406
127444
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127407
127445
|
warning_code: 'needs_to_be_reissued';
|
|
127408
127446
|
}>;
|
|
127409
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
127447
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
127410
127448
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127411
127449
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
127412
127450
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128151,7 +128189,7 @@ interface Routes {
|
|
|
128151
128189
|
pending_auto_update: boolean;
|
|
128152
128190
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128153
128191
|
card_format: 'TLCode' | 'rfid48';
|
|
128154
|
-
/**
|
|
128192
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128155
128193
|
card_holder?: string | undefined;
|
|
128156
128194
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128157
128195
|
number_of_issued_cards: number;
|
|
@@ -128251,7 +128289,7 @@ interface Routes {
|
|
|
128251
128289
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128252
128290
|
warning_code: 'needs_to_be_reissued';
|
|
128253
128291
|
}>;
|
|
128254
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128292
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128255
128293
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128256
128294
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128257
128295
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128381,7 +128419,7 @@ interface Routes {
|
|
|
128381
128419
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128382
128420
|
warning_code: 'needs_to_be_reissued';
|
|
128383
128421
|
}>;
|
|
128384
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128422
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128385
128423
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128386
128424
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128387
128425
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128563,7 +128601,7 @@ interface Routes {
|
|
|
128563
128601
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128564
128602
|
warning_code: 'needs_to_be_reissued';
|
|
128565
128603
|
}>;
|
|
128566
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128604
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128567
128605
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128568
128606
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128569
128607
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128693,7 +128731,7 @@ interface Routes {
|
|
|
128693
128731
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128694
128732
|
warning_code: 'needs_to_be_reissued';
|
|
128695
128733
|
}>;
|
|
128696
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
128734
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
128697
128735
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128698
128736
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
128699
128737
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129539,7 +129577,7 @@ interface Routes {
|
|
|
129539
129577
|
pending_auto_update: boolean;
|
|
129540
129578
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129541
129579
|
card_format: 'TLCode' | 'rfid48';
|
|
129542
|
-
/**
|
|
129580
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129543
129581
|
card_holder?: string | undefined;
|
|
129544
129582
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129545
129583
|
number_of_issued_cards: number;
|
|
@@ -129639,7 +129677,7 @@ interface Routes {
|
|
|
129639
129677
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129640
129678
|
warning_code: 'needs_to_be_reissued';
|
|
129641
129679
|
}>;
|
|
129642
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129680
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129643
129681
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129644
129682
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129645
129683
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129769,7 +129807,7 @@ interface Routes {
|
|
|
129769
129807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129770
129808
|
warning_code: 'needs_to_be_reissued';
|
|
129771
129809
|
}>;
|
|
129772
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129810
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129773
129811
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129774
129812
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129775
129813
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129951,7 +129989,7 @@ interface Routes {
|
|
|
129951
129989
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129952
129990
|
warning_code: 'needs_to_be_reissued';
|
|
129953
129991
|
}>;
|
|
129954
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
129992
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
129955
129993
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129956
129994
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
129957
129995
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -130081,7 +130119,7 @@ interface Routes {
|
|
|
130081
130119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130082
130120
|
warning_code: 'needs_to_be_reissued';
|
|
130083
130121
|
}>;
|
|
130084
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
130122
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
130085
130123
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
130086
130124
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
130087
130125
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -131354,12 +131392,18 @@ interface Routes {
|
|
|
131354
131392
|
created_at: string;
|
|
131355
131393
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131356
131394
|
workspace_id: string;
|
|
131357
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131395
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131358
131396
|
errors: Array<{
|
|
131359
131397
|
/** Date and time at which Seam created the error. */
|
|
131360
131398
|
created_at: string;
|
|
131361
131399
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131362
131400
|
message: string;
|
|
131401
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131402
|
+
error_code: 'issue_with_acs_user';
|
|
131403
|
+
/** ID of the access system user that has an issue. */
|
|
131404
|
+
acs_user_id: string;
|
|
131405
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131406
|
+
acs_system_id: string;
|
|
131363
131407
|
}>;
|
|
131364
131408
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131365
131409
|
warnings: Array<{
|
|
@@ -131408,14 +131452,14 @@ interface Routes {
|
|
|
131408
131452
|
};
|
|
131409
131453
|
formData: {};
|
|
131410
131454
|
jsonResponse: {
|
|
131411
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131455
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access/).
|
|
131412
131456
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
131413
131457
|
enrollment_automation: {
|
|
131414
131458
|
/** ID of the enrollment automation. */
|
|
131415
131459
|
enrollment_automation_id: string;
|
|
131416
131460
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131417
131461
|
credential_manager_acs_system_id: string;
|
|
131418
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131462
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131419
131463
|
user_identity_id: string;
|
|
131420
131464
|
/** Date and time at which the enrollment automation was created. */
|
|
131421
131465
|
created_at: string;
|
|
@@ -131443,14 +131487,14 @@ interface Routes {
|
|
|
131443
131487
|
};
|
|
131444
131488
|
formData: {};
|
|
131445
131489
|
jsonResponse: {
|
|
131446
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131490
|
+
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access/).
|
|
131447
131491
|
* @deprecated Will be removed. Instead, link the `user_identity` to the `acs_user` in the access system in which you want to issue credentials. */
|
|
131448
131492
|
enrollment_automation: {
|
|
131449
131493
|
/** ID of the enrollment automation. */
|
|
131450
131494
|
enrollment_automation_id: string;
|
|
131451
131495
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131452
131496
|
credential_manager_acs_system_id: string;
|
|
131453
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131497
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131454
131498
|
user_identity_id: string;
|
|
131455
131499
|
/** Date and time at which the enrollment automation was created. */
|
|
131456
131500
|
created_at: string;
|
|
@@ -131475,7 +131519,7 @@ interface Routes {
|
|
|
131475
131519
|
enrollment_automation_id: string;
|
|
131476
131520
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131477
131521
|
credential_manager_acs_system_id: string;
|
|
131478
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131522
|
+
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
|
|
131479
131523
|
user_identity_id: string;
|
|
131480
131524
|
/** Date and time at which the enrollment automation was created. */
|
|
131481
131525
|
created_at: string;
|
|
@@ -131547,12 +131591,18 @@ interface Routes {
|
|
|
131547
131591
|
created_at: string;
|
|
131548
131592
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131549
131593
|
workspace_id: string;
|
|
131550
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131594
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131551
131595
|
errors: Array<{
|
|
131552
131596
|
/** Date and time at which Seam created the error. */
|
|
131553
131597
|
created_at: string;
|
|
131554
131598
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131555
131599
|
message: string;
|
|
131600
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131601
|
+
error_code: 'issue_with_acs_user';
|
|
131602
|
+
/** ID of the access system user that has an issue. */
|
|
131603
|
+
acs_user_id: string;
|
|
131604
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131605
|
+
acs_system_id: string;
|
|
131556
131606
|
}>;
|
|
131557
131607
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131558
131608
|
warnings: Array<{
|
|
@@ -131608,12 +131658,18 @@ interface Routes {
|
|
|
131608
131658
|
created_at: string;
|
|
131609
131659
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131610
131660
|
workspace_id: string;
|
|
131611
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131661
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
131612
131662
|
errors: Array<{
|
|
131613
131663
|
/** Date and time at which Seam created the error. */
|
|
131614
131664
|
created_at: string;
|
|
131615
131665
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131616
131666
|
message: string;
|
|
131667
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131668
|
+
error_code: 'issue_with_acs_user';
|
|
131669
|
+
/** ID of the access system user that has an issue. */
|
|
131670
|
+
acs_user_id: string;
|
|
131671
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131672
|
+
acs_system_id: string;
|
|
131617
131673
|
}>;
|
|
131618
131674
|
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
131619
131675
|
warnings: Array<{
|
|
@@ -134665,7 +134721,7 @@ interface Routes {
|
|
|
134665
134721
|
pending_auto_update: boolean;
|
|
134666
134722
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134667
134723
|
card_format: 'TLCode' | 'rfid48';
|
|
134668
|
-
/**
|
|
134724
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134669
134725
|
card_holder?: string | undefined;
|
|
134670
134726
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134671
134727
|
number_of_issued_cards: number;
|
|
@@ -134765,7 +134821,7 @@ interface Routes {
|
|
|
134765
134821
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134766
134822
|
warning_code: 'needs_to_be_reissued';
|
|
134767
134823
|
}>;
|
|
134768
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
134824
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134769
134825
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134770
134826
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134771
134827
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -134895,7 +134951,7 @@ interface Routes {
|
|
|
134895
134951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134896
134952
|
warning_code: 'needs_to_be_reissued';
|
|
134897
134953
|
}>;
|
|
134898
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
134954
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
134899
134955
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134900
134956
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
134901
134957
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -135077,7 +135133,7 @@ interface Routes {
|
|
|
135077
135133
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135078
135134
|
warning_code: 'needs_to_be_reissued';
|
|
135079
135135
|
}>;
|
|
135080
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
135136
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
135081
135137
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
135082
135138
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
135083
135139
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -135207,7 +135263,7 @@ interface Routes {
|
|
|
135207
135263
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135208
135264
|
warning_code: 'needs_to_be_reissued';
|
|
135209
135265
|
}>;
|
|
135210
|
-
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
135266
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
135211
135267
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
135212
135268
|
/** Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider. */
|
|
135213
135269
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|