@seamapi/types 1.177.0 → 1.178.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 +667 -1199
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10835 -4185
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +483 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/deprecated.d.ts +485 -0
- package/lib/seam/connect/models/action-attempts/deprecated.js +108 -0
- package/lib/seam/connect/models/action-attempts/deprecated.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +2 -2
- package/lib/seam/connect/models/index.js +2 -2
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/user-identities/index.d.ts +1 -0
- package/lib/seam/connect/models/user-identities/index.js +2 -0
- package/lib/seam/connect/models/user-identities/index.js.map +1 -0
- package/lib/seam/connect/models/{user-identity.js → user-identities/user-identity.js} +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -0
- package/lib/seam/connect/models/workspaces/index.d.ts +1 -0
- package/lib/seam/connect/models/workspaces/index.js +2 -0
- package/lib/seam/connect/models/workspaces/index.js.map +1 -0
- package/lib/seam/connect/models/workspaces/workspace.d.ts +17 -0
- package/lib/seam/connect/models/workspaces/workspace.js +8 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +124 -1235
- package/lib/seam/connect/openapi.js +470 -1115
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9828 -2568
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -2
- package/src/lib/seam/connect/models/action-attempts/deprecated.ts +122 -0
- package/src/lib/seam/connect/models/index.ts +2 -2
- package/src/lib/seam/connect/models/user-identities/index.ts +1 -0
- package/src/lib/seam/connect/models/{user-identity.ts → user-identities/user-identity.ts} +1 -1
- package/src/lib/seam/connect/models/workspaces/index.ts +1 -0
- package/src/lib/seam/connect/models/workspaces/workspace.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +491 -1115
- package/src/lib/seam/connect/route-types.ts +10139 -2335
- package/src/lib/seam/connect/schemas.ts +1 -0
- package/lib/seam/connect/models/network.d.ts +0 -18
- package/lib/seam/connect/models/network.js +0 -8
- package/lib/seam/connect/models/network.js.map +0 -1
- package/lib/seam/connect/models/user-identity.js.map +0 -1
- package/src/lib/seam/connect/models/network.ts +0 -10
- /package/lib/seam/connect/models/{user-identity.d.ts → user-identities/user-identity.d.ts} +0 -0
|
@@ -693,6 +693,109 @@ declare const _default: {
|
|
|
693
693
|
};
|
|
694
694
|
required: string[];
|
|
695
695
|
type: string;
|
|
696
|
+
} | {
|
|
697
|
+
properties: {
|
|
698
|
+
action_attempt_id: {
|
|
699
|
+
description: string;
|
|
700
|
+
format: string;
|
|
701
|
+
type: string;
|
|
702
|
+
};
|
|
703
|
+
action_type: {
|
|
704
|
+
enum: string[];
|
|
705
|
+
type: string;
|
|
706
|
+
};
|
|
707
|
+
error: {
|
|
708
|
+
format: string;
|
|
709
|
+
nullable: boolean;
|
|
710
|
+
type: string;
|
|
711
|
+
properties?: never;
|
|
712
|
+
required?: never;
|
|
713
|
+
};
|
|
714
|
+
result: {
|
|
715
|
+
format: string;
|
|
716
|
+
nullable: boolean;
|
|
717
|
+
type: string;
|
|
718
|
+
properties?: never;
|
|
719
|
+
};
|
|
720
|
+
status: {
|
|
721
|
+
enum: string[];
|
|
722
|
+
type: string;
|
|
723
|
+
};
|
|
724
|
+
};
|
|
725
|
+
required: string[];
|
|
726
|
+
type: string;
|
|
727
|
+
description?: never;
|
|
728
|
+
} | {
|
|
729
|
+
properties: {
|
|
730
|
+
action_attempt_id: {
|
|
731
|
+
description: string;
|
|
732
|
+
format: string;
|
|
733
|
+
type: string;
|
|
734
|
+
};
|
|
735
|
+
action_type: {
|
|
736
|
+
enum: string[];
|
|
737
|
+
type: string;
|
|
738
|
+
};
|
|
739
|
+
error: {
|
|
740
|
+
format: string;
|
|
741
|
+
nullable: boolean;
|
|
742
|
+
type: string;
|
|
743
|
+
properties?: never;
|
|
744
|
+
required?: never;
|
|
745
|
+
};
|
|
746
|
+
result: {
|
|
747
|
+
nullable: boolean;
|
|
748
|
+
format?: never;
|
|
749
|
+
type?: never;
|
|
750
|
+
properties?: never;
|
|
751
|
+
};
|
|
752
|
+
status: {
|
|
753
|
+
enum: string[];
|
|
754
|
+
type: string;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
required: string[];
|
|
758
|
+
type: string;
|
|
759
|
+
description?: never;
|
|
760
|
+
} | {
|
|
761
|
+
properties: {
|
|
762
|
+
action_attempt_id: {
|
|
763
|
+
description: string;
|
|
764
|
+
format: string;
|
|
765
|
+
type: string;
|
|
766
|
+
};
|
|
767
|
+
action_type: {
|
|
768
|
+
enum: string[];
|
|
769
|
+
type: string;
|
|
770
|
+
};
|
|
771
|
+
error: {
|
|
772
|
+
properties: {
|
|
773
|
+
message: {
|
|
774
|
+
type: string;
|
|
775
|
+
};
|
|
776
|
+
type: {
|
|
777
|
+
type: string;
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
required: string[];
|
|
781
|
+
type: string;
|
|
782
|
+
format?: never;
|
|
783
|
+
nullable?: never;
|
|
784
|
+
};
|
|
785
|
+
result: {
|
|
786
|
+
format: string;
|
|
787
|
+
nullable: boolean;
|
|
788
|
+
type: string;
|
|
789
|
+
properties?: never;
|
|
790
|
+
};
|
|
791
|
+
status: {
|
|
792
|
+
enum: string[];
|
|
793
|
+
type: string;
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
required: string[];
|
|
797
|
+
type: string;
|
|
798
|
+
description?: never;
|
|
696
799
|
})[];
|
|
697
800
|
};
|
|
698
801
|
client_session: {
|
|
@@ -3343,101 +3446,7 @@ declare const _default: {
|
|
|
3343
3446
|
$ref: string;
|
|
3344
3447
|
};
|
|
3345
3448
|
action_attempt: {
|
|
3346
|
-
|
|
3347
|
-
propertyName: string;
|
|
3348
|
-
};
|
|
3349
|
-
oneOf: ({
|
|
3350
|
-
properties: {
|
|
3351
|
-
action_attempt_id: {
|
|
3352
|
-
format: string;
|
|
3353
|
-
type: string;
|
|
3354
|
-
};
|
|
3355
|
-
action_type: {
|
|
3356
|
-
type: string;
|
|
3357
|
-
};
|
|
3358
|
-
error: {
|
|
3359
|
-
format: string;
|
|
3360
|
-
nullable: boolean;
|
|
3361
|
-
type: string;
|
|
3362
|
-
properties?: never;
|
|
3363
|
-
required?: never;
|
|
3364
|
-
};
|
|
3365
|
-
result: {
|
|
3366
|
-
nullable: boolean;
|
|
3367
|
-
format?: never;
|
|
3368
|
-
type?: never;
|
|
3369
|
-
};
|
|
3370
|
-
status: {
|
|
3371
|
-
enum: string[];
|
|
3372
|
-
type: string;
|
|
3373
|
-
};
|
|
3374
|
-
};
|
|
3375
|
-
required: string[];
|
|
3376
|
-
type: string;
|
|
3377
|
-
} | {
|
|
3378
|
-
properties: {
|
|
3379
|
-
action_attempt_id: {
|
|
3380
|
-
format: string;
|
|
3381
|
-
type: string;
|
|
3382
|
-
};
|
|
3383
|
-
action_type: {
|
|
3384
|
-
type: string;
|
|
3385
|
-
};
|
|
3386
|
-
error: {
|
|
3387
|
-
format: string;
|
|
3388
|
-
nullable: boolean;
|
|
3389
|
-
type: string;
|
|
3390
|
-
properties?: never;
|
|
3391
|
-
required?: never;
|
|
3392
|
-
};
|
|
3393
|
-
result: {
|
|
3394
|
-
format: string;
|
|
3395
|
-
nullable: boolean;
|
|
3396
|
-
type: string;
|
|
3397
|
-
};
|
|
3398
|
-
status: {
|
|
3399
|
-
enum: string[];
|
|
3400
|
-
type: string;
|
|
3401
|
-
};
|
|
3402
|
-
};
|
|
3403
|
-
required: string[];
|
|
3404
|
-
type: string;
|
|
3405
|
-
} | {
|
|
3406
|
-
properties: {
|
|
3407
|
-
action_attempt_id: {
|
|
3408
|
-
format: string;
|
|
3409
|
-
type: string;
|
|
3410
|
-
};
|
|
3411
|
-
action_type: {
|
|
3412
|
-
type: string;
|
|
3413
|
-
};
|
|
3414
|
-
error: {
|
|
3415
|
-
properties: {
|
|
3416
|
-
message: {
|
|
3417
|
-
type: string;
|
|
3418
|
-
};
|
|
3419
|
-
type: {
|
|
3420
|
-
type: string;
|
|
3421
|
-
};
|
|
3422
|
-
};
|
|
3423
|
-
required: string[];
|
|
3424
|
-
type: string;
|
|
3425
|
-
format?: never;
|
|
3426
|
-
nullable?: never;
|
|
3427
|
-
};
|
|
3428
|
-
result: {
|
|
3429
|
-
format: string;
|
|
3430
|
-
nullable: boolean;
|
|
3431
|
-
type: string;
|
|
3432
|
-
};
|
|
3433
|
-
status: {
|
|
3434
|
-
enum: string[];
|
|
3435
|
-
type: string;
|
|
3436
|
-
};
|
|
3437
|
-
};
|
|
3438
|
-
required: string[];
|
|
3439
|
-
type: string;
|
|
3440
|
-
})[];
|
|
3449
|
+
$ref: string;
|
|
3441
3450
|
};
|
|
3442
3451
|
ok: {
|
|
3443
3452
|
type: string;
|
|
@@ -3781,101 +3790,7 @@ declare const _default: {
|
|
|
3781
3790
|
schema: {
|
|
3782
3791
|
properties: {
|
|
3783
3792
|
action_attempt: {
|
|
3784
|
-
|
|
3785
|
-
propertyName: string;
|
|
3786
|
-
};
|
|
3787
|
-
oneOf: ({
|
|
3788
|
-
properties: {
|
|
3789
|
-
action_attempt_id: {
|
|
3790
|
-
format: string;
|
|
3791
|
-
type: string;
|
|
3792
|
-
};
|
|
3793
|
-
action_type: {
|
|
3794
|
-
type: string;
|
|
3795
|
-
};
|
|
3796
|
-
error: {
|
|
3797
|
-
format: string;
|
|
3798
|
-
nullable: boolean;
|
|
3799
|
-
type: string;
|
|
3800
|
-
properties?: never;
|
|
3801
|
-
required?: never;
|
|
3802
|
-
};
|
|
3803
|
-
result: {
|
|
3804
|
-
nullable: boolean;
|
|
3805
|
-
format?: never;
|
|
3806
|
-
type?: never;
|
|
3807
|
-
};
|
|
3808
|
-
status: {
|
|
3809
|
-
enum: string[];
|
|
3810
|
-
type: string;
|
|
3811
|
-
};
|
|
3812
|
-
};
|
|
3813
|
-
required: string[];
|
|
3814
|
-
type: string;
|
|
3815
|
-
} | {
|
|
3816
|
-
properties: {
|
|
3817
|
-
action_attempt_id: {
|
|
3818
|
-
format: string;
|
|
3819
|
-
type: string;
|
|
3820
|
-
};
|
|
3821
|
-
action_type: {
|
|
3822
|
-
type: string;
|
|
3823
|
-
};
|
|
3824
|
-
error: {
|
|
3825
|
-
format: string;
|
|
3826
|
-
nullable: boolean;
|
|
3827
|
-
type: string;
|
|
3828
|
-
properties?: never;
|
|
3829
|
-
required?: never;
|
|
3830
|
-
};
|
|
3831
|
-
result: {
|
|
3832
|
-
format: string;
|
|
3833
|
-
nullable: boolean;
|
|
3834
|
-
type: string;
|
|
3835
|
-
};
|
|
3836
|
-
status: {
|
|
3837
|
-
enum: string[];
|
|
3838
|
-
type: string;
|
|
3839
|
-
};
|
|
3840
|
-
};
|
|
3841
|
-
required: string[];
|
|
3842
|
-
type: string;
|
|
3843
|
-
} | {
|
|
3844
|
-
properties: {
|
|
3845
|
-
action_attempt_id: {
|
|
3846
|
-
format: string;
|
|
3847
|
-
type: string;
|
|
3848
|
-
};
|
|
3849
|
-
action_type: {
|
|
3850
|
-
type: string;
|
|
3851
|
-
};
|
|
3852
|
-
error: {
|
|
3853
|
-
properties: {
|
|
3854
|
-
message: {
|
|
3855
|
-
type: string;
|
|
3856
|
-
};
|
|
3857
|
-
type: {
|
|
3858
|
-
type: string;
|
|
3859
|
-
};
|
|
3860
|
-
};
|
|
3861
|
-
required: string[];
|
|
3862
|
-
type: string;
|
|
3863
|
-
format?: never;
|
|
3864
|
-
nullable?: never;
|
|
3865
|
-
};
|
|
3866
|
-
result: {
|
|
3867
|
-
format: string;
|
|
3868
|
-
nullable: boolean;
|
|
3869
|
-
type: string;
|
|
3870
|
-
};
|
|
3871
|
-
status: {
|
|
3872
|
-
enum: string[];
|
|
3873
|
-
type: string;
|
|
3874
|
-
};
|
|
3875
|
-
};
|
|
3876
|
-
required: string[];
|
|
3877
|
-
type: string;
|
|
3878
|
-
})[];
|
|
3793
|
+
$ref: string;
|
|
3879
3794
|
};
|
|
3880
3795
|
ok: {
|
|
3881
3796
|
type: string;
|
|
@@ -4512,101 +4427,7 @@ declare const _default: {
|
|
|
4512
4427
|
schema: {
|
|
4513
4428
|
properties: {
|
|
4514
4429
|
action_attempt: {
|
|
4515
|
-
|
|
4516
|
-
propertyName: string;
|
|
4517
|
-
};
|
|
4518
|
-
oneOf: ({
|
|
4519
|
-
properties: {
|
|
4520
|
-
action_attempt_id: {
|
|
4521
|
-
format: string;
|
|
4522
|
-
type: string;
|
|
4523
|
-
};
|
|
4524
|
-
action_type: {
|
|
4525
|
-
type: string;
|
|
4526
|
-
};
|
|
4527
|
-
error: {
|
|
4528
|
-
format: string;
|
|
4529
|
-
nullable: boolean;
|
|
4530
|
-
type: string;
|
|
4531
|
-
properties?: never;
|
|
4532
|
-
required?: never;
|
|
4533
|
-
};
|
|
4534
|
-
result: {
|
|
4535
|
-
nullable: boolean;
|
|
4536
|
-
format?: never;
|
|
4537
|
-
type?: never;
|
|
4538
|
-
};
|
|
4539
|
-
status: {
|
|
4540
|
-
enum: string[];
|
|
4541
|
-
type: string;
|
|
4542
|
-
};
|
|
4543
|
-
};
|
|
4544
|
-
required: string[];
|
|
4545
|
-
type: string;
|
|
4546
|
-
} | {
|
|
4547
|
-
properties: {
|
|
4548
|
-
action_attempt_id: {
|
|
4549
|
-
format: string;
|
|
4550
|
-
type: string;
|
|
4551
|
-
};
|
|
4552
|
-
action_type: {
|
|
4553
|
-
type: string;
|
|
4554
|
-
};
|
|
4555
|
-
error: {
|
|
4556
|
-
format: string;
|
|
4557
|
-
nullable: boolean;
|
|
4558
|
-
type: string;
|
|
4559
|
-
properties?: never;
|
|
4560
|
-
required?: never;
|
|
4561
|
-
};
|
|
4562
|
-
result: {
|
|
4563
|
-
format: string;
|
|
4564
|
-
nullable: boolean;
|
|
4565
|
-
type: string;
|
|
4566
|
-
};
|
|
4567
|
-
status: {
|
|
4568
|
-
enum: string[];
|
|
4569
|
-
type: string;
|
|
4570
|
-
};
|
|
4571
|
-
};
|
|
4572
|
-
required: string[];
|
|
4573
|
-
type: string;
|
|
4574
|
-
} | {
|
|
4575
|
-
properties: {
|
|
4576
|
-
action_attempt_id: {
|
|
4577
|
-
format: string;
|
|
4578
|
-
type: string;
|
|
4579
|
-
};
|
|
4580
|
-
action_type: {
|
|
4581
|
-
type: string;
|
|
4582
|
-
};
|
|
4583
|
-
error: {
|
|
4584
|
-
properties: {
|
|
4585
|
-
message: {
|
|
4586
|
-
type: string;
|
|
4587
|
-
};
|
|
4588
|
-
type: {
|
|
4589
|
-
type: string;
|
|
4590
|
-
};
|
|
4591
|
-
};
|
|
4592
|
-
required: string[];
|
|
4593
|
-
type: string;
|
|
4594
|
-
format?: never;
|
|
4595
|
-
nullable?: never;
|
|
4596
|
-
};
|
|
4597
|
-
result: {
|
|
4598
|
-
format: string;
|
|
4599
|
-
nullable: boolean;
|
|
4600
|
-
type: string;
|
|
4601
|
-
};
|
|
4602
|
-
status: {
|
|
4603
|
-
enum: string[];
|
|
4604
|
-
type: string;
|
|
4605
|
-
};
|
|
4606
|
-
};
|
|
4607
|
-
required: string[];
|
|
4608
|
-
type: string;
|
|
4609
|
-
})[];
|
|
4430
|
+
$ref: string;
|
|
4610
4431
|
};
|
|
4611
4432
|
ok: {
|
|
4612
4433
|
type: string;
|
|
@@ -5060,101 +4881,7 @@ declare const _default: {
|
|
|
5060
4881
|
schema: {
|
|
5061
4882
|
properties: {
|
|
5062
4883
|
action_attempt: {
|
|
5063
|
-
|
|
5064
|
-
propertyName: string;
|
|
5065
|
-
};
|
|
5066
|
-
oneOf: ({
|
|
5067
|
-
properties: {
|
|
5068
|
-
action_attempt_id: {
|
|
5069
|
-
format: string;
|
|
5070
|
-
type: string;
|
|
5071
|
-
};
|
|
5072
|
-
action_type: {
|
|
5073
|
-
type: string;
|
|
5074
|
-
};
|
|
5075
|
-
error: {
|
|
5076
|
-
format: string;
|
|
5077
|
-
nullable: boolean;
|
|
5078
|
-
type: string;
|
|
5079
|
-
properties?: never;
|
|
5080
|
-
required?: never;
|
|
5081
|
-
};
|
|
5082
|
-
result: {
|
|
5083
|
-
nullable: boolean;
|
|
5084
|
-
format?: never;
|
|
5085
|
-
type?: never;
|
|
5086
|
-
};
|
|
5087
|
-
status: {
|
|
5088
|
-
enum: string[];
|
|
5089
|
-
type: string;
|
|
5090
|
-
};
|
|
5091
|
-
};
|
|
5092
|
-
required: string[];
|
|
5093
|
-
type: string;
|
|
5094
|
-
} | {
|
|
5095
|
-
properties: {
|
|
5096
|
-
action_attempt_id: {
|
|
5097
|
-
format: string;
|
|
5098
|
-
type: string;
|
|
5099
|
-
};
|
|
5100
|
-
action_type: {
|
|
5101
|
-
type: string;
|
|
5102
|
-
};
|
|
5103
|
-
error: {
|
|
5104
|
-
format: string;
|
|
5105
|
-
nullable: boolean;
|
|
5106
|
-
type: string;
|
|
5107
|
-
properties?: never;
|
|
5108
|
-
required?: never;
|
|
5109
|
-
};
|
|
5110
|
-
result: {
|
|
5111
|
-
format: string;
|
|
5112
|
-
nullable: boolean;
|
|
5113
|
-
type: string;
|
|
5114
|
-
};
|
|
5115
|
-
status: {
|
|
5116
|
-
enum: string[];
|
|
5117
|
-
type: string;
|
|
5118
|
-
};
|
|
5119
|
-
};
|
|
5120
|
-
required: string[];
|
|
5121
|
-
type: string;
|
|
5122
|
-
} | {
|
|
5123
|
-
properties: {
|
|
5124
|
-
action_attempt_id: {
|
|
5125
|
-
format: string;
|
|
5126
|
-
type: string;
|
|
5127
|
-
};
|
|
5128
|
-
action_type: {
|
|
5129
|
-
type: string;
|
|
5130
|
-
};
|
|
5131
|
-
error: {
|
|
5132
|
-
properties: {
|
|
5133
|
-
message: {
|
|
5134
|
-
type: string;
|
|
5135
|
-
};
|
|
5136
|
-
type: {
|
|
5137
|
-
type: string;
|
|
5138
|
-
};
|
|
5139
|
-
};
|
|
5140
|
-
required: string[];
|
|
5141
|
-
type: string;
|
|
5142
|
-
format?: never;
|
|
5143
|
-
nullable?: never;
|
|
5144
|
-
};
|
|
5145
|
-
result: {
|
|
5146
|
-
format: string;
|
|
5147
|
-
nullable: boolean;
|
|
5148
|
-
type: string;
|
|
5149
|
-
};
|
|
5150
|
-
status: {
|
|
5151
|
-
enum: string[];
|
|
5152
|
-
type: string;
|
|
5153
|
-
};
|
|
5154
|
-
};
|
|
5155
|
-
required: string[];
|
|
5156
|
-
type: string;
|
|
5157
|
-
})[];
|
|
4884
|
+
$ref: string;
|
|
5158
4885
|
};
|
|
5159
4886
|
ok: {
|
|
5160
4887
|
type: string;
|
|
@@ -5284,101 +5011,7 @@ declare const _default: {
|
|
|
5284
5011
|
schema: {
|
|
5285
5012
|
properties: {
|
|
5286
5013
|
action_attempt: {
|
|
5287
|
-
|
|
5288
|
-
propertyName: string;
|
|
5289
|
-
};
|
|
5290
|
-
oneOf: ({
|
|
5291
|
-
properties: {
|
|
5292
|
-
action_attempt_id: {
|
|
5293
|
-
format: string;
|
|
5294
|
-
type: string;
|
|
5295
|
-
};
|
|
5296
|
-
action_type: {
|
|
5297
|
-
type: string;
|
|
5298
|
-
};
|
|
5299
|
-
error: {
|
|
5300
|
-
format: string;
|
|
5301
|
-
nullable: boolean;
|
|
5302
|
-
type: string;
|
|
5303
|
-
properties?: never;
|
|
5304
|
-
required?: never;
|
|
5305
|
-
};
|
|
5306
|
-
result: {
|
|
5307
|
-
nullable: boolean;
|
|
5308
|
-
format?: never;
|
|
5309
|
-
type?: never;
|
|
5310
|
-
};
|
|
5311
|
-
status: {
|
|
5312
|
-
enum: string[];
|
|
5313
|
-
type: string;
|
|
5314
|
-
};
|
|
5315
|
-
};
|
|
5316
|
-
required: string[];
|
|
5317
|
-
type: string;
|
|
5318
|
-
} | {
|
|
5319
|
-
properties: {
|
|
5320
|
-
action_attempt_id: {
|
|
5321
|
-
format: string;
|
|
5322
|
-
type: string;
|
|
5323
|
-
};
|
|
5324
|
-
action_type: {
|
|
5325
|
-
type: string;
|
|
5326
|
-
};
|
|
5327
|
-
error: {
|
|
5328
|
-
format: string;
|
|
5329
|
-
nullable: boolean;
|
|
5330
|
-
type: string;
|
|
5331
|
-
properties?: never;
|
|
5332
|
-
required?: never;
|
|
5333
|
-
};
|
|
5334
|
-
result: {
|
|
5335
|
-
format: string;
|
|
5336
|
-
nullable: boolean;
|
|
5337
|
-
type: string;
|
|
5338
|
-
};
|
|
5339
|
-
status: {
|
|
5340
|
-
enum: string[];
|
|
5341
|
-
type: string;
|
|
5342
|
-
};
|
|
5343
|
-
};
|
|
5344
|
-
required: string[];
|
|
5345
|
-
type: string;
|
|
5346
|
-
} | {
|
|
5347
|
-
properties: {
|
|
5348
|
-
action_attempt_id: {
|
|
5349
|
-
format: string;
|
|
5350
|
-
type: string;
|
|
5351
|
-
};
|
|
5352
|
-
action_type: {
|
|
5353
|
-
type: string;
|
|
5354
|
-
};
|
|
5355
|
-
error: {
|
|
5356
|
-
properties: {
|
|
5357
|
-
message: {
|
|
5358
|
-
type: string;
|
|
5359
|
-
};
|
|
5360
|
-
type: {
|
|
5361
|
-
type: string;
|
|
5362
|
-
};
|
|
5363
|
-
};
|
|
5364
|
-
required: string[];
|
|
5365
|
-
type: string;
|
|
5366
|
-
format?: never;
|
|
5367
|
-
nullable?: never;
|
|
5368
|
-
};
|
|
5369
|
-
result: {
|
|
5370
|
-
format: string;
|
|
5371
|
-
nullable: boolean;
|
|
5372
|
-
type: string;
|
|
5373
|
-
};
|
|
5374
|
-
status: {
|
|
5375
|
-
enum: string[];
|
|
5376
|
-
type: string;
|
|
5377
|
-
};
|
|
5378
|
-
};
|
|
5379
|
-
required: string[];
|
|
5380
|
-
type: string;
|
|
5381
|
-
})[];
|
|
5014
|
+
$ref: string;
|
|
5382
5015
|
};
|
|
5383
5016
|
ok: {
|
|
5384
5017
|
type: string;
|
|
@@ -5509,101 +5142,7 @@ declare const _default: {
|
|
|
5509
5142
|
schema: {
|
|
5510
5143
|
properties: {
|
|
5511
5144
|
action_attempt: {
|
|
5512
|
-
|
|
5513
|
-
propertyName: string;
|
|
5514
|
-
};
|
|
5515
|
-
oneOf: ({
|
|
5516
|
-
properties: {
|
|
5517
|
-
action_attempt_id: {
|
|
5518
|
-
format: string;
|
|
5519
|
-
type: string;
|
|
5520
|
-
};
|
|
5521
|
-
action_type: {
|
|
5522
|
-
type: string;
|
|
5523
|
-
};
|
|
5524
|
-
error: {
|
|
5525
|
-
format: string;
|
|
5526
|
-
nullable: boolean;
|
|
5527
|
-
type: string;
|
|
5528
|
-
properties?: never;
|
|
5529
|
-
required?: never;
|
|
5530
|
-
};
|
|
5531
|
-
result: {
|
|
5532
|
-
nullable: boolean;
|
|
5533
|
-
format?: never;
|
|
5534
|
-
type?: never;
|
|
5535
|
-
};
|
|
5536
|
-
status: {
|
|
5537
|
-
enum: string[];
|
|
5538
|
-
type: string;
|
|
5539
|
-
};
|
|
5540
|
-
};
|
|
5541
|
-
required: string[];
|
|
5542
|
-
type: string;
|
|
5543
|
-
} | {
|
|
5544
|
-
properties: {
|
|
5545
|
-
action_attempt_id: {
|
|
5546
|
-
format: string;
|
|
5547
|
-
type: string;
|
|
5548
|
-
};
|
|
5549
|
-
action_type: {
|
|
5550
|
-
type: string;
|
|
5551
|
-
};
|
|
5552
|
-
error: {
|
|
5553
|
-
format: string;
|
|
5554
|
-
nullable: boolean;
|
|
5555
|
-
type: string;
|
|
5556
|
-
properties?: never;
|
|
5557
|
-
required?: never;
|
|
5558
|
-
};
|
|
5559
|
-
result: {
|
|
5560
|
-
format: string;
|
|
5561
|
-
nullable: boolean;
|
|
5562
|
-
type: string;
|
|
5563
|
-
};
|
|
5564
|
-
status: {
|
|
5565
|
-
enum: string[];
|
|
5566
|
-
type: string;
|
|
5567
|
-
};
|
|
5568
|
-
};
|
|
5569
|
-
required: string[];
|
|
5570
|
-
type: string;
|
|
5571
|
-
} | {
|
|
5572
|
-
properties: {
|
|
5573
|
-
action_attempt_id: {
|
|
5574
|
-
format: string;
|
|
5575
|
-
type: string;
|
|
5576
|
-
};
|
|
5577
|
-
action_type: {
|
|
5578
|
-
type: string;
|
|
5579
|
-
};
|
|
5580
|
-
error: {
|
|
5581
|
-
properties: {
|
|
5582
|
-
message: {
|
|
5583
|
-
type: string;
|
|
5584
|
-
};
|
|
5585
|
-
type: {
|
|
5586
|
-
type: string;
|
|
5587
|
-
};
|
|
5588
|
-
};
|
|
5589
|
-
required: string[];
|
|
5590
|
-
type: string;
|
|
5591
|
-
format?: never;
|
|
5592
|
-
nullable?: never;
|
|
5593
|
-
};
|
|
5594
|
-
result: {
|
|
5595
|
-
format: string;
|
|
5596
|
-
nullable: boolean;
|
|
5597
|
-
type: string;
|
|
5598
|
-
};
|
|
5599
|
-
status: {
|
|
5600
|
-
enum: string[];
|
|
5601
|
-
type: string;
|
|
5602
|
-
};
|
|
5603
|
-
};
|
|
5604
|
-
required: string[];
|
|
5605
|
-
type: string;
|
|
5606
|
-
})[];
|
|
5145
|
+
$ref: string;
|
|
5607
5146
|
};
|
|
5608
5147
|
ok: {
|
|
5609
5148
|
type: string;
|
|
@@ -8579,101 +8118,7 @@ declare const _default: {
|
|
|
8579
8118
|
schema: {
|
|
8580
8119
|
properties: {
|
|
8581
8120
|
action_attempt: {
|
|
8582
|
-
|
|
8583
|
-
propertyName: string;
|
|
8584
|
-
};
|
|
8585
|
-
oneOf: ({
|
|
8586
|
-
properties: {
|
|
8587
|
-
action_attempt_id: {
|
|
8588
|
-
format: string;
|
|
8589
|
-
type: string;
|
|
8590
|
-
};
|
|
8591
|
-
action_type: {
|
|
8592
|
-
type: string;
|
|
8593
|
-
};
|
|
8594
|
-
error: {
|
|
8595
|
-
format: string;
|
|
8596
|
-
nullable: boolean;
|
|
8597
|
-
type: string;
|
|
8598
|
-
properties?: never;
|
|
8599
|
-
required?: never;
|
|
8600
|
-
};
|
|
8601
|
-
result: {
|
|
8602
|
-
nullable: boolean;
|
|
8603
|
-
format?: never;
|
|
8604
|
-
type?: never;
|
|
8605
|
-
};
|
|
8606
|
-
status: {
|
|
8607
|
-
enum: string[];
|
|
8608
|
-
type: string;
|
|
8609
|
-
};
|
|
8610
|
-
};
|
|
8611
|
-
required: string[];
|
|
8612
|
-
type: string;
|
|
8613
|
-
} | {
|
|
8614
|
-
properties: {
|
|
8615
|
-
action_attempt_id: {
|
|
8616
|
-
format: string;
|
|
8617
|
-
type: string;
|
|
8618
|
-
};
|
|
8619
|
-
action_type: {
|
|
8620
|
-
type: string;
|
|
8621
|
-
};
|
|
8622
|
-
error: {
|
|
8623
|
-
format: string;
|
|
8624
|
-
nullable: boolean;
|
|
8625
|
-
type: string;
|
|
8626
|
-
properties?: never;
|
|
8627
|
-
required?: never;
|
|
8628
|
-
};
|
|
8629
|
-
result: {
|
|
8630
|
-
format: string;
|
|
8631
|
-
nullable: boolean;
|
|
8632
|
-
type: string;
|
|
8633
|
-
};
|
|
8634
|
-
status: {
|
|
8635
|
-
enum: string[];
|
|
8636
|
-
type: string;
|
|
8637
|
-
};
|
|
8638
|
-
};
|
|
8639
|
-
required: string[];
|
|
8640
|
-
type: string;
|
|
8641
|
-
} | {
|
|
8642
|
-
properties: {
|
|
8643
|
-
action_attempt_id: {
|
|
8644
|
-
format: string;
|
|
8645
|
-
type: string;
|
|
8646
|
-
};
|
|
8647
|
-
action_type: {
|
|
8648
|
-
type: string;
|
|
8649
|
-
};
|
|
8650
|
-
error: {
|
|
8651
|
-
properties: {
|
|
8652
|
-
message: {
|
|
8653
|
-
type: string;
|
|
8654
|
-
};
|
|
8655
|
-
type: {
|
|
8656
|
-
type: string;
|
|
8657
|
-
};
|
|
8658
|
-
};
|
|
8659
|
-
required: string[];
|
|
8660
|
-
type: string;
|
|
8661
|
-
format?: never;
|
|
8662
|
-
nullable?: never;
|
|
8663
|
-
};
|
|
8664
|
-
result: {
|
|
8665
|
-
format: string;
|
|
8666
|
-
nullable: boolean;
|
|
8667
|
-
type: string;
|
|
8668
|
-
};
|
|
8669
|
-
status: {
|
|
8670
|
-
enum: string[];
|
|
8671
|
-
type: string;
|
|
8672
|
-
};
|
|
8673
|
-
};
|
|
8674
|
-
required: string[];
|
|
8675
|
-
type: string;
|
|
8676
|
-
})[];
|
|
8121
|
+
$ref: string;
|
|
8677
8122
|
};
|
|
8678
8123
|
ok: {
|
|
8679
8124
|
type: string;
|
|
@@ -8751,101 +8196,7 @@ declare const _default: {
|
|
|
8751
8196
|
properties: {
|
|
8752
8197
|
action_attempts: {
|
|
8753
8198
|
items: {
|
|
8754
|
-
|
|
8755
|
-
propertyName: string;
|
|
8756
|
-
};
|
|
8757
|
-
oneOf: ({
|
|
8758
|
-
properties: {
|
|
8759
|
-
action_attempt_id: {
|
|
8760
|
-
format: string;
|
|
8761
|
-
type: string;
|
|
8762
|
-
};
|
|
8763
|
-
action_type: {
|
|
8764
|
-
type: string;
|
|
8765
|
-
};
|
|
8766
|
-
error: {
|
|
8767
|
-
format: string;
|
|
8768
|
-
nullable: boolean;
|
|
8769
|
-
type: string;
|
|
8770
|
-
properties?: never;
|
|
8771
|
-
required?: never;
|
|
8772
|
-
};
|
|
8773
|
-
result: {
|
|
8774
|
-
nullable: boolean;
|
|
8775
|
-
format?: never;
|
|
8776
|
-
type?: never;
|
|
8777
|
-
};
|
|
8778
|
-
status: {
|
|
8779
|
-
enum: string[];
|
|
8780
|
-
type: string;
|
|
8781
|
-
};
|
|
8782
|
-
};
|
|
8783
|
-
required: string[];
|
|
8784
|
-
type: string;
|
|
8785
|
-
} | {
|
|
8786
|
-
properties: {
|
|
8787
|
-
action_attempt_id: {
|
|
8788
|
-
format: string;
|
|
8789
|
-
type: string;
|
|
8790
|
-
};
|
|
8791
|
-
action_type: {
|
|
8792
|
-
type: string;
|
|
8793
|
-
};
|
|
8794
|
-
error: {
|
|
8795
|
-
format: string;
|
|
8796
|
-
nullable: boolean;
|
|
8797
|
-
type: string;
|
|
8798
|
-
properties?: never;
|
|
8799
|
-
required?: never;
|
|
8800
|
-
};
|
|
8801
|
-
result: {
|
|
8802
|
-
format: string;
|
|
8803
|
-
nullable: boolean;
|
|
8804
|
-
type: string;
|
|
8805
|
-
};
|
|
8806
|
-
status: {
|
|
8807
|
-
enum: string[];
|
|
8808
|
-
type: string;
|
|
8809
|
-
};
|
|
8810
|
-
};
|
|
8811
|
-
required: string[];
|
|
8812
|
-
type: string;
|
|
8813
|
-
} | {
|
|
8814
|
-
properties: {
|
|
8815
|
-
action_attempt_id: {
|
|
8816
|
-
format: string;
|
|
8817
|
-
type: string;
|
|
8818
|
-
};
|
|
8819
|
-
action_type: {
|
|
8820
|
-
type: string;
|
|
8821
|
-
};
|
|
8822
|
-
error: {
|
|
8823
|
-
properties: {
|
|
8824
|
-
message: {
|
|
8825
|
-
type: string;
|
|
8826
|
-
};
|
|
8827
|
-
type: {
|
|
8828
|
-
type: string;
|
|
8829
|
-
};
|
|
8830
|
-
};
|
|
8831
|
-
required: string[];
|
|
8832
|
-
type: string;
|
|
8833
|
-
format?: never;
|
|
8834
|
-
nullable?: never;
|
|
8835
|
-
};
|
|
8836
|
-
result: {
|
|
8837
|
-
format: string;
|
|
8838
|
-
nullable: boolean;
|
|
8839
|
-
type: string;
|
|
8840
|
-
};
|
|
8841
|
-
status: {
|
|
8842
|
-
enum: string[];
|
|
8843
|
-
type: string;
|
|
8844
|
-
};
|
|
8845
|
-
};
|
|
8846
|
-
required: string[];
|
|
8847
|
-
type: string;
|
|
8848
|
-
})[];
|
|
8199
|
+
$ref: string;
|
|
8849
8200
|
};
|
|
8850
8201
|
type: string;
|
|
8851
8202
|
};
|
|
@@ -10093,15 +9444,23 @@ declare const _default: {
|
|
|
10093
9444
|
};
|
|
10094
9445
|
};
|
|
10095
9446
|
security: ({
|
|
9447
|
+
client_session: never[];
|
|
9448
|
+
api_key?: never;
|
|
9449
|
+
pat_with_workspace?: never;
|
|
9450
|
+
console_session?: never;
|
|
9451
|
+
} | {
|
|
10096
9452
|
api_key: never[];
|
|
9453
|
+
client_session?: never;
|
|
10097
9454
|
pat_with_workspace?: never;
|
|
10098
9455
|
console_session?: never;
|
|
10099
9456
|
} | {
|
|
10100
9457
|
pat_with_workspace: never[];
|
|
9458
|
+
client_session?: never;
|
|
10101
9459
|
api_key?: never;
|
|
10102
9460
|
console_session?: never;
|
|
10103
9461
|
} | {
|
|
10104
9462
|
console_session: never[];
|
|
9463
|
+
client_session?: never;
|
|
10105
9464
|
api_key?: never;
|
|
10106
9465
|
pat_with_workspace?: never;
|
|
10107
9466
|
})[];
|
|
@@ -12008,101 +11367,7 @@ declare const _default: {
|
|
|
12008
11367
|
schema: {
|
|
12009
11368
|
properties: {
|
|
12010
11369
|
action_attempt: {
|
|
12011
|
-
|
|
12012
|
-
propertyName: string;
|
|
12013
|
-
};
|
|
12014
|
-
oneOf: ({
|
|
12015
|
-
properties: {
|
|
12016
|
-
action_attempt_id: {
|
|
12017
|
-
format: string;
|
|
12018
|
-
type: string;
|
|
12019
|
-
};
|
|
12020
|
-
action_type: {
|
|
12021
|
-
type: string;
|
|
12022
|
-
};
|
|
12023
|
-
error: {
|
|
12024
|
-
format: string;
|
|
12025
|
-
nullable: boolean;
|
|
12026
|
-
type: string;
|
|
12027
|
-
properties?: never;
|
|
12028
|
-
required?: never;
|
|
12029
|
-
};
|
|
12030
|
-
result: {
|
|
12031
|
-
nullable: boolean;
|
|
12032
|
-
format?: never;
|
|
12033
|
-
type?: never;
|
|
12034
|
-
};
|
|
12035
|
-
status: {
|
|
12036
|
-
enum: string[];
|
|
12037
|
-
type: string;
|
|
12038
|
-
};
|
|
12039
|
-
};
|
|
12040
|
-
required: string[];
|
|
12041
|
-
type: string;
|
|
12042
|
-
} | {
|
|
12043
|
-
properties: {
|
|
12044
|
-
action_attempt_id: {
|
|
12045
|
-
format: string;
|
|
12046
|
-
type: string;
|
|
12047
|
-
};
|
|
12048
|
-
action_type: {
|
|
12049
|
-
type: string;
|
|
12050
|
-
};
|
|
12051
|
-
error: {
|
|
12052
|
-
format: string;
|
|
12053
|
-
nullable: boolean;
|
|
12054
|
-
type: string;
|
|
12055
|
-
properties?: never;
|
|
12056
|
-
required?: never;
|
|
12057
|
-
};
|
|
12058
|
-
result: {
|
|
12059
|
-
format: string;
|
|
12060
|
-
nullable: boolean;
|
|
12061
|
-
type: string;
|
|
12062
|
-
};
|
|
12063
|
-
status: {
|
|
12064
|
-
enum: string[];
|
|
12065
|
-
type: string;
|
|
12066
|
-
};
|
|
12067
|
-
};
|
|
12068
|
-
required: string[];
|
|
12069
|
-
type: string;
|
|
12070
|
-
} | {
|
|
12071
|
-
properties: {
|
|
12072
|
-
action_attempt_id: {
|
|
12073
|
-
format: string;
|
|
12074
|
-
type: string;
|
|
12075
|
-
};
|
|
12076
|
-
action_type: {
|
|
12077
|
-
type: string;
|
|
12078
|
-
};
|
|
12079
|
-
error: {
|
|
12080
|
-
properties: {
|
|
12081
|
-
message: {
|
|
12082
|
-
type: string;
|
|
12083
|
-
};
|
|
12084
|
-
type: {
|
|
12085
|
-
type: string;
|
|
12086
|
-
};
|
|
12087
|
-
};
|
|
12088
|
-
required: string[];
|
|
12089
|
-
type: string;
|
|
12090
|
-
format?: never;
|
|
12091
|
-
nullable?: never;
|
|
12092
|
-
};
|
|
12093
|
-
result: {
|
|
12094
|
-
format: string;
|
|
12095
|
-
nullable: boolean;
|
|
12096
|
-
type: string;
|
|
12097
|
-
};
|
|
12098
|
-
status: {
|
|
12099
|
-
enum: string[];
|
|
12100
|
-
type: string;
|
|
12101
|
-
};
|
|
12102
|
-
};
|
|
12103
|
-
required: string[];
|
|
12104
|
-
type: string;
|
|
12105
|
-
})[];
|
|
11370
|
+
$ref: string;
|
|
12106
11371
|
};
|
|
12107
11372
|
noise_threshold: {
|
|
12108
11373
|
$ref: string;
|
|
@@ -12179,101 +11444,7 @@ declare const _default: {
|
|
|
12179
11444
|
schema: {
|
|
12180
11445
|
properties: {
|
|
12181
11446
|
action_attempt: {
|
|
12182
|
-
|
|
12183
|
-
propertyName: string;
|
|
12184
|
-
};
|
|
12185
|
-
oneOf: ({
|
|
12186
|
-
properties: {
|
|
12187
|
-
action_attempt_id: {
|
|
12188
|
-
format: string;
|
|
12189
|
-
type: string;
|
|
12190
|
-
};
|
|
12191
|
-
action_type: {
|
|
12192
|
-
type: string;
|
|
12193
|
-
};
|
|
12194
|
-
error: {
|
|
12195
|
-
format: string;
|
|
12196
|
-
nullable: boolean;
|
|
12197
|
-
type: string;
|
|
12198
|
-
properties?: never;
|
|
12199
|
-
required?: never;
|
|
12200
|
-
};
|
|
12201
|
-
result: {
|
|
12202
|
-
nullable: boolean;
|
|
12203
|
-
format?: never;
|
|
12204
|
-
type?: never;
|
|
12205
|
-
};
|
|
12206
|
-
status: {
|
|
12207
|
-
enum: string[];
|
|
12208
|
-
type: string;
|
|
12209
|
-
};
|
|
12210
|
-
};
|
|
12211
|
-
required: string[];
|
|
12212
|
-
type: string;
|
|
12213
|
-
} | {
|
|
12214
|
-
properties: {
|
|
12215
|
-
action_attempt_id: {
|
|
12216
|
-
format: string;
|
|
12217
|
-
type: string;
|
|
12218
|
-
};
|
|
12219
|
-
action_type: {
|
|
12220
|
-
type: string;
|
|
12221
|
-
};
|
|
12222
|
-
error: {
|
|
12223
|
-
format: string;
|
|
12224
|
-
nullable: boolean;
|
|
12225
|
-
type: string;
|
|
12226
|
-
properties?: never;
|
|
12227
|
-
required?: never;
|
|
12228
|
-
};
|
|
12229
|
-
result: {
|
|
12230
|
-
format: string;
|
|
12231
|
-
nullable: boolean;
|
|
12232
|
-
type: string;
|
|
12233
|
-
};
|
|
12234
|
-
status: {
|
|
12235
|
-
enum: string[];
|
|
12236
|
-
type: string;
|
|
12237
|
-
};
|
|
12238
|
-
};
|
|
12239
|
-
required: string[];
|
|
12240
|
-
type: string;
|
|
12241
|
-
} | {
|
|
12242
|
-
properties: {
|
|
12243
|
-
action_attempt_id: {
|
|
12244
|
-
format: string;
|
|
12245
|
-
type: string;
|
|
12246
|
-
};
|
|
12247
|
-
action_type: {
|
|
12248
|
-
type: string;
|
|
12249
|
-
};
|
|
12250
|
-
error: {
|
|
12251
|
-
properties: {
|
|
12252
|
-
message: {
|
|
12253
|
-
type: string;
|
|
12254
|
-
};
|
|
12255
|
-
type: {
|
|
12256
|
-
type: string;
|
|
12257
|
-
};
|
|
12258
|
-
};
|
|
12259
|
-
required: string[];
|
|
12260
|
-
type: string;
|
|
12261
|
-
format?: never;
|
|
12262
|
-
nullable?: never;
|
|
12263
|
-
};
|
|
12264
|
-
result: {
|
|
12265
|
-
format: string;
|
|
12266
|
-
nullable: boolean;
|
|
12267
|
-
type: string;
|
|
12268
|
-
};
|
|
12269
|
-
status: {
|
|
12270
|
-
enum: string[];
|
|
12271
|
-
type: string;
|
|
12272
|
-
};
|
|
12273
|
-
};
|
|
12274
|
-
required: string[];
|
|
12275
|
-
type: string;
|
|
12276
|
-
})[];
|
|
11447
|
+
$ref: string;
|
|
12277
11448
|
};
|
|
12278
11449
|
ok: {
|
|
12279
11450
|
type: string;
|
|
@@ -12499,101 +11670,7 @@ declare const _default: {
|
|
|
12499
11670
|
schema: {
|
|
12500
11671
|
properties: {
|
|
12501
11672
|
action_attempt: {
|
|
12502
|
-
|
|
12503
|
-
propertyName: string;
|
|
12504
|
-
};
|
|
12505
|
-
oneOf: ({
|
|
12506
|
-
properties: {
|
|
12507
|
-
action_attempt_id: {
|
|
12508
|
-
format: string;
|
|
12509
|
-
type: string;
|
|
12510
|
-
};
|
|
12511
|
-
action_type: {
|
|
12512
|
-
type: string;
|
|
12513
|
-
};
|
|
12514
|
-
error: {
|
|
12515
|
-
format: string;
|
|
12516
|
-
nullable: boolean;
|
|
12517
|
-
type: string;
|
|
12518
|
-
properties?: never;
|
|
12519
|
-
required?: never;
|
|
12520
|
-
};
|
|
12521
|
-
result: {
|
|
12522
|
-
nullable: boolean;
|
|
12523
|
-
format?: never;
|
|
12524
|
-
type?: never;
|
|
12525
|
-
};
|
|
12526
|
-
status: {
|
|
12527
|
-
enum: string[];
|
|
12528
|
-
type: string;
|
|
12529
|
-
};
|
|
12530
|
-
};
|
|
12531
|
-
required: string[];
|
|
12532
|
-
type: string;
|
|
12533
|
-
} | {
|
|
12534
|
-
properties: {
|
|
12535
|
-
action_attempt_id: {
|
|
12536
|
-
format: string;
|
|
12537
|
-
type: string;
|
|
12538
|
-
};
|
|
12539
|
-
action_type: {
|
|
12540
|
-
type: string;
|
|
12541
|
-
};
|
|
12542
|
-
error: {
|
|
12543
|
-
format: string;
|
|
12544
|
-
nullable: boolean;
|
|
12545
|
-
type: string;
|
|
12546
|
-
properties?: never;
|
|
12547
|
-
required?: never;
|
|
12548
|
-
};
|
|
12549
|
-
result: {
|
|
12550
|
-
format: string;
|
|
12551
|
-
nullable: boolean;
|
|
12552
|
-
type: string;
|
|
12553
|
-
};
|
|
12554
|
-
status: {
|
|
12555
|
-
enum: string[];
|
|
12556
|
-
type: string;
|
|
12557
|
-
};
|
|
12558
|
-
};
|
|
12559
|
-
required: string[];
|
|
12560
|
-
type: string;
|
|
12561
|
-
} | {
|
|
12562
|
-
properties: {
|
|
12563
|
-
action_attempt_id: {
|
|
12564
|
-
format: string;
|
|
12565
|
-
type: string;
|
|
12566
|
-
};
|
|
12567
|
-
action_type: {
|
|
12568
|
-
type: string;
|
|
12569
|
-
};
|
|
12570
|
-
error: {
|
|
12571
|
-
properties: {
|
|
12572
|
-
message: {
|
|
12573
|
-
type: string;
|
|
12574
|
-
};
|
|
12575
|
-
type: {
|
|
12576
|
-
type: string;
|
|
12577
|
-
};
|
|
12578
|
-
};
|
|
12579
|
-
required: string[];
|
|
12580
|
-
type: string;
|
|
12581
|
-
format?: never;
|
|
12582
|
-
nullable?: never;
|
|
12583
|
-
};
|
|
12584
|
-
result: {
|
|
12585
|
-
format: string;
|
|
12586
|
-
nullable: boolean;
|
|
12587
|
-
type: string;
|
|
12588
|
-
};
|
|
12589
|
-
status: {
|
|
12590
|
-
enum: string[];
|
|
12591
|
-
type: string;
|
|
12592
|
-
};
|
|
12593
|
-
};
|
|
12594
|
-
required: string[];
|
|
12595
|
-
type: string;
|
|
12596
|
-
})[];
|
|
11673
|
+
$ref: string;
|
|
12597
11674
|
};
|
|
12598
11675
|
ok: {
|
|
12599
11676
|
type: string;
|
|
@@ -12678,101 +11755,7 @@ declare const _default: {
|
|
|
12678
11755
|
schema: {
|
|
12679
11756
|
properties: {
|
|
12680
11757
|
action_attempt: {
|
|
12681
|
-
|
|
12682
|
-
propertyName: string;
|
|
12683
|
-
};
|
|
12684
|
-
oneOf: ({
|
|
12685
|
-
properties: {
|
|
12686
|
-
action_attempt_id: {
|
|
12687
|
-
format: string;
|
|
12688
|
-
type: string;
|
|
12689
|
-
};
|
|
12690
|
-
action_type: {
|
|
12691
|
-
type: string;
|
|
12692
|
-
};
|
|
12693
|
-
error: {
|
|
12694
|
-
format: string;
|
|
12695
|
-
nullable: boolean;
|
|
12696
|
-
type: string;
|
|
12697
|
-
properties?: never;
|
|
12698
|
-
required?: never;
|
|
12699
|
-
};
|
|
12700
|
-
result: {
|
|
12701
|
-
nullable: boolean;
|
|
12702
|
-
format?: never;
|
|
12703
|
-
type?: never;
|
|
12704
|
-
};
|
|
12705
|
-
status: {
|
|
12706
|
-
enum: string[];
|
|
12707
|
-
type: string;
|
|
12708
|
-
};
|
|
12709
|
-
};
|
|
12710
|
-
required: string[];
|
|
12711
|
-
type: string;
|
|
12712
|
-
} | {
|
|
12713
|
-
properties: {
|
|
12714
|
-
action_attempt_id: {
|
|
12715
|
-
format: string;
|
|
12716
|
-
type: string;
|
|
12717
|
-
};
|
|
12718
|
-
action_type: {
|
|
12719
|
-
type: string;
|
|
12720
|
-
};
|
|
12721
|
-
error: {
|
|
12722
|
-
format: string;
|
|
12723
|
-
nullable: boolean;
|
|
12724
|
-
type: string;
|
|
12725
|
-
properties?: never;
|
|
12726
|
-
required?: never;
|
|
12727
|
-
};
|
|
12728
|
-
result: {
|
|
12729
|
-
format: string;
|
|
12730
|
-
nullable: boolean;
|
|
12731
|
-
type: string;
|
|
12732
|
-
};
|
|
12733
|
-
status: {
|
|
12734
|
-
enum: string[];
|
|
12735
|
-
type: string;
|
|
12736
|
-
};
|
|
12737
|
-
};
|
|
12738
|
-
required: string[];
|
|
12739
|
-
type: string;
|
|
12740
|
-
} | {
|
|
12741
|
-
properties: {
|
|
12742
|
-
action_attempt_id: {
|
|
12743
|
-
format: string;
|
|
12744
|
-
type: string;
|
|
12745
|
-
};
|
|
12746
|
-
action_type: {
|
|
12747
|
-
type: string;
|
|
12748
|
-
};
|
|
12749
|
-
error: {
|
|
12750
|
-
properties: {
|
|
12751
|
-
message: {
|
|
12752
|
-
type: string;
|
|
12753
|
-
};
|
|
12754
|
-
type: {
|
|
12755
|
-
type: string;
|
|
12756
|
-
};
|
|
12757
|
-
};
|
|
12758
|
-
required: string[];
|
|
12759
|
-
type: string;
|
|
12760
|
-
format?: never;
|
|
12761
|
-
nullable?: never;
|
|
12762
|
-
};
|
|
12763
|
-
result: {
|
|
12764
|
-
format: string;
|
|
12765
|
-
nullable: boolean;
|
|
12766
|
-
type: string;
|
|
12767
|
-
};
|
|
12768
|
-
status: {
|
|
12769
|
-
enum: string[];
|
|
12770
|
-
type: string;
|
|
12771
|
-
};
|
|
12772
|
-
};
|
|
12773
|
-
required: string[];
|
|
12774
|
-
type: string;
|
|
12775
|
-
})[];
|
|
11758
|
+
$ref: string;
|
|
12776
11759
|
};
|
|
12777
11760
|
ok: {
|
|
12778
11761
|
type: string;
|
|
@@ -12858,101 +11841,7 @@ declare const _default: {
|
|
|
12858
11841
|
schema: {
|
|
12859
11842
|
properties: {
|
|
12860
11843
|
action_attempt: {
|
|
12861
|
-
|
|
12862
|
-
propertyName: string;
|
|
12863
|
-
};
|
|
12864
|
-
oneOf: ({
|
|
12865
|
-
properties: {
|
|
12866
|
-
action_attempt_id: {
|
|
12867
|
-
format: string;
|
|
12868
|
-
type: string;
|
|
12869
|
-
};
|
|
12870
|
-
action_type: {
|
|
12871
|
-
type: string;
|
|
12872
|
-
};
|
|
12873
|
-
error: {
|
|
12874
|
-
format: string;
|
|
12875
|
-
nullable: boolean;
|
|
12876
|
-
type: string;
|
|
12877
|
-
properties?: never;
|
|
12878
|
-
required?: never;
|
|
12879
|
-
};
|
|
12880
|
-
result: {
|
|
12881
|
-
nullable: boolean;
|
|
12882
|
-
format?: never;
|
|
12883
|
-
type?: never;
|
|
12884
|
-
};
|
|
12885
|
-
status: {
|
|
12886
|
-
enum: string[];
|
|
12887
|
-
type: string;
|
|
12888
|
-
};
|
|
12889
|
-
};
|
|
12890
|
-
required: string[];
|
|
12891
|
-
type: string;
|
|
12892
|
-
} | {
|
|
12893
|
-
properties: {
|
|
12894
|
-
action_attempt_id: {
|
|
12895
|
-
format: string;
|
|
12896
|
-
type: string;
|
|
12897
|
-
};
|
|
12898
|
-
action_type: {
|
|
12899
|
-
type: string;
|
|
12900
|
-
};
|
|
12901
|
-
error: {
|
|
12902
|
-
format: string;
|
|
12903
|
-
nullable: boolean;
|
|
12904
|
-
type: string;
|
|
12905
|
-
properties?: never;
|
|
12906
|
-
required?: never;
|
|
12907
|
-
};
|
|
12908
|
-
result: {
|
|
12909
|
-
format: string;
|
|
12910
|
-
nullable: boolean;
|
|
12911
|
-
type: string;
|
|
12912
|
-
};
|
|
12913
|
-
status: {
|
|
12914
|
-
enum: string[];
|
|
12915
|
-
type: string;
|
|
12916
|
-
};
|
|
12917
|
-
};
|
|
12918
|
-
required: string[];
|
|
12919
|
-
type: string;
|
|
12920
|
-
} | {
|
|
12921
|
-
properties: {
|
|
12922
|
-
action_attempt_id: {
|
|
12923
|
-
format: string;
|
|
12924
|
-
type: string;
|
|
12925
|
-
};
|
|
12926
|
-
action_type: {
|
|
12927
|
-
type: string;
|
|
12928
|
-
};
|
|
12929
|
-
error: {
|
|
12930
|
-
properties: {
|
|
12931
|
-
message: {
|
|
12932
|
-
type: string;
|
|
12933
|
-
};
|
|
12934
|
-
type: {
|
|
12935
|
-
type: string;
|
|
12936
|
-
};
|
|
12937
|
-
};
|
|
12938
|
-
required: string[];
|
|
12939
|
-
type: string;
|
|
12940
|
-
format?: never;
|
|
12941
|
-
nullable?: never;
|
|
12942
|
-
};
|
|
12943
|
-
result: {
|
|
12944
|
-
format: string;
|
|
12945
|
-
nullable: boolean;
|
|
12946
|
-
type: string;
|
|
12947
|
-
};
|
|
12948
|
-
status: {
|
|
12949
|
-
enum: string[];
|
|
12950
|
-
type: string;
|
|
12951
|
-
};
|
|
12952
|
-
};
|
|
12953
|
-
required: string[];
|
|
12954
|
-
type: string;
|
|
12955
|
-
})[];
|
|
11844
|
+
$ref: string;
|
|
12956
11845
|
};
|
|
12957
11846
|
ok: {
|
|
12958
11847
|
type: string;
|