@seamapi/types 1.316.0 → 1.317.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +183 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1021 -189
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +12 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +132 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +58 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +74 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.js +171 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +662 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +15 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +199 -0
- package/src/lib/seam/connect/route-types.ts +752 -0
package/dist/connect.d.cts
CHANGED
|
@@ -467,6 +467,19 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
467
467
|
message: string;
|
|
468
468
|
warning_code: "being_deleted";
|
|
469
469
|
created_at: string;
|
|
470
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
471
|
+
created_at: z.ZodString;
|
|
472
|
+
message: z.ZodString;
|
|
473
|
+
}, {
|
|
474
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
475
|
+
}>, "strip", z.ZodTypeAny, {
|
|
476
|
+
message: string;
|
|
477
|
+
warning_code: "unknown_issue_with_credential";
|
|
478
|
+
created_at: string;
|
|
479
|
+
}, {
|
|
480
|
+
message: string;
|
|
481
|
+
warning_code: "unknown_issue_with_credential";
|
|
482
|
+
created_at: string;
|
|
470
483
|
}>]>, "many">;
|
|
471
484
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
472
485
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -523,6 +536,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
523
536
|
message: string;
|
|
524
537
|
warning_code: "being_deleted";
|
|
525
538
|
created_at: string;
|
|
539
|
+
} | {
|
|
540
|
+
message: string;
|
|
541
|
+
warning_code: "unknown_issue_with_credential";
|
|
542
|
+
created_at: string;
|
|
526
543
|
})[];
|
|
527
544
|
display_name: string;
|
|
528
545
|
workspace_id: string;
|
|
@@ -577,6 +594,10 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
577
594
|
message: string;
|
|
578
595
|
warning_code: "being_deleted";
|
|
579
596
|
created_at: string;
|
|
597
|
+
} | {
|
|
598
|
+
message: string;
|
|
599
|
+
warning_code: "unknown_issue_with_credential";
|
|
600
|
+
created_at: string;
|
|
580
601
|
})[];
|
|
581
602
|
display_name: string;
|
|
582
603
|
workspace_id: string;
|
|
@@ -691,6 +712,19 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
691
712
|
message: string;
|
|
692
713
|
warning_code: "being_deleted";
|
|
693
714
|
created_at: string;
|
|
715
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
716
|
+
created_at: z.ZodString;
|
|
717
|
+
message: z.ZodString;
|
|
718
|
+
}, {
|
|
719
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
720
|
+
}>, "strip", z.ZodTypeAny, {
|
|
721
|
+
message: string;
|
|
722
|
+
warning_code: "unknown_issue_with_credential";
|
|
723
|
+
created_at: string;
|
|
724
|
+
}, {
|
|
725
|
+
message: string;
|
|
726
|
+
warning_code: "unknown_issue_with_credential";
|
|
727
|
+
created_at: string;
|
|
694
728
|
}>]>, "many">;
|
|
695
729
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
696
730
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -747,6 +781,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
747
781
|
message: string;
|
|
748
782
|
warning_code: "being_deleted";
|
|
749
783
|
created_at: string;
|
|
784
|
+
} | {
|
|
785
|
+
message: string;
|
|
786
|
+
warning_code: "unknown_issue_with_credential";
|
|
787
|
+
created_at: string;
|
|
750
788
|
})[];
|
|
751
789
|
display_name: string;
|
|
752
790
|
workspace_id: string;
|
|
@@ -801,6 +839,10 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
801
839
|
message: string;
|
|
802
840
|
warning_code: "being_deleted";
|
|
803
841
|
created_at: string;
|
|
842
|
+
} | {
|
|
843
|
+
message: string;
|
|
844
|
+
warning_code: "unknown_issue_with_credential";
|
|
845
|
+
created_at: string;
|
|
804
846
|
})[];
|
|
805
847
|
display_name: string;
|
|
806
848
|
workspace_id: string;
|
|
@@ -2222,6 +2264,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2222
2264
|
message: string;
|
|
2223
2265
|
warning_code: "being_deleted";
|
|
2224
2266
|
created_at: string;
|
|
2267
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2268
|
+
created_at: z.ZodString;
|
|
2269
|
+
message: z.ZodString;
|
|
2270
|
+
}, {
|
|
2271
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
2272
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2273
|
+
message: string;
|
|
2274
|
+
warning_code: "unknown_issue_with_credential";
|
|
2275
|
+
created_at: string;
|
|
2276
|
+
}, {
|
|
2277
|
+
message: string;
|
|
2278
|
+
warning_code: "unknown_issue_with_credential";
|
|
2279
|
+
created_at: string;
|
|
2225
2280
|
}>]>, "many">;
|
|
2226
2281
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2227
2282
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2278,6 +2333,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2278
2333
|
message: string;
|
|
2279
2334
|
warning_code: "being_deleted";
|
|
2280
2335
|
created_at: string;
|
|
2336
|
+
} | {
|
|
2337
|
+
message: string;
|
|
2338
|
+
warning_code: "unknown_issue_with_credential";
|
|
2339
|
+
created_at: string;
|
|
2281
2340
|
})[];
|
|
2282
2341
|
display_name: string;
|
|
2283
2342
|
workspace_id: string;
|
|
@@ -2332,6 +2391,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2332
2391
|
message: string;
|
|
2333
2392
|
warning_code: "being_deleted";
|
|
2334
2393
|
created_at: string;
|
|
2394
|
+
} | {
|
|
2395
|
+
message: string;
|
|
2396
|
+
warning_code: "unknown_issue_with_credential";
|
|
2397
|
+
created_at: string;
|
|
2335
2398
|
})[];
|
|
2336
2399
|
display_name: string;
|
|
2337
2400
|
workspace_id: string;
|
|
@@ -2445,6 +2508,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2445
2508
|
message: string;
|
|
2446
2509
|
warning_code: "being_deleted";
|
|
2447
2510
|
created_at: string;
|
|
2511
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2512
|
+
created_at: z.ZodString;
|
|
2513
|
+
message: z.ZodString;
|
|
2514
|
+
}, {
|
|
2515
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
2516
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2517
|
+
message: string;
|
|
2518
|
+
warning_code: "unknown_issue_with_credential";
|
|
2519
|
+
created_at: string;
|
|
2520
|
+
}, {
|
|
2521
|
+
message: string;
|
|
2522
|
+
warning_code: "unknown_issue_with_credential";
|
|
2523
|
+
created_at: string;
|
|
2448
2524
|
}>]>, "many">;
|
|
2449
2525
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2450
2526
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2501,6 +2577,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2501
2577
|
message: string;
|
|
2502
2578
|
warning_code: "being_deleted";
|
|
2503
2579
|
created_at: string;
|
|
2580
|
+
} | {
|
|
2581
|
+
message: string;
|
|
2582
|
+
warning_code: "unknown_issue_with_credential";
|
|
2583
|
+
created_at: string;
|
|
2504
2584
|
})[];
|
|
2505
2585
|
display_name: string;
|
|
2506
2586
|
workspace_id: string;
|
|
@@ -2555,6 +2635,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2555
2635
|
message: string;
|
|
2556
2636
|
warning_code: "being_deleted";
|
|
2557
2637
|
created_at: string;
|
|
2638
|
+
} | {
|
|
2639
|
+
message: string;
|
|
2640
|
+
warning_code: "unknown_issue_with_credential";
|
|
2641
|
+
created_at: string;
|
|
2558
2642
|
})[];
|
|
2559
2643
|
display_name: string;
|
|
2560
2644
|
workspace_id: string;
|
|
@@ -2646,64 +2730,14 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2646
2730
|
message: string;
|
|
2647
2731
|
warning_code: "being_deleted";
|
|
2648
2732
|
created_at: string;
|
|
2649
|
-
})[];
|
|
2650
|
-
display_name: string;
|
|
2651
|
-
workspace_id: string;
|
|
2652
|
-
is_managed: true;
|
|
2653
|
-
acs_system_id: string;
|
|
2654
|
-
acs_credential_id: string;
|
|
2655
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2656
|
-
code?: string | null | undefined;
|
|
2657
|
-
starts_at?: string | undefined;
|
|
2658
|
-
ends_at?: string | undefined;
|
|
2659
|
-
visionline_metadata?: {
|
|
2660
|
-
card_function_type: "guest" | "staff";
|
|
2661
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2662
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2663
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2664
|
-
is_valid?: boolean | undefined;
|
|
2665
|
-
auto_join?: boolean | undefined;
|
|
2666
|
-
card_id?: string | undefined;
|
|
2667
|
-
credential_id?: string | undefined;
|
|
2668
|
-
} | undefined;
|
|
2669
|
-
is_one_time_use?: boolean | undefined;
|
|
2670
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2671
|
-
external_type_display_name?: string | undefined;
|
|
2672
|
-
acs_user_id?: string | undefined;
|
|
2673
|
-
acs_credential_pool_id?: string | undefined;
|
|
2674
|
-
parent_acs_credential_id?: string | undefined;
|
|
2675
|
-
card_number?: string | null | undefined;
|
|
2676
|
-
is_issued?: boolean | undefined;
|
|
2677
|
-
issued_at?: string | null | undefined;
|
|
2678
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2679
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2680
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2681
|
-
} | {
|
|
2682
|
-
created_at: string;
|
|
2683
|
-
errors: {
|
|
2684
|
-
message: string;
|
|
2685
|
-
error_code: string;
|
|
2686
|
-
}[];
|
|
2687
|
-
warnings: ({
|
|
2688
|
-
message: string;
|
|
2689
|
-
warning_code: "waiting_to_be_issued";
|
|
2690
|
-
created_at: string;
|
|
2691
|
-
} | {
|
|
2692
|
-
message: string;
|
|
2693
|
-
warning_code: "schedule_externally_modified";
|
|
2694
|
-
created_at: string;
|
|
2695
|
-
} | {
|
|
2696
|
-
message: string;
|
|
2697
|
-
warning_code: "schedule_modified";
|
|
2698
|
-
created_at: string;
|
|
2699
2733
|
} | {
|
|
2700
2734
|
message: string;
|
|
2701
|
-
warning_code: "
|
|
2735
|
+
warning_code: "unknown_issue_with_credential";
|
|
2702
2736
|
created_at: string;
|
|
2703
2737
|
})[];
|
|
2704
2738
|
display_name: string;
|
|
2705
2739
|
workspace_id: string;
|
|
2706
|
-
is_managed:
|
|
2740
|
+
is_managed: true;
|
|
2707
2741
|
acs_system_id: string;
|
|
2708
2742
|
acs_credential_id: string;
|
|
2709
2743
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -2732,34 +2766,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2732
2766
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2733
2767
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2734
2768
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2735
|
-
} |
|
|
2736
|
-
}, {
|
|
2737
|
-
warnings: {
|
|
2738
|
-
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2739
|
-
warning_message: string;
|
|
2740
|
-
}[];
|
|
2741
|
-
acs_credential_on_encoder: {
|
|
2742
|
-
created_at: string | null;
|
|
2743
|
-
starts_at: string | null;
|
|
2744
|
-
ends_at: string | null;
|
|
2745
|
-
card_number: string | null;
|
|
2746
|
-
is_issued: boolean | null;
|
|
2747
|
-
visionline_metadata?: {
|
|
2748
|
-
card_id: string;
|
|
2749
|
-
cancelled: boolean;
|
|
2750
|
-
discarded: boolean;
|
|
2751
|
-
expired: boolean;
|
|
2752
|
-
overwritten: boolean;
|
|
2753
|
-
pending_auto_update: boolean;
|
|
2754
|
-
card_format: "TLCode" | "rfid48";
|
|
2755
|
-
number_of_issued_cards: number;
|
|
2756
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2757
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2758
|
-
overridden?: boolean | undefined;
|
|
2759
|
-
card_holder?: string | undefined;
|
|
2760
|
-
} | undefined;
|
|
2761
|
-
} | null;
|
|
2762
|
-
acs_credential_on_seam: {
|
|
2769
|
+
} | {
|
|
2763
2770
|
created_at: string;
|
|
2764
2771
|
errors: {
|
|
2765
2772
|
message: string;
|
|
@@ -2781,59 +2788,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2781
2788
|
message: string;
|
|
2782
2789
|
warning_code: "being_deleted";
|
|
2783
2790
|
created_at: string;
|
|
2784
|
-
})[];
|
|
2785
|
-
display_name: string;
|
|
2786
|
-
workspace_id: string;
|
|
2787
|
-
is_managed: true;
|
|
2788
|
-
acs_system_id: string;
|
|
2789
|
-
acs_credential_id: string;
|
|
2790
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2791
|
-
code?: string | null | undefined;
|
|
2792
|
-
starts_at?: string | undefined;
|
|
2793
|
-
ends_at?: string | undefined;
|
|
2794
|
-
visionline_metadata?: {
|
|
2795
|
-
card_function_type: "guest" | "staff";
|
|
2796
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2797
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2798
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2799
|
-
is_valid?: boolean | undefined;
|
|
2800
|
-
auto_join?: boolean | undefined;
|
|
2801
|
-
card_id?: string | undefined;
|
|
2802
|
-
credential_id?: string | undefined;
|
|
2803
|
-
} | undefined;
|
|
2804
|
-
is_one_time_use?: boolean | undefined;
|
|
2805
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2806
|
-
external_type_display_name?: string | undefined;
|
|
2807
|
-
acs_user_id?: string | undefined;
|
|
2808
|
-
acs_credential_pool_id?: string | undefined;
|
|
2809
|
-
parent_acs_credential_id?: string | undefined;
|
|
2810
|
-
card_number?: string | null | undefined;
|
|
2811
|
-
is_issued?: boolean | undefined;
|
|
2812
|
-
issued_at?: string | null | undefined;
|
|
2813
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2814
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2815
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2816
|
-
} | {
|
|
2817
|
-
created_at: string;
|
|
2818
|
-
errors: {
|
|
2819
|
-
message: string;
|
|
2820
|
-
error_code: string;
|
|
2821
|
-
}[];
|
|
2822
|
-
warnings: ({
|
|
2823
|
-
message: string;
|
|
2824
|
-
warning_code: "waiting_to_be_issued";
|
|
2825
|
-
created_at: string;
|
|
2826
|
-
} | {
|
|
2827
|
-
message: string;
|
|
2828
|
-
warning_code: "schedule_externally_modified";
|
|
2829
|
-
created_at: string;
|
|
2830
|
-
} | {
|
|
2831
|
-
message: string;
|
|
2832
|
-
warning_code: "schedule_modified";
|
|
2833
|
-
created_at: string;
|
|
2834
2791
|
} | {
|
|
2835
2792
|
message: string;
|
|
2836
|
-
warning_code: "
|
|
2793
|
+
warning_code: "unknown_issue_with_credential";
|
|
2837
2794
|
created_at: string;
|
|
2838
2795
|
})[];
|
|
2839
2796
|
display_name: string;
|
|
@@ -2868,12 +2825,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2868
2825
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2869
2826
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2870
2827
|
} | null;
|
|
2871
|
-
}
|
|
2872
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2873
|
-
status: "success";
|
|
2874
|
-
action_attempt_id: string;
|
|
2875
|
-
error: null;
|
|
2876
|
-
result: {
|
|
2828
|
+
}, {
|
|
2877
2829
|
warnings: {
|
|
2878
2830
|
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2879
2831
|
warning_message: string;
|
|
@@ -2921,64 +2873,220 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2921
2873
|
message: string;
|
|
2922
2874
|
warning_code: "being_deleted";
|
|
2923
2875
|
created_at: string;
|
|
2924
|
-
})[];
|
|
2925
|
-
display_name: string;
|
|
2926
|
-
workspace_id: string;
|
|
2927
|
-
is_managed: true;
|
|
2928
|
-
acs_system_id: string;
|
|
2929
|
-
acs_credential_id: string;
|
|
2930
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2931
|
-
code?: string | null | undefined;
|
|
2932
|
-
starts_at?: string | undefined;
|
|
2933
|
-
ends_at?: string | undefined;
|
|
2934
|
-
visionline_metadata?: {
|
|
2935
|
-
card_function_type: "guest" | "staff";
|
|
2936
|
-
joiner_acs_credential_ids?: string[] | undefined;
|
|
2937
|
-
guest_acs_entrance_ids?: string[] | undefined;
|
|
2938
|
-
common_acs_entrance_ids?: string[] | undefined;
|
|
2939
|
-
is_valid?: boolean | undefined;
|
|
2940
|
-
auto_join?: boolean | undefined;
|
|
2941
|
-
card_id?: string | undefined;
|
|
2942
|
-
credential_id?: string | undefined;
|
|
2943
|
-
} | undefined;
|
|
2944
|
-
is_one_time_use?: boolean | undefined;
|
|
2945
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2946
|
-
external_type_display_name?: string | undefined;
|
|
2947
|
-
acs_user_id?: string | undefined;
|
|
2948
|
-
acs_credential_pool_id?: string | undefined;
|
|
2949
|
-
parent_acs_credential_id?: string | undefined;
|
|
2950
|
-
card_number?: string | null | undefined;
|
|
2951
|
-
is_issued?: boolean | undefined;
|
|
2952
|
-
issued_at?: string | null | undefined;
|
|
2953
|
-
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2954
|
-
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2955
|
-
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2956
|
-
} | {
|
|
2957
|
-
created_at: string;
|
|
2958
|
-
errors: {
|
|
2959
|
-
message: string;
|
|
2960
|
-
error_code: string;
|
|
2961
|
-
}[];
|
|
2962
|
-
warnings: ({
|
|
2963
|
-
message: string;
|
|
2964
|
-
warning_code: "waiting_to_be_issued";
|
|
2965
|
-
created_at: string;
|
|
2966
|
-
} | {
|
|
2967
|
-
message: string;
|
|
2968
|
-
warning_code: "schedule_externally_modified";
|
|
2969
|
-
created_at: string;
|
|
2970
|
-
} | {
|
|
2971
|
-
message: string;
|
|
2972
|
-
warning_code: "schedule_modified";
|
|
2973
|
-
created_at: string;
|
|
2974
2876
|
} | {
|
|
2975
2877
|
message: string;
|
|
2976
|
-
warning_code: "
|
|
2878
|
+
warning_code: "unknown_issue_with_credential";
|
|
2977
2879
|
created_at: string;
|
|
2978
2880
|
})[];
|
|
2979
2881
|
display_name: string;
|
|
2980
2882
|
workspace_id: string;
|
|
2981
|
-
is_managed:
|
|
2883
|
+
is_managed: true;
|
|
2884
|
+
acs_system_id: string;
|
|
2885
|
+
acs_credential_id: string;
|
|
2886
|
+
access_method: "code" | "card" | "mobile_key";
|
|
2887
|
+
code?: string | null | undefined;
|
|
2888
|
+
starts_at?: string | undefined;
|
|
2889
|
+
ends_at?: string | undefined;
|
|
2890
|
+
visionline_metadata?: {
|
|
2891
|
+
card_function_type: "guest" | "staff";
|
|
2892
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
2893
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2894
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2895
|
+
is_valid?: boolean | undefined;
|
|
2896
|
+
auto_join?: boolean | undefined;
|
|
2897
|
+
card_id?: string | undefined;
|
|
2898
|
+
credential_id?: string | undefined;
|
|
2899
|
+
} | undefined;
|
|
2900
|
+
is_one_time_use?: boolean | undefined;
|
|
2901
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2902
|
+
external_type_display_name?: string | undefined;
|
|
2903
|
+
acs_user_id?: string | undefined;
|
|
2904
|
+
acs_credential_pool_id?: string | undefined;
|
|
2905
|
+
parent_acs_credential_id?: string | undefined;
|
|
2906
|
+
card_number?: string | null | undefined;
|
|
2907
|
+
is_issued?: boolean | undefined;
|
|
2908
|
+
issued_at?: string | null | undefined;
|
|
2909
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2910
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2911
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2912
|
+
} | {
|
|
2913
|
+
created_at: string;
|
|
2914
|
+
errors: {
|
|
2915
|
+
message: string;
|
|
2916
|
+
error_code: string;
|
|
2917
|
+
}[];
|
|
2918
|
+
warnings: ({
|
|
2919
|
+
message: string;
|
|
2920
|
+
warning_code: "waiting_to_be_issued";
|
|
2921
|
+
created_at: string;
|
|
2922
|
+
} | {
|
|
2923
|
+
message: string;
|
|
2924
|
+
warning_code: "schedule_externally_modified";
|
|
2925
|
+
created_at: string;
|
|
2926
|
+
} | {
|
|
2927
|
+
message: string;
|
|
2928
|
+
warning_code: "schedule_modified";
|
|
2929
|
+
created_at: string;
|
|
2930
|
+
} | {
|
|
2931
|
+
message: string;
|
|
2932
|
+
warning_code: "being_deleted";
|
|
2933
|
+
created_at: string;
|
|
2934
|
+
} | {
|
|
2935
|
+
message: string;
|
|
2936
|
+
warning_code: "unknown_issue_with_credential";
|
|
2937
|
+
created_at: string;
|
|
2938
|
+
})[];
|
|
2939
|
+
display_name: string;
|
|
2940
|
+
workspace_id: string;
|
|
2941
|
+
is_managed: false;
|
|
2942
|
+
acs_system_id: string;
|
|
2943
|
+
acs_credential_id: string;
|
|
2944
|
+
access_method: "code" | "card" | "mobile_key";
|
|
2945
|
+
code?: string | null | undefined;
|
|
2946
|
+
starts_at?: string | undefined;
|
|
2947
|
+
ends_at?: string | undefined;
|
|
2948
|
+
visionline_metadata?: {
|
|
2949
|
+
card_function_type: "guest" | "staff";
|
|
2950
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
2951
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2952
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2953
|
+
is_valid?: boolean | undefined;
|
|
2954
|
+
auto_join?: boolean | undefined;
|
|
2955
|
+
card_id?: string | undefined;
|
|
2956
|
+
credential_id?: string | undefined;
|
|
2957
|
+
} | undefined;
|
|
2958
|
+
is_one_time_use?: boolean | undefined;
|
|
2959
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2960
|
+
external_type_display_name?: string | undefined;
|
|
2961
|
+
acs_user_id?: string | undefined;
|
|
2962
|
+
acs_credential_pool_id?: string | undefined;
|
|
2963
|
+
parent_acs_credential_id?: string | undefined;
|
|
2964
|
+
card_number?: string | null | undefined;
|
|
2965
|
+
is_issued?: boolean | undefined;
|
|
2966
|
+
issued_at?: string | null | undefined;
|
|
2967
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
2968
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
2969
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2970
|
+
} | null;
|
|
2971
|
+
}>;
|
|
2972
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2973
|
+
status: "success";
|
|
2974
|
+
action_attempt_id: string;
|
|
2975
|
+
error: null;
|
|
2976
|
+
result: {
|
|
2977
|
+
warnings: {
|
|
2978
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2979
|
+
warning_message: string;
|
|
2980
|
+
}[];
|
|
2981
|
+
acs_credential_on_encoder: {
|
|
2982
|
+
created_at: string | null;
|
|
2983
|
+
starts_at: string | null;
|
|
2984
|
+
ends_at: string | null;
|
|
2985
|
+
card_number: string | null;
|
|
2986
|
+
is_issued: boolean | null;
|
|
2987
|
+
visionline_metadata?: {
|
|
2988
|
+
card_id: string;
|
|
2989
|
+
cancelled: boolean;
|
|
2990
|
+
discarded: boolean;
|
|
2991
|
+
expired: boolean;
|
|
2992
|
+
overwritten: boolean;
|
|
2993
|
+
pending_auto_update: boolean;
|
|
2994
|
+
card_format: "TLCode" | "rfid48";
|
|
2995
|
+
number_of_issued_cards: number;
|
|
2996
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2997
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2998
|
+
overridden?: boolean | undefined;
|
|
2999
|
+
card_holder?: string | undefined;
|
|
3000
|
+
} | undefined;
|
|
3001
|
+
} | null;
|
|
3002
|
+
acs_credential_on_seam: {
|
|
3003
|
+
created_at: string;
|
|
3004
|
+
errors: {
|
|
3005
|
+
message: string;
|
|
3006
|
+
error_code: string;
|
|
3007
|
+
}[];
|
|
3008
|
+
warnings: ({
|
|
3009
|
+
message: string;
|
|
3010
|
+
warning_code: "waiting_to_be_issued";
|
|
3011
|
+
created_at: string;
|
|
3012
|
+
} | {
|
|
3013
|
+
message: string;
|
|
3014
|
+
warning_code: "schedule_externally_modified";
|
|
3015
|
+
created_at: string;
|
|
3016
|
+
} | {
|
|
3017
|
+
message: string;
|
|
3018
|
+
warning_code: "schedule_modified";
|
|
3019
|
+
created_at: string;
|
|
3020
|
+
} | {
|
|
3021
|
+
message: string;
|
|
3022
|
+
warning_code: "being_deleted";
|
|
3023
|
+
created_at: string;
|
|
3024
|
+
} | {
|
|
3025
|
+
message: string;
|
|
3026
|
+
warning_code: "unknown_issue_with_credential";
|
|
3027
|
+
created_at: string;
|
|
3028
|
+
})[];
|
|
3029
|
+
display_name: string;
|
|
3030
|
+
workspace_id: string;
|
|
3031
|
+
is_managed: true;
|
|
3032
|
+
acs_system_id: string;
|
|
3033
|
+
acs_credential_id: string;
|
|
3034
|
+
access_method: "code" | "card" | "mobile_key";
|
|
3035
|
+
code?: string | null | undefined;
|
|
3036
|
+
starts_at?: string | undefined;
|
|
3037
|
+
ends_at?: string | undefined;
|
|
3038
|
+
visionline_metadata?: {
|
|
3039
|
+
card_function_type: "guest" | "staff";
|
|
3040
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
3041
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
3042
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
3043
|
+
is_valid?: boolean | undefined;
|
|
3044
|
+
auto_join?: boolean | undefined;
|
|
3045
|
+
card_id?: string | undefined;
|
|
3046
|
+
credential_id?: string | undefined;
|
|
3047
|
+
} | undefined;
|
|
3048
|
+
is_one_time_use?: boolean | undefined;
|
|
3049
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
3050
|
+
external_type_display_name?: string | undefined;
|
|
3051
|
+
acs_user_id?: string | undefined;
|
|
3052
|
+
acs_credential_pool_id?: string | undefined;
|
|
3053
|
+
parent_acs_credential_id?: string | undefined;
|
|
3054
|
+
card_number?: string | null | undefined;
|
|
3055
|
+
is_issued?: boolean | undefined;
|
|
3056
|
+
issued_at?: string | null | undefined;
|
|
3057
|
+
is_multi_phone_sync_credential?: boolean | undefined;
|
|
3058
|
+
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
3059
|
+
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
3060
|
+
} | {
|
|
3061
|
+
created_at: string;
|
|
3062
|
+
errors: {
|
|
3063
|
+
message: string;
|
|
3064
|
+
error_code: string;
|
|
3065
|
+
}[];
|
|
3066
|
+
warnings: ({
|
|
3067
|
+
message: string;
|
|
3068
|
+
warning_code: "waiting_to_be_issued";
|
|
3069
|
+
created_at: string;
|
|
3070
|
+
} | {
|
|
3071
|
+
message: string;
|
|
3072
|
+
warning_code: "schedule_externally_modified";
|
|
3073
|
+
created_at: string;
|
|
3074
|
+
} | {
|
|
3075
|
+
message: string;
|
|
3076
|
+
warning_code: "schedule_modified";
|
|
3077
|
+
created_at: string;
|
|
3078
|
+
} | {
|
|
3079
|
+
message: string;
|
|
3080
|
+
warning_code: "being_deleted";
|
|
3081
|
+
created_at: string;
|
|
3082
|
+
} | {
|
|
3083
|
+
message: string;
|
|
3084
|
+
warning_code: "unknown_issue_with_credential";
|
|
3085
|
+
created_at: string;
|
|
3086
|
+
})[];
|
|
3087
|
+
display_name: string;
|
|
3088
|
+
workspace_id: string;
|
|
3089
|
+
is_managed: false;
|
|
2982
3090
|
acs_system_id: string;
|
|
2983
3091
|
acs_credential_id: string;
|
|
2984
3092
|
access_method: "code" | "card" | "mobile_key";
|
|
@@ -3062,6 +3170,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3062
3170
|
message: string;
|
|
3063
3171
|
warning_code: "being_deleted";
|
|
3064
3172
|
created_at: string;
|
|
3173
|
+
} | {
|
|
3174
|
+
message: string;
|
|
3175
|
+
warning_code: "unknown_issue_with_credential";
|
|
3176
|
+
created_at: string;
|
|
3065
3177
|
})[];
|
|
3066
3178
|
display_name: string;
|
|
3067
3179
|
workspace_id: string;
|
|
@@ -3116,6 +3228,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3116
3228
|
message: string;
|
|
3117
3229
|
warning_code: "being_deleted";
|
|
3118
3230
|
created_at: string;
|
|
3231
|
+
} | {
|
|
3232
|
+
message: string;
|
|
3233
|
+
warning_code: "unknown_issue_with_credential";
|
|
3234
|
+
created_at: string;
|
|
3119
3235
|
})[];
|
|
3120
3236
|
display_name: string;
|
|
3121
3237
|
workspace_id: string;
|
|
@@ -3327,6 +3443,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3327
3443
|
message: string;
|
|
3328
3444
|
warning_code: "being_deleted";
|
|
3329
3445
|
created_at: string;
|
|
3446
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3447
|
+
created_at: z.ZodString;
|
|
3448
|
+
message: z.ZodString;
|
|
3449
|
+
}, {
|
|
3450
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
3451
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3452
|
+
message: string;
|
|
3453
|
+
warning_code: "unknown_issue_with_credential";
|
|
3454
|
+
created_at: string;
|
|
3455
|
+
}, {
|
|
3456
|
+
message: string;
|
|
3457
|
+
warning_code: "unknown_issue_with_credential";
|
|
3458
|
+
created_at: string;
|
|
3330
3459
|
}>]>, "many">;
|
|
3331
3460
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3332
3461
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3383,6 +3512,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3383
3512
|
message: string;
|
|
3384
3513
|
warning_code: "being_deleted";
|
|
3385
3514
|
created_at: string;
|
|
3515
|
+
} | {
|
|
3516
|
+
message: string;
|
|
3517
|
+
warning_code: "unknown_issue_with_credential";
|
|
3518
|
+
created_at: string;
|
|
3386
3519
|
})[];
|
|
3387
3520
|
display_name: string;
|
|
3388
3521
|
workspace_id: string;
|
|
@@ -3437,6 +3570,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3437
3570
|
message: string;
|
|
3438
3571
|
warning_code: "being_deleted";
|
|
3439
3572
|
created_at: string;
|
|
3573
|
+
} | {
|
|
3574
|
+
message: string;
|
|
3575
|
+
warning_code: "unknown_issue_with_credential";
|
|
3576
|
+
created_at: string;
|
|
3440
3577
|
})[];
|
|
3441
3578
|
display_name: string;
|
|
3442
3579
|
workspace_id: string;
|
|
@@ -3550,6 +3687,19 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3550
3687
|
message: string;
|
|
3551
3688
|
warning_code: "being_deleted";
|
|
3552
3689
|
created_at: string;
|
|
3690
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3691
|
+
created_at: z.ZodString;
|
|
3692
|
+
message: z.ZodString;
|
|
3693
|
+
}, {
|
|
3694
|
+
warning_code: z.ZodLiteral<"unknown_issue_with_credential">;
|
|
3695
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3696
|
+
message: string;
|
|
3697
|
+
warning_code: "unknown_issue_with_credential";
|
|
3698
|
+
created_at: string;
|
|
3699
|
+
}, {
|
|
3700
|
+
message: string;
|
|
3701
|
+
warning_code: "unknown_issue_with_credential";
|
|
3702
|
+
created_at: string;
|
|
3553
3703
|
}>]>, "many">;
|
|
3554
3704
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
3555
3705
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3606,6 +3756,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3606
3756
|
message: string;
|
|
3607
3757
|
warning_code: "being_deleted";
|
|
3608
3758
|
created_at: string;
|
|
3759
|
+
} | {
|
|
3760
|
+
message: string;
|
|
3761
|
+
warning_code: "unknown_issue_with_credential";
|
|
3762
|
+
created_at: string;
|
|
3609
3763
|
})[];
|
|
3610
3764
|
display_name: string;
|
|
3611
3765
|
workspace_id: string;
|
|
@@ -3660,6 +3814,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3660
3814
|
message: string;
|
|
3661
3815
|
warning_code: "being_deleted";
|
|
3662
3816
|
created_at: string;
|
|
3817
|
+
} | {
|
|
3818
|
+
message: string;
|
|
3819
|
+
warning_code: "unknown_issue_with_credential";
|
|
3820
|
+
created_at: string;
|
|
3663
3821
|
})[];
|
|
3664
3822
|
display_name: string;
|
|
3665
3823
|
workspace_id: string;
|
|
@@ -3719,6 +3877,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3719
3877
|
message: string;
|
|
3720
3878
|
warning_code: "being_deleted";
|
|
3721
3879
|
created_at: string;
|
|
3880
|
+
} | {
|
|
3881
|
+
message: string;
|
|
3882
|
+
warning_code: "unknown_issue_with_credential";
|
|
3883
|
+
created_at: string;
|
|
3722
3884
|
})[];
|
|
3723
3885
|
display_name: string;
|
|
3724
3886
|
workspace_id: string;
|
|
@@ -3773,6 +3935,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3773
3935
|
message: string;
|
|
3774
3936
|
warning_code: "being_deleted";
|
|
3775
3937
|
created_at: string;
|
|
3938
|
+
} | {
|
|
3939
|
+
message: string;
|
|
3940
|
+
warning_code: "unknown_issue_with_credential";
|
|
3941
|
+
created_at: string;
|
|
3776
3942
|
})[];
|
|
3777
3943
|
display_name: string;
|
|
3778
3944
|
workspace_id: string;
|
|
@@ -3833,6 +3999,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3833
3999
|
message: string;
|
|
3834
4000
|
warning_code: "being_deleted";
|
|
3835
4001
|
created_at: string;
|
|
4002
|
+
} | {
|
|
4003
|
+
message: string;
|
|
4004
|
+
warning_code: "unknown_issue_with_credential";
|
|
4005
|
+
created_at: string;
|
|
3836
4006
|
})[];
|
|
3837
4007
|
display_name: string;
|
|
3838
4008
|
workspace_id: string;
|
|
@@ -3887,6 +4057,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
3887
4057
|
message: string;
|
|
3888
4058
|
warning_code: "being_deleted";
|
|
3889
4059
|
created_at: string;
|
|
4060
|
+
} | {
|
|
4061
|
+
message: string;
|
|
4062
|
+
warning_code: "unknown_issue_with_credential";
|
|
4063
|
+
created_at: string;
|
|
3890
4064
|
})[];
|
|
3891
4065
|
display_name: string;
|
|
3892
4066
|
workspace_id: string;
|
|
@@ -35958,6 +36132,13 @@ interface Routes {
|
|
|
35958
36132
|
message: string;
|
|
35959
36133
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35960
36134
|
warning_code: 'being_deleted';
|
|
36135
|
+
} | {
|
|
36136
|
+
/** Date and time at which Seam created the warning. */
|
|
36137
|
+
created_at: string;
|
|
36138
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36139
|
+
message: string;
|
|
36140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36141
|
+
warning_code: 'unknown_issue_with_credential';
|
|
35961
36142
|
}>;
|
|
35962
36143
|
/** 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). */
|
|
35963
36144
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36044,6 +36225,13 @@ interface Routes {
|
|
|
36044
36225
|
message: string;
|
|
36045
36226
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36046
36227
|
warning_code: 'being_deleted';
|
|
36228
|
+
} | {
|
|
36229
|
+
/** Date and time at which Seam created the warning. */
|
|
36230
|
+
created_at: string;
|
|
36231
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36232
|
+
message: string;
|
|
36233
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36234
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36047
36235
|
}>;
|
|
36048
36236
|
/** 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). */
|
|
36049
36237
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36167,6 +36355,13 @@ interface Routes {
|
|
|
36167
36355
|
message: string;
|
|
36168
36356
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36169
36357
|
warning_code: 'being_deleted';
|
|
36358
|
+
} | {
|
|
36359
|
+
/** Date and time at which Seam created the warning. */
|
|
36360
|
+
created_at: string;
|
|
36361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36362
|
+
message: string;
|
|
36363
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36364
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36170
36365
|
}>;
|
|
36171
36366
|
/** 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). */
|
|
36172
36367
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36253,6 +36448,13 @@ interface Routes {
|
|
|
36253
36448
|
message: string;
|
|
36254
36449
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36255
36450
|
warning_code: 'being_deleted';
|
|
36451
|
+
} | {
|
|
36452
|
+
/** Date and time at which Seam created the warning. */
|
|
36453
|
+
created_at: string;
|
|
36454
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
36455
|
+
message: string;
|
|
36456
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36457
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36256
36458
|
}>;
|
|
36257
36459
|
/** 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). */
|
|
36258
36460
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36885,6 +37087,13 @@ interface Routes {
|
|
|
36885
37087
|
message: string;
|
|
36886
37088
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36887
37089
|
warning_code: 'being_deleted';
|
|
37090
|
+
} | {
|
|
37091
|
+
/** Date and time at which Seam created the warning. */
|
|
37092
|
+
created_at: string;
|
|
37093
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37094
|
+
message: string;
|
|
37095
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37096
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36888
37097
|
}>;
|
|
36889
37098
|
/** 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). */
|
|
36890
37099
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -36971,6 +37180,13 @@ interface Routes {
|
|
|
36971
37180
|
message: string;
|
|
36972
37181
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
36973
37182
|
warning_code: 'being_deleted';
|
|
37183
|
+
} | {
|
|
37184
|
+
/** Date and time at which Seam created the warning. */
|
|
37185
|
+
created_at: string;
|
|
37186
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37187
|
+
message: string;
|
|
37188
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37189
|
+
warning_code: 'unknown_issue_with_credential';
|
|
36974
37190
|
}>;
|
|
36975
37191
|
/** 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). */
|
|
36976
37192
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37094,6 +37310,13 @@ interface Routes {
|
|
|
37094
37310
|
message: string;
|
|
37095
37311
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37096
37312
|
warning_code: 'being_deleted';
|
|
37313
|
+
} | {
|
|
37314
|
+
/** Date and time at which Seam created the warning. */
|
|
37315
|
+
created_at: string;
|
|
37316
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37317
|
+
message: string;
|
|
37318
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37319
|
+
warning_code: 'unknown_issue_with_credential';
|
|
37097
37320
|
}>;
|
|
37098
37321
|
/** 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). */
|
|
37099
37322
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -37180,6 +37403,13 @@ interface Routes {
|
|
|
37180
37403
|
message: string;
|
|
37181
37404
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37182
37405
|
warning_code: 'being_deleted';
|
|
37406
|
+
} | {
|
|
37407
|
+
/** Date and time at which Seam created the warning. */
|
|
37408
|
+
created_at: string;
|
|
37409
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37410
|
+
message: string;
|
|
37411
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37412
|
+
warning_code: 'unknown_issue_with_credential';
|
|
37183
37413
|
}>;
|
|
37184
37414
|
/** 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). */
|
|
37185
37415
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38030,6 +38260,13 @@ interface Routes {
|
|
|
38030
38260
|
message: string;
|
|
38031
38261
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38032
38262
|
warning_code: 'being_deleted';
|
|
38263
|
+
} | {
|
|
38264
|
+
/** Date and time at which Seam created the warning. */
|
|
38265
|
+
created_at: string;
|
|
38266
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38267
|
+
message: string;
|
|
38268
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38269
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38033
38270
|
}>;
|
|
38034
38271
|
/** 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). */
|
|
38035
38272
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38116,6 +38353,13 @@ interface Routes {
|
|
|
38116
38353
|
message: string;
|
|
38117
38354
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38118
38355
|
warning_code: 'being_deleted';
|
|
38356
|
+
} | {
|
|
38357
|
+
/** Date and time at which Seam created the warning. */
|
|
38358
|
+
created_at: string;
|
|
38359
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38360
|
+
message: string;
|
|
38361
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38362
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38119
38363
|
}>;
|
|
38120
38364
|
/** 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). */
|
|
38121
38365
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38239,6 +38483,13 @@ interface Routes {
|
|
|
38239
38483
|
message: string;
|
|
38240
38484
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38241
38485
|
warning_code: 'being_deleted';
|
|
38486
|
+
} | {
|
|
38487
|
+
/** Date and time at which Seam created the warning. */
|
|
38488
|
+
created_at: string;
|
|
38489
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38490
|
+
message: string;
|
|
38491
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38492
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38242
38493
|
}>;
|
|
38243
38494
|
/** 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). */
|
|
38244
38495
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38325,6 +38576,13 @@ interface Routes {
|
|
|
38325
38576
|
message: string;
|
|
38326
38577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38327
38578
|
warning_code: 'being_deleted';
|
|
38579
|
+
} | {
|
|
38580
|
+
/** Date and time at which Seam created the warning. */
|
|
38581
|
+
created_at: string;
|
|
38582
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
38583
|
+
message: string;
|
|
38584
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38585
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38328
38586
|
}>;
|
|
38329
38587
|
/** 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). */
|
|
38330
38588
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -38944,6 +39202,13 @@ interface Routes {
|
|
|
38944
39202
|
message: string;
|
|
38945
39203
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
38946
39204
|
warning_code: 'being_deleted';
|
|
39205
|
+
} | {
|
|
39206
|
+
/** Date and time at which Seam created the warning. */
|
|
39207
|
+
created_at: string;
|
|
39208
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39209
|
+
message: string;
|
|
39210
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39211
|
+
warning_code: 'unknown_issue_with_credential';
|
|
38947
39212
|
}>;
|
|
38948
39213
|
/** 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). */
|
|
38949
39214
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39030,6 +39295,13 @@ interface Routes {
|
|
|
39030
39295
|
message: string;
|
|
39031
39296
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39032
39297
|
warning_code: 'being_deleted';
|
|
39298
|
+
} | {
|
|
39299
|
+
/** Date and time at which Seam created the warning. */
|
|
39300
|
+
created_at: string;
|
|
39301
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39302
|
+
message: string;
|
|
39303
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39304
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39033
39305
|
}>;
|
|
39034
39306
|
/** 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). */
|
|
39035
39307
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39153,6 +39425,13 @@ interface Routes {
|
|
|
39153
39425
|
message: string;
|
|
39154
39426
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39155
39427
|
warning_code: 'being_deleted';
|
|
39428
|
+
} | {
|
|
39429
|
+
/** Date and time at which Seam created the warning. */
|
|
39430
|
+
created_at: string;
|
|
39431
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39432
|
+
message: string;
|
|
39433
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39434
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39156
39435
|
}>;
|
|
39157
39436
|
/** 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). */
|
|
39158
39437
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -39239,6 +39518,13 @@ interface Routes {
|
|
|
39239
39518
|
message: string;
|
|
39240
39519
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39241
39520
|
warning_code: 'being_deleted';
|
|
39521
|
+
} | {
|
|
39522
|
+
/** Date and time at which Seam created the warning. */
|
|
39523
|
+
created_at: string;
|
|
39524
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39525
|
+
message: string;
|
|
39526
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39527
|
+
warning_code: 'unknown_issue_with_credential';
|
|
39242
39528
|
}>;
|
|
39243
39529
|
/** 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). */
|
|
39244
39530
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40046,6 +40332,13 @@ interface Routes {
|
|
|
40046
40332
|
message: string;
|
|
40047
40333
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40048
40334
|
warning_code: 'being_deleted';
|
|
40335
|
+
} | {
|
|
40336
|
+
/** Date and time at which Seam created the warning. */
|
|
40337
|
+
created_at: string;
|
|
40338
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40339
|
+
message: string;
|
|
40340
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40341
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40049
40342
|
}>;
|
|
40050
40343
|
/** 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). */
|
|
40051
40344
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40182,6 +40475,13 @@ interface Routes {
|
|
|
40182
40475
|
message: string;
|
|
40183
40476
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40184
40477
|
warning_code: 'being_deleted';
|
|
40478
|
+
} | {
|
|
40479
|
+
/** Date and time at which Seam created the warning. */
|
|
40480
|
+
created_at: string;
|
|
40481
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40482
|
+
message: string;
|
|
40483
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40484
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40185
40485
|
}>;
|
|
40186
40486
|
/** 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). */
|
|
40187
40487
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40292,6 +40592,13 @@ interface Routes {
|
|
|
40292
40592
|
message: string;
|
|
40293
40593
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40294
40594
|
warning_code: 'being_deleted';
|
|
40595
|
+
} | {
|
|
40596
|
+
/** Date and time at which Seam created the warning. */
|
|
40597
|
+
created_at: string;
|
|
40598
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40599
|
+
message: string;
|
|
40600
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40601
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40295
40602
|
}>;
|
|
40296
40603
|
/** 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). */
|
|
40297
40604
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40406,6 +40713,13 @@ interface Routes {
|
|
|
40406
40713
|
message: string;
|
|
40407
40714
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40408
40715
|
warning_code: 'being_deleted';
|
|
40716
|
+
} | {
|
|
40717
|
+
/** Date and time at which Seam created the warning. */
|
|
40718
|
+
created_at: string;
|
|
40719
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40720
|
+
message: string;
|
|
40721
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40722
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40409
40723
|
}>;
|
|
40410
40724
|
/** 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). */
|
|
40411
40725
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40524,6 +40838,13 @@ interface Routes {
|
|
|
40524
40838
|
message: string;
|
|
40525
40839
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40526
40840
|
warning_code: 'being_deleted';
|
|
40841
|
+
} | {
|
|
40842
|
+
/** Date and time at which Seam created the warning. */
|
|
40843
|
+
created_at: string;
|
|
40844
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40845
|
+
message: string;
|
|
40846
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40847
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40527
40848
|
}>;
|
|
40528
40849
|
/** 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). */
|
|
40529
40850
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40696,6 +41017,13 @@ interface Routes {
|
|
|
40696
41017
|
message: string;
|
|
40697
41018
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40698
41019
|
warning_code: 'being_deleted';
|
|
41020
|
+
} | {
|
|
41021
|
+
/** Date and time at which Seam created the warning. */
|
|
41022
|
+
created_at: string;
|
|
41023
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41024
|
+
message: string;
|
|
41025
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41026
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40699
41027
|
}>;
|
|
40700
41028
|
/** 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). */
|
|
40701
41029
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40798,6 +41126,13 @@ interface Routes {
|
|
|
40798
41126
|
message: string;
|
|
40799
41127
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40800
41128
|
warning_code: 'being_deleted';
|
|
41129
|
+
} | {
|
|
41130
|
+
/** Date and time at which Seam created the warning. */
|
|
41131
|
+
created_at: string;
|
|
41132
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41133
|
+
message: string;
|
|
41134
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41135
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40801
41136
|
}>;
|
|
40802
41137
|
/** 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). */
|
|
40803
41138
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -40909,6 +41244,13 @@ interface Routes {
|
|
|
40909
41244
|
message: string;
|
|
40910
41245
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40911
41246
|
warning_code: 'being_deleted';
|
|
41247
|
+
} | {
|
|
41248
|
+
/** Date and time at which Seam created the warning. */
|
|
41249
|
+
created_at: string;
|
|
41250
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41251
|
+
message: string;
|
|
41252
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41253
|
+
warning_code: 'unknown_issue_with_credential';
|
|
40912
41254
|
}>;
|
|
40913
41255
|
/** 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). */
|
|
40914
41256
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41015,6 +41357,13 @@ interface Routes {
|
|
|
41015
41357
|
message: string;
|
|
41016
41358
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41017
41359
|
warning_code: 'being_deleted';
|
|
41360
|
+
} | {
|
|
41361
|
+
/** Date and time at which Seam created the warning. */
|
|
41362
|
+
created_at: string;
|
|
41363
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41364
|
+
message: string;
|
|
41365
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41366
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41018
41367
|
}>;
|
|
41019
41368
|
/** 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). */
|
|
41020
41369
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41207,6 +41556,13 @@ interface Routes {
|
|
|
41207
41556
|
message: string;
|
|
41208
41557
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41209
41558
|
warning_code: 'being_deleted';
|
|
41559
|
+
} | {
|
|
41560
|
+
/** Date and time at which Seam created the warning. */
|
|
41561
|
+
created_at: string;
|
|
41562
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41563
|
+
message: string;
|
|
41564
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41565
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41210
41566
|
}>;
|
|
41211
41567
|
/** 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). */
|
|
41212
41568
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41293,6 +41649,13 @@ interface Routes {
|
|
|
41293
41649
|
message: string;
|
|
41294
41650
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41295
41651
|
warning_code: 'being_deleted';
|
|
41652
|
+
} | {
|
|
41653
|
+
/** Date and time at which Seam created the warning. */
|
|
41654
|
+
created_at: string;
|
|
41655
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41656
|
+
message: string;
|
|
41657
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41658
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41296
41659
|
}>;
|
|
41297
41660
|
/** 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). */
|
|
41298
41661
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41416,6 +41779,13 @@ interface Routes {
|
|
|
41416
41779
|
message: string;
|
|
41417
41780
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41418
41781
|
warning_code: 'being_deleted';
|
|
41782
|
+
} | {
|
|
41783
|
+
/** Date and time at which Seam created the warning. */
|
|
41784
|
+
created_at: string;
|
|
41785
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41786
|
+
message: string;
|
|
41787
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41788
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41419
41789
|
}>;
|
|
41420
41790
|
/** 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). */
|
|
41421
41791
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -41502,6 +41872,13 @@ interface Routes {
|
|
|
41502
41872
|
message: string;
|
|
41503
41873
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41504
41874
|
warning_code: 'being_deleted';
|
|
41875
|
+
} | {
|
|
41876
|
+
/** Date and time at which Seam created the warning. */
|
|
41877
|
+
created_at: string;
|
|
41878
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41879
|
+
message: string;
|
|
41880
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41881
|
+
warning_code: 'unknown_issue_with_credential';
|
|
41505
41882
|
}>;
|
|
41506
41883
|
/** 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). */
|
|
41507
41884
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42026,6 +42403,13 @@ interface Routes {
|
|
|
42026
42403
|
message: string;
|
|
42027
42404
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42028
42405
|
warning_code: 'being_deleted';
|
|
42406
|
+
} | {
|
|
42407
|
+
/** Date and time at which Seam created the warning. */
|
|
42408
|
+
created_at: string;
|
|
42409
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42410
|
+
message: string;
|
|
42411
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42412
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42029
42413
|
}>;
|
|
42030
42414
|
/** 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). */
|
|
42031
42415
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42112,6 +42496,13 @@ interface Routes {
|
|
|
42112
42496
|
message: string;
|
|
42113
42497
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42114
42498
|
warning_code: 'being_deleted';
|
|
42499
|
+
} | {
|
|
42500
|
+
/** Date and time at which Seam created the warning. */
|
|
42501
|
+
created_at: string;
|
|
42502
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42503
|
+
message: string;
|
|
42504
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42505
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42115
42506
|
}>;
|
|
42116
42507
|
/** 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). */
|
|
42117
42508
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42235,6 +42626,13 @@ interface Routes {
|
|
|
42235
42626
|
message: string;
|
|
42236
42627
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42237
42628
|
warning_code: 'being_deleted';
|
|
42629
|
+
} | {
|
|
42630
|
+
/** Date and time at which Seam created the warning. */
|
|
42631
|
+
created_at: string;
|
|
42632
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42633
|
+
message: string;
|
|
42634
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42635
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42238
42636
|
}>;
|
|
42239
42637
|
/** 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). */
|
|
42240
42638
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42321,6 +42719,13 @@ interface Routes {
|
|
|
42321
42719
|
message: string;
|
|
42322
42720
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42323
42721
|
warning_code: 'being_deleted';
|
|
42722
|
+
} | {
|
|
42723
|
+
/** Date and time at which Seam created the warning. */
|
|
42724
|
+
created_at: string;
|
|
42725
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42726
|
+
message: string;
|
|
42727
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42728
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42324
42729
|
}>;
|
|
42325
42730
|
/** 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). */
|
|
42326
42731
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -42924,6 +43329,13 @@ interface Routes {
|
|
|
42924
43329
|
message: string;
|
|
42925
43330
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42926
43331
|
warning_code: 'being_deleted';
|
|
43332
|
+
} | {
|
|
43333
|
+
/** Date and time at which Seam created the warning. */
|
|
43334
|
+
created_at: string;
|
|
43335
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43336
|
+
message: string;
|
|
43337
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43338
|
+
warning_code: 'unknown_issue_with_credential';
|
|
42927
43339
|
}>;
|
|
42928
43340
|
/** 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). */
|
|
42929
43341
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44215,6 +44627,13 @@ interface Routes {
|
|
|
44215
44627
|
message: string;
|
|
44216
44628
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44217
44629
|
warning_code: 'being_deleted';
|
|
44630
|
+
} | {
|
|
44631
|
+
/** Date and time at which Seam created the warning. */
|
|
44632
|
+
created_at: string;
|
|
44633
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44634
|
+
message: string;
|
|
44635
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44636
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44218
44637
|
}>;
|
|
44219
44638
|
/** 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). */
|
|
44220
44639
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44301,6 +44720,13 @@ interface Routes {
|
|
|
44301
44720
|
message: string;
|
|
44302
44721
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44303
44722
|
warning_code: 'being_deleted';
|
|
44723
|
+
} | {
|
|
44724
|
+
/** Date and time at which Seam created the warning. */
|
|
44725
|
+
created_at: string;
|
|
44726
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44727
|
+
message: string;
|
|
44728
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44729
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44304
44730
|
}>;
|
|
44305
44731
|
/** 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). */
|
|
44306
44732
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44424,6 +44850,13 @@ interface Routes {
|
|
|
44424
44850
|
message: string;
|
|
44425
44851
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44426
44852
|
warning_code: 'being_deleted';
|
|
44853
|
+
} | {
|
|
44854
|
+
/** Date and time at which Seam created the warning. */
|
|
44855
|
+
created_at: string;
|
|
44856
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44857
|
+
message: string;
|
|
44858
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44859
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44427
44860
|
}>;
|
|
44428
44861
|
/** 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). */
|
|
44429
44862
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44510,6 +44943,13 @@ interface Routes {
|
|
|
44510
44943
|
message: string;
|
|
44511
44944
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44512
44945
|
warning_code: 'being_deleted';
|
|
44946
|
+
} | {
|
|
44947
|
+
/** Date and time at which Seam created the warning. */
|
|
44948
|
+
created_at: string;
|
|
44949
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44950
|
+
message: string;
|
|
44951
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44952
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44513
44953
|
}>;
|
|
44514
44954
|
/** 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). */
|
|
44515
44955
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -44991,6 +45431,13 @@ interface Routes {
|
|
|
44991
45431
|
message: string;
|
|
44992
45432
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44993
45433
|
warning_code: 'being_deleted';
|
|
45434
|
+
} | {
|
|
45435
|
+
/** Date and time at which Seam created the warning. */
|
|
45436
|
+
created_at: string;
|
|
45437
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45438
|
+
message: string;
|
|
45439
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45440
|
+
warning_code: 'unknown_issue_with_credential';
|
|
44994
45441
|
}>;
|
|
44995
45442
|
/** 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). */
|
|
44996
45443
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45077,6 +45524,13 @@ interface Routes {
|
|
|
45077
45524
|
message: string;
|
|
45078
45525
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45079
45526
|
warning_code: 'being_deleted';
|
|
45527
|
+
} | {
|
|
45528
|
+
/** Date and time at which Seam created the warning. */
|
|
45529
|
+
created_at: string;
|
|
45530
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45531
|
+
message: string;
|
|
45532
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45533
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45080
45534
|
}>;
|
|
45081
45535
|
/** 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). */
|
|
45082
45536
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45200,6 +45654,13 @@ interface Routes {
|
|
|
45200
45654
|
message: string;
|
|
45201
45655
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45202
45656
|
warning_code: 'being_deleted';
|
|
45657
|
+
} | {
|
|
45658
|
+
/** Date and time at which Seam created the warning. */
|
|
45659
|
+
created_at: string;
|
|
45660
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45661
|
+
message: string;
|
|
45662
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45663
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45203
45664
|
}>;
|
|
45204
45665
|
/** 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). */
|
|
45205
45666
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -45286,6 +45747,13 @@ interface Routes {
|
|
|
45286
45747
|
message: string;
|
|
45287
45748
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45288
45749
|
warning_code: 'being_deleted';
|
|
45750
|
+
} | {
|
|
45751
|
+
/** Date and time at which Seam created the warning. */
|
|
45752
|
+
created_at: string;
|
|
45753
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45754
|
+
message: string;
|
|
45755
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45756
|
+
warning_code: 'unknown_issue_with_credential';
|
|
45289
45757
|
}>;
|
|
45290
45758
|
/** 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). */
|
|
45291
45759
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52023,6 +52491,13 @@ interface Routes {
|
|
|
52023
52491
|
message: string;
|
|
52024
52492
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52025
52493
|
warning_code: 'being_deleted';
|
|
52494
|
+
} | {
|
|
52495
|
+
/** Date and time at which Seam created the warning. */
|
|
52496
|
+
created_at: string;
|
|
52497
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52498
|
+
message: string;
|
|
52499
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52500
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52026
52501
|
}>;
|
|
52027
52502
|
/** 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). */
|
|
52028
52503
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52109,6 +52584,13 @@ interface Routes {
|
|
|
52109
52584
|
message: string;
|
|
52110
52585
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52111
52586
|
warning_code: 'being_deleted';
|
|
52587
|
+
} | {
|
|
52588
|
+
/** Date and time at which Seam created the warning. */
|
|
52589
|
+
created_at: string;
|
|
52590
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52591
|
+
message: string;
|
|
52592
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52593
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52112
52594
|
}>;
|
|
52113
52595
|
/** 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). */
|
|
52114
52596
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52232,6 +52714,13 @@ interface Routes {
|
|
|
52232
52714
|
message: string;
|
|
52233
52715
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52234
52716
|
warning_code: 'being_deleted';
|
|
52717
|
+
} | {
|
|
52718
|
+
/** Date and time at which Seam created the warning. */
|
|
52719
|
+
created_at: string;
|
|
52720
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52721
|
+
message: string;
|
|
52722
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52723
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52235
52724
|
}>;
|
|
52236
52725
|
/** 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). */
|
|
52237
52726
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52318,6 +52807,13 @@ interface Routes {
|
|
|
52318
52807
|
message: string;
|
|
52319
52808
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52320
52809
|
warning_code: 'being_deleted';
|
|
52810
|
+
} | {
|
|
52811
|
+
/** Date and time at which Seam created the warning. */
|
|
52812
|
+
created_at: string;
|
|
52813
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52814
|
+
message: string;
|
|
52815
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52816
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52321
52817
|
}>;
|
|
52322
52818
|
/** 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). */
|
|
52323
52819
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52800,6 +53296,13 @@ interface Routes {
|
|
|
52800
53296
|
message: string;
|
|
52801
53297
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52802
53298
|
warning_code: 'being_deleted';
|
|
53299
|
+
} | {
|
|
53300
|
+
/** Date and time at which Seam created the warning. */
|
|
53301
|
+
created_at: string;
|
|
53302
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53303
|
+
message: string;
|
|
53304
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53305
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52803
53306
|
}>;
|
|
52804
53307
|
/** 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). */
|
|
52805
53308
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -52886,6 +53389,13 @@ interface Routes {
|
|
|
52886
53389
|
message: string;
|
|
52887
53390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52888
53391
|
warning_code: 'being_deleted';
|
|
53392
|
+
} | {
|
|
53393
|
+
/** Date and time at which Seam created the warning. */
|
|
53394
|
+
created_at: string;
|
|
53395
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53396
|
+
message: string;
|
|
53397
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53398
|
+
warning_code: 'unknown_issue_with_credential';
|
|
52889
53399
|
}>;
|
|
52890
53400
|
/** 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). */
|
|
52891
53401
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53009,6 +53519,13 @@ interface Routes {
|
|
|
53009
53519
|
message: string;
|
|
53010
53520
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53011
53521
|
warning_code: 'being_deleted';
|
|
53522
|
+
} | {
|
|
53523
|
+
/** Date and time at which Seam created the warning. */
|
|
53524
|
+
created_at: string;
|
|
53525
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53526
|
+
message: string;
|
|
53527
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53528
|
+
warning_code: 'unknown_issue_with_credential';
|
|
53012
53529
|
}>;
|
|
53013
53530
|
/** 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). */
|
|
53014
53531
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -53095,6 +53612,13 @@ interface Routes {
|
|
|
53095
53612
|
message: string;
|
|
53096
53613
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53097
53614
|
warning_code: 'being_deleted';
|
|
53615
|
+
} | {
|
|
53616
|
+
/** Date and time at which Seam created the warning. */
|
|
53617
|
+
created_at: string;
|
|
53618
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53619
|
+
message: string;
|
|
53620
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53621
|
+
warning_code: 'unknown_issue_with_credential';
|
|
53098
53622
|
}>;
|
|
53099
53623
|
/** 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). */
|
|
53100
53624
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54687,6 +55211,13 @@ interface Routes {
|
|
|
54687
55211
|
message: string;
|
|
54688
55212
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54689
55213
|
warning_code: 'being_deleted';
|
|
55214
|
+
} | {
|
|
55215
|
+
/** Date and time at which Seam created the warning. */
|
|
55216
|
+
created_at: string;
|
|
55217
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55218
|
+
message: string;
|
|
55219
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55220
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54690
55221
|
}>;
|
|
54691
55222
|
/** 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). */
|
|
54692
55223
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54773,6 +55304,13 @@ interface Routes {
|
|
|
54773
55304
|
message: string;
|
|
54774
55305
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54775
55306
|
warning_code: 'being_deleted';
|
|
55307
|
+
} | {
|
|
55308
|
+
/** Date and time at which Seam created the warning. */
|
|
55309
|
+
created_at: string;
|
|
55310
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55311
|
+
message: string;
|
|
55312
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55313
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54776
55314
|
}>;
|
|
54777
55315
|
/** 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). */
|
|
54778
55316
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54896,6 +55434,13 @@ interface Routes {
|
|
|
54896
55434
|
message: string;
|
|
54897
55435
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54898
55436
|
warning_code: 'being_deleted';
|
|
55437
|
+
} | {
|
|
55438
|
+
/** Date and time at which Seam created the warning. */
|
|
55439
|
+
created_at: string;
|
|
55440
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55441
|
+
message: string;
|
|
55442
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55443
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54899
55444
|
}>;
|
|
54900
55445
|
/** 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). */
|
|
54901
55446
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -54982,6 +55527,13 @@ interface Routes {
|
|
|
54982
55527
|
message: string;
|
|
54983
55528
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54984
55529
|
warning_code: 'being_deleted';
|
|
55530
|
+
} | {
|
|
55531
|
+
/** Date and time at which Seam created the warning. */
|
|
55532
|
+
created_at: string;
|
|
55533
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55534
|
+
message: string;
|
|
55535
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55536
|
+
warning_code: 'unknown_issue_with_credential';
|
|
54985
55537
|
}>;
|
|
54986
55538
|
/** 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). */
|
|
54987
55539
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55474,6 +56026,13 @@ interface Routes {
|
|
|
55474
56026
|
message: string;
|
|
55475
56027
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55476
56028
|
warning_code: 'being_deleted';
|
|
56029
|
+
} | {
|
|
56030
|
+
/** Date and time at which Seam created the warning. */
|
|
56031
|
+
created_at: string;
|
|
56032
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56033
|
+
message: string;
|
|
56034
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56035
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55477
56036
|
}>;
|
|
55478
56037
|
/** 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). */
|
|
55479
56038
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55560,6 +56119,13 @@ interface Routes {
|
|
|
55560
56119
|
message: string;
|
|
55561
56120
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55562
56121
|
warning_code: 'being_deleted';
|
|
56122
|
+
} | {
|
|
56123
|
+
/** Date and time at which Seam created the warning. */
|
|
56124
|
+
created_at: string;
|
|
56125
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56126
|
+
message: string;
|
|
56127
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56128
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55563
56129
|
}>;
|
|
55564
56130
|
/** 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). */
|
|
55565
56131
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55683,6 +56249,13 @@ interface Routes {
|
|
|
55683
56249
|
message: string;
|
|
55684
56250
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55685
56251
|
warning_code: 'being_deleted';
|
|
56252
|
+
} | {
|
|
56253
|
+
/** Date and time at which Seam created the warning. */
|
|
56254
|
+
created_at: string;
|
|
56255
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56256
|
+
message: string;
|
|
56257
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56258
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55686
56259
|
}>;
|
|
55687
56260
|
/** 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). */
|
|
55688
56261
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -55769,6 +56342,13 @@ interface Routes {
|
|
|
55769
56342
|
message: string;
|
|
55770
56343
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55771
56344
|
warning_code: 'being_deleted';
|
|
56345
|
+
} | {
|
|
56346
|
+
/** Date and time at which Seam created the warning. */
|
|
56347
|
+
created_at: string;
|
|
56348
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56349
|
+
message: string;
|
|
56350
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56351
|
+
warning_code: 'unknown_issue_with_credential';
|
|
55772
56352
|
}>;
|
|
55773
56353
|
/** 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). */
|
|
55774
56354
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56300,6 +56880,13 @@ interface Routes {
|
|
|
56300
56880
|
message: string;
|
|
56301
56881
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56302
56882
|
warning_code: 'being_deleted';
|
|
56883
|
+
} | {
|
|
56884
|
+
/** Date and time at which Seam created the warning. */
|
|
56885
|
+
created_at: string;
|
|
56886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56887
|
+
message: string;
|
|
56888
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56889
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56303
56890
|
}>;
|
|
56304
56891
|
/** 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). */
|
|
56305
56892
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56386,6 +56973,13 @@ interface Routes {
|
|
|
56386
56973
|
message: string;
|
|
56387
56974
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56388
56975
|
warning_code: 'being_deleted';
|
|
56976
|
+
} | {
|
|
56977
|
+
/** Date and time at which Seam created the warning. */
|
|
56978
|
+
created_at: string;
|
|
56979
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
56980
|
+
message: string;
|
|
56981
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56982
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56389
56983
|
}>;
|
|
56390
56984
|
/** 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). */
|
|
56391
56985
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56509,6 +57103,13 @@ interface Routes {
|
|
|
56509
57103
|
message: string;
|
|
56510
57104
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56511
57105
|
warning_code: 'being_deleted';
|
|
57106
|
+
} | {
|
|
57107
|
+
/** Date and time at which Seam created the warning. */
|
|
57108
|
+
created_at: string;
|
|
57109
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57110
|
+
message: string;
|
|
57111
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57112
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56512
57113
|
}>;
|
|
56513
57114
|
/** 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). */
|
|
56514
57115
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -56595,6 +57196,13 @@ interface Routes {
|
|
|
56595
57196
|
message: string;
|
|
56596
57197
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
56597
57198
|
warning_code: 'being_deleted';
|
|
57199
|
+
} | {
|
|
57200
|
+
/** Date and time at which Seam created the warning. */
|
|
57201
|
+
created_at: string;
|
|
57202
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57203
|
+
message: string;
|
|
57204
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57205
|
+
warning_code: 'unknown_issue_with_credential';
|
|
56598
57206
|
}>;
|
|
56599
57207
|
/** 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). */
|
|
56600
57208
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57261,6 +57869,13 @@ interface Routes {
|
|
|
57261
57869
|
message: string;
|
|
57262
57870
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57263
57871
|
warning_code: 'being_deleted';
|
|
57872
|
+
} | {
|
|
57873
|
+
/** Date and time at which Seam created the warning. */
|
|
57874
|
+
created_at: string;
|
|
57875
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57876
|
+
message: string;
|
|
57877
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57878
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57264
57879
|
}>;
|
|
57265
57880
|
/** 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). */
|
|
57266
57881
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57347,6 +57962,13 @@ interface Routes {
|
|
|
57347
57962
|
message: string;
|
|
57348
57963
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57349
57964
|
warning_code: 'being_deleted';
|
|
57965
|
+
} | {
|
|
57966
|
+
/** Date and time at which Seam created the warning. */
|
|
57967
|
+
created_at: string;
|
|
57968
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57969
|
+
message: string;
|
|
57970
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57971
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57350
57972
|
}>;
|
|
57351
57973
|
/** 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). */
|
|
57352
57974
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57470,6 +58092,13 @@ interface Routes {
|
|
|
57470
58092
|
message: string;
|
|
57471
58093
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57472
58094
|
warning_code: 'being_deleted';
|
|
58095
|
+
} | {
|
|
58096
|
+
/** Date and time at which Seam created the warning. */
|
|
58097
|
+
created_at: string;
|
|
58098
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58099
|
+
message: string;
|
|
58100
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58101
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57473
58102
|
}>;
|
|
57474
58103
|
/** 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). */
|
|
57475
58104
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -57556,6 +58185,13 @@ interface Routes {
|
|
|
57556
58185
|
message: string;
|
|
57557
58186
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57558
58187
|
warning_code: 'being_deleted';
|
|
58188
|
+
} | {
|
|
58189
|
+
/** Date and time at which Seam created the warning. */
|
|
58190
|
+
created_at: string;
|
|
58191
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58192
|
+
message: string;
|
|
58193
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58194
|
+
warning_code: 'unknown_issue_with_credential';
|
|
57559
58195
|
}>;
|
|
57560
58196
|
/** 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). */
|
|
57561
58197
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58044,6 +58680,13 @@ interface Routes {
|
|
|
58044
58680
|
message: string;
|
|
58045
58681
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58046
58682
|
warning_code: 'being_deleted';
|
|
58683
|
+
} | {
|
|
58684
|
+
/** Date and time at which Seam created the warning. */
|
|
58685
|
+
created_at: string;
|
|
58686
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58687
|
+
message: string;
|
|
58688
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58689
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58047
58690
|
}>;
|
|
58048
58691
|
/** 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). */
|
|
58049
58692
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58130,6 +58773,13 @@ interface Routes {
|
|
|
58130
58773
|
message: string;
|
|
58131
58774
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58132
58775
|
warning_code: 'being_deleted';
|
|
58776
|
+
} | {
|
|
58777
|
+
/** Date and time at which Seam created the warning. */
|
|
58778
|
+
created_at: string;
|
|
58779
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58780
|
+
message: string;
|
|
58781
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58782
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58133
58783
|
}>;
|
|
58134
58784
|
/** 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). */
|
|
58135
58785
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58253,6 +58903,13 @@ interface Routes {
|
|
|
58253
58903
|
message: string;
|
|
58254
58904
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58255
58905
|
warning_code: 'being_deleted';
|
|
58906
|
+
} | {
|
|
58907
|
+
/** Date and time at which Seam created the warning. */
|
|
58908
|
+
created_at: string;
|
|
58909
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58910
|
+
message: string;
|
|
58911
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58912
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58256
58913
|
}>;
|
|
58257
58914
|
/** 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). */
|
|
58258
58915
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -58339,6 +58996,13 @@ interface Routes {
|
|
|
58339
58996
|
message: string;
|
|
58340
58997
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58341
58998
|
warning_code: 'being_deleted';
|
|
58999
|
+
} | {
|
|
59000
|
+
/** Date and time at which Seam created the warning. */
|
|
59001
|
+
created_at: string;
|
|
59002
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
59003
|
+
message: string;
|
|
59004
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59005
|
+
warning_code: 'unknown_issue_with_credential';
|
|
58342
59006
|
}>;
|
|
58343
59007
|
/** 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). */
|
|
58344
59008
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59404,6 +60068,13 @@ interface Routes {
|
|
|
59404
60068
|
message: string;
|
|
59405
60069
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59406
60070
|
warning_code: 'being_deleted';
|
|
60071
|
+
} | {
|
|
60072
|
+
/** Date and time at which Seam created the warning. */
|
|
60073
|
+
created_at: string;
|
|
60074
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60075
|
+
message: string;
|
|
60076
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60077
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59407
60078
|
}>;
|
|
59408
60079
|
/** 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). */
|
|
59409
60080
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59490,6 +60161,13 @@ interface Routes {
|
|
|
59490
60161
|
message: string;
|
|
59491
60162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59492
60163
|
warning_code: 'being_deleted';
|
|
60164
|
+
} | {
|
|
60165
|
+
/** Date and time at which Seam created the warning. */
|
|
60166
|
+
created_at: string;
|
|
60167
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60168
|
+
message: string;
|
|
60169
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60170
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59493
60171
|
}>;
|
|
59494
60172
|
/** 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). */
|
|
59495
60173
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59613,6 +60291,13 @@ interface Routes {
|
|
|
59613
60291
|
message: string;
|
|
59614
60292
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59615
60293
|
warning_code: 'being_deleted';
|
|
60294
|
+
} | {
|
|
60295
|
+
/** Date and time at which Seam created the warning. */
|
|
60296
|
+
created_at: string;
|
|
60297
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60298
|
+
message: string;
|
|
60299
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60300
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59616
60301
|
}>;
|
|
59617
60302
|
/** 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). */
|
|
59618
60303
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -59699,6 +60384,13 @@ interface Routes {
|
|
|
59699
60384
|
message: string;
|
|
59700
60385
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
59701
60386
|
warning_code: 'being_deleted';
|
|
60387
|
+
} | {
|
|
60388
|
+
/** Date and time at which Seam created the warning. */
|
|
60389
|
+
created_at: string;
|
|
60390
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60391
|
+
message: string;
|
|
60392
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60393
|
+
warning_code: 'unknown_issue_with_credential';
|
|
59702
60394
|
}>;
|
|
59703
60395
|
/** 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). */
|
|
59704
60396
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60191,6 +60883,13 @@ interface Routes {
|
|
|
60191
60883
|
message: string;
|
|
60192
60884
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60193
60885
|
warning_code: 'being_deleted';
|
|
60886
|
+
} | {
|
|
60887
|
+
/** Date and time at which Seam created the warning. */
|
|
60888
|
+
created_at: string;
|
|
60889
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60890
|
+
message: string;
|
|
60891
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60892
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60194
60893
|
}>;
|
|
60195
60894
|
/** 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). */
|
|
60196
60895
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60277,6 +60976,13 @@ interface Routes {
|
|
|
60277
60976
|
message: string;
|
|
60278
60977
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60279
60978
|
warning_code: 'being_deleted';
|
|
60979
|
+
} | {
|
|
60980
|
+
/** Date and time at which Seam created the warning. */
|
|
60981
|
+
created_at: string;
|
|
60982
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
60983
|
+
message: string;
|
|
60984
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60985
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60280
60986
|
}>;
|
|
60281
60987
|
/** 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). */
|
|
60282
60988
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60400,6 +61106,13 @@ interface Routes {
|
|
|
60400
61106
|
message: string;
|
|
60401
61107
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60402
61108
|
warning_code: 'being_deleted';
|
|
61109
|
+
} | {
|
|
61110
|
+
/** Date and time at which Seam created the warning. */
|
|
61111
|
+
created_at: string;
|
|
61112
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61113
|
+
message: string;
|
|
61114
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61115
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60403
61116
|
}>;
|
|
60404
61117
|
/** 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). */
|
|
60405
61118
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -60486,6 +61199,13 @@ interface Routes {
|
|
|
60486
61199
|
message: string;
|
|
60487
61200
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60488
61201
|
warning_code: 'being_deleted';
|
|
61202
|
+
} | {
|
|
61203
|
+
/** Date and time at which Seam created the warning. */
|
|
61204
|
+
created_at: string;
|
|
61205
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61206
|
+
message: string;
|
|
61207
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61208
|
+
warning_code: 'unknown_issue_with_credential';
|
|
60489
61209
|
}>;
|
|
60490
61210
|
/** 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). */
|
|
60491
61211
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62041,6 +62761,13 @@ interface Routes {
|
|
|
62041
62761
|
message: string;
|
|
62042
62762
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62043
62763
|
warning_code: 'being_deleted';
|
|
62764
|
+
} | {
|
|
62765
|
+
/** Date and time at which Seam created the warning. */
|
|
62766
|
+
created_at: string;
|
|
62767
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62768
|
+
message: string;
|
|
62769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62770
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62044
62771
|
}>;
|
|
62045
62772
|
/** 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). */
|
|
62046
62773
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62127,6 +62854,13 @@ interface Routes {
|
|
|
62127
62854
|
message: string;
|
|
62128
62855
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62129
62856
|
warning_code: 'being_deleted';
|
|
62857
|
+
} | {
|
|
62858
|
+
/** Date and time at which Seam created the warning. */
|
|
62859
|
+
created_at: string;
|
|
62860
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62861
|
+
message: string;
|
|
62862
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62863
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62130
62864
|
}>;
|
|
62131
62865
|
/** 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). */
|
|
62132
62866
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62250,6 +62984,13 @@ interface Routes {
|
|
|
62250
62984
|
message: string;
|
|
62251
62985
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62252
62986
|
warning_code: 'being_deleted';
|
|
62987
|
+
} | {
|
|
62988
|
+
/** Date and time at which Seam created the warning. */
|
|
62989
|
+
created_at: string;
|
|
62990
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62991
|
+
message: string;
|
|
62992
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62993
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62253
62994
|
}>;
|
|
62254
62995
|
/** 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). */
|
|
62255
62996
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62336,6 +63077,13 @@ interface Routes {
|
|
|
62336
63077
|
message: string;
|
|
62337
63078
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62338
63079
|
warning_code: 'being_deleted';
|
|
63080
|
+
} | {
|
|
63081
|
+
/** Date and time at which Seam created the warning. */
|
|
63082
|
+
created_at: string;
|
|
63083
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63084
|
+
message: string;
|
|
63085
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63086
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62339
63087
|
}>;
|
|
62340
63088
|
/** 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). */
|
|
62341
63089
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -62995,6 +63743,13 @@ interface Routes {
|
|
|
62995
63743
|
message: string;
|
|
62996
63744
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62997
63745
|
warning_code: 'being_deleted';
|
|
63746
|
+
} | {
|
|
63747
|
+
/** Date and time at which Seam created the warning. */
|
|
63748
|
+
created_at: string;
|
|
63749
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63750
|
+
message: string;
|
|
63751
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63752
|
+
warning_code: 'unknown_issue_with_credential';
|
|
62998
63753
|
}>;
|
|
62999
63754
|
/** 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). */
|
|
63000
63755
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63081,6 +63836,13 @@ interface Routes {
|
|
|
63081
63836
|
message: string;
|
|
63082
63837
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63083
63838
|
warning_code: 'being_deleted';
|
|
63839
|
+
} | {
|
|
63840
|
+
/** Date and time at which Seam created the warning. */
|
|
63841
|
+
created_at: string;
|
|
63842
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63843
|
+
message: string;
|
|
63844
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63845
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63084
63846
|
}>;
|
|
63085
63847
|
/** 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). */
|
|
63086
63848
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63204,6 +63966,13 @@ interface Routes {
|
|
|
63204
63966
|
message: string;
|
|
63205
63967
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63206
63968
|
warning_code: 'being_deleted';
|
|
63969
|
+
} | {
|
|
63970
|
+
/** Date and time at which Seam created the warning. */
|
|
63971
|
+
created_at: string;
|
|
63972
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63973
|
+
message: string;
|
|
63974
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63975
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63207
63976
|
}>;
|
|
63208
63977
|
/** 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). */
|
|
63209
63978
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63290,6 +64059,13 @@ interface Routes {
|
|
|
63290
64059
|
message: string;
|
|
63291
64060
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63292
64061
|
warning_code: 'being_deleted';
|
|
64062
|
+
} | {
|
|
64063
|
+
/** Date and time at which Seam created the warning. */
|
|
64064
|
+
created_at: string;
|
|
64065
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64066
|
+
message: string;
|
|
64067
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64068
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63293
64069
|
}>;
|
|
63294
64070
|
/** 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). */
|
|
63295
64071
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63801,6 +64577,13 @@ interface Routes {
|
|
|
63801
64577
|
message: string;
|
|
63802
64578
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63803
64579
|
warning_code: 'being_deleted';
|
|
64580
|
+
} | {
|
|
64581
|
+
/** Date and time at which Seam created the warning. */
|
|
64582
|
+
created_at: string;
|
|
64583
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64584
|
+
message: string;
|
|
64585
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64586
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63804
64587
|
}>;
|
|
63805
64588
|
/** 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). */
|
|
63806
64589
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -63887,6 +64670,13 @@ interface Routes {
|
|
|
63887
64670
|
message: string;
|
|
63888
64671
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63889
64672
|
warning_code: 'being_deleted';
|
|
64673
|
+
} | {
|
|
64674
|
+
/** Date and time at which Seam created the warning. */
|
|
64675
|
+
created_at: string;
|
|
64676
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64677
|
+
message: string;
|
|
64678
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64679
|
+
warning_code: 'unknown_issue_with_credential';
|
|
63890
64680
|
}>;
|
|
63891
64681
|
/** 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). */
|
|
63892
64682
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64010,6 +64800,13 @@ interface Routes {
|
|
|
64010
64800
|
message: string;
|
|
64011
64801
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64012
64802
|
warning_code: 'being_deleted';
|
|
64803
|
+
} | {
|
|
64804
|
+
/** Date and time at which Seam created the warning. */
|
|
64805
|
+
created_at: string;
|
|
64806
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64807
|
+
message: string;
|
|
64808
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64809
|
+
warning_code: 'unknown_issue_with_credential';
|
|
64013
64810
|
}>;
|
|
64014
64811
|
/** 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). */
|
|
64015
64812
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -64096,6 +64893,13 @@ interface Routes {
|
|
|
64096
64893
|
message: string;
|
|
64097
64894
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64098
64895
|
warning_code: 'being_deleted';
|
|
64896
|
+
} | {
|
|
64897
|
+
/** Date and time at which Seam created the warning. */
|
|
64898
|
+
created_at: string;
|
|
64899
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64900
|
+
message: string;
|
|
64901
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64902
|
+
warning_code: 'unknown_issue_with_credential';
|
|
64099
64903
|
}>;
|
|
64100
64904
|
/** 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). */
|
|
64101
64905
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66324,6 +67128,13 @@ interface Routes {
|
|
|
66324
67128
|
message: string;
|
|
66325
67129
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66326
67130
|
warning_code: 'being_deleted';
|
|
67131
|
+
} | {
|
|
67132
|
+
/** Date and time at which Seam created the warning. */
|
|
67133
|
+
created_at: string;
|
|
67134
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67135
|
+
message: string;
|
|
67136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67137
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66327
67138
|
}>;
|
|
66328
67139
|
/** 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). */
|
|
66329
67140
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66410,6 +67221,13 @@ interface Routes {
|
|
|
66410
67221
|
message: string;
|
|
66411
67222
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66412
67223
|
warning_code: 'being_deleted';
|
|
67224
|
+
} | {
|
|
67225
|
+
/** Date and time at which Seam created the warning. */
|
|
67226
|
+
created_at: string;
|
|
67227
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67228
|
+
message: string;
|
|
67229
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67230
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66413
67231
|
}>;
|
|
66414
67232
|
/** 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). */
|
|
66415
67233
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66533,6 +67351,13 @@ interface Routes {
|
|
|
66533
67351
|
message: string;
|
|
66534
67352
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66535
67353
|
warning_code: 'being_deleted';
|
|
67354
|
+
} | {
|
|
67355
|
+
/** Date and time at which Seam created the warning. */
|
|
67356
|
+
created_at: string;
|
|
67357
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67358
|
+
message: string;
|
|
67359
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67360
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66536
67361
|
}>;
|
|
66537
67362
|
/** 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). */
|
|
66538
67363
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
@@ -66619,6 +67444,13 @@ interface Routes {
|
|
|
66619
67444
|
message: string;
|
|
66620
67445
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
66621
67446
|
warning_code: 'being_deleted';
|
|
67447
|
+
} | {
|
|
67448
|
+
/** Date and time at which Seam created the warning. */
|
|
67449
|
+
created_at: string;
|
|
67450
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67451
|
+
message: string;
|
|
67452
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67453
|
+
warning_code: 'unknown_issue_with_credential';
|
|
66622
67454
|
}>;
|
|
66623
67455
|
/** 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). */
|
|
66624
67456
|
is_multi_phone_sync_credential?: boolean | undefined;
|