@seamapi/types 1.431.0 → 1.433.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 +118 -63
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +229 -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/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +0 -3
- package/lib/seam/connect/models/devices/device-provider.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 +39 -12
- package/lib/seam/connect/openapi.js +97 -55
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +171 -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/devices/device-provider.ts +0 -3
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +37 -3
- package/src/lib/seam/connect/openapi.ts +104 -55
- package/src/lib/seam/connect/route-types.ts +171 -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
|
};
|
|
@@ -43014,6 +43052,11 @@ declare const _default: {
|
|
|
43014
43052
|
format: string;
|
|
43015
43053
|
type: string;
|
|
43016
43054
|
};
|
|
43055
|
+
connected_account_id: {
|
|
43056
|
+
description: string;
|
|
43057
|
+
format: string;
|
|
43058
|
+
type: string;
|
|
43059
|
+
};
|
|
43017
43060
|
location_id: {
|
|
43018
43061
|
deprecated: boolean;
|
|
43019
43062
|
format: string;
|
|
@@ -69635,7 +69678,7 @@ interface Routes {
|
|
|
69635
69678
|
pending_auto_update: boolean;
|
|
69636
69679
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69637
69680
|
card_format: 'TLCode' | 'rfid48';
|
|
69638
|
-
/**
|
|
69681
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69639
69682
|
card_holder?: string | undefined;
|
|
69640
69683
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
69641
69684
|
number_of_issued_cards: number;
|
|
@@ -69735,7 +69778,7 @@ interface Routes {
|
|
|
69735
69778
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69736
69779
|
warning_code: 'needs_to_be_reissued';
|
|
69737
69780
|
}>;
|
|
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
|
|
69781
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
69782
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69740
69783
|
/** Indicates whether the 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
69784
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -69865,7 +69908,7 @@ interface Routes {
|
|
|
69865
69908
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69866
69909
|
warning_code: 'needs_to_be_reissued';
|
|
69867
69910
|
}>;
|
|
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
|
|
69911
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
69912
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
69870
69913
|
/** Indicates whether the 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
69914
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -70047,7 +70090,7 @@ interface Routes {
|
|
|
70047
70090
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70048
70091
|
warning_code: 'needs_to_be_reissued';
|
|
70049
70092
|
}>;
|
|
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
|
|
70093
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
70094
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
70052
70095
|
/** Indicates whether the 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
70096
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -70177,7 +70220,7 @@ interface Routes {
|
|
|
70177
70220
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70178
70221
|
warning_code: 'needs_to_be_reissued';
|
|
70179
70222
|
}>;
|
|
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
|
|
70223
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
70224
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
70182
70225
|
/** Indicates whether the 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
70226
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -71963,7 +72006,7 @@ interface Routes {
|
|
|
71963
72006
|
pending_auto_update: boolean;
|
|
71964
72007
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71965
72008
|
card_format: 'TLCode' | 'rfid48';
|
|
71966
|
-
/**
|
|
72009
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71967
72010
|
card_holder?: string | undefined;
|
|
71968
72011
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
71969
72012
|
number_of_issued_cards: number;
|
|
@@ -72063,7 +72106,7 @@ interface Routes {
|
|
|
72063
72106
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72064
72107
|
warning_code: 'needs_to_be_reissued';
|
|
72065
72108
|
}>;
|
|
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
|
|
72109
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
72110
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72068
72111
|
/** Indicates whether the 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
72112
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72193,7 +72236,7 @@ interface Routes {
|
|
|
72193
72236
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72194
72237
|
warning_code: 'needs_to_be_reissued';
|
|
72195
72238
|
}>;
|
|
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
|
|
72239
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
72240
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72198
72241
|
/** Indicates whether the 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
72242
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72375,7 +72418,7 @@ interface Routes {
|
|
|
72375
72418
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72376
72419
|
warning_code: 'needs_to_be_reissued';
|
|
72377
72420
|
}>;
|
|
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
|
|
72421
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
72422
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72380
72423
|
/** Indicates whether the 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
72424
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -72505,7 +72548,7 @@ interface Routes {
|
|
|
72505
72548
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72506
72549
|
warning_code: 'needs_to_be_reissued';
|
|
72507
72550
|
}>;
|
|
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
|
|
72551
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
72552
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
72510
72553
|
/** Indicates whether the 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
72554
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -75895,7 +75938,7 @@ interface Routes {
|
|
|
75895
75938
|
pending_auto_update: boolean;
|
|
75896
75939
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75897
75940
|
card_format: 'TLCode' | 'rfid48';
|
|
75898
|
-
/**
|
|
75941
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75899
75942
|
card_holder?: string | undefined;
|
|
75900
75943
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
75901
75944
|
number_of_issued_cards: number;
|
|
@@ -75995,7 +76038,7 @@ interface Routes {
|
|
|
75995
76038
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75996
76039
|
warning_code: 'needs_to_be_reissued';
|
|
75997
76040
|
}>;
|
|
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
|
|
76041
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
76042
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76000
76043
|
/** Indicates whether the 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
76044
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76125,7 +76168,7 @@ interface Routes {
|
|
|
76125
76168
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76126
76169
|
warning_code: 'needs_to_be_reissued';
|
|
76127
76170
|
}>;
|
|
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
|
|
76171
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
76172
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76130
76173
|
/** Indicates whether the 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
76174
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76307,7 +76350,7 @@ interface Routes {
|
|
|
76307
76350
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76308
76351
|
warning_code: 'needs_to_be_reissued';
|
|
76309
76352
|
}>;
|
|
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
|
|
76353
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
76354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76312
76355
|
/** Indicates whether the 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
76356
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -76437,7 +76480,7 @@ interface Routes {
|
|
|
76437
76480
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76438
76481
|
warning_code: 'needs_to_be_reissued';
|
|
76439
76482
|
}>;
|
|
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
|
|
76483
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
76484
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
76442
76485
|
/** Indicates whether the 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
76486
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78231,7 +78274,7 @@ interface Routes {
|
|
|
78231
78274
|
pending_auto_update: boolean;
|
|
78232
78275
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78233
78276
|
card_format: 'TLCode' | 'rfid48';
|
|
78234
|
-
/**
|
|
78277
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78235
78278
|
card_holder?: string | undefined;
|
|
78236
78279
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
78237
78280
|
number_of_issued_cards: number;
|
|
@@ -78331,7 +78374,7 @@ interface Routes {
|
|
|
78331
78374
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78332
78375
|
warning_code: 'needs_to_be_reissued';
|
|
78333
78376
|
}>;
|
|
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
|
|
78377
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
78378
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78336
78379
|
/** Indicates whether the 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
78380
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78461,7 +78504,7 @@ interface Routes {
|
|
|
78461
78504
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78462
78505
|
warning_code: 'needs_to_be_reissued';
|
|
78463
78506
|
}>;
|
|
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
|
|
78507
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
78508
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78466
78509
|
/** Indicates whether the 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
78510
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78643,7 +78686,7 @@ interface Routes {
|
|
|
78643
78686
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78644
78687
|
warning_code: 'needs_to_be_reissued';
|
|
78645
78688
|
}>;
|
|
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
|
|
78689
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
78690
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78648
78691
|
/** Indicates whether the 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
78692
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -78773,7 +78816,7 @@ interface Routes {
|
|
|
78773
78816
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78774
78817
|
warning_code: 'needs_to_be_reissued';
|
|
78775
78818
|
}>;
|
|
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
|
|
78819
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
78820
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
78778
78821
|
/** Indicates whether the 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
78822
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79751,7 +79794,7 @@ interface Routes {
|
|
|
79751
79794
|
pending_auto_update: boolean;
|
|
79752
79795
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79753
79796
|
card_format: 'TLCode' | 'rfid48';
|
|
79754
|
-
/**
|
|
79797
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79755
79798
|
card_holder?: string | undefined;
|
|
79756
79799
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
79757
79800
|
number_of_issued_cards: number;
|
|
@@ -79851,7 +79894,7 @@ interface Routes {
|
|
|
79851
79894
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79852
79895
|
warning_code: 'needs_to_be_reissued';
|
|
79853
79896
|
}>;
|
|
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
|
|
79897
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
79898
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79856
79899
|
/** Indicates whether the 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
79900
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -79981,7 +80024,7 @@ interface Routes {
|
|
|
79981
80024
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79982
80025
|
warning_code: 'needs_to_be_reissued';
|
|
79983
80026
|
}>;
|
|
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
|
|
80027
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
80028
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
79986
80029
|
/** Indicates whether the 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
80030
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -80163,7 +80206,7 @@ interface Routes {
|
|
|
80163
80206
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80164
80207
|
warning_code: 'needs_to_be_reissued';
|
|
80165
80208
|
}>;
|
|
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
|
|
80209
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
80210
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80168
80211
|
/** Indicates whether the 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
80212
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -80293,7 +80336,7 @@ interface Routes {
|
|
|
80293
80336
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80294
80337
|
warning_code: 'needs_to_be_reissued';
|
|
80295
80338
|
}>;
|
|
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
|
|
80339
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
80340
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
80298
80341
|
/** Indicates whether the 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
80342
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81664,7 +81707,7 @@ interface Routes {
|
|
|
81664
81707
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81665
81708
|
warning_code: 'needs_to_be_reissued';
|
|
81666
81709
|
}>;
|
|
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
|
|
81710
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
81711
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81669
81712
|
/** Indicates whether the 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
81713
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -81726,7 +81769,7 @@ interface Routes {
|
|
|
81726
81769
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
81727
81770
|
/** 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
81771
|
code?: string | undefined;
|
|
81729
|
-
/** Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
81772
|
+
/** 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
81773
|
is_multi_phone_sync_credential?: boolean;
|
|
81731
81774
|
/** 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
81775
|
allowed_acs_entrance_ids?: string[];
|
|
@@ -81859,7 +81902,7 @@ interface Routes {
|
|
|
81859
81902
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81860
81903
|
warning_code: 'needs_to_be_reissued';
|
|
81861
81904
|
}>;
|
|
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
|
|
81905
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
81906
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
81864
81907
|
/** Indicates whether the 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
81908
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82016,7 +82059,7 @@ interface Routes {
|
|
|
82016
82059
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82017
82060
|
warning_code: 'needs_to_be_reissued';
|
|
82018
82061
|
}>;
|
|
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
|
|
82062
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82063
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82021
82064
|
/** Indicates whether the 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
82065
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82177,7 +82220,7 @@ interface Routes {
|
|
|
82177
82220
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82178
82221
|
warning_code: 'needs_to_be_reissued';
|
|
82179
82222
|
}>;
|
|
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
|
|
82223
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82224
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82182
82225
|
/** Indicates whether the 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
82226
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82339,7 +82382,7 @@ interface Routes {
|
|
|
82339
82382
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82340
82383
|
warning_code: 'needs_to_be_reissued';
|
|
82341
82384
|
}>;
|
|
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
|
|
82385
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82386
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82344
82387
|
/** Indicates whether the 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
82388
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82601,7 +82644,7 @@ interface Routes {
|
|
|
82601
82644
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82602
82645
|
warning_code: 'needs_to_be_reissued';
|
|
82603
82646
|
}>;
|
|
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
|
|
82647
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82648
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82606
82649
|
/** Indicates whether the 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
82650
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82746,7 +82789,7 @@ interface Routes {
|
|
|
82746
82789
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82747
82790
|
warning_code: 'needs_to_be_reissued';
|
|
82748
82791
|
}>;
|
|
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
|
|
82792
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82793
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82751
82794
|
/** Indicates whether the 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
82795
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -82901,7 +82944,7 @@ interface Routes {
|
|
|
82901
82944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82902
82945
|
warning_code: 'needs_to_be_reissued';
|
|
82903
82946
|
}>;
|
|
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
|
|
82947
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
82948
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
82906
82949
|
/** Indicates whether the 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
82950
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83054,7 +83097,7 @@ interface Routes {
|
|
|
83054
83097
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83055
83098
|
warning_code: 'needs_to_be_reissued';
|
|
83056
83099
|
}>;
|
|
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
|
|
83100
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
83101
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83059
83102
|
/** Indicates whether the 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
83103
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83237,7 +83280,7 @@ interface Routes {
|
|
|
83237
83280
|
pending_auto_update: boolean;
|
|
83238
83281
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83239
83282
|
card_format: 'TLCode' | 'rfid48';
|
|
83240
|
-
/**
|
|
83283
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83241
83284
|
card_holder?: string | undefined;
|
|
83242
83285
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
83243
83286
|
number_of_issued_cards: number;
|
|
@@ -83337,7 +83380,7 @@ interface Routes {
|
|
|
83337
83380
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83338
83381
|
warning_code: 'needs_to_be_reissued';
|
|
83339
83382
|
}>;
|
|
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
|
|
83383
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
83384
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83342
83385
|
/** Indicates whether the 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
83386
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83467,7 +83510,7 @@ interface Routes {
|
|
|
83467
83510
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83468
83511
|
warning_code: 'needs_to_be_reissued';
|
|
83469
83512
|
}>;
|
|
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
|
|
83513
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
83514
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83472
83515
|
/** Indicates whether the 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
83516
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83649,7 +83692,7 @@ interface Routes {
|
|
|
83649
83692
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83650
83693
|
warning_code: 'needs_to_be_reissued';
|
|
83651
83694
|
}>;
|
|
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
|
|
83695
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
83696
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83654
83697
|
/** Indicates whether the 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
83698
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -83779,7 +83822,7 @@ interface Routes {
|
|
|
83779
83822
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83780
83823
|
warning_code: 'needs_to_be_reissued';
|
|
83781
83824
|
}>;
|
|
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
|
|
83825
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
83826
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
83784
83827
|
/** Indicates whether the 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
83828
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84593,7 +84636,7 @@ interface Routes {
|
|
|
84593
84636
|
pending_auto_update: boolean;
|
|
84594
84637
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84595
84638
|
card_format: 'TLCode' | 'rfid48';
|
|
84596
|
-
/**
|
|
84639
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84597
84640
|
card_holder?: string | undefined;
|
|
84598
84641
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
84599
84642
|
number_of_issued_cards: number;
|
|
@@ -84693,7 +84736,7 @@ interface Routes {
|
|
|
84693
84736
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84694
84737
|
warning_code: 'needs_to_be_reissued';
|
|
84695
84738
|
}>;
|
|
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
|
|
84739
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
84740
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84698
84741
|
/** Indicates whether the 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
84742
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -84823,7 +84866,7 @@ interface Routes {
|
|
|
84823
84866
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84824
84867
|
warning_code: 'needs_to_be_reissued';
|
|
84825
84868
|
}>;
|
|
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
|
|
84869
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
84870
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
84828
84871
|
/** Indicates whether the 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
84872
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85005,7 +85048,7 @@ interface Routes {
|
|
|
85005
85048
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85006
85049
|
warning_code: 'needs_to_be_reissued';
|
|
85007
85050
|
}>;
|
|
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
|
|
85051
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
85052
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
85010
85053
|
/** Indicates whether the 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
85054
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85135,7 +85178,7 @@ interface Routes {
|
|
|
85135
85178
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85136
85179
|
warning_code: 'needs_to_be_reissued';
|
|
85137
85180
|
}>;
|
|
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
|
|
85181
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
85182
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
85140
85183
|
/** Indicates whether the 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
85184
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -85942,6 +85985,8 @@ interface Routes {
|
|
|
85942
85985
|
access_grant_id?: string | undefined;
|
|
85943
85986
|
/** ID of the access method for which you want to retrieve all entrances. */
|
|
85944
85987
|
access_method_id?: string | undefined;
|
|
85988
|
+
/** ID of the connected account for which you want to retrieve all entrances. */
|
|
85989
|
+
connected_account_id?: string | undefined;
|
|
85945
85990
|
};
|
|
85946
85991
|
formData: {};
|
|
85947
85992
|
jsonResponse: {
|
|
@@ -86145,7 +86190,7 @@ interface Routes {
|
|
|
86145
86190
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86146
86191
|
warning_code: 'needs_to_be_reissued';
|
|
86147
86192
|
}>;
|
|
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
|
|
86193
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
86194
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
86150
86195
|
/** Indicates whether the 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
86196
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88133,7 +88178,7 @@ interface Routes {
|
|
|
88133
88178
|
pending_auto_update: boolean;
|
|
88134
88179
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88135
88180
|
card_format: 'TLCode' | 'rfid48';
|
|
88136
|
-
/**
|
|
88181
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88137
88182
|
card_holder?: string | undefined;
|
|
88138
88183
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
88139
88184
|
number_of_issued_cards: number;
|
|
@@ -88233,7 +88278,7 @@ interface Routes {
|
|
|
88233
88278
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88234
88279
|
warning_code: 'needs_to_be_reissued';
|
|
88235
88280
|
}>;
|
|
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
|
|
88281
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
88282
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88238
88283
|
/** Indicates whether the 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
88284
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88363,7 +88408,7 @@ interface Routes {
|
|
|
88363
88408
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88364
88409
|
warning_code: 'needs_to_be_reissued';
|
|
88365
88410
|
}>;
|
|
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
|
|
88411
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
88412
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88368
88413
|
/** Indicates whether the 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
88414
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88545,7 +88590,7 @@ interface Routes {
|
|
|
88545
88590
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88546
88591
|
warning_code: 'needs_to_be_reissued';
|
|
88547
88592
|
}>;
|
|
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
|
|
88593
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
88594
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88550
88595
|
/** Indicates whether the 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
88596
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -88675,7 +88720,7 @@ interface Routes {
|
|
|
88675
88720
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88676
88721
|
warning_code: 'needs_to_be_reissued';
|
|
88677
88722
|
}>;
|
|
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
|
|
88723
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
88724
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
88680
88725
|
/** Indicates whether the 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
88726
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89386,7 +89431,7 @@ interface Routes {
|
|
|
89386
89431
|
pending_auto_update: boolean;
|
|
89387
89432
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89388
89433
|
card_format: 'TLCode' | 'rfid48';
|
|
89389
|
-
/**
|
|
89434
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89390
89435
|
card_holder?: string | undefined;
|
|
89391
89436
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
89392
89437
|
number_of_issued_cards: number;
|
|
@@ -89486,7 +89531,7 @@ interface Routes {
|
|
|
89486
89531
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89487
89532
|
warning_code: 'needs_to_be_reissued';
|
|
89488
89533
|
}>;
|
|
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
|
|
89534
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
89535
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89491
89536
|
/** Indicates whether the 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
89537
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89616,7 +89661,7 @@ interface Routes {
|
|
|
89616
89661
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89617
89662
|
warning_code: 'needs_to_be_reissued';
|
|
89618
89663
|
}>;
|
|
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
|
|
89664
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
89665
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89621
89666
|
/** Indicates whether the 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
89667
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89798,7 +89843,7 @@ interface Routes {
|
|
|
89798
89843
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89799
89844
|
warning_code: 'needs_to_be_reissued';
|
|
89800
89845
|
}>;
|
|
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
|
|
89846
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
89847
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89803
89848
|
/** Indicates whether the 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
89849
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -89928,7 +89973,7 @@ interface Routes {
|
|
|
89928
89973
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89929
89974
|
warning_code: 'needs_to_be_reissued';
|
|
89930
89975
|
}>;
|
|
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
|
|
89976
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
89977
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
89933
89978
|
/** Indicates whether the 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
89979
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -102910,7 +102955,7 @@ interface Routes {
|
|
|
102910
102955
|
pending_auto_update: boolean;
|
|
102911
102956
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102912
102957
|
card_format: 'TLCode' | 'rfid48';
|
|
102913
|
-
/**
|
|
102958
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102914
102959
|
card_holder?: string | undefined;
|
|
102915
102960
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
102916
102961
|
number_of_issued_cards: number;
|
|
@@ -103010,7 +103055,7 @@ interface Routes {
|
|
|
103010
103055
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103011
103056
|
warning_code: 'needs_to_be_reissued';
|
|
103012
103057
|
}>;
|
|
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
|
|
103058
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
103059
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103015
103060
|
/** Indicates whether the 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
103061
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103140,7 +103185,7 @@ interface Routes {
|
|
|
103140
103185
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103141
103186
|
warning_code: 'needs_to_be_reissued';
|
|
103142
103187
|
}>;
|
|
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
|
|
103188
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
103189
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103145
103190
|
/** Indicates whether the 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
103191
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103322,7 +103367,7 @@ interface Routes {
|
|
|
103322
103367
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103323
103368
|
warning_code: 'needs_to_be_reissued';
|
|
103324
103369
|
}>;
|
|
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
|
|
103370
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
103371
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103327
103372
|
/** Indicates whether the 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
103373
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -103452,7 +103497,7 @@ interface Routes {
|
|
|
103452
103497
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
103453
103498
|
warning_code: 'needs_to_be_reissued';
|
|
103454
103499
|
}>;
|
|
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
|
|
103500
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
103501
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
103457
103502
|
/** Indicates whether the 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
103503
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104170,7 +104215,7 @@ interface Routes {
|
|
|
104170
104215
|
pending_auto_update: boolean;
|
|
104171
104216
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104172
104217
|
card_format: 'TLCode' | 'rfid48';
|
|
104173
|
-
/**
|
|
104218
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104174
104219
|
card_holder?: string | undefined;
|
|
104175
104220
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
104176
104221
|
number_of_issued_cards: number;
|
|
@@ -104270,7 +104315,7 @@ interface Routes {
|
|
|
104270
104315
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104271
104316
|
warning_code: 'needs_to_be_reissued';
|
|
104272
104317
|
}>;
|
|
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
|
|
104318
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
104319
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104275
104320
|
/** Indicates whether the 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
104321
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104400,7 +104445,7 @@ interface Routes {
|
|
|
104400
104445
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104401
104446
|
warning_code: 'needs_to_be_reissued';
|
|
104402
104447
|
}>;
|
|
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
|
|
104448
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
104449
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104405
104450
|
/** Indicates whether the 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
104451
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104582,7 +104627,7 @@ interface Routes {
|
|
|
104582
104627
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104583
104628
|
warning_code: 'needs_to_be_reissued';
|
|
104584
104629
|
}>;
|
|
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
|
|
104630
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
104631
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104587
104632
|
/** Indicates whether the 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
104633
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -104712,7 +104757,7 @@ interface Routes {
|
|
|
104712
104757
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104713
104758
|
warning_code: 'needs_to_be_reissued';
|
|
104714
104759
|
}>;
|
|
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
|
|
104760
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
104761
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
104717
104762
|
/** Indicates whether the 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
104763
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105428,7 +105473,7 @@ interface Routes {
|
|
|
105428
105473
|
pending_auto_update: boolean;
|
|
105429
105474
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105430
105475
|
card_format: 'TLCode' | 'rfid48';
|
|
105431
|
-
/**
|
|
105476
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105432
105477
|
card_holder?: string | undefined;
|
|
105433
105478
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
105434
105479
|
number_of_issued_cards: number;
|
|
@@ -105528,7 +105573,7 @@ interface Routes {
|
|
|
105528
105573
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105529
105574
|
warning_code: 'needs_to_be_reissued';
|
|
105530
105575
|
}>;
|
|
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
|
|
105576
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
105577
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105533
105578
|
/** Indicates whether the 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
105579
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105658,7 +105703,7 @@ interface Routes {
|
|
|
105658
105703
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105659
105704
|
warning_code: 'needs_to_be_reissued';
|
|
105660
105705
|
}>;
|
|
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
|
|
105706
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
105707
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105663
105708
|
/** Indicates whether the 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
105709
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105840,7 +105885,7 @@ interface Routes {
|
|
|
105840
105885
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105841
105886
|
warning_code: 'needs_to_be_reissued';
|
|
105842
105887
|
}>;
|
|
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
|
|
105888
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
105889
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105845
105890
|
/** Indicates whether the 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
105891
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -105970,7 +106015,7 @@ interface Routes {
|
|
|
105970
106015
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
105971
106016
|
warning_code: 'needs_to_be_reissued';
|
|
105972
106017
|
}>;
|
|
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
|
|
106018
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
106019
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
105975
106020
|
/** Indicates whether the 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
106021
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106688,7 +106733,7 @@ interface Routes {
|
|
|
106688
106733
|
pending_auto_update: boolean;
|
|
106689
106734
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106690
106735
|
card_format: 'TLCode' | 'rfid48';
|
|
106691
|
-
/**
|
|
106736
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106692
106737
|
card_holder?: string | undefined;
|
|
106693
106738
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
106694
106739
|
number_of_issued_cards: number;
|
|
@@ -106788,7 +106833,7 @@ interface Routes {
|
|
|
106788
106833
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106789
106834
|
warning_code: 'needs_to_be_reissued';
|
|
106790
106835
|
}>;
|
|
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
|
|
106836
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
106837
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106793
106838
|
/** Indicates whether the 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
106839
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -106918,7 +106963,7 @@ interface Routes {
|
|
|
106918
106963
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
106919
106964
|
warning_code: 'needs_to_be_reissued';
|
|
106920
106965
|
}>;
|
|
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
|
|
106966
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
106967
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
106923
106968
|
/** Indicates whether the 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
106969
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -107100,7 +107145,7 @@ interface Routes {
|
|
|
107100
107145
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107101
107146
|
warning_code: 'needs_to_be_reissued';
|
|
107102
107147
|
}>;
|
|
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
|
|
107148
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
107149
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
107105
107150
|
/** Indicates whether the 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
107151
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -107230,7 +107275,7 @@ interface Routes {
|
|
|
107230
107275
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107231
107276
|
warning_code: 'needs_to_be_reissued';
|
|
107232
107277
|
}>;
|
|
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
|
|
107278
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
107279
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
107235
107280
|
/** Indicates whether the 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
107281
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110290,7 +110335,7 @@ interface Routes {
|
|
|
110290
110335
|
pending_auto_update: boolean;
|
|
110291
110336
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110292
110337
|
card_format: 'TLCode' | 'rfid48';
|
|
110293
|
-
/**
|
|
110338
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110294
110339
|
card_holder?: string | undefined;
|
|
110295
110340
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
110296
110341
|
number_of_issued_cards: number;
|
|
@@ -110390,7 +110435,7 @@ interface Routes {
|
|
|
110390
110435
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110391
110436
|
warning_code: 'needs_to_be_reissued';
|
|
110392
110437
|
}>;
|
|
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
|
|
110438
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
110439
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110395
110440
|
/** Indicates whether the 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
110441
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110520,7 +110565,7 @@ interface Routes {
|
|
|
110520
110565
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110521
110566
|
warning_code: 'needs_to_be_reissued';
|
|
110522
110567
|
}>;
|
|
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
|
|
110568
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
110569
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110525
110570
|
/** Indicates whether the 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
110571
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110702,7 +110747,7 @@ interface Routes {
|
|
|
110702
110747
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110703
110748
|
warning_code: 'needs_to_be_reissued';
|
|
110704
110749
|
}>;
|
|
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
|
|
110750
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
110751
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110707
110752
|
/** Indicates whether the 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
110753
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -110832,7 +110877,7 @@ interface Routes {
|
|
|
110832
110877
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
110833
110878
|
warning_code: 'needs_to_be_reissued';
|
|
110834
110879
|
}>;
|
|
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
|
|
110880
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
110881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
110837
110882
|
/** Indicates whether the 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
110883
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111569,7 +111614,7 @@ interface Routes {
|
|
|
111569
111614
|
pending_auto_update: boolean;
|
|
111570
111615
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111571
111616
|
card_format: 'TLCode' | 'rfid48';
|
|
111572
|
-
/**
|
|
111617
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111573
111618
|
card_holder?: string | undefined;
|
|
111574
111619
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
111575
111620
|
number_of_issued_cards: number;
|
|
@@ -111669,7 +111714,7 @@ interface Routes {
|
|
|
111669
111714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111670
111715
|
warning_code: 'needs_to_be_reissued';
|
|
111671
111716
|
}>;
|
|
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
|
|
111717
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
111718
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111674
111719
|
/** Indicates whether the 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
111720
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111799,7 +111844,7 @@ interface Routes {
|
|
|
111799
111844
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111800
111845
|
warning_code: 'needs_to_be_reissued';
|
|
111801
111846
|
}>;
|
|
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
|
|
111847
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
111848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111804
111849
|
/** Indicates whether the 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
111850
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -111981,7 +112026,7 @@ interface Routes {
|
|
|
111981
112026
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111982
112027
|
warning_code: 'needs_to_be_reissued';
|
|
111983
112028
|
}>;
|
|
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
|
|
112029
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
112030
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
111986
112031
|
/** Indicates whether the 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
112032
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112111,7 +112156,7 @@ interface Routes {
|
|
|
112111
112156
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112112
112157
|
warning_code: 'needs_to_be_reissued';
|
|
112113
112158
|
}>;
|
|
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
|
|
112159
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
112160
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
112116
112161
|
/** Indicates whether the 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
112162
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -112902,7 +112947,7 @@ interface Routes {
|
|
|
112902
112947
|
pending_auto_update: boolean;
|
|
112903
112948
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112904
112949
|
card_format: 'TLCode' | 'rfid48';
|
|
112905
|
-
/**
|
|
112950
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112906
112951
|
card_holder?: string | undefined;
|
|
112907
112952
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
112908
112953
|
number_of_issued_cards: number;
|
|
@@ -113002,7 +113047,7 @@ interface Routes {
|
|
|
113002
113047
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113003
113048
|
warning_code: 'needs_to_be_reissued';
|
|
113004
113049
|
}>;
|
|
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
|
|
113050
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
113051
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113007
113052
|
/** Indicates whether the 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
113053
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113132,7 +113177,7 @@ interface Routes {
|
|
|
113132
113177
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113133
113178
|
warning_code: 'needs_to_be_reissued';
|
|
113134
113179
|
}>;
|
|
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
|
|
113180
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
113181
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113137
113182
|
/** Indicates whether the 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
113183
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113314,7 +113359,7 @@ interface Routes {
|
|
|
113314
113359
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113315
113360
|
warning_code: 'needs_to_be_reissued';
|
|
113316
113361
|
}>;
|
|
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
|
|
113362
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
113363
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113319
113364
|
/** Indicates whether the 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
113365
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -113444,7 +113489,7 @@ interface Routes {
|
|
|
113444
113489
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113445
113490
|
warning_code: 'needs_to_be_reissued';
|
|
113446
113491
|
}>;
|
|
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
|
|
113492
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
113493
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
113449
113494
|
/** Indicates whether the 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
113495
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -114896,7 +114941,7 @@ interface Routes {
|
|
|
114896
114941
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114897
114942
|
warning_code: 'needs_to_be_reissued';
|
|
114898
114943
|
}>;
|
|
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
|
|
114944
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
114945
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
114901
114946
|
/** Indicates whether the 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
114947
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115062,7 +115107,7 @@ interface Routes {
|
|
|
115062
115107
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115063
115108
|
warning_code: 'needs_to_be_reissued';
|
|
115064
115109
|
}>;
|
|
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
|
|
115110
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
115111
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115067
115112
|
/** Indicates whether the 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
115113
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115543,7 +115588,7 @@ interface Routes {
|
|
|
115543
115588
|
pending_auto_update: boolean;
|
|
115544
115589
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115545
115590
|
card_format: 'TLCode' | 'rfid48';
|
|
115546
|
-
/**
|
|
115591
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115547
115592
|
card_holder?: string | undefined;
|
|
115548
115593
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
115549
115594
|
number_of_issued_cards: number;
|
|
@@ -115643,7 +115688,7 @@ interface Routes {
|
|
|
115643
115688
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115644
115689
|
warning_code: 'needs_to_be_reissued';
|
|
115645
115690
|
}>;
|
|
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
|
|
115691
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
115692
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115648
115693
|
/** Indicates whether the 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
115694
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115773,7 +115818,7 @@ interface Routes {
|
|
|
115773
115818
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115774
115819
|
warning_code: 'needs_to_be_reissued';
|
|
115775
115820
|
}>;
|
|
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
|
|
115821
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
115822
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115778
115823
|
/** Indicates whether the 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
115824
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -115955,7 +116000,7 @@ interface Routes {
|
|
|
115955
116000
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115956
116001
|
warning_code: 'needs_to_be_reissued';
|
|
115957
116002
|
}>;
|
|
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
|
|
116003
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
116004
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
115960
116005
|
/** Indicates whether the 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
116006
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116085,7 +116130,7 @@ interface Routes {
|
|
|
116085
116130
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116086
116131
|
warning_code: 'needs_to_be_reissued';
|
|
116087
116132
|
}>;
|
|
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
|
|
116133
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
116134
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116090
116135
|
/** Indicates whether the 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
116136
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -116807,7 +116852,7 @@ interface Routes {
|
|
|
116807
116852
|
pending_auto_update: boolean;
|
|
116808
116853
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116809
116854
|
card_format: 'TLCode' | 'rfid48';
|
|
116810
|
-
/**
|
|
116855
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116811
116856
|
card_holder?: string | undefined;
|
|
116812
116857
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
116813
116858
|
number_of_issued_cards: number;
|
|
@@ -116907,7 +116952,7 @@ interface Routes {
|
|
|
116907
116952
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
116908
116953
|
warning_code: 'needs_to_be_reissued';
|
|
116909
116954
|
}>;
|
|
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
|
|
116955
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
116956
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
116912
116957
|
/** Indicates whether the 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
116958
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117037,7 +117082,7 @@ interface Routes {
|
|
|
117037
117082
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117038
117083
|
warning_code: 'needs_to_be_reissued';
|
|
117039
117084
|
}>;
|
|
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
|
|
117085
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
117086
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117042
117087
|
/** Indicates whether the 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
117088
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117219,7 +117264,7 @@ interface Routes {
|
|
|
117219
117264
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117220
117265
|
warning_code: 'needs_to_be_reissued';
|
|
117221
117266
|
}>;
|
|
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
|
|
117267
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
117268
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117224
117269
|
/** Indicates whether the 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
117270
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -117349,7 +117394,7 @@ interface Routes {
|
|
|
117349
117394
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117350
117395
|
warning_code: 'needs_to_be_reissued';
|
|
117351
117396
|
}>;
|
|
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
|
|
117397
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
117398
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
117354
117399
|
/** Indicates whether the 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
117400
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118163,7 +118208,7 @@ interface Routes {
|
|
|
118163
118208
|
pending_auto_update: boolean;
|
|
118164
118209
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118165
118210
|
card_format: 'TLCode' | 'rfid48';
|
|
118166
|
-
/**
|
|
118211
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118167
118212
|
card_holder?: string | undefined;
|
|
118168
118213
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
118169
118214
|
number_of_issued_cards: number;
|
|
@@ -118263,7 +118308,7 @@ interface Routes {
|
|
|
118263
118308
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118264
118309
|
warning_code: 'needs_to_be_reissued';
|
|
118265
118310
|
}>;
|
|
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
|
|
118311
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
118312
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118268
118313
|
/** Indicates whether the 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
118314
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118393,7 +118438,7 @@ interface Routes {
|
|
|
118393
118438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118394
118439
|
warning_code: 'needs_to_be_reissued';
|
|
118395
118440
|
}>;
|
|
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
|
|
118441
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
118442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118398
118443
|
/** Indicates whether the 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
118444
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118575,7 +118620,7 @@ interface Routes {
|
|
|
118575
118620
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118576
118621
|
warning_code: 'needs_to_be_reissued';
|
|
118577
118622
|
}>;
|
|
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
|
|
118623
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
118624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118580
118625
|
/** Indicates whether the 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
118626
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -118705,7 +118750,7 @@ interface Routes {
|
|
|
118705
118750
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118706
118751
|
warning_code: 'needs_to_be_reissued';
|
|
118707
118752
|
}>;
|
|
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
|
|
118753
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
118754
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
118710
118755
|
/** Indicates whether the 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
118756
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120582,7 +120627,7 @@ interface Routes {
|
|
|
120582
120627
|
pending_auto_update: boolean;
|
|
120583
120628
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120584
120629
|
card_format: 'TLCode' | 'rfid48';
|
|
120585
|
-
/**
|
|
120630
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120586
120631
|
card_holder?: string | undefined;
|
|
120587
120632
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
120588
120633
|
number_of_issued_cards: number;
|
|
@@ -120682,7 +120727,7 @@ interface Routes {
|
|
|
120682
120727
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120683
120728
|
warning_code: 'needs_to_be_reissued';
|
|
120684
120729
|
}>;
|
|
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
|
|
120730
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
120731
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120687
120732
|
/** Indicates whether the 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
120733
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120812,7 +120857,7 @@ interface Routes {
|
|
|
120812
120857
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120813
120858
|
warning_code: 'needs_to_be_reissued';
|
|
120814
120859
|
}>;
|
|
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
|
|
120860
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
120861
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120817
120862
|
/** Indicates whether the 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
120863
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -120994,7 +121039,7 @@ interface Routes {
|
|
|
120994
121039
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
120995
121040
|
warning_code: 'needs_to_be_reissued';
|
|
120996
121041
|
}>;
|
|
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
|
|
121042
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
121043
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
120999
121044
|
/** Indicates whether the 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
121045
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121124,7 +121169,7 @@ interface Routes {
|
|
|
121124
121169
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121125
121170
|
warning_code: 'needs_to_be_reissued';
|
|
121126
121171
|
}>;
|
|
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
|
|
121172
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
121173
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121129
121174
|
/** Indicates whether the 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
121175
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -121850,7 +121895,7 @@ interface Routes {
|
|
|
121850
121895
|
pending_auto_update: boolean;
|
|
121851
121896
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121852
121897
|
card_format: 'TLCode' | 'rfid48';
|
|
121853
|
-
/**
|
|
121898
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121854
121899
|
card_holder?: string | undefined;
|
|
121855
121900
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
121856
121901
|
number_of_issued_cards: number;
|
|
@@ -121950,7 +121995,7 @@ interface Routes {
|
|
|
121950
121995
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121951
121996
|
warning_code: 'needs_to_be_reissued';
|
|
121952
121997
|
}>;
|
|
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
|
|
121998
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
121999
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121955
122000
|
/** Indicates whether the 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
122001
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122080,7 +122125,7 @@ interface Routes {
|
|
|
122080
122125
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122081
122126
|
warning_code: 'needs_to_be_reissued';
|
|
122082
122127
|
}>;
|
|
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
|
|
122128
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
122129
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122085
122130
|
/** Indicates whether the 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
122131
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122262,7 +122307,7 @@ interface Routes {
|
|
|
122262
122307
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122263
122308
|
warning_code: 'needs_to_be_reissued';
|
|
122264
122309
|
}>;
|
|
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
|
|
122310
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
122311
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122267
122312
|
/** Indicates whether the 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
122313
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -122392,7 +122437,7 @@ interface Routes {
|
|
|
122392
122437
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122393
122438
|
warning_code: 'needs_to_be_reissued';
|
|
122394
122439
|
}>;
|
|
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
|
|
122440
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
122441
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
122397
122442
|
/** Indicates whether the 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
122443
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125407,7 +125452,7 @@ interface Routes {
|
|
|
125407
125452
|
pending_auto_update: boolean;
|
|
125408
125453
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125409
125454
|
card_format: 'TLCode' | 'rfid48';
|
|
125410
|
-
/**
|
|
125455
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125411
125456
|
card_holder?: string | undefined;
|
|
125412
125457
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
125413
125458
|
number_of_issued_cards: number;
|
|
@@ -125507,7 +125552,7 @@ interface Routes {
|
|
|
125507
125552
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125508
125553
|
warning_code: 'needs_to_be_reissued';
|
|
125509
125554
|
}>;
|
|
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
|
|
125555
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
125556
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125512
125557
|
/** Indicates whether the 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
125558
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125637,7 +125682,7 @@ interface Routes {
|
|
|
125637
125682
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125638
125683
|
warning_code: 'needs_to_be_reissued';
|
|
125639
125684
|
}>;
|
|
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
|
|
125685
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
125686
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125642
125687
|
/** Indicates whether the 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
125688
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125819,7 +125864,7 @@ interface Routes {
|
|
|
125819
125864
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125820
125865
|
warning_code: 'needs_to_be_reissued';
|
|
125821
125866
|
}>;
|
|
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
|
|
125867
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
125868
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125824
125869
|
/** Indicates whether the 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
125870
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -125949,7 +125994,7 @@ interface Routes {
|
|
|
125949
125994
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
125950
125995
|
warning_code: 'needs_to_be_reissued';
|
|
125951
125996
|
}>;
|
|
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
|
|
125997
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
125998
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
125954
125999
|
/** Indicates whether the 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
126000
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -126864,7 +126909,7 @@ interface Routes {
|
|
|
126864
126909
|
pending_auto_update: boolean;
|
|
126865
126910
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126866
126911
|
card_format: 'TLCode' | 'rfid48';
|
|
126867
|
-
/**
|
|
126912
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126868
126913
|
card_holder?: string | undefined;
|
|
126869
126914
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
126870
126915
|
number_of_issued_cards: number;
|
|
@@ -126964,7 +127009,7 @@ interface Routes {
|
|
|
126964
127009
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126965
127010
|
warning_code: 'needs_to_be_reissued';
|
|
126966
127011
|
}>;
|
|
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
|
|
127012
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
127013
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
126969
127014
|
/** Indicates whether the 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
127015
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127094,7 +127139,7 @@ interface Routes {
|
|
|
127094
127139
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127095
127140
|
warning_code: 'needs_to_be_reissued';
|
|
127096
127141
|
}>;
|
|
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
|
|
127142
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
127143
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127099
127144
|
/** Indicates whether the 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
127145
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127276,7 +127321,7 @@ interface Routes {
|
|
|
127276
127321
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127277
127322
|
warning_code: 'needs_to_be_reissued';
|
|
127278
127323
|
}>;
|
|
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
|
|
127324
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
127325
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127281
127326
|
/** Indicates whether the 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
127327
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -127406,7 +127451,7 @@ interface Routes {
|
|
|
127406
127451
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127407
127452
|
warning_code: 'needs_to_be_reissued';
|
|
127408
127453
|
}>;
|
|
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
|
|
127454
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
127455
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
127411
127456
|
/** Indicates whether the 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
127457
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128151,7 +128196,7 @@ interface Routes {
|
|
|
128151
128196
|
pending_auto_update: boolean;
|
|
128152
128197
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128153
128198
|
card_format: 'TLCode' | 'rfid48';
|
|
128154
|
-
/**
|
|
128199
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128155
128200
|
card_holder?: string | undefined;
|
|
128156
128201
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
128157
128202
|
number_of_issued_cards: number;
|
|
@@ -128251,7 +128296,7 @@ interface Routes {
|
|
|
128251
128296
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128252
128297
|
warning_code: 'needs_to_be_reissued';
|
|
128253
128298
|
}>;
|
|
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
|
|
128299
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
128300
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128256
128301
|
/** Indicates whether the 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
128302
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128381,7 +128426,7 @@ interface Routes {
|
|
|
128381
128426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128382
128427
|
warning_code: 'needs_to_be_reissued';
|
|
128383
128428
|
}>;
|
|
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
|
|
128429
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
128430
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128386
128431
|
/** Indicates whether the 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
128432
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128563,7 +128608,7 @@ interface Routes {
|
|
|
128563
128608
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128564
128609
|
warning_code: 'needs_to_be_reissued';
|
|
128565
128610
|
}>;
|
|
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
|
|
128611
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
128612
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128568
128613
|
/** Indicates whether the 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
128614
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -128693,7 +128738,7 @@ interface Routes {
|
|
|
128693
128738
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128694
128739
|
warning_code: 'needs_to_be_reissued';
|
|
128695
128740
|
}>;
|
|
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
|
|
128741
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
128742
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
128698
128743
|
/** Indicates whether the 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
128744
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129539,7 +129584,7 @@ interface Routes {
|
|
|
129539
129584
|
pending_auto_update: boolean;
|
|
129540
129585
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129541
129586
|
card_format: 'TLCode' | 'rfid48';
|
|
129542
|
-
/**
|
|
129587
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129543
129588
|
card_holder?: string | undefined;
|
|
129544
129589
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
129545
129590
|
number_of_issued_cards: number;
|
|
@@ -129639,7 +129684,7 @@ interface Routes {
|
|
|
129639
129684
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129640
129685
|
warning_code: 'needs_to_be_reissued';
|
|
129641
129686
|
}>;
|
|
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
|
|
129687
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
129688
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129644
129689
|
/** Indicates whether the 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
129690
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129769,7 +129814,7 @@ interface Routes {
|
|
|
129769
129814
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129770
129815
|
warning_code: 'needs_to_be_reissued';
|
|
129771
129816
|
}>;
|
|
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
|
|
129817
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
129818
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129774
129819
|
/** Indicates whether the 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
129820
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -129951,7 +129996,7 @@ interface Routes {
|
|
|
129951
129996
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129952
129997
|
warning_code: 'needs_to_be_reissued';
|
|
129953
129998
|
}>;
|
|
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
|
|
129999
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
130000
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
129956
130001
|
/** Indicates whether the 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
130002
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -130081,7 +130126,7 @@ interface Routes {
|
|
|
130081
130126
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
130082
130127
|
warning_code: 'needs_to_be_reissued';
|
|
130083
130128
|
}>;
|
|
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
|
|
130129
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
130130
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
130086
130131
|
/** Indicates whether the 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
130132
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -131354,12 +131399,18 @@ interface Routes {
|
|
|
131354
131399
|
created_at: string;
|
|
131355
131400
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131356
131401
|
workspace_id: string;
|
|
131357
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131402
|
+
/** 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
131403
|
errors: Array<{
|
|
131359
131404
|
/** Date and time at which Seam created the error. */
|
|
131360
131405
|
created_at: string;
|
|
131361
131406
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131362
131407
|
message: string;
|
|
131408
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131409
|
+
error_code: 'issue_with_acs_user';
|
|
131410
|
+
/** ID of the access system user that has an issue. */
|
|
131411
|
+
acs_user_id: string;
|
|
131412
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131413
|
+
acs_system_id: string;
|
|
131363
131414
|
}>;
|
|
131364
131415
|
/** 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
131416
|
warnings: Array<{
|
|
@@ -131408,14 +131459,14 @@ interface Routes {
|
|
|
131408
131459
|
};
|
|
131409
131460
|
formData: {};
|
|
131410
131461
|
jsonResponse: {
|
|
131411
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131462
|
+
/** 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
131463
|
* @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
131464
|
enrollment_automation: {
|
|
131414
131465
|
/** ID of the enrollment automation. */
|
|
131415
131466
|
enrollment_automation_id: string;
|
|
131416
131467
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131417
131468
|
credential_manager_acs_system_id: string;
|
|
131418
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131469
|
+
/** 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
131470
|
user_identity_id: string;
|
|
131420
131471
|
/** Date and time at which the enrollment automation was created. */
|
|
131421
131472
|
created_at: string;
|
|
@@ -131443,14 +131494,14 @@ interface Routes {
|
|
|
131443
131494
|
};
|
|
131444
131495
|
formData: {};
|
|
131445
131496
|
jsonResponse: {
|
|
131446
|
-
/** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131497
|
+
/** 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
131498
|
* @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
131499
|
enrollment_automation: {
|
|
131449
131500
|
/** ID of the enrollment automation. */
|
|
131450
131501
|
enrollment_automation_id: string;
|
|
131451
131502
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131452
131503
|
credential_manager_acs_system_id: string;
|
|
131453
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131504
|
+
/** 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
131505
|
user_identity_id: string;
|
|
131455
131506
|
/** Date and time at which the enrollment automation was created. */
|
|
131456
131507
|
created_at: string;
|
|
@@ -131475,7 +131526,7 @@ interface Routes {
|
|
|
131475
131526
|
enrollment_automation_id: string;
|
|
131476
131527
|
/** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
|
|
131477
131528
|
credential_manager_acs_system_id: string;
|
|
131478
|
-
/** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access
|
|
131529
|
+
/** 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
131530
|
user_identity_id: string;
|
|
131480
131531
|
/** Date and time at which the enrollment automation was created. */
|
|
131481
131532
|
created_at: string;
|
|
@@ -131547,12 +131598,18 @@ interface Routes {
|
|
|
131547
131598
|
created_at: string;
|
|
131548
131599
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131549
131600
|
workspace_id: string;
|
|
131550
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131601
|
+
/** 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
131602
|
errors: Array<{
|
|
131552
131603
|
/** Date and time at which Seam created the error. */
|
|
131553
131604
|
created_at: string;
|
|
131554
131605
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131555
131606
|
message: string;
|
|
131607
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131608
|
+
error_code: 'issue_with_acs_user';
|
|
131609
|
+
/** ID of the access system user that has an issue. */
|
|
131610
|
+
acs_user_id: string;
|
|
131611
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131612
|
+
acs_system_id: string;
|
|
131556
131613
|
}>;
|
|
131557
131614
|
/** 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
131615
|
warnings: Array<{
|
|
@@ -131608,12 +131665,18 @@ interface Routes {
|
|
|
131608
131665
|
created_at: string;
|
|
131609
131666
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
131610
131667
|
workspace_id: string;
|
|
131611
|
-
/** Array of errors associated with the user identity. Each error object within the array contains
|
|
131668
|
+
/** 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
131669
|
errors: Array<{
|
|
131613
131670
|
/** Date and time at which Seam created the error. */
|
|
131614
131671
|
created_at: string;
|
|
131615
131672
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131616
131673
|
message: string;
|
|
131674
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131675
|
+
error_code: 'issue_with_acs_user';
|
|
131676
|
+
/** ID of the access system user that has an issue. */
|
|
131677
|
+
acs_user_id: string;
|
|
131678
|
+
/** ID of the access system that the user identity is associated with. */
|
|
131679
|
+
acs_system_id: string;
|
|
131617
131680
|
}>;
|
|
131618
131681
|
/** 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
131682
|
warnings: Array<{
|
|
@@ -134665,7 +134728,7 @@ interface Routes {
|
|
|
134665
134728
|
pending_auto_update: boolean;
|
|
134666
134729
|
/** Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134667
134730
|
card_format: 'TLCode' | 'rfid48';
|
|
134668
|
-
/**
|
|
134731
|
+
/** Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134669
134732
|
card_holder?: string | undefined;
|
|
134670
134733
|
/** Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
134671
134734
|
number_of_issued_cards: number;
|
|
@@ -134765,7 +134828,7 @@ interface Routes {
|
|
|
134765
134828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134766
134829
|
warning_code: 'needs_to_be_reissued';
|
|
134767
134830
|
}>;
|
|
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
|
|
134831
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
134832
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134770
134833
|
/** Indicates whether the 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
134834
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -134895,7 +134958,7 @@ interface Routes {
|
|
|
134895
134958
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
134896
134959
|
warning_code: 'needs_to_be_reissued';
|
|
134897
134960
|
}>;
|
|
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
|
|
134961
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
134962
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
134900
134963
|
/** Indicates whether the 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
134964
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -135077,7 +135140,7 @@ interface Routes {
|
|
|
135077
135140
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135078
135141
|
warning_code: 'needs_to_be_reissued';
|
|
135079
135142
|
}>;
|
|
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
|
|
135143
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
135144
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
135082
135145
|
/** Indicates whether the 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
135146
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|
|
@@ -135207,7 +135270,7 @@ interface Routes {
|
|
|
135207
135270
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135208
135271
|
warning_code: 'needs_to_be_reissued';
|
|
135209
135272
|
}>;
|
|
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
|
|
135273
|
+
/** Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync 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
135274
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
135212
135275
|
/** Indicates whether the 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
135276
|
is_latest_desired_state_synced_with_provider?: (boolean | null) | undefined;
|