@cat-factory/contracts 0.322.0 → 0.323.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/entities.d.ts +1 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/initiative.d.ts +5 -0
- package/dist/initiative.d.ts.map +1 -1
- package/dist/primitives.d.ts +61 -2
- package/dist/primitives.d.ts.map +1 -1
- package/dist/primitives.js +24 -0
- package/dist/primitives.js.map +1 -1
- package/dist/public-task-types.d.ts.map +1 -1
- package/dist/public-task-types.js +6 -0
- 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/board.d.ts +39 -6
- package/dist/routes/board.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 +2 -0
- package/dist/routes/execution.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/skill-library.d.ts +2 -0
- package/dist/routes/skill-library.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/workspaces.d.ts +8 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/skill-library.d.ts +79 -2
- package/dist/skill-library.d.ts.map +1 -1
- package/dist/skill-library.js +89 -2
- package/dist/skill-library.js.map +1 -1
- package/dist/snapshot.d.ts +4 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/requests.d.ts
CHANGED
|
@@ -131,6 +131,7 @@ export declare const addTaskSchema: v.ObjectSchema<{
|
|
|
131
131
|
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
132
132
|
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
133
133
|
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
134
|
+
readonly reviewSkillIds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, v.MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
134
135
|
readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
135
136
|
}, undefined>, undefined>;
|
|
136
137
|
readonly riskPolicyId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
@@ -193,6 +194,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
193
194
|
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
194
195
|
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
195
196
|
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
197
|
+
readonly reviewSkillIds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, v.MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
196
198
|
readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
197
199
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
198
200
|
readonly entries: Omit<{
|
|
@@ -218,6 +220,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
218
220
|
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
219
221
|
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
220
222
|
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
223
|
+
readonly reviewSkillIds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, v.MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
221
224
|
readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
222
225
|
}, "custom">;
|
|
223
226
|
readonly "~standard": v.StandardProps<{
|
|
@@ -243,6 +246,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
243
246
|
prNumber?: number | undefined;
|
|
244
247
|
prUrl?: string | undefined;
|
|
245
248
|
reviewFocus?: string | undefined;
|
|
249
|
+
reviewSkillIds?: string[] | undefined;
|
|
246
250
|
}, {
|
|
247
251
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
248
252
|
stepsToReproduce?: string | undefined;
|
|
@@ -266,6 +270,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
266
270
|
prNumber?: number | undefined;
|
|
267
271
|
prUrl?: string | undefined;
|
|
268
272
|
reviewFocus?: string | undefined;
|
|
273
|
+
reviewSkillIds?: string[] | undefined;
|
|
269
274
|
}>;
|
|
270
275
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
271
276
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -290,7 +295,8 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
290
295
|
prNumber?: number | undefined;
|
|
291
296
|
prUrl?: string | undefined;
|
|
292
297
|
reviewFocus?: string | undefined;
|
|
293
|
-
|
|
298
|
+
reviewSkillIds?: string[] | undefined;
|
|
299
|
+
}, v.ArrayIssue | v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string[], 8> | v.MaxValueIssue<number, 1000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue>;
|
|
294
300
|
readonly "~types"?: {
|
|
295
301
|
readonly input: {
|
|
296
302
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -315,6 +321,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
315
321
|
prNumber?: number | undefined;
|
|
316
322
|
prUrl?: string | undefined;
|
|
317
323
|
reviewFocus?: string | undefined;
|
|
324
|
+
reviewSkillIds?: string[] | undefined;
|
|
318
325
|
};
|
|
319
326
|
readonly output: {
|
|
320
327
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -339,8 +346,9 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
339
346
|
prNumber?: number | undefined;
|
|
340
347
|
prUrl?: string | undefined;
|
|
341
348
|
reviewFocus?: string | undefined;
|
|
349
|
+
reviewSkillIds?: string[] | undefined;
|
|
342
350
|
};
|
|
343
|
-
readonly issue: v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxValueIssue<number, 1000> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
351
|
+
readonly issue: v.ArrayIssue | v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string[], 8> | v.MaxValueIssue<number, 1000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
344
352
|
} | undefined;
|
|
345
353
|
};
|
|
346
354
|
readonly provisioning: v.ObjectSchema<{
|
|
@@ -684,6 +692,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
684
692
|
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
685
693
|
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
686
694
|
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
695
|
+
readonly reviewSkillIds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, v.MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
687
696
|
readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
688
697
|
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
689
698
|
readonly entries: Omit<{
|
|
@@ -709,6 +718,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
709
718
|
readonly prNumber: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
710
719
|
readonly prUrl: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
711
720
|
readonly reviewFocus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
721
|
+
readonly reviewSkillIds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, v.MaxLengthAction<string[], 8, undefined>]>, undefined>;
|
|
712
722
|
readonly custom: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
713
723
|
}, "custom">;
|
|
714
724
|
readonly "~standard": v.StandardProps<{
|
|
@@ -734,6 +744,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
734
744
|
prNumber?: number | undefined;
|
|
735
745
|
prUrl?: string | undefined;
|
|
736
746
|
reviewFocus?: string | undefined;
|
|
747
|
+
reviewSkillIds?: string[] | undefined;
|
|
737
748
|
}, {
|
|
738
749
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
739
750
|
stepsToReproduce?: string | undefined;
|
|
@@ -757,6 +768,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
757
768
|
prNumber?: number | undefined;
|
|
758
769
|
prUrl?: string | undefined;
|
|
759
770
|
reviewFocus?: string | undefined;
|
|
771
|
+
reviewSkillIds?: string[] | undefined;
|
|
760
772
|
}>;
|
|
761
773
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
762
774
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -781,7 +793,8 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
781
793
|
prNumber?: number | undefined;
|
|
782
794
|
prUrl?: string | undefined;
|
|
783
795
|
reviewFocus?: string | undefined;
|
|
784
|
-
|
|
796
|
+
reviewSkillIds?: string[] | undefined;
|
|
797
|
+
}, v.ArrayIssue | v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string[], 8> | v.MaxValueIssue<number, 1000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue>;
|
|
785
798
|
readonly "~types"?: {
|
|
786
799
|
readonly input: {
|
|
787
800
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -806,6 +819,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
806
819
|
prNumber?: number | undefined;
|
|
807
820
|
prUrl?: string | undefined;
|
|
808
821
|
reviewFocus?: string | undefined;
|
|
822
|
+
reviewSkillIds?: string[] | undefined;
|
|
809
823
|
};
|
|
810
824
|
readonly output: {
|
|
811
825
|
severity?: "critical" | "high" | "low" | "medium" | undefined;
|
|
@@ -830,8 +844,9 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
830
844
|
prNumber?: number | undefined;
|
|
831
845
|
prUrl?: string | undefined;
|
|
832
846
|
reviewFocus?: string | undefined;
|
|
847
|
+
reviewSkillIds?: string[] | undefined;
|
|
833
848
|
};
|
|
834
|
-
readonly issue: v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxValueIssue<number, 1000> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
849
|
+
readonly issue: v.ArrayIssue | v.CheckIssue<string> | v.IntegerIssue<number> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string[], 8> | v.MaxValueIssue<number, 1000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
835
850
|
} | undefined;
|
|
836
851
|
}, undefined>;
|
|
837
852
|
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
@@ -1179,6 +1194,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
1179
1194
|
prNumber?: number | undefined;
|
|
1180
1195
|
prUrl?: string | undefined;
|
|
1181
1196
|
reviewFocus?: string | undefined;
|
|
1197
|
+
reviewSkillIds?: string[] | undefined;
|
|
1182
1198
|
} | undefined;
|
|
1183
1199
|
provisioning?: {
|
|
1184
1200
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -1479,6 +1495,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
1479
1495
|
prNumber?: number | undefined;
|
|
1480
1496
|
prUrl?: string | undefined;
|
|
1481
1497
|
reviewFocus?: string | undefined;
|
|
1498
|
+
reviewSkillIds?: string[] | undefined;
|
|
1482
1499
|
} | undefined;
|
|
1483
1500
|
provisioning?: {
|
|
1484
1501
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -1780,6 +1797,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
1780
1797
|
prNumber?: number | undefined;
|
|
1781
1798
|
prUrl?: string | undefined;
|
|
1782
1799
|
reviewFocus?: string | undefined;
|
|
1800
|
+
reviewSkillIds?: string[] | undefined;
|
|
1783
1801
|
} | undefined;
|
|
1784
1802
|
provisioning?: {
|
|
1785
1803
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -2044,7 +2062,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
2044
2062
|
key: string;
|
|
2045
2063
|
} | undefined;
|
|
2046
2064
|
valueTemplate?: string | undefined;
|
|
2047
|
-
}> | v.IntegerIssue<number> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 80> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string, 262144> | v.MaxLengthIssue<string[], 50> | v.MaxLengthIssue<{
|
|
2065
|
+
}> | v.IntegerIssue<number> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 80> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string, 262144> | v.MaxLengthIssue<string[], 8> | v.MaxLengthIssue<string[], 50> | v.MaxLengthIssue<{
|
|
2048
2066
|
serviceBlockId: string;
|
|
2049
2067
|
description?: string | undefined;
|
|
2050
2068
|
}[], 50> | v.MaxLengthIssue<{
|
|
@@ -2118,6 +2136,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
2118
2136
|
prNumber?: number | undefined;
|
|
2119
2137
|
prUrl?: string | undefined;
|
|
2120
2138
|
reviewFocus?: string | undefined;
|
|
2139
|
+
reviewSkillIds?: string[] | undefined;
|
|
2121
2140
|
} | undefined;
|
|
2122
2141
|
provisioning?: {
|
|
2123
2142
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -2419,6 +2438,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
2419
2438
|
prNumber?: number | undefined;
|
|
2420
2439
|
prUrl?: string | undefined;
|
|
2421
2440
|
reviewFocus?: string | undefined;
|
|
2441
|
+
reviewSkillIds?: string[] | undefined;
|
|
2422
2442
|
} | undefined;
|
|
2423
2443
|
provisioning?: {
|
|
2424
2444
|
type: "cloudflare" | "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
@@ -2684,7 +2704,7 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
2684
2704
|
key: string;
|
|
2685
2705
|
} | undefined;
|
|
2686
2706
|
valueTemplate?: string | undefined;
|
|
2687
|
-
}> | v.IntegerIssue<number> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 80> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string, 262144> | v.MaxLengthIssue<string[], 50> | v.MaxLengthIssue<{
|
|
2707
|
+
}> | v.IntegerIssue<number> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 80> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 300> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MaxLengthIssue<string, 4000> | v.MaxLengthIssue<string, 262144> | v.MaxLengthIssue<string[], 8> | v.MaxLengthIssue<string[], 50> | v.MaxLengthIssue<{
|
|
2688
2708
|
serviceBlockId: string;
|
|
2689
2709
|
description?: string | undefined;
|
|
2690
2710
|
}[], 50> | v.MaxLengthIssue<{
|
package/dist/requests.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAgC5B,eAAO,MAAM,qBAAqB;;IAEhC,oFAAoF;;IAEpF;;;;OAIG;;IAEH;;;;OAIG;;aAEH,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE9E,oDAAoD;AACpD,eAAO,MAAM,qBAAqB;;IAEhC,wEAAwE;;aAExE,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE9E,eAAO,MAAM,cAAc;;IAEzB;;;;;OAKG;;;;;IAEH,qGAAqG;;IAErG,iGAAiG;;aAEjG,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,cAAc,CAAC,CAAA;AAEhE;;;;;;GAMG;AACH,eAAO,MAAM,wBAAwB;;;;;;IAGnC;;;OAGG;;IAEH,iGAAiG;;IAEjG;;;OAGG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEpF;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;;;;;;aAMxB,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,aAAa,CAAC,CAAA;AAE9D,wDAAwD;AACxD,eAAO,MAAM,gBAAgB;;aAE3B,CAAA;AACF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEpE,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAgC5B,eAAO,MAAM,qBAAqB;;IAEhC,oFAAoF;;IAEpF;;;;OAIG;;IAEH;;;;OAIG;;aAEH,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE9E,oDAAoD;AACpD,eAAO,MAAM,qBAAqB;;IAEhC,wEAAwE;;aAExE,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE9E,eAAO,MAAM,cAAc;;IAEzB;;;;;OAKG;;;;;IAEH,qGAAqG;;IAErG,iGAAiG;;aAEjG,CAAA;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,cAAc,CAAC,CAAA;AAEhE;;;;;;GAMG;AACH,eAAO,MAAM,wBAAwB;;;;;;IAGnC;;;OAGG;;IAEH,iGAAiG;;IAEjG;;;OAGG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;aAEH,CAAA;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEpF;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;;;;;;aAMxB,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,aAAa,CAAC,CAAA;AAE9D,wDAAwD;AACxD,eAAO,MAAM,gBAAgB;;aAE3B,CAAA;AACF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEpE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAmCxB,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,aAAa,CAAC,CAAA;AAE9D,eAAO,MAAM,eAAe;;;;;;aAG1B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,eAAe,CAAC,CAAA;AAElE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|