@cat-factory/contracts 0.43.2 → 0.44.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/accountSettings.d.ts +164 -9
- package/dist/accountSettings.d.ts.map +1 -1
- package/dist/accountSettings.js +75 -7
- package/dist/accountSettings.js.map +1 -1
- package/dist/routes/_shared.d.ts +1 -1
- package/dist/routes/_shared.d.ts.map +1 -1
- package/dist/routes/accounts.d.ts +85 -19
- package/dist/routes/accounts.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +2 -2
- package/dist/routes/api-keys.d.ts +2 -2
- package/dist/routes/auth.d.ts +81 -2
- package/dist/routes/auth.d.ts.map +1 -1
- package/dist/routes/auth.js +35 -0
- package/dist/routes/auth.js.map +1 -1
- package/dist/routes/board.d.ts +8 -8
- package/dist/routes/bootstrap.d.ts +3 -3
- package/dist/routes/brainstorm.d.ts +8 -8
- package/dist/routes/clarity.d.ts +8 -8
- package/dist/routes/consensus.d.ts +1 -1
- package/dist/routes/documents.d.ts +6 -6
- package/dist/routes/environments.d.ts +3 -3
- package/dist/routes/execution.d.ts +12 -12
- package/dist/routes/followUp.d.ts +5 -5
- package/dist/routes/fragment-library.d.ts +6 -6
- package/dist/routes/github.d.ts +8 -8
- package/dist/routes/human-review.d.ts +1 -1
- package/dist/routes/human-test.d.ts +5 -5
- package/dist/routes/kaizen.d.ts +1 -1
- package/dist/routes/localModels.d.ts +2 -2
- package/dist/routes/merge.d.ts +2 -2
- package/dist/routes/model-presets.d.ts +2 -2
- package/dist/routes/models.d.ts +1 -1
- package/dist/routes/notifications.d.ts +2 -2
- package/dist/routes/openrouter.d.ts +3 -3
- package/dist/routes/personal-subscriptions.d.ts +1 -1
- package/dist/routes/pipelines.d.ts +5 -5
- package/dist/routes/recurring.d.ts +4 -4
- package/dist/routes/release.d.ts +2 -2
- package/dist/routes/requirements.d.ts +12 -12
- package/dist/routes/sandbox.d.ts +5 -5
- package/dist/routes/services.d.ts +3 -3
- package/dist/routes/spec.d.ts +1 -1
- package/dist/routes/tasks.d.ts +7 -7
- package/dist/routes/user-secret.d.ts +4 -4
- package/dist/routes/vendor-credentials.d.ts +1 -1
- package/dist/routes/visual-confirm.d.ts +3 -3
- package/dist/routes/workspaces.d.ts +3 -3
- package/package.json +4 -4
|
@@ -5,7 +5,7 @@ export declare const getBrainstormContract: {
|
|
|
5
5
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
6
6
|
readonly blockId: v.StringSchema<undefined>;
|
|
7
7
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
8
|
-
}, undefined> & import("@toad-contracts/core").
|
|
8
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
9
9
|
readonly pathResolver: ({ blockId, stage }: {
|
|
10
10
|
blockId: string;
|
|
11
11
|
stage: "architecture" | "requirements";
|
|
@@ -63,7 +63,7 @@ export declare const reviewBrainstormContract: {
|
|
|
63
63
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
64
64
|
readonly blockId: v.StringSchema<undefined>;
|
|
65
65
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
66
|
-
}, undefined> & import("@toad-contracts/core").
|
|
66
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
67
67
|
readonly pathResolver: ({ blockId, stage }: {
|
|
68
68
|
blockId: string;
|
|
69
69
|
stage: "architecture" | "requirements";
|
|
@@ -122,7 +122,7 @@ export declare const replyBrainstormItemContract: {
|
|
|
122
122
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
123
123
|
readonly sessionId: v.StringSchema<undefined>;
|
|
124
124
|
readonly itemId: v.StringSchema<undefined>;
|
|
125
|
-
}, undefined> & import("@toad-contracts/core").
|
|
125
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
126
126
|
readonly pathResolver: ({ sessionId, itemId }: {
|
|
127
127
|
sessionId: string;
|
|
128
128
|
itemId: string;
|
|
@@ -183,7 +183,7 @@ export declare const updateBrainstormItemStatusContract: {
|
|
|
183
183
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
184
184
|
readonly sessionId: v.StringSchema<undefined>;
|
|
185
185
|
readonly itemId: v.StringSchema<undefined>;
|
|
186
|
-
}, undefined> & import("@toad-contracts/core").
|
|
186
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
187
187
|
readonly pathResolver: ({ sessionId, itemId }: {
|
|
188
188
|
sessionId: string;
|
|
189
189
|
itemId: string;
|
|
@@ -244,7 +244,7 @@ export declare const incorporateBrainstormContract: {
|
|
|
244
244
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
245
245
|
readonly blockId: v.StringSchema<undefined>;
|
|
246
246
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
247
|
-
}, undefined> & import("@toad-contracts/core").
|
|
247
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
248
248
|
readonly pathResolver: ({ blockId, stage }: {
|
|
249
249
|
blockId: string;
|
|
250
250
|
stage: "architecture" | "requirements";
|
|
@@ -305,7 +305,7 @@ export declare const reReviewBrainstormContract: {
|
|
|
305
305
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
306
306
|
readonly blockId: v.StringSchema<undefined>;
|
|
307
307
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
308
|
-
}, undefined> & import("@toad-contracts/core").
|
|
308
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
309
309
|
readonly pathResolver: ({ blockId, stage }: {
|
|
310
310
|
blockId: string;
|
|
311
311
|
stage: "architecture" | "requirements";
|
|
@@ -364,7 +364,7 @@ export declare const proceedBrainstormContract: {
|
|
|
364
364
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
365
365
|
readonly blockId: v.StringSchema<undefined>;
|
|
366
366
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
367
|
-
}, undefined> & import("@toad-contracts/core").
|
|
367
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
368
368
|
readonly pathResolver: ({ blockId, stage }: {
|
|
369
369
|
blockId: string;
|
|
370
370
|
stage: "architecture" | "requirements";
|
|
@@ -423,7 +423,7 @@ export declare const resolveBrainstormExceededContract: {
|
|
|
423
423
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
424
424
|
readonly blockId: v.StringSchema<undefined>;
|
|
425
425
|
readonly stage: v.PicklistSchema<["requirements", "architecture"], undefined>;
|
|
426
|
-
}, undefined> & import("@toad-contracts/core").
|
|
426
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
427
427
|
readonly pathResolver: ({ blockId, stage }: {
|
|
428
428
|
blockId: string;
|
|
429
429
|
stage: "architecture" | "requirements";
|
package/dist/routes/clarity.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const getClarityReviewContract: {
|
|
|
4
4
|
readonly method: "get";
|
|
5
5
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
6
6
|
blockId: v.StringSchema<undefined>;
|
|
7
|
-
}, undefined> & import("@toad-contracts/core").
|
|
7
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
8
8
|
readonly pathResolver: ({ blockId }: {
|
|
9
9
|
blockId: string;
|
|
10
10
|
}) => string;
|
|
@@ -59,7 +59,7 @@ export declare const reviewClarityContract: {
|
|
|
59
59
|
readonly method: "post";
|
|
60
60
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
61
61
|
blockId: v.StringSchema<undefined>;
|
|
62
|
-
}, undefined> & import("@toad-contracts/core").
|
|
62
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
63
63
|
readonly pathResolver: ({ blockId }: {
|
|
64
64
|
blockId: string;
|
|
65
65
|
}) => string;
|
|
@@ -116,7 +116,7 @@ export declare const replyClarityItemContract: {
|
|
|
116
116
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
117
117
|
readonly reviewId: v.StringSchema<undefined>;
|
|
118
118
|
readonly itemId: v.StringSchema<undefined>;
|
|
119
|
-
}, undefined> & import("@toad-contracts/core").
|
|
119
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
120
120
|
readonly pathResolver: ({ reviewId, itemId }: {
|
|
121
121
|
reviewId: string;
|
|
122
122
|
itemId: string;
|
|
@@ -176,7 +176,7 @@ export declare const updateClarityItemStatusContract: {
|
|
|
176
176
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
177
177
|
readonly reviewId: v.StringSchema<undefined>;
|
|
178
178
|
readonly itemId: v.StringSchema<undefined>;
|
|
179
|
-
}, undefined> & import("@toad-contracts/core").
|
|
179
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
180
180
|
readonly pathResolver: ({ reviewId, itemId }: {
|
|
181
181
|
reviewId: string;
|
|
182
182
|
itemId: string;
|
|
@@ -235,7 +235,7 @@ export declare const incorporateClarityContract: {
|
|
|
235
235
|
readonly method: "post";
|
|
236
236
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
237
237
|
blockId: v.StringSchema<undefined>;
|
|
238
|
-
}, undefined> & import("@toad-contracts/core").
|
|
238
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
239
239
|
readonly pathResolver: ({ blockId }: {
|
|
240
240
|
blockId: string;
|
|
241
241
|
}) => string;
|
|
@@ -293,7 +293,7 @@ export declare const reReviewClarityContract: {
|
|
|
293
293
|
readonly method: "post";
|
|
294
294
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
295
295
|
blockId: v.StringSchema<undefined>;
|
|
296
|
-
}, undefined> & import("@toad-contracts/core").
|
|
296
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
297
297
|
readonly pathResolver: ({ blockId }: {
|
|
298
298
|
blockId: string;
|
|
299
299
|
}) => string;
|
|
@@ -349,7 +349,7 @@ export declare const proceedClarityContract: {
|
|
|
349
349
|
readonly method: "post";
|
|
350
350
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
351
351
|
blockId: v.StringSchema<undefined>;
|
|
352
|
-
}, undefined> & import("@toad-contracts/core").
|
|
352
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
353
353
|
readonly pathResolver: ({ blockId }: {
|
|
354
354
|
blockId: string;
|
|
355
355
|
}) => string;
|
|
@@ -405,7 +405,7 @@ export declare const resolveClarityExceededContract: {
|
|
|
405
405
|
readonly method: "post";
|
|
406
406
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
407
407
|
blockId: v.StringSchema<undefined>;
|
|
408
|
-
}, undefined> & import("@toad-contracts/core").
|
|
408
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
409
409
|
readonly pathResolver: ({ blockId }: {
|
|
410
410
|
blockId: string;
|
|
411
411
|
}) => string;
|
|
@@ -3,7 +3,7 @@ export declare const getConsensusSessionContract: {
|
|
|
3
3
|
readonly method: "get";
|
|
4
4
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
5
5
|
blockId: v.StringSchema<undefined>;
|
|
6
|
-
}, undefined> & import("@toad-contracts/core").
|
|
6
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
7
7
|
readonly pathResolver: ({ blockId }: {
|
|
8
8
|
blockId: string;
|
|
9
9
|
}) => string;
|
|
@@ -85,7 +85,7 @@ export declare const connectDocumentSourceContract: {
|
|
|
85
85
|
readonly method: "post";
|
|
86
86
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
87
87
|
source: v.StringSchema<undefined>;
|
|
88
|
-
}, undefined> & import("@toad-contracts/core").
|
|
88
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
89
89
|
readonly pathResolver: ({ source }: {
|
|
90
90
|
source: string;
|
|
91
91
|
}) => string;
|
|
@@ -126,7 +126,7 @@ export declare const disconnectDocumentSourceContract: {
|
|
|
126
126
|
readonly method: "delete";
|
|
127
127
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
128
128
|
source: v.StringSchema<undefined>;
|
|
129
|
-
}, undefined> & import("@toad-contracts/core").
|
|
129
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
130
130
|
readonly pathResolver: ({ source }: {
|
|
131
131
|
source: string;
|
|
132
132
|
}) => string;
|
|
@@ -197,7 +197,7 @@ export declare const importDocumentContract: {
|
|
|
197
197
|
readonly method: "post";
|
|
198
198
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
199
199
|
source: v.StringSchema<undefined>;
|
|
200
|
-
}, undefined> & import("@toad-contracts/core").
|
|
200
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
201
201
|
readonly pathResolver: ({ source }: {
|
|
202
202
|
source: string;
|
|
203
203
|
}) => string;
|
|
@@ -242,7 +242,7 @@ export declare const searchDocumentsContract: {
|
|
|
242
242
|
readonly method: "post";
|
|
243
243
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
244
244
|
source: v.StringSchema<undefined>;
|
|
245
|
-
}, undefined> & import("@toad-contracts/core").
|
|
245
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
246
246
|
readonly pathResolver: ({ source }: {
|
|
247
247
|
source: string;
|
|
248
248
|
}) => string;
|
|
@@ -287,7 +287,7 @@ export declare const planDocumentContract: {
|
|
|
287
287
|
readonly method: "post";
|
|
288
288
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
289
289
|
source: v.StringSchema<undefined>;
|
|
290
|
-
}, undefined> & import("@toad-contracts/core").
|
|
290
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
291
291
|
readonly pathResolver: ({ source }: {
|
|
292
292
|
source: string;
|
|
293
293
|
}) => string;
|
|
@@ -344,7 +344,7 @@ export declare const spawnDocumentContract: {
|
|
|
344
344
|
readonly method: "post";
|
|
345
345
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
346
346
|
source: v.StringSchema<undefined>;
|
|
347
|
-
}, undefined> & import("@toad-contracts/core").
|
|
347
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
348
348
|
readonly pathResolver: ({ source }: {
|
|
349
349
|
source: string;
|
|
350
350
|
}) => string;
|
|
@@ -500,7 +500,7 @@ export declare const getEnvironmentContract: {
|
|
|
500
500
|
readonly method: "get";
|
|
501
501
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
502
502
|
environmentId: v.StringSchema<undefined>;
|
|
503
|
-
}, undefined> & import("@toad-contracts/core").
|
|
503
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
504
504
|
readonly pathResolver: ({ environmentId }: {
|
|
505
505
|
environmentId: string;
|
|
506
506
|
}) => string;
|
|
@@ -554,7 +554,7 @@ export declare const getEnvironmentAccessContract: {
|
|
|
554
554
|
readonly method: "get";
|
|
555
555
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
556
556
|
environmentId: v.StringSchema<undefined>;
|
|
557
|
-
}, undefined> & import("@toad-contracts/core").
|
|
557
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
558
558
|
readonly pathResolver: ({ environmentId }: {
|
|
559
559
|
environmentId: string;
|
|
560
560
|
}) => string;
|
|
@@ -661,7 +661,7 @@ export declare const teardownEnvironmentContract: {
|
|
|
661
661
|
readonly method: "post";
|
|
662
662
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
663
663
|
environmentId: v.StringSchema<undefined>;
|
|
664
|
-
}, undefined> & import("@toad-contracts/core").
|
|
664
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
665
665
|
readonly pathResolver: ({ environmentId }: {
|
|
666
666
|
environmentId: string;
|
|
667
667
|
}) => string;
|
|
@@ -4,7 +4,7 @@ export declare const startExecutionContract: {
|
|
|
4
4
|
readonly method: "post";
|
|
5
5
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
6
6
|
blockId: v.StringSchema<undefined>;
|
|
7
|
-
}, undefined> & import("@toad-contracts/core").
|
|
7
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
8
8
|
readonly pathResolver: ({ blockId }: {
|
|
9
9
|
blockId: string;
|
|
10
10
|
}) => string;
|
|
@@ -323,7 +323,7 @@ export declare const cancelExecutionContract: {
|
|
|
323
323
|
readonly method: "delete";
|
|
324
324
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
325
325
|
blockId: v.StringSchema<undefined>;
|
|
326
|
-
}, undefined> & import("@toad-contracts/core").
|
|
326
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
327
327
|
readonly pathResolver: ({ blockId }: {
|
|
328
328
|
blockId: string;
|
|
329
329
|
}) => string;
|
|
@@ -420,7 +420,7 @@ export declare const mergeBlockContract: {
|
|
|
420
420
|
readonly method: "post";
|
|
421
421
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
422
422
|
blockId: v.StringSchema<undefined>;
|
|
423
|
-
}, undefined> & import("@toad-contracts/core").
|
|
423
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
424
424
|
readonly pathResolver: ({ blockId }: {
|
|
425
425
|
blockId: string;
|
|
426
426
|
}) => string;
|
|
@@ -867,7 +867,7 @@ export declare const getExecutionLlmMetricsContract: {
|
|
|
867
867
|
readonly method: "get";
|
|
868
868
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
869
869
|
executionId: v.StringSchema<undefined>;
|
|
870
|
-
}, undefined> & import("@toad-contracts/core").
|
|
870
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
871
871
|
readonly pathResolver: ({ executionId }: {
|
|
872
872
|
executionId: string;
|
|
873
873
|
}) => string;
|
|
@@ -932,7 +932,7 @@ export declare const getExecutionAgentContextContract: {
|
|
|
932
932
|
readonly method: "get";
|
|
933
933
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
934
934
|
executionId: v.StringSchema<undefined>;
|
|
935
|
-
}, undefined> & import("@toad-contracts/core").
|
|
935
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
936
936
|
readonly pathResolver: ({ executionId }: {
|
|
937
937
|
executionId: string;
|
|
938
938
|
}) => string;
|
|
@@ -991,7 +991,7 @@ export declare const exportExecutionLlmMetricsContract: {
|
|
|
991
991
|
readonly method: "get";
|
|
992
992
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
993
993
|
executionId: v.StringSchema<undefined>;
|
|
994
|
-
}, undefined> & import("@toad-contracts/core").
|
|
994
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
995
995
|
readonly pathResolver: ({ executionId }: {
|
|
996
996
|
executionId: string;
|
|
997
997
|
}) => string;
|
|
@@ -1090,7 +1090,7 @@ export declare const resolveDecisionContract: {
|
|
|
1090
1090
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1091
1091
|
readonly executionId: v.StringSchema<undefined>;
|
|
1092
1092
|
readonly decisionId: v.StringSchema<undefined>;
|
|
1093
|
-
}, undefined> & import("@toad-contracts/core").
|
|
1093
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1094
1094
|
readonly pathResolver: ({ executionId, decisionId }: {
|
|
1095
1095
|
executionId: string;
|
|
1096
1096
|
decisionId: string;
|
|
@@ -1411,7 +1411,7 @@ export declare const approveStepContract: {
|
|
|
1411
1411
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1412
1412
|
readonly executionId: v.StringSchema<undefined>;
|
|
1413
1413
|
readonly approvalId: v.StringSchema<undefined>;
|
|
1414
|
-
}, undefined> & import("@toad-contracts/core").
|
|
1414
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1415
1415
|
readonly pathResolver: ({ executionId, approvalId }: {
|
|
1416
1416
|
executionId: string;
|
|
1417
1417
|
approvalId: string;
|
|
@@ -1732,7 +1732,7 @@ export declare const requestStepChangesContract: {
|
|
|
1732
1732
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1733
1733
|
readonly executionId: v.StringSchema<undefined>;
|
|
1734
1734
|
readonly approvalId: v.StringSchema<undefined>;
|
|
1735
|
-
}, undefined> & import("@toad-contracts/core").
|
|
1735
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1736
1736
|
readonly pathResolver: ({ executionId, approvalId }: {
|
|
1737
1737
|
executionId: string;
|
|
1738
1738
|
approvalId: string;
|
|
@@ -2067,7 +2067,7 @@ export declare const resolveStepExceededContract: {
|
|
|
2067
2067
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
2068
2068
|
readonly executionId: v.StringSchema<undefined>;
|
|
2069
2069
|
readonly approvalId: v.StringSchema<undefined>;
|
|
2070
|
-
}, undefined> & import("@toad-contracts/core").
|
|
2070
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
2071
2071
|
readonly pathResolver: ({ executionId, approvalId }: {
|
|
2072
2072
|
executionId: string;
|
|
2073
2073
|
approvalId: string;
|
|
@@ -2387,7 +2387,7 @@ export declare const restartExecutionContract: {
|
|
|
2387
2387
|
readonly method: "post";
|
|
2388
2388
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
2389
2389
|
executionId: v.StringSchema<undefined>;
|
|
2390
|
-
}, undefined> & import("@toad-contracts/core").
|
|
2390
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
2391
2391
|
readonly pathResolver: ({ executionId }: {
|
|
2392
2392
|
executionId: string;
|
|
2393
2393
|
}) => string;
|
|
@@ -2707,7 +2707,7 @@ export declare const rejectStepContract: {
|
|
|
2707
2707
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
2708
2708
|
readonly executionId: v.StringSchema<undefined>;
|
|
2709
2709
|
readonly approvalId: v.StringSchema<undefined>;
|
|
2710
|
-
}, undefined> & import("@toad-contracts/core").
|
|
2710
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
2711
2711
|
readonly pathResolver: ({ executionId, approvalId }: {
|
|
2712
2712
|
executionId: string;
|
|
2713
2713
|
approvalId: string;
|
|
@@ -4,7 +4,7 @@ export declare const getFollowUpsContract: {
|
|
|
4
4
|
readonly method: "get";
|
|
5
5
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
6
6
|
executionId: v.StringSchema<undefined>;
|
|
7
|
-
}, undefined> & import("@toad-contracts/core").
|
|
7
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
8
8
|
readonly pathResolver: ({ executionId }: {
|
|
9
9
|
executionId: string;
|
|
10
10
|
}) => string;
|
|
@@ -57,7 +57,7 @@ export declare const fileFollowUpContract: {
|
|
|
57
57
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
58
58
|
readonly executionId: v.StringSchema<undefined>;
|
|
59
59
|
readonly itemId: v.StringSchema<undefined>;
|
|
60
|
-
}, undefined> & import("@toad-contracts/core").
|
|
60
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
61
61
|
readonly pathResolver: ({ executionId, itemId }: {
|
|
62
62
|
executionId: string;
|
|
63
63
|
itemId: string;
|
|
@@ -112,7 +112,7 @@ export declare const queueFollowUpContract: {
|
|
|
112
112
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
113
113
|
readonly executionId: v.StringSchema<undefined>;
|
|
114
114
|
readonly itemId: v.StringSchema<undefined>;
|
|
115
|
-
}, undefined> & import("@toad-contracts/core").
|
|
115
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
116
116
|
readonly pathResolver: ({ executionId, itemId }: {
|
|
117
117
|
executionId: string;
|
|
118
118
|
itemId: string;
|
|
@@ -167,7 +167,7 @@ export declare const answerFollowUpContract: {
|
|
|
167
167
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
168
168
|
readonly executionId: v.StringSchema<undefined>;
|
|
169
169
|
readonly itemId: v.StringSchema<undefined>;
|
|
170
|
-
}, undefined> & import("@toad-contracts/core").
|
|
170
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
171
171
|
readonly pathResolver: ({ executionId, itemId }: {
|
|
172
172
|
executionId: string;
|
|
173
173
|
itemId: string;
|
|
@@ -224,7 +224,7 @@ export declare const dismissFollowUpContract: {
|
|
|
224
224
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
225
225
|
readonly executionId: v.StringSchema<undefined>;
|
|
226
226
|
readonly itemId: v.StringSchema<undefined>;
|
|
227
|
-
}, undefined> & import("@toad-contracts/core").
|
|
227
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
228
228
|
readonly pathResolver: ({ executionId, itemId }: {
|
|
229
229
|
executionId: string;
|
|
230
230
|
itemId: string;
|
|
@@ -119,7 +119,7 @@ export declare const updatePromptFragmentContract: {
|
|
|
119
119
|
readonly method: "patch";
|
|
120
120
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
121
121
|
fragmentId: v.StringSchema<undefined>;
|
|
122
|
-
}, undefined> & import("@toad-contracts/core").
|
|
122
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
123
123
|
readonly pathResolver: ({ fragmentId }: {
|
|
124
124
|
fragmentId: string;
|
|
125
125
|
}) => string;
|
|
@@ -187,7 +187,7 @@ export declare const deletePromptFragmentContract: {
|
|
|
187
187
|
readonly method: "delete";
|
|
188
188
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
189
189
|
fragmentId: v.StringSchema<undefined>;
|
|
190
|
-
}, undefined> & import("@toad-contracts/core").
|
|
190
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
191
191
|
readonly pathResolver: ({ fragmentId }: {
|
|
192
192
|
fragmentId: string;
|
|
193
193
|
}) => string;
|
|
@@ -284,7 +284,7 @@ export declare const refreshPromptFragmentContract: {
|
|
|
284
284
|
readonly method: "post";
|
|
285
285
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
286
286
|
fragmentId: v.StringSchema<undefined>;
|
|
287
|
-
}, undefined> & import("@toad-contracts/core").
|
|
287
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
288
288
|
readonly requestQuerySchema: v.ObjectSchema<{
|
|
289
289
|
readonly viaWorkspaceId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
290
290
|
}, undefined>;
|
|
@@ -430,7 +430,7 @@ export declare const unlinkFragmentSourceContract: {
|
|
|
430
430
|
readonly method: "delete";
|
|
431
431
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
432
432
|
id: v.StringSchema<undefined>;
|
|
433
|
-
}, undefined> & import("@toad-contracts/core").
|
|
433
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
434
434
|
readonly pathResolver: ({ id }: {
|
|
435
435
|
id: string;
|
|
436
436
|
}) => string;
|
|
@@ -464,7 +464,7 @@ export declare const fragmentSourceStatusContract: {
|
|
|
464
464
|
readonly method: "get";
|
|
465
465
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
466
466
|
id: v.StringSchema<undefined>;
|
|
467
|
-
}, undefined> & import("@toad-contracts/core").
|
|
467
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
468
468
|
readonly pathResolver: ({ id }: {
|
|
469
469
|
id: string;
|
|
470
470
|
}) => string;
|
|
@@ -503,7 +503,7 @@ export declare const syncFragmentSourceContract: {
|
|
|
503
503
|
readonly method: "post";
|
|
504
504
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
505
505
|
id: v.StringSchema<undefined>;
|
|
506
|
-
}, undefined> & import("@toad-contracts/core").
|
|
506
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
507
507
|
readonly pathResolver: ({ id }: {
|
|
508
508
|
id: string;
|
|
509
509
|
}) => string;
|
package/dist/routes/github.d.ts
CHANGED
|
@@ -228,7 +228,7 @@ export declare const setGitHubRepoMonorepoContract: {
|
|
|
228
228
|
readonly method: "patch";
|
|
229
229
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
230
230
|
repoGithubId: v.StringSchema<undefined>;
|
|
231
|
-
}, undefined> & import("@toad-contracts/core").
|
|
231
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
232
232
|
readonly pathResolver: ({ repoGithubId }: {
|
|
233
233
|
repoGithubId: string;
|
|
234
234
|
}) => string;
|
|
@@ -275,7 +275,7 @@ export declare const listGitHubRepoTreeContract: {
|
|
|
275
275
|
readonly method: "get";
|
|
276
276
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
277
277
|
repoGithubId: v.StringSchema<undefined>;
|
|
278
|
-
}, undefined> & import("@toad-contracts/core").
|
|
278
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
279
279
|
readonly pathResolver: ({ repoGithubId }: {
|
|
280
280
|
repoGithubId: string;
|
|
281
281
|
}) => string;
|
|
@@ -422,7 +422,7 @@ export declare const listGitHubBranchesContract: {
|
|
|
422
422
|
readonly method: "get";
|
|
423
423
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
424
424
|
repoGithubId: v.StringSchema<undefined>;
|
|
425
|
-
}, undefined> & import("@toad-contracts/core").
|
|
425
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
426
426
|
readonly pathResolver: ({ repoGithubId }: {
|
|
427
427
|
repoGithubId: string;
|
|
428
428
|
}) => string;
|
|
@@ -583,7 +583,7 @@ export declare const createGitHubBranchContract: {
|
|
|
583
583
|
readonly method: "post";
|
|
584
584
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
585
585
|
repoGithubId: v.StringSchema<undefined>;
|
|
586
|
-
}, undefined> & import("@toad-contracts/core").
|
|
586
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
587
587
|
readonly pathResolver: ({ repoGithubId }: {
|
|
588
588
|
repoGithubId: string;
|
|
589
589
|
}) => string;
|
|
@@ -627,7 +627,7 @@ export declare const commitGitHubFilesContract: {
|
|
|
627
627
|
readonly method: "post";
|
|
628
628
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
629
629
|
repoGithubId: v.StringSchema<undefined>;
|
|
630
|
-
}, undefined> & import("@toad-contracts/core").
|
|
630
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
631
631
|
readonly pathResolver: ({ repoGithubId }: {
|
|
632
632
|
repoGithubId: string;
|
|
633
633
|
}) => string;
|
|
@@ -676,7 +676,7 @@ export declare const openGitHubPullRequestContract: {
|
|
|
676
676
|
readonly method: "post";
|
|
677
677
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
678
678
|
repoGithubId: v.StringSchema<undefined>;
|
|
679
|
-
}, undefined> & import("@toad-contracts/core").
|
|
679
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
680
680
|
readonly pathResolver: ({ repoGithubId }: {
|
|
681
681
|
repoGithubId: string;
|
|
682
682
|
}) => string;
|
|
@@ -731,7 +731,7 @@ export declare const mergeGitHubPullRequestContract: {
|
|
|
731
731
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
732
732
|
readonly repoGithubId: v.StringSchema<undefined>;
|
|
733
733
|
readonly number: v.StringSchema<undefined>;
|
|
734
|
-
}, undefined> & import("@toad-contracts/core").
|
|
734
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
735
735
|
readonly pathResolver: ({ repoGithubId, number }: {
|
|
736
736
|
repoGithubId: string;
|
|
737
737
|
number: string;
|
|
@@ -770,7 +770,7 @@ export declare const commentGitHubIssueContract: {
|
|
|
770
770
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
771
771
|
readonly repoGithubId: v.StringSchema<undefined>;
|
|
772
772
|
readonly number: v.StringSchema<undefined>;
|
|
773
|
-
}, undefined> & import("@toad-contracts/core").
|
|
773
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
774
774
|
readonly pathResolver: ({ repoGithubId, number }: {
|
|
775
775
|
repoGithubId: string;
|
|
776
776
|
number: string;
|
|
@@ -2,7 +2,7 @@ export declare const requestHumanReviewFixContract: {
|
|
|
2
2
|
readonly method: "post";
|
|
3
3
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
4
4
|
blockId: import("valibot").StringSchema<undefined>;
|
|
5
|
-
}, undefined> & import("@toad-contracts/core").
|
|
5
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
6
6
|
readonly pathResolver: ({ blockId }: {
|
|
7
7
|
blockId: string;
|
|
8
8
|
}) => string;
|
|
@@ -3,7 +3,7 @@ export declare const confirmHumanTestContract: {
|
|
|
3
3
|
readonly method: "post";
|
|
4
4
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
5
5
|
blockId: import("valibot").StringSchema<undefined>;
|
|
6
|
-
}, undefined> & import("@toad-contracts/core").
|
|
6
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
7
7
|
readonly pathResolver: ({ blockId }: {
|
|
8
8
|
blockId: string;
|
|
9
9
|
}) => string;
|
|
@@ -320,7 +320,7 @@ export declare const requestHumanTestFixContract: {
|
|
|
320
320
|
readonly method: "post";
|
|
321
321
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
322
322
|
blockId: import("valibot").StringSchema<undefined>;
|
|
323
|
-
}, undefined> & import("@toad-contracts/core").
|
|
323
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
324
324
|
readonly pathResolver: ({ blockId }: {
|
|
325
325
|
blockId: string;
|
|
326
326
|
}) => string;
|
|
@@ -639,7 +639,7 @@ export declare const pullMainHumanTestContract: {
|
|
|
639
639
|
readonly method: "post";
|
|
640
640
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
641
641
|
blockId: import("valibot").StringSchema<undefined>;
|
|
642
|
-
}, undefined> & import("@toad-contracts/core").
|
|
642
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
643
643
|
readonly pathResolver: ({ blockId }: {
|
|
644
644
|
blockId: string;
|
|
645
645
|
}) => string;
|
|
@@ -956,7 +956,7 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
956
956
|
readonly method: "post";
|
|
957
957
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
958
958
|
blockId: import("valibot").StringSchema<undefined>;
|
|
959
|
-
}, undefined> & import("@toad-contracts/core").
|
|
959
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
960
960
|
readonly pathResolver: ({ blockId }: {
|
|
961
961
|
blockId: string;
|
|
962
962
|
}) => string;
|
|
@@ -1273,7 +1273,7 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
1273
1273
|
readonly method: "post";
|
|
1274
1274
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
1275
1275
|
blockId: import("valibot").StringSchema<undefined>;
|
|
1276
|
-
}, undefined> & import("@toad-contracts/core").
|
|
1276
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1277
1277
|
readonly pathResolver: ({ blockId }: {
|
|
1278
1278
|
blockId: string;
|
|
1279
1279
|
}) => string;
|
package/dist/routes/kaizen.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ export declare const getKaizenRunGradingsContract: {
|
|
|
60
60
|
readonly method: "get";
|
|
61
61
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
62
62
|
executionId: import("valibot").StringSchema<undefined>;
|
|
63
|
-
}, undefined> & import("@toad-contracts/core").
|
|
63
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
64
64
|
readonly pathResolver: ({ executionId }: {
|
|
65
65
|
executionId: string;
|
|
66
66
|
}) => string;
|
|
@@ -43,7 +43,7 @@ export declare const upsertLocalModelEndpointContract: {
|
|
|
43
43
|
readonly method: "put";
|
|
44
44
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
45
45
|
provider: v.StringSchema<undefined>;
|
|
46
|
-
}, undefined> & import("@toad-contracts/core").
|
|
46
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
47
47
|
readonly pathResolver: ({ provider }: {
|
|
48
48
|
provider: string;
|
|
49
49
|
}) => string;
|
|
@@ -92,7 +92,7 @@ export declare const removeLocalModelEndpointContract: {
|
|
|
92
92
|
readonly method: "delete";
|
|
93
93
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
94
94
|
provider: v.StringSchema<undefined>;
|
|
95
|
-
}, undefined> & import("@toad-contracts/core").
|
|
95
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
96
96
|
readonly pathResolver: ({ provider }: {
|
|
97
97
|
provider: string;
|
|
98
98
|
}) => string;
|
package/dist/routes/merge.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export declare const updateMergePresetContract: {
|
|
|
103
103
|
readonly method: "patch";
|
|
104
104
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
105
105
|
presetId: v.StringSchema<undefined>;
|
|
106
|
-
}, undefined> & import("@toad-contracts/core").
|
|
106
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
107
107
|
readonly pathResolver: ({ presetId }: {
|
|
108
108
|
presetId: string;
|
|
109
109
|
}) => string;
|
|
@@ -164,7 +164,7 @@ export declare const deleteMergePresetContract: {
|
|
|
164
164
|
readonly method: "delete";
|
|
165
165
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
166
166
|
presetId: v.StringSchema<undefined>;
|
|
167
|
-
}, undefined> & import("@toad-contracts/core").
|
|
167
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
168
168
|
readonly pathResolver: ({ presetId }: {
|
|
169
169
|
presetId: string;
|
|
170
170
|
}) => string;
|
|
@@ -82,7 +82,7 @@ export declare const updateModelPresetContract: {
|
|
|
82
82
|
readonly method: "patch";
|
|
83
83
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
84
84
|
presetId: v.StringSchema<undefined>;
|
|
85
|
-
}, undefined> & import("@toad-contracts/core").
|
|
85
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
86
86
|
readonly pathResolver: ({ presetId }: {
|
|
87
87
|
presetId: string;
|
|
88
88
|
}) => string;
|
|
@@ -129,7 +129,7 @@ export declare const deleteModelPresetContract: {
|
|
|
129
129
|
readonly method: "delete";
|
|
130
130
|
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
131
131
|
presetId: v.StringSchema<undefined>;
|
|
132
|
-
}, undefined> & import("@toad-contracts/core").
|
|
132
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
133
133
|
readonly pathResolver: ({ presetId }: {
|
|
134
134
|
presetId: string;
|
|
135
135
|
}) => string;
|
package/dist/routes/models.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare const listWorkspaceModelsContract: {
|
|
|
62
62
|
readonly method: "get";
|
|
63
63
|
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
64
64
|
workspaceId: import("valibot").StringSchema<undefined>;
|
|
65
|
-
}, undefined> & import("@toad-contracts/core").
|
|
65
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
66
66
|
readonly pathResolver: ({ workspaceId }: {
|
|
67
67
|
workspaceId: string;
|
|
68
68
|
}) => string;
|