@cat-factory/contracts 0.346.2 → 0.347.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/bugFishing.d.ts +285 -0
- package/dist/bugFishing.d.ts.map +1 -1
- package/dist/bugFishing.js +180 -0
- package/dist/bugFishing.js.map +1 -1
- package/dist/entities.d.ts +1 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/execution.d.ts +62 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/form-fields.d.ts +24 -3
- package/dist/form-fields.d.ts.map +1 -1
- package/dist/form-fields.js +17 -3
- package/dist/form-fields.js.map +1 -1
- package/dist/gate-config.d.ts +1 -0
- package/dist/gate-config.d.ts.map +1 -1
- package/dist/initiative-preset.d.ts +2 -0
- package/dist/initiative-preset.d.ts.map +1 -1
- package/dist/initiative.d.ts +5 -0
- package/dist/initiative.d.ts.map +1 -1
- package/dist/inline-use-cases.d.ts +3 -0
- package/dist/inline-use-cases.d.ts.map +1 -1
- package/dist/primitives.d.ts +37 -2
- package/dist/primitives.d.ts.map +1 -1
- package/dist/primitives.js +11 -0
- package/dist/primitives.js.map +1 -1
- package/dist/public-task-types.d.ts +2 -0
- package/dist/public-task-types.d.ts.map +1 -1
- package/dist/public-task-types.js +19 -1
- package/dist/public-task-types.js.map +1 -1
- package/dist/requests.d.ts +26 -6
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +62 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +39 -6
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +64 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/bugFishing.d.ts +124 -0
- package/dist/routes/bugFishing.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +312 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +31 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +155 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +17 -0
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +1 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/task-types.d.ts +3 -0
- package/dist/routes/task-types.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +3 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/use-cases.d.ts +2 -0
- package/dist/routes/use-cases.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +93 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +74 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +37 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/task-types.d.ts +4 -0
- package/dist/task-types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -750,11 +750,21 @@ export declare const retryAgentRunContract: {
|
|
|
750
750
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
751
751
|
readonly settledAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
752
752
|
readonly failureReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
753
|
+
readonly territoryId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
754
|
+
readonly territoryLabel: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
755
|
+
readonly coverage: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
756
|
+
readonly filesRead: v.NumberSchema<undefined>;
|
|
757
|
+
readonly manifestFiles: v.NumberSchema<undefined>;
|
|
758
|
+
readonly offManifest: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
759
|
+
readonly source: v.OptionalSchema<v.PicklistSchema<["self-reported"], undefined>, "self-reported">;
|
|
760
|
+
}, undefined>, undefined>, undefined>;
|
|
761
|
+
readonly outOfScopeFindings: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
753
762
|
}, undefined>, undefined>, readonly []>;
|
|
754
763
|
readonly currentPhaseIndex: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
755
764
|
readonly findings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
756
765
|
readonly id: v.StringSchema<undefined>;
|
|
757
766
|
readonly phaseId: v.StringSchema<undefined>;
|
|
767
|
+
readonly territoryId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
758
768
|
readonly path: v.StringSchema<undefined>;
|
|
759
769
|
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
760
770
|
readonly severity: v.PicklistSchema<["critical", "high", "medium", "low"], undefined>;
|
|
@@ -776,6 +786,27 @@ export declare const retryAgentRunContract: {
|
|
|
776
786
|
}, undefined>, undefined>, undefined>;
|
|
777
787
|
readonly dismissed: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
778
788
|
}, undefined>, undefined>, readonly []>;
|
|
789
|
+
readonly territories: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
790
|
+
readonly id: v.StringSchema<undefined>;
|
|
791
|
+
readonly label: v.StringSchema<undefined>;
|
|
792
|
+
readonly roots: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
793
|
+
readonly fileCount: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
794
|
+
readonly approxTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
795
|
+
readonly source: v.OptionalSchema<v.PicklistSchema<["blueprint", "directory", "whole-codebase"], undefined>, "directory">;
|
|
796
|
+
readonly subtreeShas: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
797
|
+
}, undefined>, undefined>, undefined>;
|
|
798
|
+
readonly plan: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
799
|
+
readonly passBudget: v.NumberSchema<undefined>;
|
|
800
|
+
readonly plannedCells: v.NumberSchema<undefined>;
|
|
801
|
+
readonly unfished: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
802
|
+
readonly territoryId: v.StringSchema<undefined>;
|
|
803
|
+
readonly territoryLabel: v.StringSchema<undefined>;
|
|
804
|
+
readonly phaseId: v.StringSchema<undefined>;
|
|
805
|
+
readonly phaseTitle: v.StringSchema<undefined>;
|
|
806
|
+
}, undefined>, undefined>, readonly []>;
|
|
807
|
+
readonly treeTruncated: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
808
|
+
readonly surveyUnavailableReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
809
|
+
}, undefined>, undefined>, undefined>;
|
|
779
810
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
780
811
|
readonly defaultFixPipelineId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
781
812
|
}, undefined>, undefined>, undefined>;
|
|
@@ -2180,11 +2211,21 @@ export declare const stopAgentRunContract: {
|
|
|
2180
2211
|
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2181
2212
|
readonly settledAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2182
2213
|
readonly failureReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2214
|
+
readonly territoryId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2215
|
+
readonly territoryLabel: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2216
|
+
readonly coverage: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2217
|
+
readonly filesRead: v.NumberSchema<undefined>;
|
|
2218
|
+
readonly manifestFiles: v.NumberSchema<undefined>;
|
|
2219
|
+
readonly offManifest: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2220
|
+
readonly source: v.OptionalSchema<v.PicklistSchema<["self-reported"], undefined>, "self-reported">;
|
|
2221
|
+
}, undefined>, undefined>, undefined>;
|
|
2222
|
+
readonly outOfScopeFindings: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2183
2223
|
}, undefined>, undefined>, readonly []>;
|
|
2184
2224
|
readonly currentPhaseIndex: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2185
2225
|
readonly findings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2186
2226
|
readonly id: v.StringSchema<undefined>;
|
|
2187
2227
|
readonly phaseId: v.StringSchema<undefined>;
|
|
2228
|
+
readonly territoryId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2188
2229
|
readonly path: v.StringSchema<undefined>;
|
|
2189
2230
|
readonly line: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2190
2231
|
readonly severity: v.PicklistSchema<["critical", "high", "medium", "low"], undefined>;
|
|
@@ -2206,6 +2247,27 @@ export declare const stopAgentRunContract: {
|
|
|
2206
2247
|
}, undefined>, undefined>, undefined>;
|
|
2207
2248
|
readonly dismissed: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2208
2249
|
}, undefined>, undefined>, readonly []>;
|
|
2250
|
+
readonly territories: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2251
|
+
readonly id: v.StringSchema<undefined>;
|
|
2252
|
+
readonly label: v.StringSchema<undefined>;
|
|
2253
|
+
readonly roots: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2254
|
+
readonly fileCount: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2255
|
+
readonly approxTokens: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2256
|
+
readonly source: v.OptionalSchema<v.PicklistSchema<["blueprint", "directory", "whole-codebase"], undefined>, "directory">;
|
|
2257
|
+
readonly subtreeShas: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2258
|
+
}, undefined>, undefined>, undefined>;
|
|
2259
|
+
readonly plan: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2260
|
+
readonly passBudget: v.NumberSchema<undefined>;
|
|
2261
|
+
readonly plannedCells: v.NumberSchema<undefined>;
|
|
2262
|
+
readonly unfished: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2263
|
+
readonly territoryId: v.StringSchema<undefined>;
|
|
2264
|
+
readonly territoryLabel: v.StringSchema<undefined>;
|
|
2265
|
+
readonly phaseId: v.StringSchema<undefined>;
|
|
2266
|
+
readonly phaseTitle: v.StringSchema<undefined>;
|
|
2267
|
+
}, undefined>, undefined>, readonly []>;
|
|
2268
|
+
readonly treeTruncated: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
|
|
2269
|
+
readonly surveyUnavailableReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2270
|
+
}, undefined>, undefined>, undefined>;
|
|
2209
2271
|
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2210
2272
|
readonly defaultFixPipelineId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2211
2273
|
}, undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
package/dist/routes/board.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export declare const addFrameContract: {
|
|
|
104
104
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
105
105
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
106
106
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
107
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
107
108
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
108
109
|
}, undefined>, undefined>, undefined>;
|
|
109
110
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -528,6 +529,7 @@ export declare const addServiceFromRepoContract: {
|
|
|
528
529
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
529
530
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
530
531
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
532
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
531
533
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
532
534
|
}, undefined>, undefined>, undefined>;
|
|
533
535
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -883,6 +885,7 @@ export declare const addTaskContract: {
|
|
|
883
885
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
884
886
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
885
887
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
888
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
886
889
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
887
890
|
}, undefined>, undefined>;
|
|
888
891
|
readonly riskPolicyId: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
@@ -986,6 +989,7 @@ export declare const addTaskContract: {
|
|
|
986
989
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
987
990
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
988
991
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
992
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
989
993
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
990
994
|
}, undefined>, undefined>, undefined>;
|
|
991
995
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -1410,6 +1414,7 @@ export declare const addModuleContract: {
|
|
|
1410
1414
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
1411
1415
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
1412
1416
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1417
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
1413
1418
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
1414
1419
|
}, undefined>, undefined>, undefined>;
|
|
1415
1420
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -1831,6 +1836,7 @@ export declare const addEpicContract: {
|
|
|
1831
1836
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
1832
1837
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
1833
1838
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1839
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
1834
1840
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
1835
1841
|
}, undefined>, undefined>, undefined>;
|
|
1836
1842
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -2251,6 +2257,7 @@ export declare const assignEpicContract: {
|
|
|
2251
2257
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
2252
2258
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
2253
2259
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2260
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
2254
2261
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
2255
2262
|
}, undefined>, undefined>, undefined>;
|
|
2256
2263
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -2621,6 +2628,7 @@ export declare const updateBlockContract: {
|
|
|
2621
2628
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
2622
2629
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
2623
2630
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2631
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
2624
2632
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
2625
2633
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2626
2634
|
readonly entries: Omit<{
|
|
@@ -2649,6 +2657,7 @@ export declare const updateBlockContract: {
|
|
|
2649
2657
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
2650
2658
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
2651
2659
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2660
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
2652
2661
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
2653
2662
|
}, "custom">;
|
|
2654
2663
|
readonly "~standard": import("valibot").StandardProps<{
|
|
@@ -2677,6 +2686,7 @@ export declare const updateBlockContract: {
|
|
|
2677
2686
|
reviewSkillIds?: string[] | undefined;
|
|
2678
2687
|
fishingPhaseIds?: string[] | undefined;
|
|
2679
2688
|
fishingFocus?: string | undefined;
|
|
2689
|
+
fishingMaxPasses?: number | undefined;
|
|
2680
2690
|
}, {
|
|
2681
2691
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
2682
2692
|
stepsToReproduce?: string | undefined;
|
|
@@ -2703,6 +2713,7 @@ export declare const updateBlockContract: {
|
|
|
2703
2713
|
reviewSkillIds?: string[] | undefined;
|
|
2704
2714
|
fishingPhaseIds?: string[] | undefined;
|
|
2705
2715
|
fishingFocus?: string | undefined;
|
|
2716
|
+
fishingMaxPasses?: number | undefined;
|
|
2706
2717
|
}>;
|
|
2707
2718
|
readonly "~run": (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
2708
2719
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -2730,7 +2741,8 @@ export declare const updateBlockContract: {
|
|
|
2730
2741
|
reviewSkillIds?: string[] | undefined;
|
|
2731
2742
|
fishingPhaseIds?: string[] | undefined;
|
|
2732
2743
|
fishingFocus?: string | undefined;
|
|
2733
|
-
|
|
2744
|
+
fishingMaxPasses?: number | undefined;
|
|
2745
|
+
}, import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue>;
|
|
2734
2746
|
readonly "~types"?: {
|
|
2735
2747
|
readonly input: {
|
|
2736
2748
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -2758,6 +2770,7 @@ export declare const updateBlockContract: {
|
|
|
2758
2770
|
reviewSkillIds?: string[] | undefined;
|
|
2759
2771
|
fishingPhaseIds?: string[] | undefined;
|
|
2760
2772
|
fishingFocus?: string | undefined;
|
|
2773
|
+
fishingMaxPasses?: number | undefined;
|
|
2761
2774
|
};
|
|
2762
2775
|
readonly output: {
|
|
2763
2776
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -2785,8 +2798,9 @@ export declare const updateBlockContract: {
|
|
|
2785
2798
|
reviewSkillIds?: string[] | undefined;
|
|
2786
2799
|
fishingPhaseIds?: string[] | undefined;
|
|
2787
2800
|
fishingFocus?: string | undefined;
|
|
2801
|
+
fishingMaxPasses?: number | undefined;
|
|
2788
2802
|
};
|
|
2789
|
-
readonly issue: import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue;
|
|
2803
|
+
readonly issue: import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue;
|
|
2790
2804
|
} | undefined;
|
|
2791
2805
|
};
|
|
2792
2806
|
readonly provisioning: import("valibot").ObjectSchema<{
|
|
@@ -3133,6 +3147,7 @@ export declare const updateBlockContract: {
|
|
|
3133
3147
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
3134
3148
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
3135
3149
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3150
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
3136
3151
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
3137
3152
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
3138
3153
|
readonly entries: Omit<{
|
|
@@ -3161,6 +3176,7 @@ export declare const updateBlockContract: {
|
|
|
3161
3176
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
3162
3177
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
3163
3178
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3179
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
3164
3180
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
3165
3181
|
}, "custom">;
|
|
3166
3182
|
readonly "~standard": import("valibot").StandardProps<{
|
|
@@ -3189,6 +3205,7 @@ export declare const updateBlockContract: {
|
|
|
3189
3205
|
reviewSkillIds?: string[] | undefined;
|
|
3190
3206
|
fishingPhaseIds?: string[] | undefined;
|
|
3191
3207
|
fishingFocus?: string | undefined;
|
|
3208
|
+
fishingMaxPasses?: number | undefined;
|
|
3192
3209
|
}, {
|
|
3193
3210
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
3194
3211
|
stepsToReproduce?: string | undefined;
|
|
@@ -3215,6 +3232,7 @@ export declare const updateBlockContract: {
|
|
|
3215
3232
|
reviewSkillIds?: string[] | undefined;
|
|
3216
3233
|
fishingPhaseIds?: string[] | undefined;
|
|
3217
3234
|
fishingFocus?: string | undefined;
|
|
3235
|
+
fishingMaxPasses?: number | undefined;
|
|
3218
3236
|
}>;
|
|
3219
3237
|
readonly "~run": (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
3220
3238
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -3242,7 +3260,8 @@ export declare const updateBlockContract: {
|
|
|
3242
3260
|
reviewSkillIds?: string[] | undefined;
|
|
3243
3261
|
fishingPhaseIds?: string[] | undefined;
|
|
3244
3262
|
fishingFocus?: string | undefined;
|
|
3245
|
-
|
|
3263
|
+
fishingMaxPasses?: number | undefined;
|
|
3264
|
+
}, import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue>;
|
|
3246
3265
|
readonly "~types"?: {
|
|
3247
3266
|
readonly input: {
|
|
3248
3267
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -3270,6 +3289,7 @@ export declare const updateBlockContract: {
|
|
|
3270
3289
|
reviewSkillIds?: string[] | undefined;
|
|
3271
3290
|
fishingPhaseIds?: string[] | undefined;
|
|
3272
3291
|
fishingFocus?: string | undefined;
|
|
3292
|
+
fishingMaxPasses?: number | undefined;
|
|
3273
3293
|
};
|
|
3274
3294
|
readonly output: {
|
|
3275
3295
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -3297,8 +3317,9 @@ export declare const updateBlockContract: {
|
|
|
3297
3317
|
reviewSkillIds?: string[] | undefined;
|
|
3298
3318
|
fishingPhaseIds?: string[] | undefined;
|
|
3299
3319
|
fishingFocus?: string | undefined;
|
|
3320
|
+
fishingMaxPasses?: number | undefined;
|
|
3300
3321
|
};
|
|
3301
|
-
readonly issue: import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue;
|
|
3322
|
+
readonly issue: import("valibot").ArrayIssue | import("valibot").CheckIssue<string> | import("valibot").IntegerIssue<number> | import("valibot").MaxLengthIssue<string, 60> | import("valibot").MaxLengthIssue<string, 200> | import("valibot").MaxLengthIssue<string, 300> | import("valibot").MaxLengthIssue<string, 500> | import("valibot").MaxLengthIssue<string, 2000> | import("valibot").MaxLengthIssue<string, 4000> | import("valibot").MaxLengthIssue<string[], 8> | import("valibot").MaxLengthIssue<string[], 32> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinValueIssue<number, 0> | import("valibot").MinValueIssue<number, 1> | import("valibot").NumberIssue | import("valibot").ObjectIssue | import("valibot").PicklistIssue | import("valibot").StringIssue;
|
|
3302
3323
|
} | undefined;
|
|
3303
3324
|
}, undefined>;
|
|
3304
3325
|
readonly provisioning: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
@@ -3649,6 +3670,7 @@ export declare const updateBlockContract: {
|
|
|
3649
3670
|
reviewSkillIds?: string[] | undefined;
|
|
3650
3671
|
fishingPhaseIds?: string[] | undefined;
|
|
3651
3672
|
fishingFocus?: string | undefined;
|
|
3673
|
+
fishingMaxPasses?: number | undefined;
|
|
3652
3674
|
} | undefined;
|
|
3653
3675
|
provisioning?: {
|
|
3654
3676
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -3952,6 +3974,7 @@ export declare const updateBlockContract: {
|
|
|
3952
3974
|
reviewSkillIds?: string[] | undefined;
|
|
3953
3975
|
fishingPhaseIds?: string[] | undefined;
|
|
3954
3976
|
fishingFocus?: string | undefined;
|
|
3977
|
+
fishingMaxPasses?: number | undefined;
|
|
3955
3978
|
} | undefined;
|
|
3956
3979
|
provisioning?: {
|
|
3957
3980
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -4256,6 +4279,7 @@ export declare const updateBlockContract: {
|
|
|
4256
4279
|
reviewSkillIds?: string[] | undefined;
|
|
4257
4280
|
fishingPhaseIds?: string[] | undefined;
|
|
4258
4281
|
fishingFocus?: string | undefined;
|
|
4282
|
+
fishingMaxPasses?: number | undefined;
|
|
4259
4283
|
} | undefined;
|
|
4260
4284
|
provisioning?: {
|
|
4261
4285
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -4532,7 +4556,7 @@ export declare const updateBlockContract: {
|
|
|
4532
4556
|
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
4533
4557
|
name: string;
|
|
4534
4558
|
mode: "reference" | "working";
|
|
4535
|
-
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
4559
|
+
}[], 20> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
4536
4560
|
kind: "path";
|
|
4537
4561
|
path: string;
|
|
4538
4562
|
} | {
|
|
@@ -4597,6 +4621,7 @@ export declare const updateBlockContract: {
|
|
|
4597
4621
|
reviewSkillIds?: string[] | undefined;
|
|
4598
4622
|
fishingPhaseIds?: string[] | undefined;
|
|
4599
4623
|
fishingFocus?: string | undefined;
|
|
4624
|
+
fishingMaxPasses?: number | undefined;
|
|
4600
4625
|
} | undefined;
|
|
4601
4626
|
provisioning?: {
|
|
4602
4627
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -4901,6 +4926,7 @@ export declare const updateBlockContract: {
|
|
|
4901
4926
|
reviewSkillIds?: string[] | undefined;
|
|
4902
4927
|
fishingPhaseIds?: string[] | undefined;
|
|
4903
4928
|
fishingFocus?: string | undefined;
|
|
4929
|
+
fishingMaxPasses?: number | undefined;
|
|
4904
4930
|
} | undefined;
|
|
4905
4931
|
provisioning?: {
|
|
4906
4932
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -5178,7 +5204,7 @@ export declare const updateBlockContract: {
|
|
|
5178
5204
|
}[], 20> | import("valibot").MaxLengthIssue<{
|
|
5179
5205
|
name: string;
|
|
5180
5206
|
mode: "reference" | "working";
|
|
5181
|
-
}[], 20> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
5207
|
+
}[], 20> | import("valibot").MaxValueIssue<number, 96> | import("valibot").MaxValueIssue<number, 599> | import("valibot").MaxValueIssue<number, 1000> | import("valibot").MaxValueIssue<number, 1024> | import("valibot").MaxValueIssue<number, 60000> | import("valibot").MaxValueIssue<number, 65535> | import("valibot").MaxValueIssue<number, 3600000> | import("valibot").MinLengthIssue<string, 1> | import("valibot").MinLengthIssue<string[], 1> | import("valibot").MinLengthIssue<(string | {
|
|
5182
5208
|
kind: "path";
|
|
5183
5209
|
path: string;
|
|
5184
5210
|
} | {
|
|
@@ -5287,6 +5313,7 @@ export declare const updateBlockContract: {
|
|
|
5287
5313
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
5288
5314
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
5289
5315
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
5316
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
5290
5317
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
5291
5318
|
}, undefined>, undefined>, undefined>;
|
|
5292
5319
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -5710,6 +5737,7 @@ export declare const moveBlockContract: {
|
|
|
5710
5737
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
5711
5738
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
5712
5739
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
5740
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
5713
5741
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
5714
5742
|
}, undefined>, undefined>, undefined>;
|
|
5715
5743
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -6137,6 +6165,7 @@ export declare const resizeBlockContract: {
|
|
|
6137
6165
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
6138
6166
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
6139
6167
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
6168
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
6140
6169
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
6141
6170
|
}, undefined>, undefined>, undefined>;
|
|
6142
6171
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -6561,6 +6590,7 @@ export declare const reparentBlockContract: {
|
|
|
6561
6590
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
6562
6591
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
6563
6592
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
6593
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
6564
6594
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
6565
6595
|
}, undefined>, undefined>, undefined>;
|
|
6566
6596
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -7013,6 +7043,7 @@ export declare const archiveBlockContract: {
|
|
|
7013
7043
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
7014
7044
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
7015
7045
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
7046
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
7016
7047
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
7017
7048
|
}, undefined>, undefined>, undefined>;
|
|
7018
7049
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -7431,6 +7462,7 @@ export declare const restoreBlockContract: {
|
|
|
7431
7462
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
7432
7463
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
7433
7464
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
7465
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
7434
7466
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
7435
7467
|
}, undefined>, undefined>, undefined>;
|
|
7436
7468
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -7851,6 +7883,7 @@ export declare const toggleDependencyContract: {
|
|
|
7851
7883
|
readonly reviewSkillIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 200, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
7852
7884
|
readonly fishingPhaseIds: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 60, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 32, undefined>]>, undefined>;
|
|
7853
7885
|
readonly fishingFocus: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
7886
|
+
readonly fishingMaxPasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 1, undefined>, import("valibot").MaxValueAction<number, 96, undefined>]>, undefined>;
|
|
7854
7887
|
readonly custom: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 80, undefined>]>, import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 2000, undefined>]>, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>, import("valibot").BooleanSchema<undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
7855
7888
|
}, undefined>, undefined>, undefined>;
|
|
7856
7889
|
readonly technical: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").BooleanSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAyB3E,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAyB3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA"}
|