@cat-factory/contracts 0.301.0 → 0.303.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/build-ladder.d.ts +36 -0
- package/dist/build-ladder.d.ts.map +1 -1
- package/dist/build-ladder.js +34 -0
- package/dist/build-ladder.js.map +1 -1
- package/dist/entities.d.ts +21 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +21 -0
- package/dist/entities.js.map +1 -1
- package/dist/errors.d.ts +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +12 -0
- package/dist/errors.js.map +1 -1
- package/dist/execution.d.ts +40 -6
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +20 -3
- package/dist/execution.js.map +1 -1
- package/dist/merge.d.ts +834 -22
- package/dist/merge.d.ts.map +1 -1
- package/dist/merge.js +94 -21
- package/dist/merge.js.map +1 -1
- package/dist/public-api.d.ts +65 -2
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +57 -3
- package/dist/public-api.js.map +1 -1
- package/dist/requests.d.ts +13 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +13 -0
- package/dist/requests.js.map +1 -1
- package/dist/requirements.d.ts +99 -0
- package/dist/requirements.d.ts.map +1 -1
- package/dist/requirements.js +94 -0
- package/dist/requirements.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +2 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +2 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +9 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +1 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +5 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/merge.d.ts +799 -0
- package/dist/routes/merge.d.ts.map +1 -1
- package/dist/routes/merge.js +67 -8
- package/dist/routes/merge.js.map +1 -1
- package/dist/routes/pipelines.d.ts +14 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +3 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/requirements.d.ts +12 -0
- package/dist/routes/requirements.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +3 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +10 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/run-provenance.d.ts +22 -3
- package/dist/run-provenance.d.ts.map +1 -1
- package/dist/run-provenance.js +23 -4
- package/dist/run-provenance.js.map +1 -1
- package/dist/snapshot.d.ts +12 -2
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +9 -4
- package/dist/snapshot.js.map +1 -1
- package/package.json +1 -1
package/dist/routes/merge.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { ContractNoBody } from '@toad-contracts/valibot';
|
|
2
2
|
import * as v from 'valibot';
|
|
3
|
+
/**
|
|
4
|
+
* The board's visible library: its own policies plus the account policies it inherits, each
|
|
5
|
+
* tagged with the tier that owns it. At the ACCOUNT mount it is that account's own rows, which
|
|
6
|
+
* carry `tier: 'account'` for the same reason — a single response shape means the editor renders
|
|
7
|
+
* one list at either scope and reads editability off the tier rather than off which URL it called.
|
|
8
|
+
*/
|
|
3
9
|
export declare const listRiskPoliciesContract: {
|
|
4
10
|
readonly method: "get";
|
|
5
11
|
readonly pathResolver: () => string;
|
|
@@ -639,10 +645,12 @@ export declare const listRiskPoliciesContract: {
|
|
|
639
645
|
} | undefined;
|
|
640
646
|
};
|
|
641
647
|
readonly autonomy: v.PicklistSchema<["attended", "unattended"], undefined>;
|
|
648
|
+
readonly minAutoAnswerConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
642
649
|
readonly isDefault: v.BooleanSchema<undefined>;
|
|
643
650
|
readonly isUnattendedDefault: v.BooleanSchema<undefined>;
|
|
644
651
|
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
645
652
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
653
|
+
readonly tier: v.PicklistSchema<["account", "workspace"], undefined>;
|
|
646
654
|
}, undefined>, undefined>;
|
|
647
655
|
};
|
|
648
656
|
};
|
|
@@ -1261,6 +1269,7 @@ export declare const createRiskPolicyContract: {
|
|
|
1261
1269
|
} | undefined;
|
|
1262
1270
|
}, {}>;
|
|
1263
1271
|
readonly autonomy: v.OptionalSchema<v.PicklistSchema<["attended", "unattended"], undefined>, "attended">;
|
|
1272
|
+
readonly minAutoAnswerConfidence: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, 0.8>;
|
|
1264
1273
|
readonly isDefault: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
1265
1274
|
readonly isUnattendedDefault: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
1266
1275
|
}, undefined>;
|
|
@@ -1900,10 +1909,12 @@ export declare const createRiskPolicyContract: {
|
|
|
1900
1909
|
} | undefined;
|
|
1901
1910
|
};
|
|
1902
1911
|
readonly autonomy: v.PicklistSchema<["attended", "unattended"], undefined>;
|
|
1912
|
+
readonly minAutoAnswerConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1903
1913
|
readonly isDefault: v.BooleanSchema<undefined>;
|
|
1904
1914
|
readonly isUnattendedDefault: v.BooleanSchema<undefined>;
|
|
1905
1915
|
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1906
1916
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1917
|
+
readonly tier: v.PicklistSchema<["account", "workspace"], undefined>;
|
|
1907
1918
|
}, undefined>;
|
|
1908
1919
|
};
|
|
1909
1920
|
};
|
|
@@ -2527,6 +2538,7 @@ export declare const updateRiskPolicyContract: {
|
|
|
2527
2538
|
} | undefined;
|
|
2528
2539
|
}, undefined>;
|
|
2529
2540
|
readonly autonomy: v.OptionalSchema<v.PicklistSchema<["attended", "unattended"], undefined>, undefined>;
|
|
2541
|
+
readonly minAutoAnswerConfidence: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2530
2542
|
readonly isDefault: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2531
2543
|
readonly isUnattendedDefault: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2532
2544
|
}, undefined>;
|
|
@@ -3166,10 +3178,12 @@ export declare const updateRiskPolicyContract: {
|
|
|
3166
3178
|
} | undefined;
|
|
3167
3179
|
};
|
|
3168
3180
|
readonly autonomy: v.PicklistSchema<["attended", "unattended"], undefined>;
|
|
3181
|
+
readonly minAutoAnswerConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3169
3182
|
readonly isDefault: v.BooleanSchema<undefined>;
|
|
3170
3183
|
readonly isUnattendedDefault: v.BooleanSchema<undefined>;
|
|
3171
3184
|
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3172
3185
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
3186
|
+
readonly tier: v.PicklistSchema<["account", "workspace"], undefined>;
|
|
3173
3187
|
}, undefined>;
|
|
3174
3188
|
};
|
|
3175
3189
|
};
|
|
@@ -3858,11 +3872,796 @@ export declare const reseedRiskPolicyContract: {
|
|
|
3858
3872
|
} | undefined;
|
|
3859
3873
|
};
|
|
3860
3874
|
readonly autonomy: v.PicklistSchema<["attended", "unattended"], undefined>;
|
|
3875
|
+
readonly minAutoAnswerConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3861
3876
|
readonly isDefault: v.BooleanSchema<undefined>;
|
|
3862
3877
|
readonly isUnattendedDefault: v.BooleanSchema<undefined>;
|
|
3863
3878
|
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3864
3879
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
3880
|
+
readonly tier: v.PicklistSchema<["account", "workspace"], undefined>;
|
|
3881
|
+
}, undefined>;
|
|
3882
|
+
};
|
|
3883
|
+
};
|
|
3884
|
+
/**
|
|
3885
|
+
* Copy an inherited ACCOUNT policy into this board's own tier, under a fresh id, so the board can
|
|
3886
|
+
* edit its numbers without an account admin (see {@link cloneRiskPolicySchema}).
|
|
3887
|
+
*
|
|
3888
|
+
* A POST creating a new row, so `201` — this is not an in-place conversion of the account policy,
|
|
3889
|
+
* which stays exactly where it was and keeps governing every other board.
|
|
3890
|
+
*/
|
|
3891
|
+
export declare const cloneRiskPolicyContract: {
|
|
3892
|
+
readonly method: "post";
|
|
3893
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
3894
|
+
presetId: v.StringSchema<undefined>;
|
|
3895
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
3896
|
+
readonly pathResolver: ({ presetId }: {
|
|
3897
|
+
presetId: string;
|
|
3898
|
+
}) => string;
|
|
3899
|
+
readonly requestBodySchema: v.ObjectSchema<{
|
|
3900
|
+
readonly name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 60, undefined>]>, undefined>;
|
|
3901
|
+
}, undefined>;
|
|
3902
|
+
readonly responsesByStatusCode: {
|
|
3903
|
+
readonly '4xx': v.ObjectSchema<{
|
|
3904
|
+
readonly error: v.ObjectSchema<{
|
|
3905
|
+
readonly code: v.StringSchema<undefined>;
|
|
3906
|
+
readonly message: v.StringSchema<undefined>;
|
|
3907
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
3908
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3909
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3910
|
+
readonly message: v.StringSchema<undefined>;
|
|
3911
|
+
}, undefined>, undefined>, undefined>;
|
|
3912
|
+
}, undefined>;
|
|
3913
|
+
}, undefined>;
|
|
3914
|
+
readonly '5xx': v.ObjectSchema<{
|
|
3915
|
+
readonly error: v.ObjectSchema<{
|
|
3916
|
+
readonly code: v.StringSchema<undefined>;
|
|
3917
|
+
readonly message: v.StringSchema<undefined>;
|
|
3918
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
3919
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3920
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3921
|
+
readonly message: v.StringSchema<undefined>;
|
|
3922
|
+
}, undefined>, undefined>, undefined>;
|
|
3923
|
+
}, undefined>;
|
|
3865
3924
|
}, undefined>;
|
|
3925
|
+
readonly 201: v.ObjectSchema<{
|
|
3926
|
+
readonly id: v.StringSchema<undefined>;
|
|
3927
|
+
readonly name: v.StringSchema<undefined>;
|
|
3928
|
+
readonly maxComplexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3929
|
+
readonly maxRisk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3930
|
+
readonly maxImpact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3931
|
+
readonly ciMaxAttempts: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3932
|
+
readonly maxRequirementIterations: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3933
|
+
readonly maxRequirementConcernAllowed: v.PicklistSchema<["none", "low", "medium", "high"], undefined>;
|
|
3934
|
+
readonly maxTesterQualityIterations: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3935
|
+
readonly releaseWatchWindowMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3936
|
+
readonly releaseMaxAttempts: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3937
|
+
readonly humanReviewGraceMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3938
|
+
readonly judgeMinScore: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3939
|
+
readonly judgeMaxBounces: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3940
|
+
readonly autoMergeEnabled: v.BooleanSchema<undefined>;
|
|
3941
|
+
readonly forkDecision: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3942
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
3943
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3944
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3945
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
3946
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
3947
|
+
}, undefined>, undefined>, undefined>;
|
|
3948
|
+
readonly classRules: Omit<v.StrictObjectSchema<{
|
|
3949
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3950
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3951
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3952
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3953
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3954
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
3955
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
3956
|
+
readonly entries: {
|
|
3957
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3958
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3959
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3960
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3961
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3962
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
3963
|
+
};
|
|
3964
|
+
readonly "~standard": v.StandardProps<{
|
|
3965
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
3966
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
3967
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
3968
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
3969
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
3970
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
3971
|
+
}, {
|
|
3972
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
3973
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
3974
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
3975
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
3976
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
3977
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
3978
|
+
}>;
|
|
3979
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
3980
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
3981
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
3982
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
3983
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
3984
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
3985
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
3986
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
3987
|
+
readonly "~types"?: {
|
|
3988
|
+
readonly input: {
|
|
3989
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
3990
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
3991
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
3992
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
3993
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
3994
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
3995
|
+
};
|
|
3996
|
+
readonly output: {
|
|
3997
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
3998
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
3999
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4000
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4001
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4002
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4003
|
+
};
|
|
4004
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4005
|
+
} | undefined;
|
|
4006
|
+
};
|
|
4007
|
+
readonly classRulesByRole: Omit<v.StrictObjectSchema<{
|
|
4008
|
+
admin: Omit<v.StrictObjectSchema<{
|
|
4009
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4010
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4011
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4012
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4013
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4014
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4015
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4016
|
+
readonly entries: {
|
|
4017
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4018
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4019
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4020
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4021
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4022
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4023
|
+
};
|
|
4024
|
+
readonly "~standard": v.StandardProps<{
|
|
4025
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4026
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4027
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4028
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4029
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4030
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4031
|
+
}, {
|
|
4032
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4033
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4034
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4035
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4036
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4037
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4038
|
+
}>;
|
|
4039
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4040
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4041
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4042
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4043
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4044
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4045
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4046
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4047
|
+
readonly "~types"?: {
|
|
4048
|
+
readonly input: {
|
|
4049
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4050
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4051
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4052
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4053
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4054
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4055
|
+
};
|
|
4056
|
+
readonly output: {
|
|
4057
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4058
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4059
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4060
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4061
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4062
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4063
|
+
};
|
|
4064
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4065
|
+
} | undefined;
|
|
4066
|
+
};
|
|
4067
|
+
member: Omit<v.StrictObjectSchema<{
|
|
4068
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4069
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4070
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4071
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4072
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4073
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4074
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4075
|
+
readonly entries: {
|
|
4076
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4077
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4078
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4079
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4080
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4081
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4082
|
+
};
|
|
4083
|
+
readonly "~standard": v.StandardProps<{
|
|
4084
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4085
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4086
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4087
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4088
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4089
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4090
|
+
}, {
|
|
4091
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4092
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4093
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4094
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4095
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4096
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4097
|
+
}>;
|
|
4098
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4099
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4100
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4101
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4102
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4103
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4104
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4105
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4106
|
+
readonly "~types"?: {
|
|
4107
|
+
readonly input: {
|
|
4108
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4109
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4110
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4111
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4112
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4113
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4114
|
+
};
|
|
4115
|
+
readonly output: {
|
|
4116
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4117
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4118
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4119
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4120
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4121
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4122
|
+
};
|
|
4123
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4124
|
+
} | undefined;
|
|
4125
|
+
};
|
|
4126
|
+
viewer: Omit<v.StrictObjectSchema<{
|
|
4127
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4128
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4129
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4130
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4131
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4132
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4133
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4134
|
+
readonly entries: {
|
|
4135
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4136
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4137
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4138
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4139
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4140
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4141
|
+
};
|
|
4142
|
+
readonly "~standard": v.StandardProps<{
|
|
4143
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4144
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4145
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4146
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4147
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4148
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4149
|
+
}, {
|
|
4150
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4151
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4152
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4153
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4154
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4155
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4156
|
+
}>;
|
|
4157
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4158
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4159
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4160
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4161
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4162
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4163
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4164
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4165
|
+
readonly "~types"?: {
|
|
4166
|
+
readonly input: {
|
|
4167
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4168
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4169
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4170
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4171
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4172
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4173
|
+
};
|
|
4174
|
+
readonly output: {
|
|
4175
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4176
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4177
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4178
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4179
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4180
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4181
|
+
};
|
|
4182
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4183
|
+
} | undefined;
|
|
4184
|
+
};
|
|
4185
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4186
|
+
readonly entries: {
|
|
4187
|
+
admin: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
4188
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4189
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4190
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4191
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4192
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4193
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4194
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4195
|
+
readonly entries: {
|
|
4196
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4197
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4198
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4199
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4200
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4201
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4202
|
+
};
|
|
4203
|
+
readonly "~standard": v.StandardProps<{
|
|
4204
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4205
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4206
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4207
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4208
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4209
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4210
|
+
}, {
|
|
4211
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4212
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4213
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4214
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4215
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4216
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4217
|
+
}>;
|
|
4218
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4219
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4220
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4221
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4222
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4223
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4224
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4225
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4226
|
+
readonly "~types"?: {
|
|
4227
|
+
readonly input: {
|
|
4228
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4229
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4230
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4231
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4232
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4233
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4234
|
+
};
|
|
4235
|
+
readonly output: {
|
|
4236
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4237
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4238
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4239
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4240
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4241
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4242
|
+
};
|
|
4243
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4244
|
+
} | undefined;
|
|
4245
|
+
}, undefined>;
|
|
4246
|
+
member: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
4247
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4248
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4249
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4250
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4251
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4252
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4253
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4254
|
+
readonly entries: {
|
|
4255
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4256
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4257
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4258
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4259
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4260
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4261
|
+
};
|
|
4262
|
+
readonly "~standard": v.StandardProps<{
|
|
4263
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4264
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4265
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4266
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4267
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4268
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4269
|
+
}, {
|
|
4270
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4271
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4272
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4273
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4274
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4275
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4276
|
+
}>;
|
|
4277
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4278
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4279
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4280
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4281
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4282
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4283
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4284
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4285
|
+
readonly "~types"?: {
|
|
4286
|
+
readonly input: {
|
|
4287
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4288
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4289
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4290
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4291
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4292
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4293
|
+
};
|
|
4294
|
+
readonly output: {
|
|
4295
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4296
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4297
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4298
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4299
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4300
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4301
|
+
};
|
|
4302
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4303
|
+
} | undefined;
|
|
4304
|
+
}, undefined>;
|
|
4305
|
+
viewer: v.OptionalSchema<Omit<v.StrictObjectSchema<{
|
|
4306
|
+
config: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4307
|
+
dependency: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4308
|
+
docs: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4309
|
+
schema: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4310
|
+
source: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4311
|
+
test: v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>;
|
|
4312
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4313
|
+
readonly entries: {
|
|
4314
|
+
config: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4315
|
+
dependency: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4316
|
+
docs: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4317
|
+
schema: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4318
|
+
source: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4319
|
+
test: v.OptionalSchema<v.PicklistSchema<readonly ["thresholds", "always", "never"], undefined>, undefined>;
|
|
4320
|
+
};
|
|
4321
|
+
readonly "~standard": v.StandardProps<{
|
|
4322
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4323
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4324
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4325
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4326
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4327
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4328
|
+
}, {
|
|
4329
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4330
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4331
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4332
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4333
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4334
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4335
|
+
}>;
|
|
4336
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4337
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4338
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4339
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4340
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4341
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4342
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4343
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4344
|
+
readonly "~types"?: {
|
|
4345
|
+
readonly input: {
|
|
4346
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4347
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4348
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4349
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4350
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4351
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4352
|
+
};
|
|
4353
|
+
readonly output: {
|
|
4354
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4355
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4356
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4357
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4358
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4359
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4360
|
+
};
|
|
4361
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4362
|
+
} | undefined;
|
|
4363
|
+
}, undefined>;
|
|
4364
|
+
};
|
|
4365
|
+
readonly "~standard": v.StandardProps<{
|
|
4366
|
+
admin?: {
|
|
4367
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4368
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4369
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4370
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4371
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4372
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4373
|
+
} | undefined;
|
|
4374
|
+
member?: {
|
|
4375
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4376
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4377
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4378
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4379
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4380
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4381
|
+
} | undefined;
|
|
4382
|
+
viewer?: {
|
|
4383
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4384
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4385
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4386
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4387
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4388
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4389
|
+
} | undefined;
|
|
4390
|
+
}, {
|
|
4391
|
+
admin?: {
|
|
4392
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4393
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4394
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4395
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4396
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4397
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4398
|
+
} | undefined;
|
|
4399
|
+
member?: {
|
|
4400
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4401
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4402
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4403
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4404
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4405
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4406
|
+
} | undefined;
|
|
4407
|
+
viewer?: {
|
|
4408
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4409
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4410
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4411
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4412
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4413
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4414
|
+
} | undefined;
|
|
4415
|
+
}>;
|
|
4416
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4417
|
+
admin?: {
|
|
4418
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4419
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4420
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4421
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4422
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4423
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4424
|
+
} | undefined;
|
|
4425
|
+
member?: {
|
|
4426
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4427
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4428
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4429
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4430
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4431
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4432
|
+
} | undefined;
|
|
4433
|
+
viewer?: {
|
|
4434
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4435
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4436
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4437
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4438
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4439
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4440
|
+
} | undefined;
|
|
4441
|
+
}, v.PicklistIssue | v.StrictObjectIssue>;
|
|
4442
|
+
readonly "~types"?: {
|
|
4443
|
+
readonly input: {
|
|
4444
|
+
admin?: {
|
|
4445
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4446
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4447
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4448
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4449
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4450
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4451
|
+
} | undefined;
|
|
4452
|
+
member?: {
|
|
4453
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4454
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4455
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4456
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4457
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4458
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4459
|
+
} | undefined;
|
|
4460
|
+
viewer?: {
|
|
4461
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4462
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4463
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4464
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4465
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4466
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4467
|
+
} | undefined;
|
|
4468
|
+
};
|
|
4469
|
+
readonly output: {
|
|
4470
|
+
admin?: {
|
|
4471
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4472
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4473
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4474
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4475
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4476
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4477
|
+
} | undefined;
|
|
4478
|
+
member?: {
|
|
4479
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4480
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4481
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4482
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4483
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4484
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4485
|
+
} | undefined;
|
|
4486
|
+
viewer?: {
|
|
4487
|
+
config?: "always" | "never" | "thresholds" | undefined;
|
|
4488
|
+
dependency?: "always" | "never" | "thresholds" | undefined;
|
|
4489
|
+
docs?: "always" | "never" | "thresholds" | undefined;
|
|
4490
|
+
schema?: "always" | "never" | "thresholds" | undefined;
|
|
4491
|
+
source?: "always" | "never" | "thresholds" | undefined;
|
|
4492
|
+
test?: "always" | "never" | "thresholds" | undefined;
|
|
4493
|
+
} | undefined;
|
|
4494
|
+
};
|
|
4495
|
+
readonly issue: v.PicklistIssue | v.StrictObjectIssue;
|
|
4496
|
+
} | undefined;
|
|
4497
|
+
};
|
|
4498
|
+
readonly dryRunRoles: v.ArraySchema<v.PicklistSchema<readonly ["admin", "member", "viewer"], undefined>, undefined>;
|
|
4499
|
+
readonly submissionClassesByRole: Omit<v.StrictObjectSchema<{
|
|
4500
|
+
admin: v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>;
|
|
4501
|
+
member: v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>;
|
|
4502
|
+
viewer: v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>;
|
|
4503
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
4504
|
+
readonly entries: {
|
|
4505
|
+
admin: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>, undefined>;
|
|
4506
|
+
member: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>, undefined>;
|
|
4507
|
+
viewer: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<readonly ["docs", "test", "dependency", "config", "source", "schema"], undefined>, undefined>, undefined>;
|
|
4508
|
+
};
|
|
4509
|
+
readonly "~standard": v.StandardProps<{
|
|
4510
|
+
admin?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4511
|
+
member?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4512
|
+
viewer?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4513
|
+
}, {
|
|
4514
|
+
admin?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4515
|
+
member?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4516
|
+
viewer?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4517
|
+
}>;
|
|
4518
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
4519
|
+
admin?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4520
|
+
member?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4521
|
+
viewer?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4522
|
+
}, v.ArrayIssue | v.PicklistIssue | v.StrictObjectIssue>;
|
|
4523
|
+
readonly "~types"?: {
|
|
4524
|
+
readonly input: {
|
|
4525
|
+
admin?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4526
|
+
member?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4527
|
+
viewer?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4528
|
+
};
|
|
4529
|
+
readonly output: {
|
|
4530
|
+
admin?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4531
|
+
member?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4532
|
+
viewer?: ("config" | "dependency" | "docs" | "schema" | "source" | "test")[] | undefined;
|
|
4533
|
+
};
|
|
4534
|
+
readonly issue: v.ArrayIssue | v.PicklistIssue | v.StrictObjectIssue;
|
|
4535
|
+
} | undefined;
|
|
4536
|
+
};
|
|
4537
|
+
readonly autonomy: v.PicklistSchema<["attended", "unattended"], undefined>;
|
|
4538
|
+
readonly minAutoAnswerConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
4539
|
+
readonly isDefault: v.BooleanSchema<undefined>;
|
|
4540
|
+
readonly isUnattendedDefault: v.BooleanSchema<undefined>;
|
|
4541
|
+
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4542
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
4543
|
+
readonly tier: v.PicklistSchema<["account", "workspace"], undefined>;
|
|
4544
|
+
}, undefined>;
|
|
4545
|
+
};
|
|
4546
|
+
};
|
|
4547
|
+
/**
|
|
4548
|
+
* The SUPPRESSION sub-resource: opting a board out of an account policy it inherits, and back in.
|
|
4549
|
+
*
|
|
4550
|
+
* Its own sub-resource rather than a flag on the policy, because a suppression is a fact a board
|
|
4551
|
+
* asserts about a row it does not own — there is no policy of its own to patch. And it is
|
|
4552
|
+
* deliberately NOT `DELETE /risk-policies/:id`: that deletes the board's OWN policy, where this
|
|
4553
|
+
* destroys nothing and is reversible, which is exactly why the two cannot share a verb.
|
|
4554
|
+
*/
|
|
4555
|
+
export declare const suppressRiskPolicyContract: {
|
|
4556
|
+
readonly method: "post";
|
|
4557
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
4558
|
+
presetId: v.StringSchema<undefined>;
|
|
4559
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
4560
|
+
readonly pathResolver: ({ presetId }: {
|
|
4561
|
+
presetId: string;
|
|
4562
|
+
}) => string;
|
|
4563
|
+
readonly requestBodySchema: typeof ContractNoBody;
|
|
4564
|
+
readonly responsesByStatusCode: {
|
|
4565
|
+
readonly '4xx': v.ObjectSchema<{
|
|
4566
|
+
readonly error: v.ObjectSchema<{
|
|
4567
|
+
readonly code: v.StringSchema<undefined>;
|
|
4568
|
+
readonly message: v.StringSchema<undefined>;
|
|
4569
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4570
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4571
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4572
|
+
readonly message: v.StringSchema<undefined>;
|
|
4573
|
+
}, undefined>, undefined>, undefined>;
|
|
4574
|
+
}, undefined>;
|
|
4575
|
+
}, undefined>;
|
|
4576
|
+
readonly '5xx': v.ObjectSchema<{
|
|
4577
|
+
readonly error: v.ObjectSchema<{
|
|
4578
|
+
readonly code: v.StringSchema<undefined>;
|
|
4579
|
+
readonly message: v.StringSchema<undefined>;
|
|
4580
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4581
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4582
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4583
|
+
readonly message: v.StringSchema<undefined>;
|
|
4584
|
+
}, undefined>, undefined>, undefined>;
|
|
4585
|
+
}, undefined>;
|
|
4586
|
+
}, undefined>;
|
|
4587
|
+
readonly 204: typeof ContractNoBody;
|
|
4588
|
+
};
|
|
4589
|
+
};
|
|
4590
|
+
export declare const restoreRiskPolicyContract: {
|
|
4591
|
+
readonly method: "delete";
|
|
4592
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
4593
|
+
presetId: v.StringSchema<undefined>;
|
|
4594
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
4595
|
+
readonly pathResolver: ({ presetId }: {
|
|
4596
|
+
presetId: string;
|
|
4597
|
+
}) => string;
|
|
4598
|
+
readonly responsesByStatusCode: {
|
|
4599
|
+
readonly '4xx': v.ObjectSchema<{
|
|
4600
|
+
readonly error: v.ObjectSchema<{
|
|
4601
|
+
readonly code: v.StringSchema<undefined>;
|
|
4602
|
+
readonly message: v.StringSchema<undefined>;
|
|
4603
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4604
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4605
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4606
|
+
readonly message: v.StringSchema<undefined>;
|
|
4607
|
+
}, undefined>, undefined>, undefined>;
|
|
4608
|
+
}, undefined>;
|
|
4609
|
+
}, undefined>;
|
|
4610
|
+
readonly '5xx': v.ObjectSchema<{
|
|
4611
|
+
readonly error: v.ObjectSchema<{
|
|
4612
|
+
readonly code: v.StringSchema<undefined>;
|
|
4613
|
+
readonly message: v.StringSchema<undefined>;
|
|
4614
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4615
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4616
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4617
|
+
readonly message: v.StringSchema<undefined>;
|
|
4618
|
+
}, undefined>, undefined>, undefined>;
|
|
4619
|
+
}, undefined>;
|
|
4620
|
+
}, undefined>;
|
|
4621
|
+
readonly 204: typeof ContractNoBody;
|
|
4622
|
+
};
|
|
4623
|
+
};
|
|
4624
|
+
/**
|
|
4625
|
+
* What this board is currently hiding. The merged library cannot answer it — a hidden id is
|
|
4626
|
+
* precisely one that list no longer carries — so a surface offering suppression would otherwise
|
|
4627
|
+
* offer no way back.
|
|
4628
|
+
*
|
|
4629
|
+
* A SIBLING top-level resource rather than a literal `/risk-policies/suppressions` segment, for
|
|
4630
|
+
* the reason the foundational-service list is: a literal segment sharing a namespace with
|
|
4631
|
+
* `:presetId` is a collision waiting for the first single-segment by-id route, and nothing stops a
|
|
4632
|
+
* policy id from being the word `suppressions`.
|
|
4633
|
+
*/
|
|
4634
|
+
export declare const listRiskPolicySuppressionsContract: {
|
|
4635
|
+
readonly method: "get";
|
|
4636
|
+
readonly pathResolver: () => string;
|
|
4637
|
+
readonly responsesByStatusCode: {
|
|
4638
|
+
readonly '4xx': v.ObjectSchema<{
|
|
4639
|
+
readonly error: v.ObjectSchema<{
|
|
4640
|
+
readonly code: v.StringSchema<undefined>;
|
|
4641
|
+
readonly message: v.StringSchema<undefined>;
|
|
4642
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4643
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4644
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4645
|
+
readonly message: v.StringSchema<undefined>;
|
|
4646
|
+
}, undefined>, undefined>, undefined>;
|
|
4647
|
+
}, undefined>;
|
|
4648
|
+
}, undefined>;
|
|
4649
|
+
readonly '5xx': v.ObjectSchema<{
|
|
4650
|
+
readonly error: v.ObjectSchema<{
|
|
4651
|
+
readonly code: v.StringSchema<undefined>;
|
|
4652
|
+
readonly message: v.StringSchema<undefined>;
|
|
4653
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
4654
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4655
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4656
|
+
readonly message: v.StringSchema<undefined>;
|
|
4657
|
+
}, undefined>, undefined>, undefined>;
|
|
4658
|
+
}, undefined>;
|
|
4659
|
+
}, undefined>;
|
|
4660
|
+
readonly 200: v.ArraySchema<v.ObjectSchema<{
|
|
4661
|
+
readonly id: v.StringSchema<undefined>;
|
|
4662
|
+
readonly name: v.StringSchema<undefined>;
|
|
4663
|
+
readonly inherited: v.BooleanSchema<undefined>;
|
|
4664
|
+
}, undefined>, undefined>;
|
|
3866
4665
|
};
|
|
3867
4666
|
};
|
|
3868
4667
|
//# sourceMappingURL=merge.d.ts.map
|