@seamapi/types 1.320.0 → 1.321.1
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 +140 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +315 -188
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +105 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +28 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +22 -22
- package/lib/seam/connect/models/acs/acs-credential.js +4 -4
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +0 -10
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +0 -6
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +0 -2
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +32 -32
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +14 -14
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +18 -18
- package/lib/seam/connect/openapi.d.ts +75 -12
- package/lib/seam/connect/openapi.js +101 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +138 -112
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +45 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -4
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +114 -12
- package/src/lib/seam/connect/route-types.ts +138 -104
package/dist/connect.d.cts
CHANGED
|
@@ -313,37 +313,61 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
313
313
|
acs_system_id: z.ZodString;
|
|
314
314
|
workspace_id: z.ZodString;
|
|
315
315
|
name: z.ZodString;
|
|
316
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
316
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
317
317
|
access_group_type_display_name: z.ZodString;
|
|
318
318
|
display_name: z.ZodString;
|
|
319
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
319
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
320
320
|
external_type_display_name: z.ZodString;
|
|
321
321
|
created_at: z.ZodString;
|
|
322
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
323
|
+
created_at: z.ZodString;
|
|
324
|
+
message: z.ZodString;
|
|
325
|
+
}, {
|
|
326
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
327
|
+
}>, "strip", z.ZodTypeAny, {
|
|
328
|
+
message: string;
|
|
329
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
330
|
+
created_at: string;
|
|
331
|
+
}, {
|
|
332
|
+
message: string;
|
|
333
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
334
|
+
created_at: string;
|
|
335
|
+
}>, "many">;
|
|
322
336
|
}, {
|
|
323
337
|
is_managed: z.ZodLiteral<true>;
|
|
324
338
|
}>, "strip", z.ZodTypeAny, {
|
|
325
339
|
created_at: string;
|
|
340
|
+
warnings: {
|
|
341
|
+
message: string;
|
|
342
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
343
|
+
created_at: string;
|
|
344
|
+
}[];
|
|
326
345
|
name: string;
|
|
327
346
|
display_name: string;
|
|
328
347
|
workspace_id: string;
|
|
329
348
|
is_managed: true;
|
|
330
349
|
acs_access_group_id: string;
|
|
331
350
|
acs_system_id: string;
|
|
332
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
351
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
333
352
|
access_group_type_display_name: string;
|
|
334
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
353
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
335
354
|
external_type_display_name: string;
|
|
336
355
|
}, {
|
|
337
356
|
created_at: string;
|
|
357
|
+
warnings: {
|
|
358
|
+
message: string;
|
|
359
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
360
|
+
created_at: string;
|
|
361
|
+
}[];
|
|
338
362
|
name: string;
|
|
339
363
|
display_name: string;
|
|
340
364
|
workspace_id: string;
|
|
341
365
|
is_managed: true;
|
|
342
366
|
acs_access_group_id: string;
|
|
343
367
|
acs_system_id: string;
|
|
344
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
368
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
345
369
|
access_group_type_display_name: string;
|
|
346
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
370
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
347
371
|
external_type_display_name: string;
|
|
348
372
|
}>;
|
|
349
373
|
declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -351,37 +375,61 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
351
375
|
acs_system_id: z.ZodString;
|
|
352
376
|
workspace_id: z.ZodString;
|
|
353
377
|
name: z.ZodString;
|
|
354
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
378
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
355
379
|
access_group_type_display_name: z.ZodString;
|
|
356
380
|
display_name: z.ZodString;
|
|
357
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group"]>;
|
|
381
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group"]>;
|
|
358
382
|
external_type_display_name: z.ZodString;
|
|
359
383
|
created_at: z.ZodString;
|
|
384
|
+
warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
385
|
+
created_at: z.ZodString;
|
|
386
|
+
message: z.ZodString;
|
|
387
|
+
}, {
|
|
388
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_access_group">;
|
|
389
|
+
}>, "strip", z.ZodTypeAny, {
|
|
390
|
+
message: string;
|
|
391
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
392
|
+
created_at: string;
|
|
393
|
+
}, {
|
|
394
|
+
message: string;
|
|
395
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
396
|
+
created_at: string;
|
|
397
|
+
}>, "many">;
|
|
360
398
|
}, {
|
|
361
399
|
is_managed: z.ZodLiteral<false>;
|
|
362
400
|
}>, "strip", z.ZodTypeAny, {
|
|
363
401
|
created_at: string;
|
|
402
|
+
warnings: {
|
|
403
|
+
message: string;
|
|
404
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
405
|
+
created_at: string;
|
|
406
|
+
}[];
|
|
364
407
|
name: string;
|
|
365
408
|
display_name: string;
|
|
366
409
|
workspace_id: string;
|
|
367
410
|
is_managed: false;
|
|
368
411
|
acs_access_group_id: string;
|
|
369
412
|
acs_system_id: string;
|
|
370
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
413
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
371
414
|
access_group_type_display_name: string;
|
|
372
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
415
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
373
416
|
external_type_display_name: string;
|
|
374
417
|
}, {
|
|
375
418
|
created_at: string;
|
|
419
|
+
warnings: {
|
|
420
|
+
message: string;
|
|
421
|
+
warning_code: "unknown_issue_with_acs_access_group";
|
|
422
|
+
created_at: string;
|
|
423
|
+
}[];
|
|
376
424
|
name: string;
|
|
377
425
|
display_name: string;
|
|
378
426
|
workspace_id: string;
|
|
379
427
|
is_managed: false;
|
|
380
428
|
acs_access_group_id: string;
|
|
381
429
|
acs_system_id: string;
|
|
382
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
430
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
383
431
|
access_group_type_display_name: string;
|
|
384
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group";
|
|
432
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group";
|
|
385
433
|
external_type_display_name: string;
|
|
386
434
|
}>;
|
|
387
435
|
type AcsAccessGroup = z.output<typeof acs_access_group>;
|
|
@@ -471,14 +519,14 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
471
519
|
created_at: z.ZodString;
|
|
472
520
|
message: z.ZodString;
|
|
473
521
|
}, {
|
|
474
|
-
warning_code: z.ZodLiteral<"
|
|
522
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
475
523
|
}>, "strip", z.ZodTypeAny, {
|
|
476
524
|
message: string;
|
|
477
|
-
warning_code: "
|
|
525
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
478
526
|
created_at: string;
|
|
479
527
|
}, {
|
|
480
528
|
message: string;
|
|
481
|
-
warning_code: "
|
|
529
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
482
530
|
created_at: string;
|
|
483
531
|
}>]>, "many">;
|
|
484
532
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -538,7 +586,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
538
586
|
created_at: string;
|
|
539
587
|
} | {
|
|
540
588
|
message: string;
|
|
541
|
-
warning_code: "
|
|
589
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
542
590
|
created_at: string;
|
|
543
591
|
})[];
|
|
544
592
|
display_name: string;
|
|
@@ -596,7 +644,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
596
644
|
created_at: string;
|
|
597
645
|
} | {
|
|
598
646
|
message: string;
|
|
599
|
-
warning_code: "
|
|
647
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
600
648
|
created_at: string;
|
|
601
649
|
})[];
|
|
602
650
|
display_name: string;
|
|
@@ -716,14 +764,14 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
716
764
|
created_at: z.ZodString;
|
|
717
765
|
message: z.ZodString;
|
|
718
766
|
}, {
|
|
719
|
-
warning_code: z.ZodLiteral<"
|
|
767
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
720
768
|
}>, "strip", z.ZodTypeAny, {
|
|
721
769
|
message: string;
|
|
722
|
-
warning_code: "
|
|
770
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
723
771
|
created_at: string;
|
|
724
772
|
}, {
|
|
725
773
|
message: string;
|
|
726
|
-
warning_code: "
|
|
774
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
727
775
|
created_at: string;
|
|
728
776
|
}>]>, "many">;
|
|
729
777
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -783,7 +831,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
783
831
|
created_at: string;
|
|
784
832
|
} | {
|
|
785
833
|
message: string;
|
|
786
|
-
warning_code: "
|
|
834
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
787
835
|
created_at: string;
|
|
788
836
|
})[];
|
|
789
837
|
display_name: string;
|
|
@@ -841,7 +889,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
841
889
|
created_at: string;
|
|
842
890
|
} | {
|
|
843
891
|
message: string;
|
|
844
|
-
warning_code: "
|
|
892
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
845
893
|
created_at: string;
|
|
846
894
|
})[];
|
|
847
895
|
display_name: string;
|
|
@@ -1013,18 +1061,12 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1013
1061
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
1014
1062
|
access_point_name: z.ZodString;
|
|
1015
1063
|
common_area_number: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
-
inner_access_points_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1017
|
-
lease_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1018
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1019
1065
|
access_point_name: string;
|
|
1020
1066
|
common_area_number?: number | undefined;
|
|
1021
|
-
inner_access_points_names?: string[] | undefined;
|
|
1022
|
-
lease_ids?: string[] | undefined;
|
|
1023
1067
|
}, {
|
|
1024
1068
|
access_point_name: string;
|
|
1025
1069
|
common_area_number?: number | undefined;
|
|
1026
|
-
inner_access_points_names?: string[] | undefined;
|
|
1027
|
-
lease_ids?: string[] | undefined;
|
|
1028
1070
|
}>>;
|
|
1029
1071
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
1030
1072
|
door_type: z.ZodEnum<["CommonDoor", "EntranceDoor", "GuestDoor", "Elevator"]>;
|
|
@@ -1101,8 +1143,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1101
1143
|
dormakaba_community_metadata?: {
|
|
1102
1144
|
access_point_name: string;
|
|
1103
1145
|
common_area_number?: number | undefined;
|
|
1104
|
-
inner_access_points_names?: string[] | undefined;
|
|
1105
|
-
lease_ids?: string[] | undefined;
|
|
1106
1146
|
} | undefined;
|
|
1107
1147
|
salto_space_metadata?: {
|
|
1108
1148
|
door_name: string;
|
|
@@ -1152,8 +1192,6 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
1152
1192
|
dormakaba_community_metadata?: {
|
|
1153
1193
|
access_point_name: string;
|
|
1154
1194
|
common_area_number?: number | undefined;
|
|
1155
|
-
inner_access_points_names?: string[] | undefined;
|
|
1156
|
-
lease_ids?: string[] | undefined;
|
|
1157
1195
|
} | undefined;
|
|
1158
1196
|
salto_space_metadata?: {
|
|
1159
1197
|
door_name: string;
|
|
@@ -2273,14 +2311,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2273
2311
|
created_at: z.ZodString;
|
|
2274
2312
|
message: z.ZodString;
|
|
2275
2313
|
}, {
|
|
2276
|
-
warning_code: z.ZodLiteral<"
|
|
2314
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
2277
2315
|
}>, "strip", z.ZodTypeAny, {
|
|
2278
2316
|
message: string;
|
|
2279
|
-
warning_code: "
|
|
2317
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2280
2318
|
created_at: string;
|
|
2281
2319
|
}, {
|
|
2282
2320
|
message: string;
|
|
2283
|
-
warning_code: "
|
|
2321
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2284
2322
|
created_at: string;
|
|
2285
2323
|
}>]>, "many">;
|
|
2286
2324
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2340,7 +2378,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2340
2378
|
created_at: string;
|
|
2341
2379
|
} | {
|
|
2342
2380
|
message: string;
|
|
2343
|
-
warning_code: "
|
|
2381
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2344
2382
|
created_at: string;
|
|
2345
2383
|
})[];
|
|
2346
2384
|
display_name: string;
|
|
@@ -2398,7 +2436,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2398
2436
|
created_at: string;
|
|
2399
2437
|
} | {
|
|
2400
2438
|
message: string;
|
|
2401
|
-
warning_code: "
|
|
2439
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2402
2440
|
created_at: string;
|
|
2403
2441
|
})[];
|
|
2404
2442
|
display_name: string;
|
|
@@ -2517,14 +2555,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2517
2555
|
created_at: z.ZodString;
|
|
2518
2556
|
message: z.ZodString;
|
|
2519
2557
|
}, {
|
|
2520
|
-
warning_code: z.ZodLiteral<"
|
|
2558
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
2521
2559
|
}>, "strip", z.ZodTypeAny, {
|
|
2522
2560
|
message: string;
|
|
2523
|
-
warning_code: "
|
|
2561
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2524
2562
|
created_at: string;
|
|
2525
2563
|
}, {
|
|
2526
2564
|
message: string;
|
|
2527
|
-
warning_code: "
|
|
2565
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2528
2566
|
created_at: string;
|
|
2529
2567
|
}>]>, "many">;
|
|
2530
2568
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2584,7 +2622,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2584
2622
|
created_at: string;
|
|
2585
2623
|
} | {
|
|
2586
2624
|
message: string;
|
|
2587
|
-
warning_code: "
|
|
2625
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2588
2626
|
created_at: string;
|
|
2589
2627
|
})[];
|
|
2590
2628
|
display_name: string;
|
|
@@ -2642,7 +2680,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2642
2680
|
created_at: string;
|
|
2643
2681
|
} | {
|
|
2644
2682
|
message: string;
|
|
2645
|
-
warning_code: "
|
|
2683
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2646
2684
|
created_at: string;
|
|
2647
2685
|
})[];
|
|
2648
2686
|
display_name: string;
|
|
@@ -2737,7 +2775,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2737
2775
|
created_at: string;
|
|
2738
2776
|
} | {
|
|
2739
2777
|
message: string;
|
|
2740
|
-
warning_code: "
|
|
2778
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2741
2779
|
created_at: string;
|
|
2742
2780
|
})[];
|
|
2743
2781
|
display_name: string;
|
|
@@ -2795,7 +2833,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2795
2833
|
created_at: string;
|
|
2796
2834
|
} | {
|
|
2797
2835
|
message: string;
|
|
2798
|
-
warning_code: "
|
|
2836
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2799
2837
|
created_at: string;
|
|
2800
2838
|
})[];
|
|
2801
2839
|
display_name: string;
|
|
@@ -2880,7 +2918,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2880
2918
|
created_at: string;
|
|
2881
2919
|
} | {
|
|
2882
2920
|
message: string;
|
|
2883
|
-
warning_code: "
|
|
2921
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2884
2922
|
created_at: string;
|
|
2885
2923
|
})[];
|
|
2886
2924
|
display_name: string;
|
|
@@ -2938,7 +2976,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2938
2976
|
created_at: string;
|
|
2939
2977
|
} | {
|
|
2940
2978
|
message: string;
|
|
2941
|
-
warning_code: "
|
|
2979
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2942
2980
|
created_at: string;
|
|
2943
2981
|
})[];
|
|
2944
2982
|
display_name: string;
|
|
@@ -3028,7 +3066,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3028
3066
|
created_at: string;
|
|
3029
3067
|
} | {
|
|
3030
3068
|
message: string;
|
|
3031
|
-
warning_code: "
|
|
3069
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3032
3070
|
created_at: string;
|
|
3033
3071
|
})[];
|
|
3034
3072
|
display_name: string;
|
|
@@ -3086,7 +3124,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3086
3124
|
created_at: string;
|
|
3087
3125
|
} | {
|
|
3088
3126
|
message: string;
|
|
3089
|
-
warning_code: "
|
|
3127
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3090
3128
|
created_at: string;
|
|
3091
3129
|
})[];
|
|
3092
3130
|
display_name: string;
|
|
@@ -3177,7 +3215,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3177
3215
|
created_at: string;
|
|
3178
3216
|
} | {
|
|
3179
3217
|
message: string;
|
|
3180
|
-
warning_code: "
|
|
3218
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3181
3219
|
created_at: string;
|
|
3182
3220
|
})[];
|
|
3183
3221
|
display_name: string;
|
|
@@ -3235,7 +3273,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3235
3273
|
created_at: string;
|
|
3236
3274
|
} | {
|
|
3237
3275
|
message: string;
|
|
3238
|
-
warning_code: "
|
|
3276
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3239
3277
|
created_at: string;
|
|
3240
3278
|
})[];
|
|
3241
3279
|
display_name: string;
|
|
@@ -3452,14 +3490,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3452
3490
|
created_at: z.ZodString;
|
|
3453
3491
|
message: z.ZodString;
|
|
3454
3492
|
}, {
|
|
3455
|
-
warning_code: z.ZodLiteral<"
|
|
3493
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
3456
3494
|
}>, "strip", z.ZodTypeAny, {
|
|
3457
3495
|
message: string;
|
|
3458
|
-
warning_code: "
|
|
3496
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3459
3497
|
created_at: string;
|
|
3460
3498
|
}, {
|
|
3461
3499
|
message: string;
|
|
3462
|
-
warning_code: "
|
|
3500
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3463
3501
|
created_at: string;
|
|
3464
3502
|
}>]>, "many">;
|
|
3465
3503
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3519,7 +3557,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3519
3557
|
created_at: string;
|
|
3520
3558
|
} | {
|
|
3521
3559
|
message: string;
|
|
3522
|
-
warning_code: "
|
|
3560
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3523
3561
|
created_at: string;
|
|
3524
3562
|
})[];
|
|
3525
3563
|
display_name: string;
|
|
@@ -3577,7 +3615,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3577
3615
|
created_at: string;
|
|
3578
3616
|
} | {
|
|
3579
3617
|
message: string;
|
|
3580
|
-
warning_code: "
|
|
3618
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3581
3619
|
created_at: string;
|
|
3582
3620
|
})[];
|
|
3583
3621
|
display_name: string;
|
|
@@ -3696,14 +3734,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3696
3734
|
created_at: z.ZodString;
|
|
3697
3735
|
message: z.ZodString;
|
|
3698
3736
|
}, {
|
|
3699
|
-
warning_code: z.ZodLiteral<"
|
|
3737
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
3700
3738
|
}>, "strip", z.ZodTypeAny, {
|
|
3701
3739
|
message: string;
|
|
3702
|
-
warning_code: "
|
|
3740
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3703
3741
|
created_at: string;
|
|
3704
3742
|
}, {
|
|
3705
3743
|
message: string;
|
|
3706
|
-
warning_code: "
|
|
3744
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3707
3745
|
created_at: string;
|
|
3708
3746
|
}>]>, "many">;
|
|
3709
3747
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3763,7 +3801,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3763
3801
|
created_at: string;
|
|
3764
3802
|
} | {
|
|
3765
3803
|
message: string;
|
|
3766
|
-
warning_code: "
|
|
3804
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3767
3805
|
created_at: string;
|
|
3768
3806
|
})[];
|
|
3769
3807
|
display_name: string;
|
|
@@ -3821,7 +3859,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3821
3859
|
created_at: string;
|
|
3822
3860
|
} | {
|
|
3823
3861
|
message: string;
|
|
3824
|
-
warning_code: "
|
|
3862
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3825
3863
|
created_at: string;
|
|
3826
3864
|
})[];
|
|
3827
3865
|
display_name: string;
|
|
@@ -3884,7 +3922,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3884
3922
|
created_at: string;
|
|
3885
3923
|
} | {
|
|
3886
3924
|
message: string;
|
|
3887
|
-
warning_code: "
|
|
3925
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3888
3926
|
created_at: string;
|
|
3889
3927
|
})[];
|
|
3890
3928
|
display_name: string;
|
|
@@ -3942,7 +3980,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3942
3980
|
created_at: string;
|
|
3943
3981
|
} | {
|
|
3944
3982
|
message: string;
|
|
3945
|
-
warning_code: "
|
|
3983
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
3946
3984
|
created_at: string;
|
|
3947
3985
|
})[];
|
|
3948
3986
|
display_name: string;
|
|
@@ -4006,7 +4044,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4006
4044
|
created_at: string;
|
|
4007
4045
|
} | {
|
|
4008
4046
|
message: string;
|
|
4009
|
-
warning_code: "
|
|
4047
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
4010
4048
|
created_at: string;
|
|
4011
4049
|
})[];
|
|
4012
4050
|
display_name: string;
|
|
@@ -4064,7 +4102,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
4064
4102
|
created_at: string;
|
|
4065
4103
|
} | {
|
|
4066
4104
|
message: string;
|
|
4067
|
-
warning_code: "
|
|
4105
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
4068
4106
|
created_at: string;
|
|
4069
4107
|
})[];
|
|
4070
4108
|
display_name: string;
|
|
@@ -12810,6 +12848,31 @@ declare const _default: {
|
|
|
12810
12848
|
description: string;
|
|
12811
12849
|
type: string;
|
|
12812
12850
|
};
|
|
12851
|
+
warnings: {
|
|
12852
|
+
description: string;
|
|
12853
|
+
items: {
|
|
12854
|
+
description: string;
|
|
12855
|
+
properties: {
|
|
12856
|
+
created_at: {
|
|
12857
|
+
description: string;
|
|
12858
|
+
format: string;
|
|
12859
|
+
type: string;
|
|
12860
|
+
};
|
|
12861
|
+
message: {
|
|
12862
|
+
description: string;
|
|
12863
|
+
type: string;
|
|
12864
|
+
};
|
|
12865
|
+
warning_code: {
|
|
12866
|
+
description: string;
|
|
12867
|
+
enum: string[];
|
|
12868
|
+
type: string;
|
|
12869
|
+
};
|
|
12870
|
+
};
|
|
12871
|
+
required: string[];
|
|
12872
|
+
type: string;
|
|
12873
|
+
};
|
|
12874
|
+
type: string;
|
|
12875
|
+
};
|
|
12813
12876
|
workspace_id: {
|
|
12814
12877
|
description: string;
|
|
12815
12878
|
format: string;
|
|
@@ -13126,18 +13189,6 @@ declare const _default: {
|
|
|
13126
13189
|
format: string;
|
|
13127
13190
|
type: string;
|
|
13128
13191
|
};
|
|
13129
|
-
inner_access_points_names: {
|
|
13130
|
-
items: {
|
|
13131
|
-
type: string;
|
|
13132
|
-
};
|
|
13133
|
-
type: string;
|
|
13134
|
-
};
|
|
13135
|
-
lease_ids: {
|
|
13136
|
-
items: {
|
|
13137
|
-
type: string;
|
|
13138
|
-
};
|
|
13139
|
-
type: string;
|
|
13140
|
-
};
|
|
13141
13192
|
};
|
|
13142
13193
|
required: string[];
|
|
13143
13194
|
type: string;
|
|
@@ -22314,6 +22365,31 @@ declare const _default: {
|
|
|
22314
22365
|
description: string;
|
|
22315
22366
|
type: string;
|
|
22316
22367
|
};
|
|
22368
|
+
warnings: {
|
|
22369
|
+
description: string;
|
|
22370
|
+
items: {
|
|
22371
|
+
description: string;
|
|
22372
|
+
properties: {
|
|
22373
|
+
created_at: {
|
|
22374
|
+
description: string;
|
|
22375
|
+
format: string;
|
|
22376
|
+
type: string;
|
|
22377
|
+
};
|
|
22378
|
+
message: {
|
|
22379
|
+
description: string;
|
|
22380
|
+
type: string;
|
|
22381
|
+
};
|
|
22382
|
+
warning_code: {
|
|
22383
|
+
description: string;
|
|
22384
|
+
enum: string[];
|
|
22385
|
+
type: string;
|
|
22386
|
+
};
|
|
22387
|
+
};
|
|
22388
|
+
required: string[];
|
|
22389
|
+
type: string;
|
|
22390
|
+
};
|
|
22391
|
+
type: string;
|
|
22392
|
+
};
|
|
22317
22393
|
workspace_id: {
|
|
22318
22394
|
description: string;
|
|
22319
22395
|
format: string;
|
|
@@ -22443,6 +22519,31 @@ declare const _default: {
|
|
|
22443
22519
|
description: string;
|
|
22444
22520
|
type: string;
|
|
22445
22521
|
};
|
|
22522
|
+
warnings: {
|
|
22523
|
+
description: string;
|
|
22524
|
+
items: {
|
|
22525
|
+
description: string;
|
|
22526
|
+
properties: {
|
|
22527
|
+
created_at: {
|
|
22528
|
+
description: string;
|
|
22529
|
+
format: string;
|
|
22530
|
+
type: string;
|
|
22531
|
+
};
|
|
22532
|
+
message: {
|
|
22533
|
+
description: string;
|
|
22534
|
+
type: string;
|
|
22535
|
+
};
|
|
22536
|
+
warning_code: {
|
|
22537
|
+
description: string;
|
|
22538
|
+
enum: string[];
|
|
22539
|
+
type: string;
|
|
22540
|
+
};
|
|
22541
|
+
};
|
|
22542
|
+
required: string[];
|
|
22543
|
+
type: string;
|
|
22544
|
+
};
|
|
22545
|
+
type: string;
|
|
22546
|
+
};
|
|
22446
22547
|
workspace_id: {
|
|
22447
22548
|
description: string;
|
|
22448
22549
|
format: string;
|
|
@@ -36218,7 +36319,7 @@ interface Routes {
|
|
|
36218
36319
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36219
36320
|
message: string;
|
|
36220
36321
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36221
|
-
warning_code: '
|
|
36322
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
36222
36323
|
}>;
|
|
36223
36324
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36224
36325
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36311,7 +36412,7 @@ interface Routes {
|
|
|
36311
36412
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36312
36413
|
message: string;
|
|
36313
36414
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36314
|
-
warning_code: '
|
|
36415
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
36315
36416
|
}>;
|
|
36316
36417
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36317
36418
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36441,7 +36542,7 @@ interface Routes {
|
|
|
36441
36542
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36442
36543
|
message: string;
|
|
36443
36544
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36444
|
-
warning_code: '
|
|
36545
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
36445
36546
|
}>;
|
|
36446
36547
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36447
36548
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36534,7 +36635,7 @@ interface Routes {
|
|
|
36534
36635
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36535
36636
|
message: string;
|
|
36536
36637
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36537
|
-
warning_code: '
|
|
36638
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
36538
36639
|
}>;
|
|
36539
36640
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
36540
36641
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37173,7 +37274,7 @@ interface Routes {
|
|
|
37173
37274
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37174
37275
|
message: string;
|
|
37175
37276
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37176
|
-
warning_code: '
|
|
37277
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
37177
37278
|
}>;
|
|
37178
37279
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37179
37280
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37266,7 +37367,7 @@ interface Routes {
|
|
|
37266
37367
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37267
37368
|
message: string;
|
|
37268
37369
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37269
|
-
warning_code: '
|
|
37370
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
37270
37371
|
}>;
|
|
37271
37372
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37272
37373
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37396,7 +37497,7 @@ interface Routes {
|
|
|
37396
37497
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37397
37498
|
message: string;
|
|
37398
37499
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37399
|
-
warning_code: '
|
|
37500
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
37400
37501
|
}>;
|
|
37401
37502
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37402
37503
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37489,7 +37590,7 @@ interface Routes {
|
|
|
37489
37590
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37490
37591
|
message: string;
|
|
37491
37592
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37492
|
-
warning_code: '
|
|
37593
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
37493
37594
|
}>;
|
|
37494
37595
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
37495
37596
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38346,7 +38447,7 @@ interface Routes {
|
|
|
38346
38447
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38347
38448
|
message: string;
|
|
38348
38449
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38349
|
-
warning_code: '
|
|
38450
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
38350
38451
|
}>;
|
|
38351
38452
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38352
38453
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38439,7 +38540,7 @@ interface Routes {
|
|
|
38439
38540
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38440
38541
|
message: string;
|
|
38441
38542
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38442
|
-
warning_code: '
|
|
38543
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
38443
38544
|
}>;
|
|
38444
38545
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38445
38546
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38569,7 +38670,7 @@ interface Routes {
|
|
|
38569
38670
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38570
38671
|
message: string;
|
|
38571
38672
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38572
|
-
warning_code: '
|
|
38673
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
38573
38674
|
}>;
|
|
38574
38675
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38575
38676
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38662,7 +38763,7 @@ interface Routes {
|
|
|
38662
38763
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38663
38764
|
message: string;
|
|
38664
38765
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38665
|
-
warning_code: '
|
|
38766
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
38666
38767
|
}>;
|
|
38667
38768
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
38668
38769
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39288,7 +39389,7 @@ interface Routes {
|
|
|
39288
39389
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39289
39390
|
message: string;
|
|
39290
39391
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39291
|
-
warning_code: '
|
|
39392
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
39292
39393
|
}>;
|
|
39293
39394
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39294
39395
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39381,7 +39482,7 @@ interface Routes {
|
|
|
39381
39482
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39382
39483
|
message: string;
|
|
39383
39484
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39384
|
-
warning_code: '
|
|
39485
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
39385
39486
|
}>;
|
|
39386
39487
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39387
39488
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39511,7 +39612,7 @@ interface Routes {
|
|
|
39511
39612
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39512
39613
|
message: string;
|
|
39513
39614
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39514
|
-
warning_code: '
|
|
39615
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
39515
39616
|
}>;
|
|
39516
39617
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39517
39618
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39604,7 +39705,7 @@ interface Routes {
|
|
|
39604
39705
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39605
39706
|
message: string;
|
|
39606
39707
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39607
|
-
warning_code: '
|
|
39708
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
39608
39709
|
}>;
|
|
39609
39710
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
39610
39711
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39971,17 +40072,26 @@ interface Routes {
|
|
|
39971
40072
|
name: string;
|
|
39972
40073
|
/**
|
|
39973
40074
|
* @deprecated Use `external_type`. */
|
|
39974
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40075
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
39975
40076
|
/**
|
|
39976
40077
|
* @deprecated Use `external_type_display_name`. */
|
|
39977
40078
|
access_group_type_display_name: string;
|
|
39978
40079
|
display_name: string;
|
|
39979
40080
|
/** Brand-specific terminology for the access group type. */
|
|
39980
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40081
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
39981
40082
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
39982
40083
|
external_type_display_name: string;
|
|
39983
40084
|
/** Date and time at which the access group was created. */
|
|
39984
40085
|
created_at: string;
|
|
40086
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40087
|
+
warnings: Array<{
|
|
40088
|
+
/** Date and time at which Seam created the warning. */
|
|
40089
|
+
created_at: string;
|
|
40090
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40091
|
+
message: string;
|
|
40092
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40093
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40094
|
+
}>;
|
|
39985
40095
|
is_managed: true;
|
|
39986
40096
|
};
|
|
39987
40097
|
};
|
|
@@ -40010,17 +40120,26 @@ interface Routes {
|
|
|
40010
40120
|
name: string;
|
|
40011
40121
|
/**
|
|
40012
40122
|
* @deprecated Use `external_type`. */
|
|
40013
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40123
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40014
40124
|
/**
|
|
40015
40125
|
* @deprecated Use `external_type_display_name`. */
|
|
40016
40126
|
access_group_type_display_name: string;
|
|
40017
40127
|
display_name: string;
|
|
40018
40128
|
/** Brand-specific terminology for the access group type. */
|
|
40019
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40129
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40020
40130
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40021
40131
|
external_type_display_name: string;
|
|
40022
40132
|
/** Date and time at which the access group was created. */
|
|
40023
40133
|
created_at: string;
|
|
40134
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40135
|
+
warnings: Array<{
|
|
40136
|
+
/** Date and time at which Seam created the warning. */
|
|
40137
|
+
created_at: string;
|
|
40138
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40139
|
+
message: string;
|
|
40140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40141
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40142
|
+
}>;
|
|
40024
40143
|
is_managed: true;
|
|
40025
40144
|
}>;
|
|
40026
40145
|
};
|
|
@@ -40076,8 +40195,6 @@ interface Routes {
|
|
|
40076
40195
|
dormakaba_community_metadata?: {
|
|
40077
40196
|
access_point_name: string;
|
|
40078
40197
|
common_area_number?: number | undefined;
|
|
40079
|
-
inner_access_points_names?: string[] | undefined;
|
|
40080
|
-
lease_ids?: string[] | undefined;
|
|
40081
40198
|
} | undefined;
|
|
40082
40199
|
assa_abloy_vostio_metadata?: {
|
|
40083
40200
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -40233,17 +40350,26 @@ interface Routes {
|
|
|
40233
40350
|
name: string;
|
|
40234
40351
|
/**
|
|
40235
40352
|
* @deprecated Use `external_type`. */
|
|
40236
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40353
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40237
40354
|
/**
|
|
40238
40355
|
* @deprecated Use `external_type_display_name`. */
|
|
40239
40356
|
access_group_type_display_name: string;
|
|
40240
40357
|
display_name: string;
|
|
40241
40358
|
/** Brand-specific terminology for the access group type. */
|
|
40242
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40359
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40243
40360
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40244
40361
|
external_type_display_name: string;
|
|
40245
40362
|
/** Date and time at which the access group was created. */
|
|
40246
40363
|
created_at: string;
|
|
40364
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40365
|
+
warnings: Array<{
|
|
40366
|
+
/** Date and time at which Seam created the warning. */
|
|
40367
|
+
created_at: string;
|
|
40368
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40369
|
+
message: string;
|
|
40370
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40371
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40372
|
+
}>;
|
|
40247
40373
|
is_managed: false;
|
|
40248
40374
|
};
|
|
40249
40375
|
};
|
|
@@ -40272,17 +40398,26 @@ interface Routes {
|
|
|
40272
40398
|
name: string;
|
|
40273
40399
|
/**
|
|
40274
40400
|
* @deprecated Use `external_type`. */
|
|
40275
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40401
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40276
40402
|
/**
|
|
40277
40403
|
* @deprecated Use `external_type_display_name`. */
|
|
40278
40404
|
access_group_type_display_name: string;
|
|
40279
40405
|
display_name: string;
|
|
40280
40406
|
/** Brand-specific terminology for the access group type. */
|
|
40281
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group';
|
|
40407
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group';
|
|
40282
40408
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
40283
40409
|
external_type_display_name: string;
|
|
40284
40410
|
/** Date and time at which the access group was created. */
|
|
40285
40411
|
created_at: string;
|
|
40412
|
+
/** Warnings associated with the `acs_access_group`. */
|
|
40413
|
+
warnings: Array<{
|
|
40414
|
+
/** Date and time at which Seam created the warning. */
|
|
40415
|
+
created_at: string;
|
|
40416
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40417
|
+
message: string;
|
|
40418
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40419
|
+
warning_code: 'unknown_issue_with_acs_access_group';
|
|
40420
|
+
}>;
|
|
40286
40421
|
is_managed: false;
|
|
40287
40422
|
}>;
|
|
40288
40423
|
};
|
|
@@ -40419,7 +40554,7 @@ interface Routes {
|
|
|
40419
40554
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40420
40555
|
message: string;
|
|
40421
40556
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40422
|
-
warning_code: '
|
|
40557
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
40423
40558
|
}>;
|
|
40424
40559
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40425
40560
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40562,7 +40697,7 @@ interface Routes {
|
|
|
40562
40697
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40563
40698
|
message: string;
|
|
40564
40699
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40565
|
-
warning_code: '
|
|
40700
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
40566
40701
|
}>;
|
|
40567
40702
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40568
40703
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40679,7 +40814,7 @@ interface Routes {
|
|
|
40679
40814
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40680
40815
|
message: string;
|
|
40681
40816
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40682
|
-
warning_code: '
|
|
40817
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
40683
40818
|
}>;
|
|
40684
40819
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40685
40820
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40800,7 +40935,7 @@ interface Routes {
|
|
|
40800
40935
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40801
40936
|
message: string;
|
|
40802
40937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40803
|
-
warning_code: '
|
|
40938
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
40804
40939
|
}>;
|
|
40805
40940
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40806
40941
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40925,7 +41060,7 @@ interface Routes {
|
|
|
40925
41060
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40926
41061
|
message: string;
|
|
40927
41062
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40928
|
-
warning_code: '
|
|
41063
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
40929
41064
|
}>;
|
|
40930
41065
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
40931
41066
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40999,8 +41134,6 @@ interface Routes {
|
|
|
40999
41134
|
dormakaba_community_metadata?: {
|
|
41000
41135
|
access_point_name: string;
|
|
41001
41136
|
common_area_number?: number | undefined;
|
|
41002
|
-
inner_access_points_names?: string[] | undefined;
|
|
41003
|
-
lease_ids?: string[] | undefined;
|
|
41004
41137
|
} | undefined;
|
|
41005
41138
|
assa_abloy_vostio_metadata?: {
|
|
41006
41139
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -41105,7 +41238,7 @@ interface Routes {
|
|
|
41105
41238
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41106
41239
|
message: string;
|
|
41107
41240
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41108
|
-
warning_code: '
|
|
41241
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41109
41242
|
}>;
|
|
41110
41243
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41111
41244
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41214,7 +41347,7 @@ interface Routes {
|
|
|
41214
41347
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41215
41348
|
message: string;
|
|
41216
41349
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41217
|
-
warning_code: '
|
|
41350
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41218
41351
|
}>;
|
|
41219
41352
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41220
41353
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41332,7 +41465,7 @@ interface Routes {
|
|
|
41332
41465
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41333
41466
|
message: string;
|
|
41334
41467
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41335
|
-
warning_code: '
|
|
41468
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41336
41469
|
}>;
|
|
41337
41470
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41338
41471
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41445,7 +41578,7 @@ interface Routes {
|
|
|
41445
41578
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41446
41579
|
message: string;
|
|
41447
41580
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41448
|
-
warning_code: '
|
|
41581
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41449
41582
|
}>;
|
|
41450
41583
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41451
41584
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41644,7 +41777,7 @@ interface Routes {
|
|
|
41644
41777
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41645
41778
|
message: string;
|
|
41646
41779
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41647
|
-
warning_code: '
|
|
41780
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41648
41781
|
}>;
|
|
41649
41782
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41650
41783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41737,7 +41870,7 @@ interface Routes {
|
|
|
41737
41870
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41738
41871
|
message: string;
|
|
41739
41872
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41740
|
-
warning_code: '
|
|
41873
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41741
41874
|
}>;
|
|
41742
41875
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41743
41876
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41867,7 +42000,7 @@ interface Routes {
|
|
|
41867
42000
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41868
42001
|
message: string;
|
|
41869
42002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41870
|
-
warning_code: '
|
|
42003
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41871
42004
|
}>;
|
|
41872
42005
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41873
42006
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41960,7 +42093,7 @@ interface Routes {
|
|
|
41960
42093
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41961
42094
|
message: string;
|
|
41962
42095
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41963
|
-
warning_code: '
|
|
42096
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
41964
42097
|
}>;
|
|
41965
42098
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
41966
42099
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42489,7 +42622,7 @@ interface Routes {
|
|
|
42489
42622
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42490
42623
|
message: string;
|
|
42491
42624
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42492
|
-
warning_code: '
|
|
42625
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
42493
42626
|
}>;
|
|
42494
42627
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42495
42628
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42582,7 +42715,7 @@ interface Routes {
|
|
|
42582
42715
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42583
42716
|
message: string;
|
|
42584
42717
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42585
|
-
warning_code: '
|
|
42718
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
42586
42719
|
}>;
|
|
42587
42720
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42588
42721
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42712,7 +42845,7 @@ interface Routes {
|
|
|
42712
42845
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42713
42846
|
message: string;
|
|
42714
42847
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42715
|
-
warning_code: '
|
|
42848
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
42716
42849
|
}>;
|
|
42717
42850
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42718
42851
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42805,7 +42938,7 @@ interface Routes {
|
|
|
42805
42938
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42806
42939
|
message: string;
|
|
42807
42940
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42808
|
-
warning_code: '
|
|
42941
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
42809
42942
|
}>;
|
|
42810
42943
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
42811
42944
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -43234,8 +43367,6 @@ interface Routes {
|
|
|
43234
43367
|
dormakaba_community_metadata?: {
|
|
43235
43368
|
access_point_name: string;
|
|
43236
43369
|
common_area_number?: number | undefined;
|
|
43237
|
-
inner_access_points_names?: string[] | undefined;
|
|
43238
|
-
lease_ids?: string[] | undefined;
|
|
43239
43370
|
} | undefined;
|
|
43240
43371
|
assa_abloy_vostio_metadata?: {
|
|
43241
43372
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43315,8 +43446,6 @@ interface Routes {
|
|
|
43315
43446
|
dormakaba_community_metadata?: {
|
|
43316
43447
|
access_point_name: string;
|
|
43317
43448
|
common_area_number?: number | undefined;
|
|
43318
|
-
inner_access_points_names?: string[] | undefined;
|
|
43319
|
-
lease_ids?: string[] | undefined;
|
|
43320
43449
|
} | undefined;
|
|
43321
43450
|
assa_abloy_vostio_metadata?: {
|
|
43322
43451
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -43417,7 +43546,7 @@ interface Routes {
|
|
|
43417
43546
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43418
43547
|
message: string;
|
|
43419
43548
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43420
|
-
warning_code: '
|
|
43549
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
43421
43550
|
}>;
|
|
43422
43551
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
43423
43552
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44236,8 +44365,6 @@ interface Routes {
|
|
|
44236
44365
|
dormakaba_community_metadata?: {
|
|
44237
44366
|
access_point_name: string;
|
|
44238
44367
|
common_area_number?: number | undefined;
|
|
44239
|
-
inner_access_points_names?: string[] | undefined;
|
|
44240
|
-
lease_ids?: string[] | undefined;
|
|
44241
44368
|
} | undefined;
|
|
44242
44369
|
assa_abloy_vostio_metadata?: {
|
|
44243
44370
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -44713,7 +44840,7 @@ interface Routes {
|
|
|
44713
44840
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44714
44841
|
message: string;
|
|
44715
44842
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44716
|
-
warning_code: '
|
|
44843
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
44717
44844
|
}>;
|
|
44718
44845
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44719
44846
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44806,7 +44933,7 @@ interface Routes {
|
|
|
44806
44933
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44807
44934
|
message: string;
|
|
44808
44935
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44809
|
-
warning_code: '
|
|
44936
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
44810
44937
|
}>;
|
|
44811
44938
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44812
44939
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44936,7 +45063,7 @@ interface Routes {
|
|
|
44936
45063
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44937
45064
|
message: string;
|
|
44938
45065
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44939
|
-
warning_code: '
|
|
45066
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
44940
45067
|
}>;
|
|
44941
45068
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
44942
45069
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45029,7 +45156,7 @@ interface Routes {
|
|
|
45029
45156
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45030
45157
|
message: string;
|
|
45031
45158
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45032
|
-
warning_code: '
|
|
45159
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
45033
45160
|
}>;
|
|
45034
45161
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45035
45162
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45517,7 +45644,7 @@ interface Routes {
|
|
|
45517
45644
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45518
45645
|
message: string;
|
|
45519
45646
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45520
|
-
warning_code: '
|
|
45647
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
45521
45648
|
}>;
|
|
45522
45649
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45523
45650
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45610,7 +45737,7 @@ interface Routes {
|
|
|
45610
45737
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45611
45738
|
message: string;
|
|
45612
45739
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45613
|
-
warning_code: '
|
|
45740
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
45614
45741
|
}>;
|
|
45615
45742
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45616
45743
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45740,7 +45867,7 @@ interface Routes {
|
|
|
45740
45867
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45741
45868
|
message: string;
|
|
45742
45869
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45743
|
-
warning_code: '
|
|
45870
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
45744
45871
|
}>;
|
|
45745
45872
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45746
45873
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45833,7 +45960,7 @@ interface Routes {
|
|
|
45833
45960
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45834
45961
|
message: string;
|
|
45835
45962
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45836
|
-
warning_code: '
|
|
45963
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
45837
45964
|
}>;
|
|
45838
45965
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
45839
45966
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52589,7 +52716,7 @@ interface Routes {
|
|
|
52589
52716
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52590
52717
|
message: string;
|
|
52591
52718
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52592
|
-
warning_code: '
|
|
52719
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
52593
52720
|
}>;
|
|
52594
52721
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52595
52722
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52682,7 +52809,7 @@ interface Routes {
|
|
|
52682
52809
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52683
52810
|
message: string;
|
|
52684
52811
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52685
|
-
warning_code: '
|
|
52812
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
52686
52813
|
}>;
|
|
52687
52814
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52688
52815
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52812,7 +52939,7 @@ interface Routes {
|
|
|
52812
52939
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52813
52940
|
message: string;
|
|
52814
52941
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52815
|
-
warning_code: '
|
|
52942
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
52816
52943
|
}>;
|
|
52817
52944
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52818
52945
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52905,7 +53032,7 @@ interface Routes {
|
|
|
52905
53032
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52906
53033
|
message: string;
|
|
52907
53034
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52908
|
-
warning_code: '
|
|
53035
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
52909
53036
|
}>;
|
|
52910
53037
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
52911
53038
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53394,7 +53521,7 @@ interface Routes {
|
|
|
53394
53521
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53395
53522
|
message: string;
|
|
53396
53523
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53397
|
-
warning_code: '
|
|
53524
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
53398
53525
|
}>;
|
|
53399
53526
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53400
53527
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53487,7 +53614,7 @@ interface Routes {
|
|
|
53487
53614
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53488
53615
|
message: string;
|
|
53489
53616
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53490
|
-
warning_code: '
|
|
53617
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
53491
53618
|
}>;
|
|
53492
53619
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53493
53620
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53617,7 +53744,7 @@ interface Routes {
|
|
|
53617
53744
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53618
53745
|
message: string;
|
|
53619
53746
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53620
|
-
warning_code: '
|
|
53747
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
53621
53748
|
}>;
|
|
53622
53749
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53623
53750
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53710,7 +53837,7 @@ interface Routes {
|
|
|
53710
53837
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53711
53838
|
message: string;
|
|
53712
53839
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53713
|
-
warning_code: '
|
|
53840
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
53714
53841
|
}>;
|
|
53715
53842
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
53716
53843
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55309,7 +55436,7 @@ interface Routes {
|
|
|
55309
55436
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55310
55437
|
message: string;
|
|
55311
55438
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55312
|
-
warning_code: '
|
|
55439
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
55313
55440
|
}>;
|
|
55314
55441
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55315
55442
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55402,7 +55529,7 @@ interface Routes {
|
|
|
55402
55529
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55403
55530
|
message: string;
|
|
55404
55531
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55405
|
-
warning_code: '
|
|
55532
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
55406
55533
|
}>;
|
|
55407
55534
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55408
55535
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55532,7 +55659,7 @@ interface Routes {
|
|
|
55532
55659
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55533
55660
|
message: string;
|
|
55534
55661
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55535
|
-
warning_code: '
|
|
55662
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
55536
55663
|
}>;
|
|
55537
55664
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55538
55665
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55625,7 +55752,7 @@ interface Routes {
|
|
|
55625
55752
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55626
55753
|
message: string;
|
|
55627
55754
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55628
|
-
warning_code: '
|
|
55755
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
55629
55756
|
}>;
|
|
55630
55757
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
55631
55758
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56124,7 +56251,7 @@ interface Routes {
|
|
|
56124
56251
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56125
56252
|
message: string;
|
|
56126
56253
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56127
|
-
warning_code: '
|
|
56254
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
56128
56255
|
}>;
|
|
56129
56256
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56130
56257
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56217,7 +56344,7 @@ interface Routes {
|
|
|
56217
56344
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56218
56345
|
message: string;
|
|
56219
56346
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56220
|
-
warning_code: '
|
|
56347
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
56221
56348
|
}>;
|
|
56222
56349
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56223
56350
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56347,7 +56474,7 @@ interface Routes {
|
|
|
56347
56474
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56348
56475
|
message: string;
|
|
56349
56476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56350
|
-
warning_code: '
|
|
56477
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
56351
56478
|
}>;
|
|
56352
56479
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56353
56480
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56440,7 +56567,7 @@ interface Routes {
|
|
|
56440
56567
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56441
56568
|
message: string;
|
|
56442
56569
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56443
|
-
warning_code: '
|
|
56570
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
56444
56571
|
}>;
|
|
56445
56572
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56446
56573
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56978,7 +57105,7 @@ interface Routes {
|
|
|
56978
57105
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56979
57106
|
message: string;
|
|
56980
57107
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56981
|
-
warning_code: '
|
|
57108
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
56982
57109
|
}>;
|
|
56983
57110
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
56984
57111
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57071,7 +57198,7 @@ interface Routes {
|
|
|
57071
57198
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57072
57199
|
message: string;
|
|
57073
57200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57074
|
-
warning_code: '
|
|
57201
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
57075
57202
|
}>;
|
|
57076
57203
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57077
57204
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57201,7 +57328,7 @@ interface Routes {
|
|
|
57201
57328
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57202
57329
|
message: string;
|
|
57203
57330
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57204
|
-
warning_code: '
|
|
57331
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
57205
57332
|
}>;
|
|
57206
57333
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57207
57334
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57294,7 +57421,7 @@ interface Routes {
|
|
|
57294
57421
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57295
57422
|
message: string;
|
|
57296
57423
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57297
|
-
warning_code: '
|
|
57424
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
57298
57425
|
}>;
|
|
57299
57426
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57300
57427
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57967,7 +58094,7 @@ interface Routes {
|
|
|
57967
58094
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57968
58095
|
message: string;
|
|
57969
58096
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57970
|
-
warning_code: '
|
|
58097
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
57971
58098
|
}>;
|
|
57972
58099
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
57973
58100
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58060,7 +58187,7 @@ interface Routes {
|
|
|
58060
58187
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58061
58188
|
message: string;
|
|
58062
58189
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58063
|
-
warning_code: '
|
|
58190
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
58064
58191
|
}>;
|
|
58065
58192
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58066
58193
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58190,7 +58317,7 @@ interface Routes {
|
|
|
58190
58317
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58191
58318
|
message: string;
|
|
58192
58319
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58193
|
-
warning_code: '
|
|
58320
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
58194
58321
|
}>;
|
|
58195
58322
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58196
58323
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58283,7 +58410,7 @@ interface Routes {
|
|
|
58283
58410
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58284
58411
|
message: string;
|
|
58285
58412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58286
|
-
warning_code: '
|
|
58413
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
58287
58414
|
}>;
|
|
58288
58415
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58289
58416
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58778,7 +58905,7 @@ interface Routes {
|
|
|
58778
58905
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58779
58906
|
message: string;
|
|
58780
58907
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58781
|
-
warning_code: '
|
|
58908
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
58782
58909
|
}>;
|
|
58783
58910
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58784
58911
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58871,7 +58998,7 @@ interface Routes {
|
|
|
58871
58998
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58872
58999
|
message: string;
|
|
58873
59000
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58874
|
-
warning_code: '
|
|
59001
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
58875
59002
|
}>;
|
|
58876
59003
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
58877
59004
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59001,7 +59128,7 @@ interface Routes {
|
|
|
59001
59128
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59002
59129
|
message: string;
|
|
59003
59130
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59004
|
-
warning_code: '
|
|
59131
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
59005
59132
|
}>;
|
|
59006
59133
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59007
59134
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59094,7 +59221,7 @@ interface Routes {
|
|
|
59094
59221
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59095
59222
|
message: string;
|
|
59096
59223
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59097
|
-
warning_code: '
|
|
59224
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
59098
59225
|
}>;
|
|
59099
59226
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
59100
59227
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60166,7 +60293,7 @@ interface Routes {
|
|
|
60166
60293
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60167
60294
|
message: string;
|
|
60168
60295
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60169
|
-
warning_code: '
|
|
60296
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
60170
60297
|
}>;
|
|
60171
60298
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60172
60299
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60259,7 +60386,7 @@ interface Routes {
|
|
|
60259
60386
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60260
60387
|
message: string;
|
|
60261
60388
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60262
|
-
warning_code: '
|
|
60389
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
60263
60390
|
}>;
|
|
60264
60391
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60265
60392
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60389,7 +60516,7 @@ interface Routes {
|
|
|
60389
60516
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60390
60517
|
message: string;
|
|
60391
60518
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60392
|
-
warning_code: '
|
|
60519
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
60393
60520
|
}>;
|
|
60394
60521
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60395
60522
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60482,7 +60609,7 @@ interface Routes {
|
|
|
60482
60609
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60483
60610
|
message: string;
|
|
60484
60611
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60485
|
-
warning_code: '
|
|
60612
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
60486
60613
|
}>;
|
|
60487
60614
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60488
60615
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60981,7 +61108,7 @@ interface Routes {
|
|
|
60981
61108
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60982
61109
|
message: string;
|
|
60983
61110
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60984
|
-
warning_code: '
|
|
61111
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
60985
61112
|
}>;
|
|
60986
61113
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
60987
61114
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61074,7 +61201,7 @@ interface Routes {
|
|
|
61074
61201
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61075
61202
|
message: string;
|
|
61076
61203
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61077
|
-
warning_code: '
|
|
61204
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
61078
61205
|
}>;
|
|
61079
61206
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61080
61207
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61204,7 +61331,7 @@ interface Routes {
|
|
|
61204
61331
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61205
61332
|
message: string;
|
|
61206
61333
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61207
|
-
warning_code: '
|
|
61334
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
61208
61335
|
}>;
|
|
61209
61336
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61210
61337
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -61297,7 +61424,7 @@ interface Routes {
|
|
|
61297
61424
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61298
61425
|
message: string;
|
|
61299
61426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61300
|
-
warning_code: '
|
|
61427
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
61301
61428
|
}>;
|
|
61302
61429
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
61303
61430
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62859,7 +62986,7 @@ interface Routes {
|
|
|
62859
62986
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62860
62987
|
message: string;
|
|
62861
62988
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62862
|
-
warning_code: '
|
|
62989
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
62863
62990
|
}>;
|
|
62864
62991
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62865
62992
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62952,7 +63079,7 @@ interface Routes {
|
|
|
62952
63079
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62953
63080
|
message: string;
|
|
62954
63081
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62955
|
-
warning_code: '
|
|
63082
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
62956
63083
|
}>;
|
|
62957
63084
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
62958
63085
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63082,7 +63209,7 @@ interface Routes {
|
|
|
63082
63209
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63083
63210
|
message: string;
|
|
63084
63211
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63085
|
-
warning_code: '
|
|
63212
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
63086
63213
|
}>;
|
|
63087
63214
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63088
63215
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63175,7 +63302,7 @@ interface Routes {
|
|
|
63175
63302
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63176
63303
|
message: string;
|
|
63177
63304
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63178
|
-
warning_code: '
|
|
63305
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
63179
63306
|
}>;
|
|
63180
63307
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63181
63308
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63841,7 +63968,7 @@ interface Routes {
|
|
|
63841
63968
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63842
63969
|
message: string;
|
|
63843
63970
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63844
|
-
warning_code: '
|
|
63971
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
63845
63972
|
}>;
|
|
63846
63973
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63847
63974
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63934,7 +64061,7 @@ interface Routes {
|
|
|
63934
64061
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63935
64062
|
message: string;
|
|
63936
64063
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63937
|
-
warning_code: '
|
|
64064
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
63938
64065
|
}>;
|
|
63939
64066
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
63940
64067
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64064,7 +64191,7 @@ interface Routes {
|
|
|
64064
64191
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64065
64192
|
message: string;
|
|
64066
64193
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64067
|
-
warning_code: '
|
|
64194
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64068
64195
|
}>;
|
|
64069
64196
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64070
64197
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64157,7 +64284,7 @@ interface Routes {
|
|
|
64157
64284
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64158
64285
|
message: string;
|
|
64159
64286
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64160
|
-
warning_code: '
|
|
64287
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64161
64288
|
}>;
|
|
64162
64289
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64163
64290
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64675,7 +64802,7 @@ interface Routes {
|
|
|
64675
64802
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64676
64803
|
message: string;
|
|
64677
64804
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64678
|
-
warning_code: '
|
|
64805
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64679
64806
|
}>;
|
|
64680
64807
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64681
64808
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64768,7 +64895,7 @@ interface Routes {
|
|
|
64768
64895
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64769
64896
|
message: string;
|
|
64770
64897
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64771
|
-
warning_code: '
|
|
64898
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64772
64899
|
}>;
|
|
64773
64900
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64774
64901
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64898,7 +65025,7 @@ interface Routes {
|
|
|
64898
65025
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64899
65026
|
message: string;
|
|
64900
65027
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64901
|
-
warning_code: '
|
|
65028
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64902
65029
|
}>;
|
|
64903
65030
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64904
65031
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64991,7 +65118,7 @@ interface Routes {
|
|
|
64991
65118
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64992
65119
|
message: string;
|
|
64993
65120
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64994
|
-
warning_code: '
|
|
65121
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
64995
65122
|
}>;
|
|
64996
65123
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
64997
65124
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67225,7 +67352,7 @@ interface Routes {
|
|
|
67225
67352
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67226
67353
|
message: string;
|
|
67227
67354
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67228
|
-
warning_code: '
|
|
67355
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
67229
67356
|
}>;
|
|
67230
67357
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
67231
67358
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67318,7 +67445,7 @@ interface Routes {
|
|
|
67318
67445
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67319
67446
|
message: string;
|
|
67320
67447
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67321
|
-
warning_code: '
|
|
67448
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
67322
67449
|
}>;
|
|
67323
67450
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
67324
67451
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67448,7 +67575,7 @@ interface Routes {
|
|
|
67448
67575
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67449
67576
|
message: string;
|
|
67450
67577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67451
|
-
warning_code: '
|
|
67578
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
67452
67579
|
}>;
|
|
67453
67580
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
67454
67581
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -67541,7 +67668,7 @@ interface Routes {
|
|
|
67541
67668
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67542
67669
|
message: string;
|
|
67543
67670
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67544
|
-
warning_code: '
|
|
67671
|
+
warning_code: 'unknown_issue_with_acs_credential';
|
|
67545
67672
|
}>;
|
|
67546
67673
|
/** Indicates whether the credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials). */
|
|
67547
67674
|
is_multi_phone_sync_credential?: boolean | undefined;
|