@cat-factory/contracts 0.83.0 → 0.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities.d.ts +22 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +20 -1
- package/dist/entities.js.map +1 -1
- package/dist/frontend.d.ts +55 -0
- package/dist/frontend.d.ts.map +1 -1
- package/dist/frontend.js +114 -0
- package/dist/frontend.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/package-registries.d.ts +71 -0
- package/dist/package-registries.d.ts.map +1 -0
- package/dist/package-registries.js +96 -0
- package/dist/package-registries.js.map +1 -0
- package/dist/routes/agent-runs.d.ts +10 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +40 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +5 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +25 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/package-registries.d.ts +116 -0
- package/dist/routes/package-registries.d.ts.map +1 -0
- package/dist/routes/package-registries.js +29 -0
- package/dist/routes/package-registries.js.map +1 -0
- package/dist/routes/visual-confirm.d.ts +15 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +10 -0
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +5 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-registries.d.ts","sourceRoot":"","sources":["../src/package-registries.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,kFAAkF;AAClF,eAAO,MAAM,sBAAsB,sCAAsB,CAAA;AACzD,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE3E,uFAAuF;AACvF,eAAO,MAAM,2BAA2B,2DAA2C,CAAA;AACnF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,2BAA2B,CAAC,CAAA;AAErF,sEAAsE;AACtE,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,qBAAqB,GAAG,MAAM,CAOzE;AAED,gFAAgF;AAChF,eAAO,MAAM,cAAc,qPAS1B,CAAA;AAED;;;;;;GAMG;AACH,eAAO,MAAM,0BAA0B,+PAStC,CAAA;AAED,mFAAmF;AACnF,eAAO,MAAM,wBAAwB;;;;;aAKnC,CAAA;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEpF,2EAA2E;AAC3E,eAAO,MAAM,0BAA0B;;;;;;aAMrC,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAEnF;;;;GAIG;AACH,wBAAgB,2BAA2B,CAAC,GAAG,EAAE,OAAO,GAAG,oBAAoB,EAAE,CAEhF;AAED,0EAA0E;AAC1E,eAAO,MAAM,8BAA8B;;;;;IAKzC,+DAA+D;;aAE/D,CAAA;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,8BAA8B,CAAC,CAAA;AAE3F,eAAO,MAAM,yBAAyB;;;;;;QALpC,+DAA+D;;;aAO/D,CAAA;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAErF;;;GAGG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,oBAAoB,EAAE,GAC9B,wBAAwB,EAAE,CAQ5B;AAED,8DAA8D;AAC9D,wBAAgB,2BAA2B,CAAC,GAAG,EAAE,OAAO,GAAG,wBAAwB,EAAE,CAEpF"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
// ---------------------------------------------------------------------------
|
|
3
|
+
// Private package registry wire contracts. A workspace connects the private
|
|
4
|
+
// registries its repos install from (npm private orgs, GitHub Packages) so
|
|
5
|
+
// agent containers (coder, tester, ci-fixer, preview, bootstrap, …) can
|
|
6
|
+
// resolve private dependencies on checkout: the entries ride the container
|
|
7
|
+
// job body and the harness renders them into `~/.npmrc` before the agent runs.
|
|
8
|
+
//
|
|
9
|
+
// The shape is ecosystem-discriminated (`ecosystem: 'npm'`) so pip/maven/cargo
|
|
10
|
+
// are later additive entries, not a reshape. The registry HOST is derived from
|
|
11
|
+
// the fixed vendor set — never user-supplied — so the harness can hard-allowlist
|
|
12
|
+
// where a token may be sent. Tokens are write-only: the list view carries only
|
|
13
|
+
// a non-secret summary (vendor + scopes + token tail).
|
|
14
|
+
//
|
|
15
|
+
// GitHub Packages uses an explicit token rather than reusing the GitHub App
|
|
16
|
+
// installation token: adding `packages:read` to the App would force every
|
|
17
|
+
// installation to re-approve, installation tokens expire in ~60 minutes (too
|
|
18
|
+
// short for a long run), and the npm scope's owner org can differ from the
|
|
19
|
+
// App's installation org. Reusing the App token stays a future option.
|
|
20
|
+
// ---------------------------------------------------------------------------
|
|
21
|
+
/** Package ecosystems a registry entry can serve (npm-only today, extensible). */
|
|
22
|
+
export const packageEcosystemSchema = v.picklist(['npm']);
|
|
23
|
+
/** Registry vendors a workspace can connect (fixed set — the host derives from it). */
|
|
24
|
+
export const packageRegistryVendorSchema = v.picklist(['npmjs', 'github-packages']);
|
|
25
|
+
/** The registry host each vendor resolves to. Never user-supplied. */
|
|
26
|
+
export function packageRegistryHost(vendor) {
|
|
27
|
+
switch (vendor) {
|
|
28
|
+
case 'npmjs':
|
|
29
|
+
return 'registry.npmjs.org';
|
|
30
|
+
case 'github-packages':
|
|
31
|
+
return 'npm.pkg.github.com';
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/** An npm package scope (`@org`), the granularity private registries key on. */
|
|
35
|
+
export const npmScopeSchema = v.pipe(v.string(), v.trim(), v.minLength(2), v.maxLength(215), v.regex(/^@[a-z0-9~-][a-z0-9._~-]*$/i, 'scope must look like @org (letters, digits and ._~- after the @)'));
|
|
36
|
+
/**
|
|
37
|
+
* A registry auth token. Constrained to printable ASCII with no whitespace: a
|
|
38
|
+
* registry credential is a single opaque string, and rejecting control characters
|
|
39
|
+
* (newline/CR/tab) at the write boundary stops a token from injecting extra lines
|
|
40
|
+
* into the `~/.npmrc` the harness renders it into. The min length keeps the
|
|
41
|
+
* non-secret `tokenTail` (last 4 chars) from ever revealing the whole token.
|
|
42
|
+
*/
|
|
43
|
+
export const packageRegistryTokenSchema = v.pipe(v.string(), v.trim(), v.minLength(8), v.maxLength(4096), v.regex(/^[\x21-\x7e]+$/, 'token must be a single opaque string with no spaces or control characters'));
|
|
44
|
+
/** Add one registry entry to the workspace (token write-only, never read back). */
|
|
45
|
+
export const addPackageRegistrySchema = v.object({
|
|
46
|
+
ecosystem: packageEcosystemSchema,
|
|
47
|
+
vendor: packageRegistryVendorSchema,
|
|
48
|
+
scopes: v.pipe(v.array(npmScopeSchema), v.minLength(1), v.maxLength(50)),
|
|
49
|
+
token: packageRegistryTokenSchema,
|
|
50
|
+
});
|
|
51
|
+
/** A stored registry entry — the decrypted-blob shape (token included). */
|
|
52
|
+
export const packageRegistryEntrySchema = v.object({
|
|
53
|
+
id: v.string(),
|
|
54
|
+
ecosystem: packageEcosystemSchema,
|
|
55
|
+
vendor: packageRegistryVendorSchema,
|
|
56
|
+
scopes: v.array(npmScopeSchema),
|
|
57
|
+
token: v.pipe(v.string(), v.minLength(1)),
|
|
58
|
+
});
|
|
59
|
+
/**
|
|
60
|
+
* Validate a decrypted registry-entries blob at the read boundary, so a
|
|
61
|
+
* drifted/corrupted/hand-edited row fails with a clear schema error here
|
|
62
|
+
* rather than as a malformed `.npmrc` deep inside a container install.
|
|
63
|
+
*/
|
|
64
|
+
export function parsePackageRegistryEntries(raw) {
|
|
65
|
+
return v.parse(v.array(packageRegistryEntrySchema), raw);
|
|
66
|
+
}
|
|
67
|
+
/** What `GET /package-registries` returns per entry — never the token. */
|
|
68
|
+
export const packageRegistryEntryViewSchema = v.object({
|
|
69
|
+
id: v.string(),
|
|
70
|
+
ecosystem: packageEcosystemSchema,
|
|
71
|
+
vendor: packageRegistryVendorSchema,
|
|
72
|
+
scopes: v.array(v.string()),
|
|
73
|
+
/** Last characters of the token, for recognition in the UI. */
|
|
74
|
+
tokenTail: v.string(),
|
|
75
|
+
});
|
|
76
|
+
export const packageRegistryListSchema = v.object({
|
|
77
|
+
entries: v.array(packageRegistryEntryViewSchema),
|
|
78
|
+
});
|
|
79
|
+
/**
|
|
80
|
+
* The non-secret display summary persisted alongside the sealed entries, so the
|
|
81
|
+
* list view renders without ever decrypting the tokens.
|
|
82
|
+
*/
|
|
83
|
+
export function packageRegistrySummary(entries) {
|
|
84
|
+
return entries.map((entry) => ({
|
|
85
|
+
id: entry.id,
|
|
86
|
+
ecosystem: entry.ecosystem,
|
|
87
|
+
vendor: entry.vendor,
|
|
88
|
+
scopes: [...entry.scopes],
|
|
89
|
+
tokenTail: entry.token.slice(-4),
|
|
90
|
+
}));
|
|
91
|
+
}
|
|
92
|
+
/** Validate a persisted summary blob at the read boundary. */
|
|
93
|
+
export function parsePackageRegistrySummary(raw) {
|
|
94
|
+
return v.parse(v.array(packageRegistryEntryViewSchema), raw);
|
|
95
|
+
}
|
|
96
|
+
//# sourceMappingURL=package-registries.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-registries.js","sourceRoot":"","sources":["../src/package-registries.ts"],"names":[],"mappings":"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"}
|
|
@@ -558,6 +558,11 @@ export declare const retryAgentRunContract: {
|
|
|
558
558
|
}, undefined>, undefined>, undefined>;
|
|
559
559
|
}, undefined>, undefined>;
|
|
560
560
|
}, undefined>, undefined>, undefined>;
|
|
561
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
562
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
563
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
564
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
565
|
+
}, undefined>, undefined>, undefined>;
|
|
561
566
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
562
567
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
563
568
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1163,6 +1168,11 @@ export declare const stopAgentRunContract: {
|
|
|
1163
1168
|
}, undefined>, undefined>, undefined>;
|
|
1164
1169
|
}, undefined>, undefined>;
|
|
1165
1170
|
}, undefined>, undefined>, undefined>;
|
|
1171
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1172
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1173
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1174
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1175
|
+
}, undefined>, undefined>, undefined>;
|
|
1166
1176
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1167
1177
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1168
1178
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
|
@@ -519,6 +519,11 @@ export declare const startExecutionContract: {
|
|
|
519
519
|
}, undefined>, undefined>, undefined>;
|
|
520
520
|
}, undefined>, undefined>;
|
|
521
521
|
}, undefined>, undefined>, undefined>;
|
|
522
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
523
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
524
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
525
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
526
|
+
}, undefined>, undefined>, undefined>;
|
|
522
527
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
523
528
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
524
529
|
}, undefined>;
|
|
@@ -1508,6 +1513,11 @@ export declare const resumeSpendContract: {
|
|
|
1508
1513
|
}, undefined>, undefined>, undefined>;
|
|
1509
1514
|
}, undefined>, undefined>;
|
|
1510
1515
|
}, undefined>, undefined>, undefined>;
|
|
1516
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1517
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1518
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1519
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1520
|
+
}, undefined>, undefined>, undefined>;
|
|
1511
1521
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1512
1522
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1513
1523
|
}, undefined>, undefined>;
|
|
@@ -2256,6 +2266,11 @@ export declare const resolveDecisionContract: {
|
|
|
2256
2266
|
}, undefined>, undefined>, undefined>;
|
|
2257
2267
|
}, undefined>, undefined>;
|
|
2258
2268
|
}, undefined>, undefined>, undefined>;
|
|
2269
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2270
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2271
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2272
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2273
|
+
}, undefined>, undefined>, undefined>;
|
|
2259
2274
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2260
2275
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2261
2276
|
}, undefined>;
|
|
@@ -2782,6 +2797,11 @@ export declare const approveStepContract: {
|
|
|
2782
2797
|
}, undefined>, undefined>, undefined>;
|
|
2783
2798
|
}, undefined>, undefined>;
|
|
2784
2799
|
}, undefined>, undefined>, undefined>;
|
|
2800
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2801
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2802
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
2803
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2804
|
+
}, undefined>, undefined>, undefined>;
|
|
2785
2805
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2786
2806
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2787
2807
|
}, undefined>;
|
|
@@ -3322,6 +3342,11 @@ export declare const requestStepChangesContract: {
|
|
|
3322
3342
|
}, undefined>, undefined>, undefined>;
|
|
3323
3343
|
}, undefined>, undefined>;
|
|
3324
3344
|
}, undefined>, undefined>, undefined>;
|
|
3345
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3346
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3347
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
3348
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3349
|
+
}, undefined>, undefined>, undefined>;
|
|
3325
3350
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3326
3351
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3327
3352
|
}, undefined>;
|
|
@@ -3848,6 +3873,11 @@ export declare const resolveStepExceededContract: {
|
|
|
3848
3873
|
}, undefined>, undefined>, undefined>;
|
|
3849
3874
|
}, undefined>, undefined>;
|
|
3850
3875
|
}, undefined>, undefined>, undefined>;
|
|
3876
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3877
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3878
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
3879
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3880
|
+
}, undefined>, undefined>, undefined>;
|
|
3851
3881
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3852
3882
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3853
3883
|
}, undefined>;
|
|
@@ -4372,6 +4402,11 @@ export declare const restartExecutionContract: {
|
|
|
4372
4402
|
}, undefined>, undefined>, undefined>;
|
|
4373
4403
|
}, undefined>, undefined>;
|
|
4374
4404
|
}, undefined>, undefined>, undefined>;
|
|
4405
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4406
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4407
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
4408
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4409
|
+
}, undefined>, undefined>, undefined>;
|
|
4375
4410
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4376
4411
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4377
4412
|
}, undefined>;
|
|
@@ -4898,6 +4933,11 @@ export declare const rejectStepContract: {
|
|
|
4898
4933
|
}, undefined>, undefined>, undefined>;
|
|
4899
4934
|
}, undefined>, undefined>;
|
|
4900
4935
|
}, undefined>, undefined>, undefined>;
|
|
4936
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4937
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4938
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
4939
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4940
|
+
}, undefined>, undefined>, undefined>;
|
|
4901
4941
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4902
4942
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4903
4943
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqC,MAAM,yBAAyB,CAAA;AAC3F,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAwC5B,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"execution.d.ts","sourceRoot":"","sources":["../../src/routes/execution.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO9B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOrC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOtC,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAA"}
|
|
@@ -517,6 +517,11 @@ export declare const requestHumanReviewFixContract: {
|
|
|
517
517
|
}, undefined>, undefined>, undefined>;
|
|
518
518
|
}, undefined>, undefined>;
|
|
519
519
|
}, undefined>, undefined>, undefined>;
|
|
520
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
521
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
522
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
523
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
524
|
+
}, undefined>, undefined>, undefined>;
|
|
520
525
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
521
526
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
522
527
|
}, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -516,6 +516,11 @@ export declare const confirmHumanTestContract: {
|
|
|
516
516
|
}, undefined>, undefined>, undefined>;
|
|
517
517
|
}, undefined>, undefined>;
|
|
518
518
|
}, undefined>, undefined>, undefined>;
|
|
519
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
520
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
521
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
522
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
523
|
+
}, undefined>, undefined>, undefined>;
|
|
519
524
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
520
525
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
521
526
|
}, undefined>;
|
|
@@ -1040,6 +1045,11 @@ export declare const requestHumanTestFixContract: {
|
|
|
1040
1045
|
}, undefined>, undefined>, undefined>;
|
|
1041
1046
|
}, undefined>, undefined>;
|
|
1042
1047
|
}, undefined>, undefined>, undefined>;
|
|
1048
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1049
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1050
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
1051
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1052
|
+
}, undefined>, undefined>, undefined>;
|
|
1043
1053
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1044
1054
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1045
1055
|
}, undefined>;
|
|
@@ -1562,6 +1572,11 @@ export declare const pullMainHumanTestContract: {
|
|
|
1562
1572
|
}, undefined>, undefined>, undefined>;
|
|
1563
1573
|
}, undefined>, undefined>;
|
|
1564
1574
|
}, undefined>, undefined>, undefined>;
|
|
1575
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1576
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1577
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
1578
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1579
|
+
}, undefined>, undefined>, undefined>;
|
|
1565
1580
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1566
1581
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
1567
1582
|
}, undefined>;
|
|
@@ -2084,6 +2099,11 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2084
2099
|
}, undefined>, undefined>, undefined>;
|
|
2085
2100
|
}, undefined>, undefined>;
|
|
2086
2101
|
}, undefined>, undefined>, undefined>;
|
|
2102
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2103
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2104
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
2105
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2106
|
+
}, undefined>, undefined>, undefined>;
|
|
2087
2107
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2088
2108
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2089
2109
|
}, undefined>;
|
|
@@ -2606,6 +2626,11 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
2606
2626
|
}, undefined>, undefined>, undefined>;
|
|
2607
2627
|
}, undefined>, undefined>;
|
|
2608
2628
|
}, undefined>, undefined>, undefined>;
|
|
2629
|
+
readonly notes: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2630
|
+
readonly frontendBindings: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2631
|
+
readonly envVar: import("valibot").StringSchema<undefined>;
|
|
2632
|
+
readonly serviceUrl: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2633
|
+
}, undefined>, undefined>, undefined>;
|
|
2609
2634
|
readonly initiatedBy: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2610
2635
|
readonly rev: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
2611
2636
|
}, 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"}
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * from './model-presets.js';
|
|
|
27
27
|
export * from './models.js';
|
|
28
28
|
export * from './notifications.js';
|
|
29
29
|
export * from './openrouter.js';
|
|
30
|
+
export * from './package-registries.js';
|
|
30
31
|
export * from './personal-subscriptions.js';
|
|
31
32
|
export * from './pipelines.js';
|
|
32
33
|
export * from './preview.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
package/dist/routes/index.js
CHANGED
|
@@ -30,6 +30,7 @@ export * from './model-presets.js';
|
|
|
30
30
|
export * from './models.js';
|
|
31
31
|
export * from './notifications.js';
|
|
32
32
|
export * from './openrouter.js';
|
|
33
|
+
export * from './package-registries.js';
|
|
33
34
|
export * from './personal-subscriptions.js';
|
|
34
35
|
export * from './pipelines.js';
|
|
35
36
|
export * from './preview.js';
|
package/dist/routes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { ContractNoBody } from '@toad-contracts/valibot';
|
|
2
|
+
export declare const listPackageRegistriesContract: {
|
|
3
|
+
readonly method: "get";
|
|
4
|
+
readonly pathResolver: () => string;
|
|
5
|
+
readonly responsesByStatusCode: {
|
|
6
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
7
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
8
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
9
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
10
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
11
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
12
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
13
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
14
|
+
}, undefined>, undefined>, undefined>;
|
|
15
|
+
}, undefined>;
|
|
16
|
+
}, undefined>;
|
|
17
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
18
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
19
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
20
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
21
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
22
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
23
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
24
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
25
|
+
}, undefined>, undefined>, undefined>;
|
|
26
|
+
}, undefined>;
|
|
27
|
+
}, undefined>;
|
|
28
|
+
readonly 200: import("valibot").ObjectSchema<{
|
|
29
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
30
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
31
|
+
readonly ecosystem: import("valibot").PicklistSchema<["npm"], undefined>;
|
|
32
|
+
readonly vendor: import("valibot").PicklistSchema<["npmjs", "github-packages"], undefined>;
|
|
33
|
+
readonly scopes: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
34
|
+
readonly tokenTail: import("valibot").StringSchema<undefined>;
|
|
35
|
+
}, undefined>, undefined>;
|
|
36
|
+
}, undefined>;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
export declare const addPackageRegistryContract: {
|
|
40
|
+
readonly method: "post";
|
|
41
|
+
readonly pathResolver: () => string;
|
|
42
|
+
readonly requestBodySchema: import("valibot").ObjectSchema<{
|
|
43
|
+
readonly ecosystem: import("valibot").PicklistSchema<["npm"], undefined>;
|
|
44
|
+
readonly vendor: import("valibot").PicklistSchema<["npmjs", "github-packages"], undefined>;
|
|
45
|
+
readonly scopes: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 2, undefined>, import("valibot").MaxLengthAction<string, 215, undefined>, import("valibot").RegexAction<string, "scope must look like @org (letters, digits and ._~- after the @)">]>, undefined>, import("valibot").MinLengthAction<string[], 1, undefined>, import("valibot").MaxLengthAction<string[], 50, undefined>]>;
|
|
46
|
+
readonly token: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").TrimAction, import("valibot").MinLengthAction<string, 8, undefined>, import("valibot").MaxLengthAction<string, 4096, undefined>, import("valibot").RegexAction<string, "token must be a single opaque string with no spaces or control characters">]>;
|
|
47
|
+
}, undefined>;
|
|
48
|
+
readonly responsesByStatusCode: {
|
|
49
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
50
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
51
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
52
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
53
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
54
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
55
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
56
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
57
|
+
}, undefined>, undefined>, undefined>;
|
|
58
|
+
}, undefined>;
|
|
59
|
+
}, undefined>;
|
|
60
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
61
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
62
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
63
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
64
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
65
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
66
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
67
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
68
|
+
}, undefined>, undefined>, undefined>;
|
|
69
|
+
}, undefined>;
|
|
70
|
+
}, undefined>;
|
|
71
|
+
readonly 200: import("valibot").ObjectSchema<{
|
|
72
|
+
readonly entries: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
73
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
74
|
+
readonly ecosystem: import("valibot").PicklistSchema<["npm"], undefined>;
|
|
75
|
+
readonly vendor: import("valibot").PicklistSchema<["npmjs", "github-packages"], undefined>;
|
|
76
|
+
readonly scopes: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
77
|
+
readonly tokenTail: import("valibot").StringSchema<undefined>;
|
|
78
|
+
}, undefined>, undefined>;
|
|
79
|
+
}, undefined>;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
export declare const deletePackageRegistryContract: {
|
|
83
|
+
readonly method: "delete";
|
|
84
|
+
readonly requestPathParamsSchema: import("valibot").ObjectSchema<{
|
|
85
|
+
entryId: import("valibot").StringSchema<undefined>;
|
|
86
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
87
|
+
readonly pathResolver: ({ entryId }: {
|
|
88
|
+
entryId: string;
|
|
89
|
+
}) => string;
|
|
90
|
+
readonly responsesByStatusCode: {
|
|
91
|
+
readonly '4xx': import("valibot").ObjectSchema<{
|
|
92
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
93
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
94
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
95
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
96
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
97
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
98
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
99
|
+
}, undefined>, undefined>, undefined>;
|
|
100
|
+
}, undefined>;
|
|
101
|
+
}, undefined>;
|
|
102
|
+
readonly '5xx': import("valibot").ObjectSchema<{
|
|
103
|
+
readonly error: import("valibot").ObjectSchema<{
|
|
104
|
+
readonly code: import("valibot").StringSchema<undefined>;
|
|
105
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
106
|
+
readonly details: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
|
|
107
|
+
readonly issues: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
108
|
+
readonly path: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
109
|
+
readonly message: import("valibot").StringSchema<undefined>;
|
|
110
|
+
}, undefined>, undefined>, undefined>;
|
|
111
|
+
}, undefined>;
|
|
112
|
+
}, undefined>;
|
|
113
|
+
readonly 204: typeof ContractNoBody;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
//# sourceMappingURL=package-registries.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-registries.d.ts","sourceRoot":"","sources":["../../src/routes/package-registries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIxC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKxC,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ContractNoBody, defineApiContract } from '@toad-contracts/valibot';
|
|
2
|
+
import { addPackageRegistrySchema, packageRegistryListSchema } from '../package-registries.js';
|
|
3
|
+
import { errorResponses, singleStringParam } from './_shared.js';
|
|
4
|
+
// ---------------------------------------------------------------------------
|
|
5
|
+
// Private package registry route contracts: the workspace's registry entries
|
|
6
|
+
// agent containers use to resolve private dependencies. Mounted under
|
|
7
|
+
// `/workspaces/:workspaceId`, so the paths here are relative to that prefix.
|
|
8
|
+
// Edit = delete + re-add (tokens are write-only, so a whole-list PUT would
|
|
9
|
+
// force re-sending every token). See PackageRegistriesController.
|
|
10
|
+
// ---------------------------------------------------------------------------
|
|
11
|
+
const entryIdParams = singleStringParam('entryId');
|
|
12
|
+
export const listPackageRegistriesContract = defineApiContract({
|
|
13
|
+
method: 'get',
|
|
14
|
+
pathResolver: () => '/package-registries',
|
|
15
|
+
responsesByStatusCode: { 200: packageRegistryListSchema, ...errorResponses },
|
|
16
|
+
});
|
|
17
|
+
export const addPackageRegistryContract = defineApiContract({
|
|
18
|
+
method: 'post',
|
|
19
|
+
pathResolver: () => '/package-registries',
|
|
20
|
+
requestBodySchema: addPackageRegistrySchema,
|
|
21
|
+
responsesByStatusCode: { 200: packageRegistryListSchema, ...errorResponses },
|
|
22
|
+
});
|
|
23
|
+
export const deletePackageRegistryContract = defineApiContract({
|
|
24
|
+
method: 'delete',
|
|
25
|
+
requestPathParamsSchema: entryIdParams,
|
|
26
|
+
pathResolver: ({ entryId }) => `/package-registries/${entryId}`,
|
|
27
|
+
responsesByStatusCode: { 204: ContractNoBody, ...errorResponses },
|
|
28
|
+
});
|
|
29
|
+
//# sourceMappingURL=package-registries.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-registries.js","sourceRoot":"","sources":["../../src/routes/package-registries.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAA;AAC9F,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAEhE,8EAA8E;AAC9E,6EAA6E;AAC7E,sEAAsE;AACtE,6EAA6E;AAC7E,2EAA2E;AAC3E,kEAAkE;AAClE,8EAA8E;AAE9E,MAAM,aAAa,GAAG,iBAAiB,CAAC,SAAS,CAAC,CAAA;AAElD,MAAM,CAAC,MAAM,6BAA6B,GAAG,iBAAiB,CAAC;IAC7D,MAAM,EAAE,KAAK;IACb,YAAY,EAAE,GAAG,EAAE,CAAC,qBAAqB;IACzC,qBAAqB,EAAE,EAAE,GAAG,EAAE,yBAAyB,EAAE,GAAG,cAAc,EAAE;CAC7E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,iBAAiB,CAAC;IAC1D,MAAM,EAAE,MAAM;IACd,YAAY,EAAE,GAAG,EAAE,CAAC,qBAAqB;IACzC,iBAAiB,EAAE,wBAAwB;IAC3C,qBAAqB,EAAE,EAAE,GAAG,EAAE,yBAAyB,EAAE,GAAG,cAAc,EAAE;CAC7E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,6BAA6B,GAAG,iBAAiB,CAAC;IAC7D,MAAM,EAAE,QAAQ;IAChB,uBAAuB,EAAE,aAAa;IACtC,YAAY,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,uBAAuB,OAAO,EAAE;IAC/D,qBAAqB,EAAE,EAAE,GAAG,EAAE,cAAc,EAAE,GAAG,cAAc,EAAE;CAClE,CAAC,CAAA"}
|
|
@@ -517,6 +517,11 @@ export declare const approveVisualConfirmContract: {
|
|
|
517
517
|
}, undefined>, undefined>, undefined>;
|
|
518
518
|
}, undefined>, undefined>;
|
|
519
519
|
}, undefined>, undefined>, undefined>;
|
|
520
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
521
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
522
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
523
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
524
|
+
}, undefined>, undefined>, undefined>;
|
|
520
525
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
521
526
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
522
527
|
}, undefined>;
|
|
@@ -1041,6 +1046,11 @@ export declare const requestVisualConfirmFixContract: {
|
|
|
1041
1046
|
}, undefined>, undefined>, undefined>;
|
|
1042
1047
|
}, undefined>, undefined>;
|
|
1043
1048
|
}, undefined>, undefined>, undefined>;
|
|
1049
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1050
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1051
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1052
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1053
|
+
}, undefined>, undefined>, undefined>;
|
|
1044
1054
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1045
1055
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1046
1056
|
}, undefined>;
|
|
@@ -1563,6 +1573,11 @@ export declare const recaptureVisualConfirmContract: {
|
|
|
1563
1573
|
}, undefined>, undefined>, undefined>;
|
|
1564
1574
|
}, undefined>, undefined>;
|
|
1565
1575
|
}, undefined>, undefined>, undefined>;
|
|
1576
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1577
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1578
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
1579
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1580
|
+
}, undefined>, undefined>, undefined>;
|
|
1566
1581
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1567
1582
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1568
1583
|
}, undefined>;
|