@cat-factory/contracts 0.205.0 → 0.207.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/binary-outputs.d.ts +96 -0
- package/dist/binary-outputs.d.ts.map +1 -0
- package/dist/binary-outputs.js +82 -0
- package/dist/binary-outputs.js.map +1 -0
- package/dist/entities.d.ts +30 -2
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +13 -1
- package/dist/entities.js.map +1 -1
- package/dist/errors.d.ts +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +15 -0
- package/dist/errors.js.map +1 -1
- package/dist/execution.d.ts +60 -0
- package/dist/execution.d.ts.map +1 -1
- package/dist/execution.js +14 -0
- package/dist/execution.js.map +1 -1
- package/dist/foundational-services.d.ts +21 -0
- package/dist/foundational-services.d.ts.map +1 -1
- package/dist/foundational-services.js +21 -1
- package/dist/foundational-services.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/requests.d.ts +8 -0
- package/dist/requests.d.ts.map +1 -1
- package/dist/routes/agent-runs.d.ts +36 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/bug-hunt.d.ts +36 -0
- package/dist/routes/bug-hunt.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +144 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/foundational-services.d.ts +122 -0
- package/dist/routes/foundational-services.d.ts.map +1 -1
- package/dist/routes/foundational-services.js +41 -1
- package/dist/routes/foundational-services.js.map +1 -1
- package/dist/routes/human-review.d.ts +18 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +90 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/pipelines.d.ts +32 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +54 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +44 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/skill-library.d.ts +1 -1
- package/dist/skill-library.js +2 -2
- package/dist/skill-library.js.map +1 -1
- package/dist/snapshot.d.ts +22 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -641,6 +641,10 @@ export declare const confirmHumanTestContract: {
|
|
|
641
641
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
642
642
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
643
643
|
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
644
|
+
readonly binaryOutput: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
645
|
+
readonly storageServiceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>;
|
|
646
|
+
readonly contextServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
647
|
+
}, undefined>, undefined>;
|
|
644
648
|
}, undefined>, undefined>, undefined>;
|
|
645
649
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
646
650
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -680,6 +684,20 @@ export declare const confirmHumanTestContract: {
|
|
|
680
684
|
readonly declared: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
681
685
|
readonly unknown: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
682
686
|
}, undefined>, undefined>;
|
|
687
|
+
readonly binaryOutputs: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
688
|
+
readonly stored: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
689
|
+
readonly service: import("valibot").StringSchema<undefined>;
|
|
690
|
+
readonly location: import("valibot").StringSchema<undefined>;
|
|
691
|
+
readonly entity: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
692
|
+
readonly contentType: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
693
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
694
|
+
}, undefined>, undefined>;
|
|
695
|
+
readonly unknownServices: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
696
|
+
readonly invalidEntries: import("valibot").NumberSchema<undefined>;
|
|
697
|
+
readonly omitted: import("valibot").NumberSchema<undefined>;
|
|
698
|
+
readonly parseFailed: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
699
|
+
readonly undeclared: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
700
|
+
}, undefined>, undefined>;
|
|
683
701
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
684
702
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
685
703
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1646,6 +1664,10 @@ export declare const requestHumanTestFixContract: {
|
|
|
1646
1664
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1647
1665
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
1648
1666
|
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1667
|
+
readonly binaryOutput: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1668
|
+
readonly storageServiceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>;
|
|
1669
|
+
readonly contextServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
1670
|
+
}, undefined>, undefined>;
|
|
1649
1671
|
}, undefined>, undefined>, undefined>;
|
|
1650
1672
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1651
1673
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -1685,6 +1707,20 @@ export declare const requestHumanTestFixContract: {
|
|
|
1685
1707
|
readonly declared: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1686
1708
|
readonly unknown: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1687
1709
|
}, undefined>, undefined>;
|
|
1710
|
+
readonly binaryOutputs: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
1711
|
+
readonly stored: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1712
|
+
readonly service: import("valibot").StringSchema<undefined>;
|
|
1713
|
+
readonly location: import("valibot").StringSchema<undefined>;
|
|
1714
|
+
readonly entity: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1715
|
+
readonly contentType: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1716
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1717
|
+
}, undefined>, undefined>;
|
|
1718
|
+
readonly unknownServices: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1719
|
+
readonly invalidEntries: import("valibot").NumberSchema<undefined>;
|
|
1720
|
+
readonly omitted: import("valibot").NumberSchema<undefined>;
|
|
1721
|
+
readonly parseFailed: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1722
|
+
readonly undeclared: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1723
|
+
}, undefined>, undefined>;
|
|
1688
1724
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1689
1725
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
1690
1726
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2649,6 +2685,10 @@ export declare const pullMainHumanTestContract: {
|
|
|
2649
2685
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2650
2686
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
2651
2687
|
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2688
|
+
readonly binaryOutput: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2689
|
+
readonly storageServiceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>;
|
|
2690
|
+
readonly contextServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
2691
|
+
}, undefined>, undefined>;
|
|
2652
2692
|
}, undefined>, undefined>, undefined>;
|
|
2653
2693
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2654
2694
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -2688,6 +2728,20 @@ export declare const pullMainHumanTestContract: {
|
|
|
2688
2728
|
readonly declared: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2689
2729
|
readonly unknown: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2690
2730
|
}, undefined>, undefined>;
|
|
2731
|
+
readonly binaryOutputs: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
2732
|
+
readonly stored: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2733
|
+
readonly service: import("valibot").StringSchema<undefined>;
|
|
2734
|
+
readonly location: import("valibot").StringSchema<undefined>;
|
|
2735
|
+
readonly entity: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2736
|
+
readonly contentType: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2737
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2738
|
+
}, undefined>, undefined>;
|
|
2739
|
+
readonly unknownServices: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2740
|
+
readonly invalidEntries: import("valibot").NumberSchema<undefined>;
|
|
2741
|
+
readonly omitted: import("valibot").NumberSchema<undefined>;
|
|
2742
|
+
readonly parseFailed: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2743
|
+
readonly undeclared: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2744
|
+
}, undefined>, undefined>;
|
|
2691
2745
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2692
2746
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
2693
2747
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3652,6 +3706,10 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
3652
3706
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3653
3707
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3654
3708
|
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3709
|
+
readonly binaryOutput: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
3710
|
+
readonly storageServiceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>;
|
|
3711
|
+
readonly contextServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
3712
|
+
}, undefined>, undefined>;
|
|
3655
3713
|
}, undefined>, undefined>, undefined>;
|
|
3656
3714
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3657
3715
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -3691,6 +3749,20 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
3691
3749
|
readonly declared: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3692
3750
|
readonly unknown: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3693
3751
|
}, undefined>, undefined>;
|
|
3752
|
+
readonly binaryOutputs: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
3753
|
+
readonly stored: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3754
|
+
readonly service: import("valibot").StringSchema<undefined>;
|
|
3755
|
+
readonly location: import("valibot").StringSchema<undefined>;
|
|
3756
|
+
readonly entity: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3757
|
+
readonly contentType: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3758
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3759
|
+
}, undefined>, undefined>;
|
|
3760
|
+
readonly unknownServices: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3761
|
+
readonly invalidEntries: import("valibot").NumberSchema<undefined>;
|
|
3762
|
+
readonly omitted: import("valibot").NumberSchema<undefined>;
|
|
3763
|
+
readonly parseFailed: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3764
|
+
readonly undeclared: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3765
|
+
}, undefined>, undefined>;
|
|
3694
3766
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3695
3767
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
3696
3768
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -4655,6 +4727,10 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
4655
4727
|
readonly skillId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4656
4728
|
readonly maxOutputTokens: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 256, undefined>, import("valibot").MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
4657
4729
|
readonly agentVariantId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4730
|
+
readonly binaryOutput: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
4731
|
+
readonly storageServiceId: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>;
|
|
4732
|
+
readonly contextServiceIds: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 1, undefined>, import("valibot").MaxLengthAction<string, 64, undefined>, import("valibot").RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
4733
|
+
}, undefined>, undefined>;
|
|
4658
4734
|
}, undefined>, undefined>, undefined>;
|
|
4659
4735
|
readonly skipped: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4660
4736
|
readonly noBusinessSpecs: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
@@ -4694,6 +4770,20 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
4694
4770
|
readonly declared: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4695
4771
|
readonly unknown: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4696
4772
|
}, undefined>, undefined>;
|
|
4773
|
+
readonly binaryOutputs: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
4774
|
+
readonly stored: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
4775
|
+
readonly service: import("valibot").StringSchema<undefined>;
|
|
4776
|
+
readonly location: import("valibot").StringSchema<undefined>;
|
|
4777
|
+
readonly entity: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4778
|
+
readonly contentType: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4779
|
+
readonly description: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4780
|
+
}, undefined>, undefined>;
|
|
4781
|
+
readonly unknownServices: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4782
|
+
readonly invalidEntries: import("valibot").NumberSchema<undefined>;
|
|
4783
|
+
readonly omitted: import("valibot").NumberSchema<undefined>;
|
|
4784
|
+
readonly parseFailed: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4785
|
+
readonly undeclared: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
4786
|
+
}, undefined>, undefined>;
|
|
4697
4787
|
readonly jobId: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
4698
4788
|
readonly startedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
4699
4789
|
readonly finishedAt: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
|
@@ -81,6 +81,10 @@ export declare const listPipelinesContract: {
|
|
|
81
81
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
82
82
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
83
83
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
84
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
85
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
86
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
87
|
+
}, undefined>, undefined>;
|
|
84
88
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
85
89
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
86
90
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -149,6 +153,10 @@ export declare const createPipelineContract: {
|
|
|
149
153
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
150
154
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
151
155
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
156
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
157
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
158
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
159
|
+
}, undefined>, undefined>;
|
|
152
160
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
153
161
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>, undefined>, undefined>;
|
|
154
162
|
readonly availability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"one-off", undefined>, v.LiteralSchema<"recurring", undefined>, v.LiteralSchema<"both", undefined>], undefined>, undefined>;
|
|
@@ -232,6 +240,10 @@ export declare const createPipelineContract: {
|
|
|
232
240
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
233
241
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
234
242
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
243
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
244
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
245
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
246
|
+
}, undefined>, undefined>;
|
|
235
247
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
236
248
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
237
249
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -332,6 +344,10 @@ export declare const clonePipelineContract: {
|
|
|
332
344
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
333
345
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
334
346
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
347
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
348
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
349
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
350
|
+
}, undefined>, undefined>;
|
|
335
351
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
336
352
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
337
353
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -430,6 +446,10 @@ export declare const reseedPipelineContract: {
|
|
|
430
446
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
431
447
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
432
448
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
449
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
450
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
451
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
452
|
+
}, undefined>, undefined>;
|
|
433
453
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
434
454
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
435
455
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -503,6 +523,10 @@ export declare const updatePipelineContract: {
|
|
|
503
523
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
504
524
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
505
525
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
526
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
527
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
528
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
529
|
+
}, undefined>, undefined>;
|
|
506
530
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
507
531
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>, undefined>, undefined>;
|
|
508
532
|
readonly availability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"one-off", undefined>, v.LiteralSchema<"recurring", undefined>, v.LiteralSchema<"both", undefined>], undefined>, undefined>;
|
|
@@ -586,6 +610,10 @@ export declare const updatePipelineContract: {
|
|
|
586
610
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
587
611
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
588
612
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
613
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
614
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
615
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
616
|
+
}, undefined>, undefined>;
|
|
589
617
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
590
618
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
591
619
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -687,6 +715,10 @@ export declare const organizePipelineContract: {
|
|
|
687
715
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
688
716
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
689
717
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
718
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
719
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
720
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
721
|
+
}, undefined>, undefined>;
|
|
690
722
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
691
723
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
692
724
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelines.d.ts","sourceRoot":"","sources":["../../src/routes/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"pipelines.d.ts","sourceRoot":"","sources":["../../src/routes/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKjC,CAAA"}
|
|
@@ -642,6 +642,10 @@ export declare const approveVisualConfirmContract: {
|
|
|
642
642
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
643
643
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
644
644
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
645
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
646
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
647
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
648
|
+
}, undefined>, undefined>;
|
|
645
649
|
}, undefined>, undefined>, undefined>;
|
|
646
650
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
647
651
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -681,6 +685,20 @@ export declare const approveVisualConfirmContract: {
|
|
|
681
685
|
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
682
686
|
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
683
687
|
}, undefined>, undefined>;
|
|
688
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
689
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
690
|
+
readonly service: v.StringSchema<undefined>;
|
|
691
|
+
readonly location: v.StringSchema<undefined>;
|
|
692
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
693
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
694
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
695
|
+
}, undefined>, undefined>;
|
|
696
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
697
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
698
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
699
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
700
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
701
|
+
}, undefined>, undefined>;
|
|
684
702
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
685
703
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
686
704
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1647,6 +1665,10 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1647
1665
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1648
1666
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
1649
1667
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1668
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
1669
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
1670
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
1671
|
+
}, undefined>, undefined>;
|
|
1650
1672
|
}, undefined>, undefined>, undefined>;
|
|
1651
1673
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1652
1674
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1686,6 +1708,20 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1686
1708
|
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1687
1709
|
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1688
1710
|
}, undefined>, undefined>;
|
|
1711
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
1712
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
1713
|
+
readonly service: v.StringSchema<undefined>;
|
|
1714
|
+
readonly location: v.StringSchema<undefined>;
|
|
1715
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1716
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1717
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1718
|
+
}, undefined>, undefined>;
|
|
1719
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1720
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
1721
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
1722
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1723
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1724
|
+
}, undefined>, undefined>;
|
|
1689
1725
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1690
1726
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1691
1727
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -2650,6 +2686,10 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
2650
2686
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2651
2687
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
2652
2688
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2689
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
2690
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
2691
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
2692
|
+
}, undefined>, undefined>;
|
|
2653
2693
|
}, undefined>, undefined>, undefined>;
|
|
2654
2694
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2655
2695
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -2689,6 +2729,20 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
2689
2729
|
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2690
2730
|
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2691
2731
|
}, undefined>, undefined>;
|
|
2732
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
2733
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
2734
|
+
readonly service: v.StringSchema<undefined>;
|
|
2735
|
+
readonly location: v.StringSchema<undefined>;
|
|
2736
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2737
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2738
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2739
|
+
}, undefined>, undefined>;
|
|
2740
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2741
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
2742
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
2743
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2744
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2745
|
+
}, undefined>, undefined>;
|
|
2692
2746
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2693
2747
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2694
2748
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"visual-confirm.d.ts","sourceRoot":"","sources":["../../src/routes/visual-confirm.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAc5B,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMzC,CAAA"}
|
|
@@ -519,6 +519,10 @@ export declare const createWorkspaceContract: {
|
|
|
519
519
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
520
520
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
521
521
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
522
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
523
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
524
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
525
|
+
}, undefined>, undefined>;
|
|
522
526
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
523
527
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
524
528
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1138,6 +1142,10 @@ export declare const createWorkspaceContract: {
|
|
|
1138
1142
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1139
1143
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
1140
1144
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1145
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
1146
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
1147
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
1148
|
+
}, undefined>, undefined>;
|
|
1141
1149
|
}, undefined>, undefined>, undefined>;
|
|
1142
1150
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1143
1151
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -1177,6 +1185,20 @@ export declare const createWorkspaceContract: {
|
|
|
1177
1185
|
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1178
1186
|
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1179
1187
|
}, undefined>, undefined>;
|
|
1188
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
1189
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
1190
|
+
readonly service: v.StringSchema<undefined>;
|
|
1191
|
+
readonly location: v.StringSchema<undefined>;
|
|
1192
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1193
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1194
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1195
|
+
}, undefined>, undefined>;
|
|
1196
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1197
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
1198
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
1199
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1200
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1201
|
+
}, undefined>, undefined>;
|
|
1180
1202
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1181
1203
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1182
1204
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -3203,6 +3225,10 @@ export declare const getWorkspaceContract: {
|
|
|
3203
3225
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3204
3226
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3205
3227
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3228
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
3229
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
3230
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
3231
|
+
}, undefined>, undefined>;
|
|
3206
3232
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
3207
3233
|
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3208
3234
|
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -3822,6 +3848,10 @@ export declare const getWorkspaceContract: {
|
|
|
3822
3848
|
readonly skillId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3823
3849
|
readonly maxOutputTokens: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 256, undefined>, v.MaxValueAction<number, 200000, undefined>]>, undefined>;
|
|
3824
3850
|
readonly agentVariantId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3851
|
+
readonly binaryOutput: v.OptionalSchema<v.ObjectSchema<{
|
|
3852
|
+
readonly storageServiceId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>;
|
|
3853
|
+
readonly contextServiceIds: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>, v.RegexAction<string, "must be a lower-kebab slug">]>, undefined>, undefined>;
|
|
3854
|
+
}, undefined>, undefined>;
|
|
3825
3855
|
}, undefined>, undefined>, undefined>;
|
|
3826
3856
|
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3827
3857
|
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
@@ -3861,6 +3891,20 @@ export declare const getWorkspaceContract: {
|
|
|
3861
3891
|
readonly declared: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3862
3892
|
readonly unknown: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3863
3893
|
}, undefined>, undefined>;
|
|
3894
|
+
readonly binaryOutputs: v.OptionalSchema<v.ObjectSchema<{
|
|
3895
|
+
readonly stored: v.ArraySchema<v.ObjectSchema<{
|
|
3896
|
+
readonly service: v.StringSchema<undefined>;
|
|
3897
|
+
readonly location: v.StringSchema<undefined>;
|
|
3898
|
+
readonly entity: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3899
|
+
readonly contentType: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3900
|
+
readonly description: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3901
|
+
}, undefined>, undefined>;
|
|
3902
|
+
readonly unknownServices: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3903
|
+
readonly invalidEntries: v.NumberSchema<undefined>;
|
|
3904
|
+
readonly omitted: v.NumberSchema<undefined>;
|
|
3905
|
+
readonly parseFailed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3906
|
+
readonly undeclared: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3907
|
+
}, undefined>, undefined>;
|
|
3864
3908
|
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3865
3909
|
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
3866
3910
|
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"workspaces.d.ts","sourceRoot":"","sources":["../../src/routes/workspaces.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;aAGlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA"}
|
package/dist/skill-library.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export type AccountSkill = v.InferOutput<typeof accountSkillSchema>;
|
|
|
36
36
|
* builder's skill picker (id + name + description only — NOT the full `instructions` / resource
|
|
37
37
|
* manifest, which would bloat every board load). The account catalog is shared across the
|
|
38
38
|
* account's workspaces, so this is the account's skills served through the catalog cache in one
|
|
39
|
-
* read (see
|
|
39
|
+
* read (see ADR 0024 "No N+1"). The account-settings management surface
|
|
40
40
|
* fetches the full {@link AccountSkill} via `GET /accounts/:accountId/skills` instead.
|
|
41
41
|
*/
|
|
42
42
|
export declare const skillSummarySchema: v.ObjectSchema<{
|
package/dist/skill-library.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
// ---------------------------------------------------------------------------
|
|
3
3
|
// Wire contracts for the repo-sourced Claude Skills library
|
|
4
|
-
// (
|
|
4
|
+
// (ADR 0024). An account links a repo directory of skill
|
|
5
5
|
// folders (`<skill>/SKILL.md` + sibling resources); the link is synced into the
|
|
6
6
|
// account's skill catalog, shared across its workspaces. These shapes back the
|
|
7
7
|
// account-settings management UI (link/sync/status) and, later, the palette
|
|
@@ -34,7 +34,7 @@ export const accountSkillSchema = v.object({
|
|
|
34
34
|
* builder's skill picker (id + name + description only — NOT the full `instructions` / resource
|
|
35
35
|
* manifest, which would bloat every board load). The account catalog is shared across the
|
|
36
36
|
* account's workspaces, so this is the account's skills served through the catalog cache in one
|
|
37
|
-
* read (see
|
|
37
|
+
* read (see ADR 0024 "No N+1"). The account-settings management surface
|
|
38
38
|
* fetches the full {@link AccountSkill} via `GET /accounts/:accountId/skills` instead.
|
|
39
39
|
*/
|
|
40
40
|
export const skillSummarySchema = v.object({
|