@seamapi/types 1.358.0 → 1.360.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 +532 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2726 -1075
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +100 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +100 -0
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.d.ts +74 -74
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +8 -8
- package/lib/seam/connect/models/acs/acs-system.d.ts +72 -72
- package/lib/seam/connect/models/acs/acs-user.d.ts +104 -104
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +168 -168
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +72 -72
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +96 -96
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +634 -21
- package/lib/seam/connect/models/connected-accounts/connected-account.js +56 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +24 -24
- package/lib/seam/connect/models/devices/device.d.ts +146 -46
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +127 -27
- package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
- package/lib/seam/connect/models/events/connect-webviews.d.ts +4 -4
- package/lib/seam/connect/models/events/connected-accounts.d.ts +28 -28
- package/lib/seam/connect/models/events/devices.d.ts +188 -128
- package/lib/seam/connect/models/events/devices.js +10 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +144 -115
- package/lib/seam/connect/openapi.d.ts +482 -4
- package/lib/seam/connect/openapi.js +469 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +601 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/model-types.ts +0 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +77 -2
- package/src/lib/seam/connect/models/events/devices.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +502 -2
- package/src/lib/seam/connect/route-types.ts +633 -0
|
@@ -308,12 +308,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
308
308
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
309
309
|
}>, "strip", z.ZodTypeAny, {
|
|
310
310
|
message: string;
|
|
311
|
-
warning_code: "waiting_to_be_issued";
|
|
312
311
|
created_at: string;
|
|
312
|
+
warning_code: "waiting_to_be_issued";
|
|
313
313
|
}, {
|
|
314
314
|
message: string;
|
|
315
|
-
warning_code: "waiting_to_be_issued";
|
|
316
315
|
created_at: string;
|
|
316
|
+
warning_code: "waiting_to_be_issued";
|
|
317
317
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
318
318
|
created_at: z.ZodString;
|
|
319
319
|
message: z.ZodString;
|
|
@@ -321,12 +321,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
321
321
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
322
322
|
}>, "strip", z.ZodTypeAny, {
|
|
323
323
|
message: string;
|
|
324
|
-
warning_code: "schedule_externally_modified";
|
|
325
324
|
created_at: string;
|
|
325
|
+
warning_code: "schedule_externally_modified";
|
|
326
326
|
}, {
|
|
327
327
|
message: string;
|
|
328
|
-
warning_code: "schedule_externally_modified";
|
|
329
328
|
created_at: string;
|
|
329
|
+
warning_code: "schedule_externally_modified";
|
|
330
330
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
331
331
|
created_at: z.ZodString;
|
|
332
332
|
message: z.ZodString;
|
|
@@ -334,12 +334,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
334
334
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
335
335
|
}>, "strip", z.ZodTypeAny, {
|
|
336
336
|
message: string;
|
|
337
|
-
warning_code: "schedule_modified";
|
|
338
337
|
created_at: string;
|
|
338
|
+
warning_code: "schedule_modified";
|
|
339
339
|
}, {
|
|
340
340
|
message: string;
|
|
341
|
-
warning_code: "schedule_modified";
|
|
342
341
|
created_at: string;
|
|
342
|
+
warning_code: "schedule_modified";
|
|
343
343
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
344
344
|
created_at: z.ZodString;
|
|
345
345
|
message: z.ZodString;
|
|
@@ -347,12 +347,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
347
347
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
348
348
|
}>, "strip", z.ZodTypeAny, {
|
|
349
349
|
message: string;
|
|
350
|
-
warning_code: "being_deleted";
|
|
351
350
|
created_at: string;
|
|
351
|
+
warning_code: "being_deleted";
|
|
352
352
|
}, {
|
|
353
353
|
message: string;
|
|
354
|
-
warning_code: "being_deleted";
|
|
355
354
|
created_at: string;
|
|
355
|
+
warning_code: "being_deleted";
|
|
356
356
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
357
357
|
created_at: z.ZodString;
|
|
358
358
|
message: z.ZodString;
|
|
@@ -360,12 +360,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
360
360
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
361
361
|
}>, "strip", z.ZodTypeAny, {
|
|
362
362
|
message: string;
|
|
363
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
364
363
|
created_at: string;
|
|
364
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
365
365
|
}, {
|
|
366
366
|
message: string;
|
|
367
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
368
367
|
created_at: string;
|
|
368
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
369
369
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
370
370
|
created_at: z.ZodString;
|
|
371
371
|
message: z.ZodString;
|
|
@@ -373,12 +373,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
373
373
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
374
374
|
}>, "strip", z.ZodTypeAny, {
|
|
375
375
|
message: string;
|
|
376
|
-
warning_code: "needs_to_be_reissued";
|
|
377
376
|
created_at: string;
|
|
377
|
+
warning_code: "needs_to_be_reissued";
|
|
378
378
|
}, {
|
|
379
379
|
message: string;
|
|
380
|
-
warning_code: "needs_to_be_reissued";
|
|
381
380
|
created_at: string;
|
|
381
|
+
warning_code: "needs_to_be_reissued";
|
|
382
382
|
}>]>, "many">;
|
|
383
383
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
384
384
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -440,28 +440,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
440
440
|
}[];
|
|
441
441
|
warnings: ({
|
|
442
442
|
message: string;
|
|
443
|
-
warning_code: "waiting_to_be_issued";
|
|
444
443
|
created_at: string;
|
|
444
|
+
warning_code: "waiting_to_be_issued";
|
|
445
445
|
} | {
|
|
446
446
|
message: string;
|
|
447
|
-
warning_code: "schedule_externally_modified";
|
|
448
447
|
created_at: string;
|
|
448
|
+
warning_code: "schedule_externally_modified";
|
|
449
449
|
} | {
|
|
450
450
|
message: string;
|
|
451
|
-
warning_code: "schedule_modified";
|
|
452
451
|
created_at: string;
|
|
452
|
+
warning_code: "schedule_modified";
|
|
453
453
|
} | {
|
|
454
454
|
message: string;
|
|
455
|
-
warning_code: "being_deleted";
|
|
456
455
|
created_at: string;
|
|
456
|
+
warning_code: "being_deleted";
|
|
457
457
|
} | {
|
|
458
458
|
message: string;
|
|
459
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
460
459
|
created_at: string;
|
|
460
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
461
461
|
} | {
|
|
462
462
|
message: string;
|
|
463
|
-
warning_code: "needs_to_be_reissued";
|
|
464
463
|
created_at: string;
|
|
464
|
+
warning_code: "needs_to_be_reissued";
|
|
465
465
|
})[];
|
|
466
466
|
display_name: string;
|
|
467
467
|
workspace_id: string;
|
|
@@ -509,28 +509,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
509
509
|
}[];
|
|
510
510
|
warnings: ({
|
|
511
511
|
message: string;
|
|
512
|
-
warning_code: "waiting_to_be_issued";
|
|
513
512
|
created_at: string;
|
|
513
|
+
warning_code: "waiting_to_be_issued";
|
|
514
514
|
} | {
|
|
515
515
|
message: string;
|
|
516
|
-
warning_code: "schedule_externally_modified";
|
|
517
516
|
created_at: string;
|
|
517
|
+
warning_code: "schedule_externally_modified";
|
|
518
518
|
} | {
|
|
519
519
|
message: string;
|
|
520
|
-
warning_code: "schedule_modified";
|
|
521
520
|
created_at: string;
|
|
521
|
+
warning_code: "schedule_modified";
|
|
522
522
|
} | {
|
|
523
523
|
message: string;
|
|
524
|
-
warning_code: "being_deleted";
|
|
525
524
|
created_at: string;
|
|
525
|
+
warning_code: "being_deleted";
|
|
526
526
|
} | {
|
|
527
527
|
message: string;
|
|
528
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
529
528
|
created_at: string;
|
|
529
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
530
530
|
} | {
|
|
531
531
|
message: string;
|
|
532
|
-
warning_code: "needs_to_be_reissued";
|
|
533
532
|
created_at: string;
|
|
533
|
+
warning_code: "needs_to_be_reissued";
|
|
534
534
|
})[];
|
|
535
535
|
display_name: string;
|
|
536
536
|
workspace_id: string;
|
|
@@ -606,12 +606,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
606
606
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
607
607
|
}>, "strip", z.ZodTypeAny, {
|
|
608
608
|
message: string;
|
|
609
|
-
warning_code: "waiting_to_be_issued";
|
|
610
609
|
created_at: string;
|
|
610
|
+
warning_code: "waiting_to_be_issued";
|
|
611
611
|
}, {
|
|
612
612
|
message: string;
|
|
613
|
-
warning_code: "waiting_to_be_issued";
|
|
614
613
|
created_at: string;
|
|
614
|
+
warning_code: "waiting_to_be_issued";
|
|
615
615
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
616
616
|
created_at: z.ZodString;
|
|
617
617
|
message: z.ZodString;
|
|
@@ -619,12 +619,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
619
619
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
620
620
|
}>, "strip", z.ZodTypeAny, {
|
|
621
621
|
message: string;
|
|
622
|
-
warning_code: "schedule_externally_modified";
|
|
623
622
|
created_at: string;
|
|
623
|
+
warning_code: "schedule_externally_modified";
|
|
624
624
|
}, {
|
|
625
625
|
message: string;
|
|
626
|
-
warning_code: "schedule_externally_modified";
|
|
627
626
|
created_at: string;
|
|
627
|
+
warning_code: "schedule_externally_modified";
|
|
628
628
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
629
629
|
created_at: z.ZodString;
|
|
630
630
|
message: z.ZodString;
|
|
@@ -632,12 +632,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
632
632
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
633
633
|
}>, "strip", z.ZodTypeAny, {
|
|
634
634
|
message: string;
|
|
635
|
-
warning_code: "schedule_modified";
|
|
636
635
|
created_at: string;
|
|
636
|
+
warning_code: "schedule_modified";
|
|
637
637
|
}, {
|
|
638
638
|
message: string;
|
|
639
|
-
warning_code: "schedule_modified";
|
|
640
639
|
created_at: string;
|
|
640
|
+
warning_code: "schedule_modified";
|
|
641
641
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
642
642
|
created_at: z.ZodString;
|
|
643
643
|
message: z.ZodString;
|
|
@@ -645,12 +645,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
645
645
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
646
646
|
}>, "strip", z.ZodTypeAny, {
|
|
647
647
|
message: string;
|
|
648
|
-
warning_code: "being_deleted";
|
|
649
648
|
created_at: string;
|
|
649
|
+
warning_code: "being_deleted";
|
|
650
650
|
}, {
|
|
651
651
|
message: string;
|
|
652
|
-
warning_code: "being_deleted";
|
|
653
652
|
created_at: string;
|
|
653
|
+
warning_code: "being_deleted";
|
|
654
654
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
655
655
|
created_at: z.ZodString;
|
|
656
656
|
message: z.ZodString;
|
|
@@ -658,12 +658,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
658
658
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
659
659
|
}>, "strip", z.ZodTypeAny, {
|
|
660
660
|
message: string;
|
|
661
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
662
661
|
created_at: string;
|
|
662
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
663
663
|
}, {
|
|
664
664
|
message: string;
|
|
665
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
666
665
|
created_at: string;
|
|
666
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
667
667
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
668
668
|
created_at: z.ZodString;
|
|
669
669
|
message: z.ZodString;
|
|
@@ -671,12 +671,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
671
671
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
672
672
|
}>, "strip", z.ZodTypeAny, {
|
|
673
673
|
message: string;
|
|
674
|
-
warning_code: "needs_to_be_reissued";
|
|
675
674
|
created_at: string;
|
|
675
|
+
warning_code: "needs_to_be_reissued";
|
|
676
676
|
}, {
|
|
677
677
|
message: string;
|
|
678
|
-
warning_code: "needs_to_be_reissued";
|
|
679
678
|
created_at: string;
|
|
679
|
+
warning_code: "needs_to_be_reissued";
|
|
680
680
|
}>]>, "many">;
|
|
681
681
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
682
682
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -738,28 +738,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
738
738
|
}[];
|
|
739
739
|
warnings: ({
|
|
740
740
|
message: string;
|
|
741
|
-
warning_code: "waiting_to_be_issued";
|
|
742
741
|
created_at: string;
|
|
742
|
+
warning_code: "waiting_to_be_issued";
|
|
743
743
|
} | {
|
|
744
744
|
message: string;
|
|
745
|
-
warning_code: "schedule_externally_modified";
|
|
746
745
|
created_at: string;
|
|
746
|
+
warning_code: "schedule_externally_modified";
|
|
747
747
|
} | {
|
|
748
748
|
message: string;
|
|
749
|
-
warning_code: "schedule_modified";
|
|
750
749
|
created_at: string;
|
|
750
|
+
warning_code: "schedule_modified";
|
|
751
751
|
} | {
|
|
752
752
|
message: string;
|
|
753
|
-
warning_code: "being_deleted";
|
|
754
753
|
created_at: string;
|
|
754
|
+
warning_code: "being_deleted";
|
|
755
755
|
} | {
|
|
756
756
|
message: string;
|
|
757
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
758
757
|
created_at: string;
|
|
758
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
759
759
|
} | {
|
|
760
760
|
message: string;
|
|
761
|
-
warning_code: "needs_to_be_reissued";
|
|
762
761
|
created_at: string;
|
|
762
|
+
warning_code: "needs_to_be_reissued";
|
|
763
763
|
})[];
|
|
764
764
|
display_name: string;
|
|
765
765
|
workspace_id: string;
|
|
@@ -807,28 +807,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
807
807
|
}[];
|
|
808
808
|
warnings: ({
|
|
809
809
|
message: string;
|
|
810
|
-
warning_code: "waiting_to_be_issued";
|
|
811
810
|
created_at: string;
|
|
811
|
+
warning_code: "waiting_to_be_issued";
|
|
812
812
|
} | {
|
|
813
813
|
message: string;
|
|
814
|
-
warning_code: "schedule_externally_modified";
|
|
815
814
|
created_at: string;
|
|
815
|
+
warning_code: "schedule_externally_modified";
|
|
816
816
|
} | {
|
|
817
817
|
message: string;
|
|
818
|
-
warning_code: "schedule_modified";
|
|
819
818
|
created_at: string;
|
|
819
|
+
warning_code: "schedule_modified";
|
|
820
820
|
} | {
|
|
821
821
|
message: string;
|
|
822
|
-
warning_code: "being_deleted";
|
|
823
822
|
created_at: string;
|
|
823
|
+
warning_code: "being_deleted";
|
|
824
824
|
} | {
|
|
825
825
|
message: string;
|
|
826
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
827
826
|
created_at: string;
|
|
827
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
828
828
|
} | {
|
|
829
829
|
message: string;
|
|
830
|
-
warning_code: "needs_to_be_reissued";
|
|
831
830
|
created_at: string;
|
|
831
|
+
warning_code: "needs_to_be_reissued";
|
|
832
832
|
})[];
|
|
833
833
|
display_name: string;
|
|
834
834
|
workspace_id: string;
|
|
@@ -913,28 +913,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
913
913
|
}[];
|
|
914
914
|
warnings: ({
|
|
915
915
|
message: string;
|
|
916
|
-
warning_code: "waiting_to_be_issued";
|
|
917
916
|
created_at: string;
|
|
917
|
+
warning_code: "waiting_to_be_issued";
|
|
918
918
|
} | {
|
|
919
919
|
message: string;
|
|
920
|
-
warning_code: "schedule_externally_modified";
|
|
921
920
|
created_at: string;
|
|
921
|
+
warning_code: "schedule_externally_modified";
|
|
922
922
|
} | {
|
|
923
923
|
message: string;
|
|
924
|
-
warning_code: "schedule_modified";
|
|
925
924
|
created_at: string;
|
|
925
|
+
warning_code: "schedule_modified";
|
|
926
926
|
} | {
|
|
927
927
|
message: string;
|
|
928
|
-
warning_code: "being_deleted";
|
|
929
928
|
created_at: string;
|
|
929
|
+
warning_code: "being_deleted";
|
|
930
930
|
} | {
|
|
931
931
|
message: string;
|
|
932
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
933
932
|
created_at: string;
|
|
933
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
934
934
|
} | {
|
|
935
935
|
message: string;
|
|
936
|
-
warning_code: "needs_to_be_reissued";
|
|
937
936
|
created_at: string;
|
|
937
|
+
warning_code: "needs_to_be_reissued";
|
|
938
938
|
})[];
|
|
939
939
|
display_name: string;
|
|
940
940
|
workspace_id: string;
|
|
@@ -982,28 +982,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
982
982
|
}[];
|
|
983
983
|
warnings: ({
|
|
984
984
|
message: string;
|
|
985
|
-
warning_code: "waiting_to_be_issued";
|
|
986
985
|
created_at: string;
|
|
986
|
+
warning_code: "waiting_to_be_issued";
|
|
987
987
|
} | {
|
|
988
988
|
message: string;
|
|
989
|
-
warning_code: "schedule_externally_modified";
|
|
990
989
|
created_at: string;
|
|
990
|
+
warning_code: "schedule_externally_modified";
|
|
991
991
|
} | {
|
|
992
992
|
message: string;
|
|
993
|
-
warning_code: "schedule_modified";
|
|
994
993
|
created_at: string;
|
|
994
|
+
warning_code: "schedule_modified";
|
|
995
995
|
} | {
|
|
996
996
|
message: string;
|
|
997
|
-
warning_code: "being_deleted";
|
|
998
997
|
created_at: string;
|
|
998
|
+
warning_code: "being_deleted";
|
|
999
999
|
} | {
|
|
1000
1000
|
message: string;
|
|
1001
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1002
1001
|
created_at: string;
|
|
1002
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1003
1003
|
} | {
|
|
1004
1004
|
message: string;
|
|
1005
|
-
warning_code: "needs_to_be_reissued";
|
|
1006
1005
|
created_at: string;
|
|
1006
|
+
warning_code: "needs_to_be_reissued";
|
|
1007
1007
|
})[];
|
|
1008
1008
|
display_name: string;
|
|
1009
1009
|
workspace_id: string;
|
|
@@ -1078,28 +1078,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1078
1078
|
}[];
|
|
1079
1079
|
warnings: ({
|
|
1080
1080
|
message: string;
|
|
1081
|
-
warning_code: "waiting_to_be_issued";
|
|
1082
1081
|
created_at: string;
|
|
1082
|
+
warning_code: "waiting_to_be_issued";
|
|
1083
1083
|
} | {
|
|
1084
1084
|
message: string;
|
|
1085
|
-
warning_code: "schedule_externally_modified";
|
|
1086
1085
|
created_at: string;
|
|
1086
|
+
warning_code: "schedule_externally_modified";
|
|
1087
1087
|
} | {
|
|
1088
1088
|
message: string;
|
|
1089
|
-
warning_code: "schedule_modified";
|
|
1090
1089
|
created_at: string;
|
|
1090
|
+
warning_code: "schedule_modified";
|
|
1091
1091
|
} | {
|
|
1092
1092
|
message: string;
|
|
1093
|
-
warning_code: "being_deleted";
|
|
1094
1093
|
created_at: string;
|
|
1094
|
+
warning_code: "being_deleted";
|
|
1095
1095
|
} | {
|
|
1096
1096
|
message: string;
|
|
1097
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1098
1097
|
created_at: string;
|
|
1098
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1099
1099
|
} | {
|
|
1100
1100
|
message: string;
|
|
1101
|
-
warning_code: "needs_to_be_reissued";
|
|
1102
1101
|
created_at: string;
|
|
1102
|
+
warning_code: "needs_to_be_reissued";
|
|
1103
1103
|
})[];
|
|
1104
1104
|
display_name: string;
|
|
1105
1105
|
workspace_id: string;
|
|
@@ -1147,28 +1147,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1147
1147
|
}[];
|
|
1148
1148
|
warnings: ({
|
|
1149
1149
|
message: string;
|
|
1150
|
-
warning_code: "waiting_to_be_issued";
|
|
1151
1150
|
created_at: string;
|
|
1151
|
+
warning_code: "waiting_to_be_issued";
|
|
1152
1152
|
} | {
|
|
1153
1153
|
message: string;
|
|
1154
|
-
warning_code: "schedule_externally_modified";
|
|
1155
1154
|
created_at: string;
|
|
1155
|
+
warning_code: "schedule_externally_modified";
|
|
1156
1156
|
} | {
|
|
1157
1157
|
message: string;
|
|
1158
|
-
warning_code: "schedule_modified";
|
|
1159
1158
|
created_at: string;
|
|
1159
|
+
warning_code: "schedule_modified";
|
|
1160
1160
|
} | {
|
|
1161
1161
|
message: string;
|
|
1162
|
-
warning_code: "being_deleted";
|
|
1163
1162
|
created_at: string;
|
|
1163
|
+
warning_code: "being_deleted";
|
|
1164
1164
|
} | {
|
|
1165
1165
|
message: string;
|
|
1166
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1167
1166
|
created_at: string;
|
|
1167
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1168
1168
|
} | {
|
|
1169
1169
|
message: string;
|
|
1170
|
-
warning_code: "needs_to_be_reissued";
|
|
1171
1170
|
created_at: string;
|
|
1171
|
+
warning_code: "needs_to_be_reissued";
|
|
1172
1172
|
})[];
|
|
1173
1173
|
display_name: string;
|
|
1174
1174
|
workspace_id: string;
|
|
@@ -1248,28 +1248,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1248
1248
|
}[];
|
|
1249
1249
|
warnings: ({
|
|
1250
1250
|
message: string;
|
|
1251
|
-
warning_code: "waiting_to_be_issued";
|
|
1252
1251
|
created_at: string;
|
|
1252
|
+
warning_code: "waiting_to_be_issued";
|
|
1253
1253
|
} | {
|
|
1254
1254
|
message: string;
|
|
1255
|
-
warning_code: "schedule_externally_modified";
|
|
1256
1255
|
created_at: string;
|
|
1256
|
+
warning_code: "schedule_externally_modified";
|
|
1257
1257
|
} | {
|
|
1258
1258
|
message: string;
|
|
1259
|
-
warning_code: "schedule_modified";
|
|
1260
1259
|
created_at: string;
|
|
1260
|
+
warning_code: "schedule_modified";
|
|
1261
1261
|
} | {
|
|
1262
1262
|
message: string;
|
|
1263
|
-
warning_code: "being_deleted";
|
|
1264
1263
|
created_at: string;
|
|
1264
|
+
warning_code: "being_deleted";
|
|
1265
1265
|
} | {
|
|
1266
1266
|
message: string;
|
|
1267
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1268
1267
|
created_at: string;
|
|
1268
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1269
1269
|
} | {
|
|
1270
1270
|
message: string;
|
|
1271
|
-
warning_code: "needs_to_be_reissued";
|
|
1272
1271
|
created_at: string;
|
|
1272
|
+
warning_code: "needs_to_be_reissued";
|
|
1273
1273
|
})[];
|
|
1274
1274
|
display_name: string;
|
|
1275
1275
|
workspace_id: string;
|
|
@@ -1317,28 +1317,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1317
1317
|
}[];
|
|
1318
1318
|
warnings: ({
|
|
1319
1319
|
message: string;
|
|
1320
|
-
warning_code: "waiting_to_be_issued";
|
|
1321
1320
|
created_at: string;
|
|
1321
|
+
warning_code: "waiting_to_be_issued";
|
|
1322
1322
|
} | {
|
|
1323
1323
|
message: string;
|
|
1324
|
-
warning_code: "schedule_externally_modified";
|
|
1325
1324
|
created_at: string;
|
|
1325
|
+
warning_code: "schedule_externally_modified";
|
|
1326
1326
|
} | {
|
|
1327
1327
|
message: string;
|
|
1328
|
-
warning_code: "schedule_modified";
|
|
1329
1328
|
created_at: string;
|
|
1329
|
+
warning_code: "schedule_modified";
|
|
1330
1330
|
} | {
|
|
1331
1331
|
message: string;
|
|
1332
|
-
warning_code: "being_deleted";
|
|
1333
1332
|
created_at: string;
|
|
1333
|
+
warning_code: "being_deleted";
|
|
1334
1334
|
} | {
|
|
1335
1335
|
message: string;
|
|
1336
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1337
1336
|
created_at: string;
|
|
1337
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1338
1338
|
} | {
|
|
1339
1339
|
message: string;
|
|
1340
|
-
warning_code: "needs_to_be_reissued";
|
|
1341
1340
|
created_at: string;
|
|
1341
|
+
warning_code: "needs_to_be_reissued";
|
|
1342
1342
|
})[];
|
|
1343
1343
|
display_name: string;
|
|
1344
1344
|
workspace_id: string;
|
|
@@ -1419,28 +1419,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1419
1419
|
}[];
|
|
1420
1420
|
warnings: ({
|
|
1421
1421
|
message: string;
|
|
1422
|
-
warning_code: "waiting_to_be_issued";
|
|
1423
1422
|
created_at: string;
|
|
1423
|
+
warning_code: "waiting_to_be_issued";
|
|
1424
1424
|
} | {
|
|
1425
1425
|
message: string;
|
|
1426
|
-
warning_code: "schedule_externally_modified";
|
|
1427
1426
|
created_at: string;
|
|
1427
|
+
warning_code: "schedule_externally_modified";
|
|
1428
1428
|
} | {
|
|
1429
1429
|
message: string;
|
|
1430
|
-
warning_code: "schedule_modified";
|
|
1431
1430
|
created_at: string;
|
|
1431
|
+
warning_code: "schedule_modified";
|
|
1432
1432
|
} | {
|
|
1433
1433
|
message: string;
|
|
1434
|
-
warning_code: "being_deleted";
|
|
1435
1434
|
created_at: string;
|
|
1435
|
+
warning_code: "being_deleted";
|
|
1436
1436
|
} | {
|
|
1437
1437
|
message: string;
|
|
1438
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1439
1438
|
created_at: string;
|
|
1439
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1440
1440
|
} | {
|
|
1441
1441
|
message: string;
|
|
1442
|
-
warning_code: "needs_to_be_reissued";
|
|
1443
1442
|
created_at: string;
|
|
1443
|
+
warning_code: "needs_to_be_reissued";
|
|
1444
1444
|
})[];
|
|
1445
1445
|
display_name: string;
|
|
1446
1446
|
workspace_id: string;
|
|
@@ -1488,28 +1488,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1488
1488
|
}[];
|
|
1489
1489
|
warnings: ({
|
|
1490
1490
|
message: string;
|
|
1491
|
-
warning_code: "waiting_to_be_issued";
|
|
1492
1491
|
created_at: string;
|
|
1492
|
+
warning_code: "waiting_to_be_issued";
|
|
1493
1493
|
} | {
|
|
1494
1494
|
message: string;
|
|
1495
|
-
warning_code: "schedule_externally_modified";
|
|
1496
1495
|
created_at: string;
|
|
1496
|
+
warning_code: "schedule_externally_modified";
|
|
1497
1497
|
} | {
|
|
1498
1498
|
message: string;
|
|
1499
|
-
warning_code: "schedule_modified";
|
|
1500
1499
|
created_at: string;
|
|
1500
|
+
warning_code: "schedule_modified";
|
|
1501
1501
|
} | {
|
|
1502
1502
|
message: string;
|
|
1503
|
-
warning_code: "being_deleted";
|
|
1504
1503
|
created_at: string;
|
|
1504
|
+
warning_code: "being_deleted";
|
|
1505
1505
|
} | {
|
|
1506
1506
|
message: string;
|
|
1507
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1508
1507
|
created_at: string;
|
|
1508
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1509
1509
|
} | {
|
|
1510
1510
|
message: string;
|
|
1511
|
-
warning_code: "needs_to_be_reissued";
|
|
1512
1511
|
created_at: string;
|
|
1512
|
+
warning_code: "needs_to_be_reissued";
|
|
1513
1513
|
})[];
|
|
1514
1514
|
display_name: string;
|
|
1515
1515
|
workspace_id: string;
|
|
@@ -1683,12 +1683,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1683
1683
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
1684
1684
|
}>, "strip", z.ZodTypeAny, {
|
|
1685
1685
|
message: string;
|
|
1686
|
-
warning_code: "waiting_to_be_issued";
|
|
1687
1686
|
created_at: string;
|
|
1687
|
+
warning_code: "waiting_to_be_issued";
|
|
1688
1688
|
}, {
|
|
1689
1689
|
message: string;
|
|
1690
|
-
warning_code: "waiting_to_be_issued";
|
|
1691
1690
|
created_at: string;
|
|
1691
|
+
warning_code: "waiting_to_be_issued";
|
|
1692
1692
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1693
1693
|
created_at: z.ZodString;
|
|
1694
1694
|
message: z.ZodString;
|
|
@@ -1696,12 +1696,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1696
1696
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
1697
1697
|
}>, "strip", z.ZodTypeAny, {
|
|
1698
1698
|
message: string;
|
|
1699
|
-
warning_code: "schedule_externally_modified";
|
|
1700
1699
|
created_at: string;
|
|
1700
|
+
warning_code: "schedule_externally_modified";
|
|
1701
1701
|
}, {
|
|
1702
1702
|
message: string;
|
|
1703
|
-
warning_code: "schedule_externally_modified";
|
|
1704
1703
|
created_at: string;
|
|
1704
|
+
warning_code: "schedule_externally_modified";
|
|
1705
1705
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1706
1706
|
created_at: z.ZodString;
|
|
1707
1707
|
message: z.ZodString;
|
|
@@ -1709,12 +1709,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1709
1709
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
1710
1710
|
}>, "strip", z.ZodTypeAny, {
|
|
1711
1711
|
message: string;
|
|
1712
|
-
warning_code: "schedule_modified";
|
|
1713
1712
|
created_at: string;
|
|
1713
|
+
warning_code: "schedule_modified";
|
|
1714
1714
|
}, {
|
|
1715
1715
|
message: string;
|
|
1716
|
-
warning_code: "schedule_modified";
|
|
1717
1716
|
created_at: string;
|
|
1717
|
+
warning_code: "schedule_modified";
|
|
1718
1718
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1719
1719
|
created_at: z.ZodString;
|
|
1720
1720
|
message: z.ZodString;
|
|
@@ -1722,12 +1722,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1722
1722
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
1723
1723
|
}>, "strip", z.ZodTypeAny, {
|
|
1724
1724
|
message: string;
|
|
1725
|
-
warning_code: "being_deleted";
|
|
1726
1725
|
created_at: string;
|
|
1726
|
+
warning_code: "being_deleted";
|
|
1727
1727
|
}, {
|
|
1728
1728
|
message: string;
|
|
1729
|
-
warning_code: "being_deleted";
|
|
1730
1729
|
created_at: string;
|
|
1730
|
+
warning_code: "being_deleted";
|
|
1731
1731
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1732
1732
|
created_at: z.ZodString;
|
|
1733
1733
|
message: z.ZodString;
|
|
@@ -1735,12 +1735,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1735
1735
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
1736
1736
|
}>, "strip", z.ZodTypeAny, {
|
|
1737
1737
|
message: string;
|
|
1738
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1739
1738
|
created_at: string;
|
|
1739
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1740
1740
|
}, {
|
|
1741
1741
|
message: string;
|
|
1742
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1743
1742
|
created_at: string;
|
|
1743
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1744
1744
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1745
1745
|
created_at: z.ZodString;
|
|
1746
1746
|
message: z.ZodString;
|
|
@@ -1748,12 +1748,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1748
1748
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
1749
1749
|
}>, "strip", z.ZodTypeAny, {
|
|
1750
1750
|
message: string;
|
|
1751
|
-
warning_code: "needs_to_be_reissued";
|
|
1752
1751
|
created_at: string;
|
|
1752
|
+
warning_code: "needs_to_be_reissued";
|
|
1753
1753
|
}, {
|
|
1754
1754
|
message: string;
|
|
1755
|
-
warning_code: "needs_to_be_reissued";
|
|
1756
1755
|
created_at: string;
|
|
1756
|
+
warning_code: "needs_to_be_reissued";
|
|
1757
1757
|
}>]>, "many">;
|
|
1758
1758
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
1759
1759
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1815,28 +1815,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1815
1815
|
}[];
|
|
1816
1816
|
warnings: ({
|
|
1817
1817
|
message: string;
|
|
1818
|
-
warning_code: "waiting_to_be_issued";
|
|
1819
1818
|
created_at: string;
|
|
1819
|
+
warning_code: "waiting_to_be_issued";
|
|
1820
1820
|
} | {
|
|
1821
1821
|
message: string;
|
|
1822
|
-
warning_code: "schedule_externally_modified";
|
|
1823
1822
|
created_at: string;
|
|
1823
|
+
warning_code: "schedule_externally_modified";
|
|
1824
1824
|
} | {
|
|
1825
1825
|
message: string;
|
|
1826
|
-
warning_code: "schedule_modified";
|
|
1827
1826
|
created_at: string;
|
|
1827
|
+
warning_code: "schedule_modified";
|
|
1828
1828
|
} | {
|
|
1829
1829
|
message: string;
|
|
1830
|
-
warning_code: "being_deleted";
|
|
1831
1830
|
created_at: string;
|
|
1831
|
+
warning_code: "being_deleted";
|
|
1832
1832
|
} | {
|
|
1833
1833
|
message: string;
|
|
1834
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1835
1834
|
created_at: string;
|
|
1835
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1836
1836
|
} | {
|
|
1837
1837
|
message: string;
|
|
1838
|
-
warning_code: "needs_to_be_reissued";
|
|
1839
1838
|
created_at: string;
|
|
1839
|
+
warning_code: "needs_to_be_reissued";
|
|
1840
1840
|
})[];
|
|
1841
1841
|
display_name: string;
|
|
1842
1842
|
workspace_id: string;
|
|
@@ -1884,28 +1884,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1884
1884
|
}[];
|
|
1885
1885
|
warnings: ({
|
|
1886
1886
|
message: string;
|
|
1887
|
-
warning_code: "waiting_to_be_issued";
|
|
1888
1887
|
created_at: string;
|
|
1888
|
+
warning_code: "waiting_to_be_issued";
|
|
1889
1889
|
} | {
|
|
1890
1890
|
message: string;
|
|
1891
|
-
warning_code: "schedule_externally_modified";
|
|
1892
1891
|
created_at: string;
|
|
1892
|
+
warning_code: "schedule_externally_modified";
|
|
1893
1893
|
} | {
|
|
1894
1894
|
message: string;
|
|
1895
|
-
warning_code: "schedule_modified";
|
|
1896
1895
|
created_at: string;
|
|
1896
|
+
warning_code: "schedule_modified";
|
|
1897
1897
|
} | {
|
|
1898
1898
|
message: string;
|
|
1899
|
-
warning_code: "being_deleted";
|
|
1900
1899
|
created_at: string;
|
|
1900
|
+
warning_code: "being_deleted";
|
|
1901
1901
|
} | {
|
|
1902
1902
|
message: string;
|
|
1903
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
1904
1903
|
created_at: string;
|
|
1904
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
1905
1905
|
} | {
|
|
1906
1906
|
message: string;
|
|
1907
|
-
warning_code: "needs_to_be_reissued";
|
|
1908
1907
|
created_at: string;
|
|
1908
|
+
warning_code: "needs_to_be_reissued";
|
|
1909
1909
|
})[];
|
|
1910
1910
|
display_name: string;
|
|
1911
1911
|
workspace_id: string;
|
|
@@ -1981,12 +1981,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1981
1981
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
1982
1982
|
}>, "strip", z.ZodTypeAny, {
|
|
1983
1983
|
message: string;
|
|
1984
|
-
warning_code: "waiting_to_be_issued";
|
|
1985
1984
|
created_at: string;
|
|
1985
|
+
warning_code: "waiting_to_be_issued";
|
|
1986
1986
|
}, {
|
|
1987
1987
|
message: string;
|
|
1988
|
-
warning_code: "waiting_to_be_issued";
|
|
1989
1988
|
created_at: string;
|
|
1989
|
+
warning_code: "waiting_to_be_issued";
|
|
1990
1990
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1991
1991
|
created_at: z.ZodString;
|
|
1992
1992
|
message: z.ZodString;
|
|
@@ -1994,12 +1994,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1994
1994
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
1995
1995
|
}>, "strip", z.ZodTypeAny, {
|
|
1996
1996
|
message: string;
|
|
1997
|
-
warning_code: "schedule_externally_modified";
|
|
1998
1997
|
created_at: string;
|
|
1998
|
+
warning_code: "schedule_externally_modified";
|
|
1999
1999
|
}, {
|
|
2000
2000
|
message: string;
|
|
2001
|
-
warning_code: "schedule_externally_modified";
|
|
2002
2001
|
created_at: string;
|
|
2002
|
+
warning_code: "schedule_externally_modified";
|
|
2003
2003
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2004
2004
|
created_at: z.ZodString;
|
|
2005
2005
|
message: z.ZodString;
|
|
@@ -2007,12 +2007,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2007
2007
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
2008
2008
|
}>, "strip", z.ZodTypeAny, {
|
|
2009
2009
|
message: string;
|
|
2010
|
-
warning_code: "schedule_modified";
|
|
2011
2010
|
created_at: string;
|
|
2011
|
+
warning_code: "schedule_modified";
|
|
2012
2012
|
}, {
|
|
2013
2013
|
message: string;
|
|
2014
|
-
warning_code: "schedule_modified";
|
|
2015
2014
|
created_at: string;
|
|
2015
|
+
warning_code: "schedule_modified";
|
|
2016
2016
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2017
2017
|
created_at: z.ZodString;
|
|
2018
2018
|
message: z.ZodString;
|
|
@@ -2020,12 +2020,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2020
2020
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
2021
2021
|
}>, "strip", z.ZodTypeAny, {
|
|
2022
2022
|
message: string;
|
|
2023
|
-
warning_code: "being_deleted";
|
|
2024
2023
|
created_at: string;
|
|
2024
|
+
warning_code: "being_deleted";
|
|
2025
2025
|
}, {
|
|
2026
2026
|
message: string;
|
|
2027
|
-
warning_code: "being_deleted";
|
|
2028
2027
|
created_at: string;
|
|
2028
|
+
warning_code: "being_deleted";
|
|
2029
2029
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2030
2030
|
created_at: z.ZodString;
|
|
2031
2031
|
message: z.ZodString;
|
|
@@ -2033,12 +2033,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2033
2033
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
2034
2034
|
}>, "strip", z.ZodTypeAny, {
|
|
2035
2035
|
message: string;
|
|
2036
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2037
2036
|
created_at: string;
|
|
2037
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2038
2038
|
}, {
|
|
2039
2039
|
message: string;
|
|
2040
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2041
2040
|
created_at: string;
|
|
2041
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2042
2042
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2043
2043
|
created_at: z.ZodString;
|
|
2044
2044
|
message: z.ZodString;
|
|
@@ -2046,12 +2046,12 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2046
2046
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
2047
2047
|
}>, "strip", z.ZodTypeAny, {
|
|
2048
2048
|
message: string;
|
|
2049
|
-
warning_code: "needs_to_be_reissued";
|
|
2050
2049
|
created_at: string;
|
|
2050
|
+
warning_code: "needs_to_be_reissued";
|
|
2051
2051
|
}, {
|
|
2052
2052
|
message: string;
|
|
2053
|
-
warning_code: "needs_to_be_reissued";
|
|
2054
2053
|
created_at: string;
|
|
2054
|
+
warning_code: "needs_to_be_reissued";
|
|
2055
2055
|
}>]>, "many">;
|
|
2056
2056
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
2057
2057
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -2113,28 +2113,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2113
2113
|
}[];
|
|
2114
2114
|
warnings: ({
|
|
2115
2115
|
message: string;
|
|
2116
|
-
warning_code: "waiting_to_be_issued";
|
|
2117
2116
|
created_at: string;
|
|
2117
|
+
warning_code: "waiting_to_be_issued";
|
|
2118
2118
|
} | {
|
|
2119
2119
|
message: string;
|
|
2120
|
-
warning_code: "schedule_externally_modified";
|
|
2121
2120
|
created_at: string;
|
|
2121
|
+
warning_code: "schedule_externally_modified";
|
|
2122
2122
|
} | {
|
|
2123
2123
|
message: string;
|
|
2124
|
-
warning_code: "schedule_modified";
|
|
2125
2124
|
created_at: string;
|
|
2125
|
+
warning_code: "schedule_modified";
|
|
2126
2126
|
} | {
|
|
2127
2127
|
message: string;
|
|
2128
|
-
warning_code: "being_deleted";
|
|
2129
2128
|
created_at: string;
|
|
2129
|
+
warning_code: "being_deleted";
|
|
2130
2130
|
} | {
|
|
2131
2131
|
message: string;
|
|
2132
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2133
2132
|
created_at: string;
|
|
2133
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2134
2134
|
} | {
|
|
2135
2135
|
message: string;
|
|
2136
|
-
warning_code: "needs_to_be_reissued";
|
|
2137
2136
|
created_at: string;
|
|
2137
|
+
warning_code: "needs_to_be_reissued";
|
|
2138
2138
|
})[];
|
|
2139
2139
|
display_name: string;
|
|
2140
2140
|
workspace_id: string;
|
|
@@ -2182,28 +2182,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2182
2182
|
}[];
|
|
2183
2183
|
warnings: ({
|
|
2184
2184
|
message: string;
|
|
2185
|
-
warning_code: "waiting_to_be_issued";
|
|
2186
2185
|
created_at: string;
|
|
2186
|
+
warning_code: "waiting_to_be_issued";
|
|
2187
2187
|
} | {
|
|
2188
2188
|
message: string;
|
|
2189
|
-
warning_code: "schedule_externally_modified";
|
|
2190
2189
|
created_at: string;
|
|
2190
|
+
warning_code: "schedule_externally_modified";
|
|
2191
2191
|
} | {
|
|
2192
2192
|
message: string;
|
|
2193
|
-
warning_code: "schedule_modified";
|
|
2194
2193
|
created_at: string;
|
|
2194
|
+
warning_code: "schedule_modified";
|
|
2195
2195
|
} | {
|
|
2196
2196
|
message: string;
|
|
2197
|
-
warning_code: "being_deleted";
|
|
2198
2197
|
created_at: string;
|
|
2198
|
+
warning_code: "being_deleted";
|
|
2199
2199
|
} | {
|
|
2200
2200
|
message: string;
|
|
2201
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2202
2201
|
created_at: string;
|
|
2202
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2203
2203
|
} | {
|
|
2204
2204
|
message: string;
|
|
2205
|
-
warning_code: "needs_to_be_reissued";
|
|
2206
2205
|
created_at: string;
|
|
2206
|
+
warning_code: "needs_to_be_reissued";
|
|
2207
2207
|
})[];
|
|
2208
2208
|
display_name: string;
|
|
2209
2209
|
workspace_id: string;
|
|
@@ -2256,28 +2256,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2256
2256
|
}[];
|
|
2257
2257
|
warnings: ({
|
|
2258
2258
|
message: string;
|
|
2259
|
-
warning_code: "waiting_to_be_issued";
|
|
2260
2259
|
created_at: string;
|
|
2260
|
+
warning_code: "waiting_to_be_issued";
|
|
2261
2261
|
} | {
|
|
2262
2262
|
message: string;
|
|
2263
|
-
warning_code: "schedule_externally_modified";
|
|
2264
2263
|
created_at: string;
|
|
2264
|
+
warning_code: "schedule_externally_modified";
|
|
2265
2265
|
} | {
|
|
2266
2266
|
message: string;
|
|
2267
|
-
warning_code: "schedule_modified";
|
|
2268
2267
|
created_at: string;
|
|
2268
|
+
warning_code: "schedule_modified";
|
|
2269
2269
|
} | {
|
|
2270
2270
|
message: string;
|
|
2271
|
-
warning_code: "being_deleted";
|
|
2272
2271
|
created_at: string;
|
|
2272
|
+
warning_code: "being_deleted";
|
|
2273
2273
|
} | {
|
|
2274
2274
|
message: string;
|
|
2275
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2276
2275
|
created_at: string;
|
|
2276
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2277
2277
|
} | {
|
|
2278
2278
|
message: string;
|
|
2279
|
-
warning_code: "needs_to_be_reissued";
|
|
2280
2279
|
created_at: string;
|
|
2280
|
+
warning_code: "needs_to_be_reissued";
|
|
2281
2281
|
})[];
|
|
2282
2282
|
display_name: string;
|
|
2283
2283
|
workspace_id: string;
|
|
@@ -2325,28 +2325,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2325
2325
|
}[];
|
|
2326
2326
|
warnings: ({
|
|
2327
2327
|
message: string;
|
|
2328
|
-
warning_code: "waiting_to_be_issued";
|
|
2329
2328
|
created_at: string;
|
|
2329
|
+
warning_code: "waiting_to_be_issued";
|
|
2330
2330
|
} | {
|
|
2331
2331
|
message: string;
|
|
2332
|
-
warning_code: "schedule_externally_modified";
|
|
2333
2332
|
created_at: string;
|
|
2333
|
+
warning_code: "schedule_externally_modified";
|
|
2334
2334
|
} | {
|
|
2335
2335
|
message: string;
|
|
2336
|
-
warning_code: "schedule_modified";
|
|
2337
2336
|
created_at: string;
|
|
2337
|
+
warning_code: "schedule_modified";
|
|
2338
2338
|
} | {
|
|
2339
2339
|
message: string;
|
|
2340
|
-
warning_code: "being_deleted";
|
|
2341
2340
|
created_at: string;
|
|
2341
|
+
warning_code: "being_deleted";
|
|
2342
2342
|
} | {
|
|
2343
2343
|
message: string;
|
|
2344
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2345
2344
|
created_at: string;
|
|
2345
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2346
2346
|
} | {
|
|
2347
2347
|
message: string;
|
|
2348
|
-
warning_code: "needs_to_be_reissued";
|
|
2349
2348
|
created_at: string;
|
|
2349
|
+
warning_code: "needs_to_be_reissued";
|
|
2350
2350
|
})[];
|
|
2351
2351
|
display_name: string;
|
|
2352
2352
|
workspace_id: string;
|
|
@@ -2400,28 +2400,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2400
2400
|
}[];
|
|
2401
2401
|
warnings: ({
|
|
2402
2402
|
message: string;
|
|
2403
|
-
warning_code: "waiting_to_be_issued";
|
|
2404
2403
|
created_at: string;
|
|
2404
|
+
warning_code: "waiting_to_be_issued";
|
|
2405
2405
|
} | {
|
|
2406
2406
|
message: string;
|
|
2407
|
-
warning_code: "schedule_externally_modified";
|
|
2408
2407
|
created_at: string;
|
|
2408
|
+
warning_code: "schedule_externally_modified";
|
|
2409
2409
|
} | {
|
|
2410
2410
|
message: string;
|
|
2411
|
-
warning_code: "schedule_modified";
|
|
2412
2411
|
created_at: string;
|
|
2412
|
+
warning_code: "schedule_modified";
|
|
2413
2413
|
} | {
|
|
2414
2414
|
message: string;
|
|
2415
|
-
warning_code: "being_deleted";
|
|
2416
2415
|
created_at: string;
|
|
2416
|
+
warning_code: "being_deleted";
|
|
2417
2417
|
} | {
|
|
2418
2418
|
message: string;
|
|
2419
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2420
2419
|
created_at: string;
|
|
2420
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2421
2421
|
} | {
|
|
2422
2422
|
message: string;
|
|
2423
|
-
warning_code: "needs_to_be_reissued";
|
|
2424
2423
|
created_at: string;
|
|
2424
|
+
warning_code: "needs_to_be_reissued";
|
|
2425
2425
|
})[];
|
|
2426
2426
|
display_name: string;
|
|
2427
2427
|
workspace_id: string;
|
|
@@ -2469,28 +2469,28 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2469
2469
|
}[];
|
|
2470
2470
|
warnings: ({
|
|
2471
2471
|
message: string;
|
|
2472
|
-
warning_code: "waiting_to_be_issued";
|
|
2473
2472
|
created_at: string;
|
|
2473
|
+
warning_code: "waiting_to_be_issued";
|
|
2474
2474
|
} | {
|
|
2475
2475
|
message: string;
|
|
2476
|
-
warning_code: "schedule_externally_modified";
|
|
2477
2476
|
created_at: string;
|
|
2477
|
+
warning_code: "schedule_externally_modified";
|
|
2478
2478
|
} | {
|
|
2479
2479
|
message: string;
|
|
2480
|
-
warning_code: "schedule_modified";
|
|
2481
2480
|
created_at: string;
|
|
2481
|
+
warning_code: "schedule_modified";
|
|
2482
2482
|
} | {
|
|
2483
2483
|
message: string;
|
|
2484
|
-
warning_code: "being_deleted";
|
|
2485
2484
|
created_at: string;
|
|
2485
|
+
warning_code: "being_deleted";
|
|
2486
2486
|
} | {
|
|
2487
2487
|
message: string;
|
|
2488
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
2489
2488
|
created_at: string;
|
|
2489
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
2490
2490
|
} | {
|
|
2491
2491
|
message: string;
|
|
2492
|
-
warning_code: "needs_to_be_reissued";
|
|
2493
2492
|
created_at: string;
|
|
2493
|
+
warning_code: "needs_to_be_reissued";
|
|
2494
2494
|
})[];
|
|
2495
2495
|
display_name: string;
|
|
2496
2496
|
workspace_id: string;
|