@cat-factory/contracts 0.87.0 → 0.89.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/agent-presentation.d.ts +2 -2
- package/dist/entities.d.ts +44 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +31 -0
- package/dist/entities.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/initiative.d.ts +37 -4
- package/dist/initiative.d.ts.map +1 -1
- package/dist/initiative.js +29 -3
- package/dist/initiative.js.map +1 -1
- package/dist/public-api-keys.d.ts +54 -0
- package/dist/public-api-keys.d.ts.map +1 -0
- package/dist/public-api-keys.js +42 -0
- package/dist/public-api-keys.js.map +1 -0
- package/dist/public-api.d.ts +57 -0
- package/dist/public-api.d.ts.map +1 -0
- package/dist/public-api.js +50 -0
- package/dist/public-api.js.map +1 -0
- package/dist/result-views.d.ts +1 -1
- package/dist/result-views.d.ts.map +1 -1
- package/dist/result-views.js +1 -0
- package/dist/result-views.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +8 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/board.d.ts +10 -0
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +34 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/human-review.d.ts +4 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +20 -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/initiative.d.ts +411 -4
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/initiative.js +30 -2
- package/dist/routes/initiative.js.map +1 -1
- package/dist/routes/pipelines.d.ts +6 -0
- package/dist/routes/pipelines.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +206 -0
- package/dist/routes/public-api.d.ts.map +1 -0
- package/dist/routes/public-api.js +48 -0
- package/dist/routes/public-api.js.map +1 -0
- package/dist/routes/tasks.d.ts +3 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/visual-confirm.d.ts +12 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +28 -4
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +14 -2
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
/** One public-API key as exposed to clients — metadata only, never the secret. */
|
|
3
|
+
export declare const publicApiKeySchema: v.ObjectSchema<{
|
|
4
|
+
/** `pak_*` — also the non-secret lookup id embedded in the raw key. */
|
|
5
|
+
readonly id: v.StringSchema<undefined>;
|
|
6
|
+
readonly accountId: v.StringSchema<undefined>;
|
|
7
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
8
|
+
readonly label: v.StringSchema<undefined>;
|
|
9
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
10
|
+
readonly lastUsedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
11
|
+
/** Set when the key was revoked (tombstone); a revoked key never authenticates. */
|
|
12
|
+
readonly revokedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
13
|
+
}, undefined>;
|
|
14
|
+
export type PublicApiKey = v.InferOutput<typeof publicApiKeySchema>;
|
|
15
|
+
export declare const publicApiKeyListResultSchema: v.ObjectSchema<{
|
|
16
|
+
readonly keys: v.ArraySchema<v.ObjectSchema<{
|
|
17
|
+
/** `pak_*` — also the non-secret lookup id embedded in the raw key. */
|
|
18
|
+
readonly id: v.StringSchema<undefined>;
|
|
19
|
+
readonly accountId: v.StringSchema<undefined>;
|
|
20
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
21
|
+
readonly label: v.StringSchema<undefined>;
|
|
22
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
23
|
+
readonly lastUsedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
24
|
+
/** Set when the key was revoked (tombstone); a revoked key never authenticates. */
|
|
25
|
+
readonly revokedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
26
|
+
}, undefined>, undefined>;
|
|
27
|
+
}, undefined>;
|
|
28
|
+
export type PublicApiKeyListResult = v.InferOutput<typeof publicApiKeyListResultSchema>;
|
|
29
|
+
/** Mint a new key. Only a label is supplied; the scope comes from the mounting workspace. */
|
|
30
|
+
export declare const createPublicApiKeySchema: v.ObjectSchema<{
|
|
31
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
32
|
+
}, undefined>;
|
|
33
|
+
export type CreatePublicApiKeyInput = v.InferOutput<typeof createPublicApiKeySchema>;
|
|
34
|
+
/**
|
|
35
|
+
* The create response: the key metadata PLUS the raw secret (`cf_live_<id>.<secret>`),
|
|
36
|
+
* returned exactly once and never again — the caller must store it now.
|
|
37
|
+
*/
|
|
38
|
+
export declare const createdPublicApiKeySchema: v.ObjectSchema<{
|
|
39
|
+
readonly key: v.ObjectSchema<{
|
|
40
|
+
/** `pak_*` — also the non-secret lookup id embedded in the raw key. */
|
|
41
|
+
readonly id: v.StringSchema<undefined>;
|
|
42
|
+
readonly accountId: v.StringSchema<undefined>;
|
|
43
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
44
|
+
readonly label: v.StringSchema<undefined>;
|
|
45
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
46
|
+
readonly lastUsedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
47
|
+
/** Set when the key was revoked (tombstone); a revoked key never authenticates. */
|
|
48
|
+
readonly revokedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
49
|
+
}, undefined>;
|
|
50
|
+
/** The full raw key, shown once. Store it — it is not recoverable. */
|
|
51
|
+
readonly secret: v.StringSchema<undefined>;
|
|
52
|
+
}, undefined>;
|
|
53
|
+
export type CreatedPublicApiKey = v.InferOutput<typeof createdPublicApiKeySchema>;
|
|
54
|
+
//# sourceMappingURL=public-api-keys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-api-keys.d.ts","sourceRoot":"","sources":["../src/public-api-keys.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiB5B,kFAAkF;AAClF,eAAO,MAAM,kBAAkB;IAC7B,uEAAuE;;;;;;;IAOvE,mFAAmF;;aAEnF,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEnE,eAAO,MAAM,4BAA4B;;QAZvC,uEAAuE;;;;;;;QAOvE,mFAAmF;;;aAKM,CAAA;AAC3F,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEvF,6FAA6F;AAC7F,eAAO,MAAM,wBAAwB;;aAEnC,CAAA;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEpF;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;QAzBpC,uEAAuE;;;;;;;QAOvE,mFAAmF;;;IAoBnF,sEAAsE;;aAEtE,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
// ---------------------------------------------------------------------------
|
|
3
|
+
// Inbound public-API key wire contracts.
|
|
4
|
+
//
|
|
5
|
+
// Unlike the direct-provider API keys (`api-keys.ts`, OUTBOUND credentials the
|
|
6
|
+
// platform hands to an LLM vendor and therefore stores ENCRYPTED so it can be
|
|
7
|
+
// recovered), a public-API key authenticates an EXTERNAL CALLER to our own
|
|
8
|
+
// `/api/v1` surface. The platform only ever VERIFIES it, never replays it, so
|
|
9
|
+
// the secret is stored as a one-way peppered hash (`HMAC-SHA256(secret,
|
|
10
|
+
// ENCRYPTION_KEY)`) — irrecoverable, DB-leak-resistant. The raw key is returned
|
|
11
|
+
// exactly once, on create; thereafter only metadata is exposed.
|
|
12
|
+
//
|
|
13
|
+
// A key is scoped to one account + workspace: every `/api/v1` call it makes is
|
|
14
|
+
// bound to that workspace.
|
|
15
|
+
// ---------------------------------------------------------------------------
|
|
16
|
+
/** One public-API key as exposed to clients — metadata only, never the secret. */
|
|
17
|
+
export const publicApiKeySchema = v.object({
|
|
18
|
+
/** `pak_*` — also the non-secret lookup id embedded in the raw key. */
|
|
19
|
+
id: v.string(),
|
|
20
|
+
accountId: v.string(),
|
|
21
|
+
workspaceId: v.string(),
|
|
22
|
+
label: v.string(),
|
|
23
|
+
createdAt: v.number(),
|
|
24
|
+
lastUsedAt: v.nullable(v.number()),
|
|
25
|
+
/** Set when the key was revoked (tombstone); a revoked key never authenticates. */
|
|
26
|
+
revokedAt: v.nullable(v.number()),
|
|
27
|
+
});
|
|
28
|
+
export const publicApiKeyListResultSchema = v.object({ keys: v.array(publicApiKeySchema) });
|
|
29
|
+
/** Mint a new key. Only a label is supplied; the scope comes from the mounting workspace. */
|
|
30
|
+
export const createPublicApiKeySchema = v.object({
|
|
31
|
+
label: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(120)),
|
|
32
|
+
});
|
|
33
|
+
/**
|
|
34
|
+
* The create response: the key metadata PLUS the raw secret (`cf_live_<id>.<secret>`),
|
|
35
|
+
* returned exactly once and never again — the caller must store it now.
|
|
36
|
+
*/
|
|
37
|
+
export const createdPublicApiKeySchema = v.object({
|
|
38
|
+
key: publicApiKeySchema,
|
|
39
|
+
/** The full raw key, shown once. Store it — it is not recoverable. */
|
|
40
|
+
secret: v.string(),
|
|
41
|
+
});
|
|
42
|
+
//# sourceMappingURL=public-api-keys.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-api-keys.js","sourceRoot":"","sources":["../src/public-api-keys.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAE5B,8EAA8E;AAC9E,yCAAyC;AACzC,EAAE;AACF,+EAA+E;AAC/E,8EAA8E;AAC9E,2EAA2E;AAC3E,8EAA8E;AAC9E,wEAAwE;AACxE,gFAAgF;AAChF,gEAAgE;AAChE,EAAE;AACF,+EAA+E;AAC/E,2BAA2B;AAC3B,8EAA8E;AAE9E,kFAAkF;AAClF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,uEAAuE;IACvE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAClC,mFAAmF;IACnF,SAAS,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAClC,CAAC,CAAA;AAGF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAA;AAG3F,6FAA6F;AAC7F,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;CACtE,CAAC,CAAA;AAGF;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,GAAG,EAAE,kBAAkB;IACvB,sEAAsE;IACtE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
/** Start an initiative run. */
|
|
3
|
+
export declare const createInitiativeJobSchema: v.ObjectSchema<{
|
|
4
|
+
/** Id of a PUBLIC, inline pipeline (e.g. `pl_initiative_breakdown`). */
|
|
5
|
+
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
6
|
+
/** The initiative brief — becomes the run's task description. */
|
|
7
|
+
readonly input: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 50000, undefined>]>;
|
|
8
|
+
/** Optional human-readable title for the run; defaults to a truncated `input`. */
|
|
9
|
+
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
10
|
+
}, undefined>;
|
|
11
|
+
export type CreateInitiativeJobInput = v.InferOutput<typeof createInitiativeJobSchema>;
|
|
12
|
+
/**
|
|
13
|
+
* The coarse public job status, mapped from the internal execution status:
|
|
14
|
+
* `done` → `succeeded`, `failed` → `failed`, everything else (running / paused /
|
|
15
|
+
* blocked) → `running`. External callers never see the block/board internals.
|
|
16
|
+
*/
|
|
17
|
+
export declare const publicJobStatusSchema: v.PicklistSchema<["running", "succeeded", "failed"], undefined>;
|
|
18
|
+
export type PublicJobStatus = v.InferOutput<typeof publicJobStatusSchema>;
|
|
19
|
+
/** The persisted result of a finished run — the terminal step's output. */
|
|
20
|
+
export declare const publicJobResultSchema: v.ObjectSchema<{
|
|
21
|
+
/** The agent's prose output (the final reply). */
|
|
22
|
+
readonly output: v.StringSchema<undefined>;
|
|
23
|
+
/** The structured decomposition, when the agent produced one (`step.custom`). */
|
|
24
|
+
readonly data: v.NullableSchema<v.UnknownSchema, undefined>;
|
|
25
|
+
}, undefined>;
|
|
26
|
+
export type PublicJobResult = v.InferOutput<typeof publicJobResultSchema>;
|
|
27
|
+
/** A public job resource — the external view of a headless initiative run. */
|
|
28
|
+
export declare const publicJobSchema: v.ObjectSchema<{
|
|
29
|
+
readonly jobId: v.StringSchema<undefined>;
|
|
30
|
+
readonly status: v.PicklistSchema<["running", "succeeded", "failed"], undefined>;
|
|
31
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
32
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
33
|
+
/** Present once the run reaches `succeeded`; null while running or on failure. */
|
|
34
|
+
readonly result: v.NullableSchema<v.ObjectSchema<{
|
|
35
|
+
/** The agent's prose output (the final reply). */
|
|
36
|
+
readonly output: v.StringSchema<undefined>;
|
|
37
|
+
/** The structured decomposition, when the agent produced one (`step.custom`). */
|
|
38
|
+
readonly data: v.NullableSchema<v.UnknownSchema, undefined>;
|
|
39
|
+
}, undefined>, undefined>;
|
|
40
|
+
/** Present when `status` is `failed`; null otherwise. */
|
|
41
|
+
readonly error: v.NullableSchema<v.ObjectSchema<{
|
|
42
|
+
readonly code: v.StringSchema<undefined>;
|
|
43
|
+
readonly message: v.StringSchema<undefined>;
|
|
44
|
+
}, undefined>, undefined>;
|
|
45
|
+
}, undefined>;
|
|
46
|
+
export type PublicJob = v.InferOutput<typeof publicJobSchema>;
|
|
47
|
+
/** The `202` returned by `POST /initiatives`: the job id + where to follow it. */
|
|
48
|
+
export declare const initiativeAcceptedSchema: v.ObjectSchema<{
|
|
49
|
+
readonly jobId: v.StringSchema<undefined>;
|
|
50
|
+
readonly status: v.PicklistSchema<["running", "succeeded", "failed"], undefined>;
|
|
51
|
+
readonly links: v.ObjectSchema<{
|
|
52
|
+
readonly self: v.StringSchema<undefined>;
|
|
53
|
+
readonly events: v.StringSchema<undefined>;
|
|
54
|
+
}, undefined>;
|
|
55
|
+
}, undefined>;
|
|
56
|
+
export type InitiativeAccepted = v.InferOutput<typeof initiativeAcceptedSchema>;
|
|
57
|
+
//# sourceMappingURL=public-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAY5B,+BAA+B;AAC/B,eAAO,MAAM,yBAAyB;IACpC,wEAAwE;;IAExE,iEAAiE;;IAEjE,kFAAkF;;aAElF,CAAA;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAEtF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,iEAAiD,CAAA;AACnF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE,2EAA2E;AAC3E,eAAO,MAAM,qBAAqB;IAChC,kDAAkD;;IAElD,iFAAiF;;aAEjF,CAAA;AACF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEzE,8EAA8E;AAC9E,eAAO,MAAM,eAAe;;;;;IAK1B,kFAAkF;;QAblF,kDAAkD;;QAElD,iFAAiF;;;IAajF,yDAAyD;;;;;aAEzD,CAAA;AACF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,eAAe,CAAC,CAAA;AAE7D,kFAAkF;AAClF,eAAO,MAAM,wBAAwB;;;;;;;aAInC,CAAA;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAA"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
// ---------------------------------------------------------------------------
|
|
3
|
+
// Public-API wire contracts (the `/api/v1` surface for external systems).
|
|
4
|
+
//
|
|
5
|
+
// First use-case: "break down an initiative". An external caller picks a public,
|
|
6
|
+
// inline (no-GitHub) pipeline and supplies an initial brief; the platform runs it
|
|
7
|
+
// headlessly and persists the result in the DB for asynchronous retrieval (poll
|
|
8
|
+
// `GET /jobs/:id` or subscribe to `GET /jobs/:id/events` over SSE). Nothing is
|
|
9
|
+
// committed to GitHub.
|
|
10
|
+
// ---------------------------------------------------------------------------
|
|
11
|
+
/** Start an initiative run. */
|
|
12
|
+
export const createInitiativeJobSchema = v.object({
|
|
13
|
+
/** Id of a PUBLIC, inline pipeline (e.g. `pl_initiative_breakdown`). */
|
|
14
|
+
pipelineId: v.pipe(v.string(), v.trim(), v.minLength(1)),
|
|
15
|
+
/** The initiative brief — becomes the run's task description. */
|
|
16
|
+
input: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(50_000)),
|
|
17
|
+
/** Optional human-readable title for the run; defaults to a truncated `input`. */
|
|
18
|
+
title: v.optional(v.pipe(v.string(), v.trim(), v.maxLength(200))),
|
|
19
|
+
});
|
|
20
|
+
/**
|
|
21
|
+
* The coarse public job status, mapped from the internal execution status:
|
|
22
|
+
* `done` → `succeeded`, `failed` → `failed`, everything else (running / paused /
|
|
23
|
+
* blocked) → `running`. External callers never see the block/board internals.
|
|
24
|
+
*/
|
|
25
|
+
export const publicJobStatusSchema = v.picklist(['running', 'succeeded', 'failed']);
|
|
26
|
+
/** The persisted result of a finished run — the terminal step's output. */
|
|
27
|
+
export const publicJobResultSchema = v.object({
|
|
28
|
+
/** The agent's prose output (the final reply). */
|
|
29
|
+
output: v.string(),
|
|
30
|
+
/** The structured decomposition, when the agent produced one (`step.custom`). */
|
|
31
|
+
data: v.nullable(v.unknown()),
|
|
32
|
+
});
|
|
33
|
+
/** A public job resource — the external view of a headless initiative run. */
|
|
34
|
+
export const publicJobSchema = v.object({
|
|
35
|
+
jobId: v.string(),
|
|
36
|
+
status: publicJobStatusSchema,
|
|
37
|
+
pipelineId: v.string(),
|
|
38
|
+
createdAt: v.number(),
|
|
39
|
+
/** Present once the run reaches `succeeded`; null while running or on failure. */
|
|
40
|
+
result: v.nullable(publicJobResultSchema),
|
|
41
|
+
/** Present when `status` is `failed`; null otherwise. */
|
|
42
|
+
error: v.nullable(v.object({ code: v.string(), message: v.string() })),
|
|
43
|
+
});
|
|
44
|
+
/** The `202` returned by `POST /initiatives`: the job id + where to follow it. */
|
|
45
|
+
export const initiativeAcceptedSchema = v.object({
|
|
46
|
+
jobId: v.string(),
|
|
47
|
+
status: publicJobStatusSchema,
|
|
48
|
+
links: v.object({ self: v.string(), events: v.string() }),
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=public-api.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAE5B,8EAA8E;AAC9E,0EAA0E;AAC1E,EAAE;AACF,iFAAiF;AACjF,kFAAkF;AAClF,gFAAgF;AAChF,+EAA+E;AAC/E,uBAAuB;AACvB,8EAA8E;AAE9E,+BAA+B;AAC/B,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,wEAAwE;IACxE,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;IACxD,iEAAiE;IACjE,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IACxE,kFAAkF;IAClF,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;CAClE,CAAC,CAAA;AAGF;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAA;AAGnF,2EAA2E;AAC3E,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,kDAAkD;IAClD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,iFAAiF;IACjF,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC9B,CAAC,CAAA;AAGF,8EAA8E;AAC9E,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,qBAAqB;IAC7B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,kFAAkF;IAClF,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IACzC,yDAAyD;IACzD,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;CACvE,CAAC,CAAA;AAGF,kFAAkF;AAClF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,qBAAqB;IAC7B,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;CAC1D,CAAC,CAAA"}
|
package/dist/result-views.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const RESULT_VIEW_IDS: readonly ['requirements-review', 'clarity-review', 'brainstorm', 'tester', 'human-test', 'visual-confirm', 'gate', 'consensus-session', 'generic-structured', 'service-spec', 'follow-ups', 'merger', 'initiative-tracker'];
|
|
1
|
+
export declare const RESULT_VIEW_IDS: readonly ['requirements-review', 'clarity-review', 'brainstorm', 'tester', 'human-test', 'visual-confirm', 'gate', 'consensus-session', 'generic-structured', 'service-spec', 'follow-ups', 'merger', 'initiative-tracker', 'initiative-planning'];
|
|
2
2
|
export type ResultViewId = (typeof RESULT_VIEW_IDS)[number];
|
|
3
3
|
/** Set form, for `O(1)` membership checks (e.g. boot-time registration validation). */
|
|
4
4
|
export declare const RESULT_VIEW_ID_SET: ReadonlySet<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"result-views.d.ts","sourceRoot":"","sources":["../src/result-views.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,eAAe,YAC1B,qBAAqB,EACrB,gBAAgB,EAChB,YAAY,EACZ,QAAQ,EACR,YAAY,EACZ,gBAAgB,EAChB,MAAM,EACN,mBAAmB,EACnB,oBAAoB,EACpB,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,oBAAoB,
|
|
1
|
+
{"version":3,"file":"result-views.d.ts","sourceRoot":"","sources":["../src/result-views.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,eAAe,YAC1B,qBAAqB,EACrB,gBAAgB,EAChB,YAAY,EACZ,QAAQ,EACR,YAAY,EACZ,gBAAgB,EAChB,MAAM,EACN,mBAAmB,EACnB,oBAAoB,EACpB,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,oBAAoB,EACpB,qBAAqB,CACb,CAAA;AAEV,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3D,uFAAuF;AACvF,eAAO,MAAM,kBAAkB,EAAE,WAAW,CAAC,MAAM,CAA4B,CAAA"}
|
package/dist/result-views.js
CHANGED
|
@@ -27,6 +27,7 @@ export const RESULT_VIEW_IDS = [
|
|
|
27
27
|
'follow-ups',
|
|
28
28
|
'merger',
|
|
29
29
|
'initiative-tracker',
|
|
30
|
+
'initiative-planning',
|
|
30
31
|
];
|
|
31
32
|
/** Set form, for `O(1)` membership checks (e.g. boot-time registration validation). */
|
|
32
33
|
export const RESULT_VIEW_ID_SET = new Set(RESULT_VIEW_IDS);
|
package/dist/result-views.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"result-views.js","sourceRoot":"","sources":["../src/result-views.ts"],"names":[],"mappings":"AAAA,8EAA8E;AAC9E,4EAA4E;AAC5E,oFAAoF;AACpF,EAAE;AACF,8EAA8E;AAC9E,yFAAyF;AACzF,2FAA2F;AAC3F,0FAA0F;AAC1F,qFAAqF;AACrF,4BAA4B;AAC5B,mEAAmE;AACnE,EAAE;AACF,0FAA0F;AAC1F,0EAA0E;AAC1E,8EAA8E;AAE9E,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,qBAAqB;IACrB,gBAAgB;IAChB,YAAY;IACZ,QAAQ;IACR,YAAY;IACZ,gBAAgB;IAChB,MAAM;IACN,mBAAmB;IACnB,oBAAoB;IACpB,cAAc;IACd,YAAY;IACZ,QAAQ;IACR,oBAAoB;
|
|
1
|
+
{"version":3,"file":"result-views.js","sourceRoot":"","sources":["../src/result-views.ts"],"names":[],"mappings":"AAAA,8EAA8E;AAC9E,4EAA4E;AAC5E,oFAAoF;AACpF,EAAE;AACF,8EAA8E;AAC9E,yFAAyF;AACzF,2FAA2F;AAC3F,0FAA0F;AAC1F,qFAAqF;AACrF,4BAA4B;AAC5B,mEAAmE;AACnE,EAAE;AACF,0FAA0F;AAC1F,0EAA0E;AAC1E,8EAA8E;AAE9E,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,qBAAqB;IACrB,gBAAgB;IAChB,YAAY;IACZ,QAAQ;IACR,YAAY;IACZ,gBAAgB;IAChB,MAAM;IACN,mBAAmB;IACnB,oBAAoB;IACpB,cAAc;IACd,YAAY;IACZ,QAAQ;IACR,oBAAoB;IACpB,qBAAqB;CACb,CAAA;AAIV,uFAAuF;AACvF,MAAM,CAAC,MAAM,kBAAkB,GAAwB,IAAI,GAAG,CAAC,eAAe,CAAC,CAAA"}
|
|
@@ -404,6 +404,9 @@ export declare const retryAgentRunContract: {
|
|
|
404
404
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
405
405
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
406
406
|
}, undefined>, undefined>, undefined>;
|
|
407
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
408
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
409
|
+
}, undefined>, undefined>, undefined>;
|
|
407
410
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
408
411
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
409
412
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -571,6 +574,7 @@ export declare const retryAgentRunContract: {
|
|
|
571
574
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
572
575
|
}, undefined>, undefined>, undefined>;
|
|
573
576
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
577
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
574
578
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
575
579
|
}, undefined>, v.ObjectSchema<{
|
|
576
580
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -1021,6 +1025,9 @@ export declare const stopAgentRunContract: {
|
|
|
1021
1025
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1022
1026
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1023
1027
|
}, undefined>, undefined>, undefined>;
|
|
1028
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1029
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1030
|
+
}, undefined>, undefined>, undefined>;
|
|
1024
1031
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1025
1032
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
1026
1033
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -1188,6 +1195,7 @@ export declare const stopAgentRunContract: {
|
|
|
1188
1195
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1189
1196
|
}, undefined>, undefined>, undefined>;
|
|
1190
1197
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1198
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1191
1199
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1192
1200
|
}, undefined>, v.ObjectSchema<{
|
|
1193
1201
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"agent-runs.d.ts","sourceRoot":"","sources":["../../src/routes/agent-runs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAsB5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA"}
|
package/dist/routes/board.d.ts
CHANGED
|
@@ -216,6 +216,7 @@ export declare const addFrameContract: {
|
|
|
216
216
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
217
217
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
218
218
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
219
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
219
220
|
}, undefined>;
|
|
220
221
|
};
|
|
221
222
|
};
|
|
@@ -439,6 +440,7 @@ export declare const addServiceFromRepoContract: {
|
|
|
439
440
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
440
441
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
441
442
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
443
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
442
444
|
}, undefined>;
|
|
443
445
|
};
|
|
444
446
|
};
|
|
@@ -677,6 +679,7 @@ export declare const addTaskContract: {
|
|
|
677
679
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
678
680
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
679
681
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
682
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
680
683
|
}, undefined>;
|
|
681
684
|
};
|
|
682
685
|
};
|
|
@@ -902,6 +905,7 @@ export declare const addModuleContract: {
|
|
|
902
905
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
903
906
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
904
907
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
908
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
905
909
|
}, undefined>;
|
|
906
910
|
};
|
|
907
911
|
};
|
|
@@ -1124,6 +1128,7 @@ export declare const addEpicContract: {
|
|
|
1124
1128
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1125
1129
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1126
1130
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1131
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1127
1132
|
}, undefined>;
|
|
1128
1133
|
};
|
|
1129
1134
|
};
|
|
@@ -1345,6 +1350,7 @@ export declare const assignEpicContract: {
|
|
|
1345
1350
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1346
1351
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1347
1352
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
1353
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1348
1354
|
}, undefined>;
|
|
1349
1355
|
};
|
|
1350
1356
|
};
|
|
@@ -2546,6 +2552,7 @@ export declare const updateBlockContract: {
|
|
|
2546
2552
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2547
2553
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2548
2554
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2555
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2549
2556
|
}, undefined>;
|
|
2550
2557
|
};
|
|
2551
2558
|
};
|
|
@@ -2770,6 +2777,7 @@ export declare const moveBlockContract: {
|
|
|
2770
2777
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2771
2778
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2772
2779
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2780
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2773
2781
|
}, undefined>;
|
|
2774
2782
|
};
|
|
2775
2783
|
};
|
|
@@ -2995,6 +3003,7 @@ export declare const reparentBlockContract: {
|
|
|
2995
3003
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2996
3004
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2997
3005
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
3006
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2998
3007
|
}, undefined>;
|
|
2999
3008
|
};
|
|
3000
3009
|
};
|
|
@@ -3250,6 +3259,7 @@ export declare const toggleDependencyContract: {
|
|
|
3250
3259
|
readonly responsibleProductUserId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3251
3260
|
readonly trackerCommentOnPrOpen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
3252
3261
|
readonly trackerResolveOnMerge: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
3262
|
+
readonly internal: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3253
3263
|
}, undefined>;
|
|
3254
3264
|
};
|
|
3255
3265
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"board.d.ts","sourceRoot":"","sources":["../../src/routes/board.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAwB3E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3B,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKrC,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM1B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK1B,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM9B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM5B,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK9B,CAAA;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA"}
|
|
@@ -365,6 +365,9 @@ export declare const startExecutionContract: {
|
|
|
365
365
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
366
366
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
367
367
|
}, undefined>, undefined>, undefined>;
|
|
368
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
369
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
370
|
+
}, undefined>, undefined>, undefined>;
|
|
368
371
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
369
372
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
370
373
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -532,6 +535,7 @@ export declare const startExecutionContract: {
|
|
|
532
535
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
533
536
|
}, undefined>, undefined>, undefined>;
|
|
534
537
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
538
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
535
539
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
536
540
|
}, undefined>;
|
|
537
541
|
};
|
|
@@ -751,6 +755,7 @@ export declare const cancelExecutionContract: {
|
|
|
751
755
|
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
752
756
|
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
753
757
|
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
758
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
754
759
|
}, undefined>;
|
|
755
760
|
};
|
|
756
761
|
};
|
|
@@ -970,6 +975,7 @@ export declare const mergeBlockContract: {
|
|
|
970
975
|
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
971
976
|
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
972
977
|
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
978
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
973
979
|
}, undefined>;
|
|
974
980
|
};
|
|
975
981
|
};
|
|
@@ -1368,6 +1374,9 @@ export declare const resumeSpendContract: {
|
|
|
1368
1374
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1369
1375
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1370
1376
|
}, undefined>, undefined>, undefined>;
|
|
1377
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1378
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1379
|
+
}, undefined>, undefined>, undefined>;
|
|
1371
1380
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1372
1381
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
1373
1382
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -1535,6 +1544,7 @@ export declare const resumeSpendContract: {
|
|
|
1535
1544
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1536
1545
|
}, undefined>, undefined>, undefined>;
|
|
1537
1546
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1547
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1538
1548
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1539
1549
|
}, undefined>, undefined>;
|
|
1540
1550
|
};
|
|
@@ -2128,6 +2138,9 @@ export declare const resolveDecisionContract: {
|
|
|
2128
2138
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2129
2139
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2130
2140
|
}, undefined>, undefined>, undefined>;
|
|
2141
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2142
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2143
|
+
}, undefined>, undefined>, undefined>;
|
|
2131
2144
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2132
2145
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
2133
2146
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -2295,6 +2308,7 @@ export declare const resolveDecisionContract: {
|
|
|
2295
2308
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2296
2309
|
}, undefined>, undefined>, undefined>;
|
|
2297
2310
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2311
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2298
2312
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2299
2313
|
}, undefined>;
|
|
2300
2314
|
};
|
|
@@ -2666,6 +2680,9 @@ export declare const approveStepContract: {
|
|
|
2666
2680
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2667
2681
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2668
2682
|
}, undefined>, undefined>, undefined>;
|
|
2683
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2684
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2685
|
+
}, undefined>, undefined>, undefined>;
|
|
2669
2686
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2670
2687
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
2671
2688
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -2833,6 +2850,7 @@ export declare const approveStepContract: {
|
|
|
2833
2850
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2834
2851
|
}, undefined>, undefined>, undefined>;
|
|
2835
2852
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2853
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2836
2854
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2837
2855
|
}, undefined>;
|
|
2838
2856
|
};
|
|
@@ -3218,6 +3236,9 @@ export declare const requestStepChangesContract: {
|
|
|
3218
3236
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3219
3237
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3220
3238
|
}, undefined>, undefined>, undefined>;
|
|
3239
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3240
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3241
|
+
}, undefined>, undefined>, undefined>;
|
|
3221
3242
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3222
3243
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
3223
3244
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -3385,6 +3406,7 @@ export declare const requestStepChangesContract: {
|
|
|
3385
3406
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3386
3407
|
}, undefined>, undefined>, undefined>;
|
|
3387
3408
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3409
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3388
3410
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3389
3411
|
}, undefined>;
|
|
3390
3412
|
};
|
|
@@ -3756,6 +3778,9 @@ export declare const resolveStepExceededContract: {
|
|
|
3756
3778
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3757
3779
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3758
3780
|
}, undefined>, undefined>, undefined>;
|
|
3781
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3782
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3783
|
+
}, undefined>, undefined>, undefined>;
|
|
3759
3784
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3760
3785
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
3761
3786
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -3923,6 +3948,7 @@ export declare const resolveStepExceededContract: {
|
|
|
3923
3948
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3924
3949
|
}, undefined>, undefined>, undefined>;
|
|
3925
3950
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3951
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3926
3952
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3927
3953
|
}, undefined>;
|
|
3928
3954
|
};
|
|
@@ -4292,6 +4318,9 @@ export declare const restartExecutionContract: {
|
|
|
4292
4318
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4293
4319
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4294
4320
|
}, undefined>, undefined>, undefined>;
|
|
4321
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4322
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4323
|
+
}, undefined>, undefined>, undefined>;
|
|
4295
4324
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4296
4325
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
4297
4326
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -4459,6 +4488,7 @@ export declare const restartExecutionContract: {
|
|
|
4459
4488
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4460
4489
|
}, undefined>, undefined>, undefined>;
|
|
4461
4490
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
4491
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4462
4492
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
4463
4493
|
}, undefined>;
|
|
4464
4494
|
};
|
|
@@ -4830,6 +4860,9 @@ export declare const rejectStepContract: {
|
|
|
4830
4860
|
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
4831
4861
|
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4832
4862
|
}, undefined>, undefined>, undefined>;
|
|
4863
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4864
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
4865
|
+
}, undefined>, undefined>, undefined>;
|
|
4833
4866
|
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
4834
4867
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
4835
4868
|
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
@@ -4997,6 +5030,7 @@ export declare const rejectStepContract: {
|
|
|
4997
5030
|
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
4998
5031
|
}, undefined>, undefined>, undefined>;
|
|
4999
5032
|
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
5033
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5000
5034
|
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
5001
5035
|
}, undefined>;
|
|
5002
5036
|
};
|
|
@@ -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"}
|