@cat-factory/contracts 0.123.0 → 0.123.1
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 +10 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +10 -0
- package/dist/entities.js.map +1 -1
- package/dist/routes/board.d.ts +746 -0
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/board.js +14 -0
- package/dist/routes/board.js.map +1 -1
- package/dist/routes/execution.d.ts +2 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/initiative.d.ts +1 -0
- package/dist/routes/initiative.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +3 -0
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +2071 -1401
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +341 -0
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/snapshot.js +7 -0
- package/dist/snapshot.js.map +1 -1
- package/package.json +1 -1
|
@@ -406,6 +406,7 @@ export declare const createWorkspaceContract: {
|
|
|
406
406
|
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
407
407
|
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
408
408
|
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
409
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
409
410
|
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
410
411
|
}, undefined>, undefined>;
|
|
411
412
|
readonly pipelines: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -1499,360 +1500,18 @@ export declare const createWorkspaceContract: {
|
|
|
1499
1500
|
readonly createdAt: v.NumberSchema<undefined>;
|
|
1500
1501
|
readonly mountCount: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1501
1502
|
}, undefined>, undefined>, undefined>;
|
|
1502
|
-
readonly
|
|
1503
|
-
readonly waitingEscalationMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100000, undefined>]>;
|
|
1504
|
-
readonly taskLimitMode: v.PicklistSchema<["off", "shared", "per_type"], undefined>;
|
|
1505
|
-
readonly taskLimitShared: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
1506
|
-
readonly taskLimitPerType: v.NullableSchema<v.RecordSchema<v.PicklistSchema<["feature", "bug", "document", "spike"], undefined>, v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>, undefined>;
|
|
1507
|
-
readonly storeAgentContext: v.BooleanSchema<undefined>;
|
|
1508
|
-
readonly artifactRetentionDays: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 3650, undefined>]>;
|
|
1509
|
-
readonly kaizenEnabled: v.BooleanSchema<undefined>;
|
|
1510
|
-
readonly delegateAgentsToRunnerPool: v.BooleanSchema<undefined>;
|
|
1511
|
-
readonly spendCurrency: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToUpperCaseAction, v.LengthAction<string, 3, undefined>, v.RegexAction<string, "currency must be a 3-letter ISO 4217 code">]>, undefined>;
|
|
1512
|
-
readonly spendMonthlyLimit: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
1513
|
-
}, undefined>, undefined>;
|
|
1514
|
-
readonly customAgentKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1515
|
-
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1516
|
-
readonly presentation: v.ObjectSchema<{
|
|
1517
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1518
|
-
readonly icon: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1519
|
-
readonly color: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>;
|
|
1520
|
-
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1521
|
-
readonly category: v.OptionalSchema<v.PicklistSchema<["review", "design", "build", "test", "docs", "gates"], undefined>, undefined>;
|
|
1522
|
-
readonly resultView: v.OptionalSchema<v.PicklistSchema<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", "doc-interview"], undefined>, undefined>;
|
|
1523
|
-
}, undefined>;
|
|
1524
|
-
readonly container: v.BooleanSchema<undefined>;
|
|
1525
|
-
}, undefined>, undefined>, undefined>;
|
|
1526
|
-
readonly environmentBackendKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1527
|
-
readonly kind: v.StringSchema<undefined>;
|
|
1528
|
-
readonly label: v.StringSchema<undefined>;
|
|
1529
|
-
readonly engines: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1530
|
-
}, undefined>, undefined>, undefined>;
|
|
1531
|
-
readonly runnerBackendKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1532
|
-
readonly kind: v.StringSchema<undefined>;
|
|
1533
|
-
readonly label: v.StringSchema<undefined>;
|
|
1534
|
-
readonly engines: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1535
|
-
}, undefined>, undefined>, undefined>;
|
|
1536
|
-
readonly pipelineCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1537
|
-
readonly riskPolicyCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1538
|
-
readonly modelPresetCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1539
|
-
readonly initiatives: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1503
|
+
readonly archivedServices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1540
1504
|
readonly id: v.StringSchema<undefined>;
|
|
1541
|
-
readonly
|
|
1542
|
-
readonly
|
|
1543
|
-
readonly
|
|
1544
|
-
readonly
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
readonly constraints: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1548
|
-
readonly nonGoals: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1549
|
-
readonly qa: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1550
|
-
readonly id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1551
|
-
readonly question: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1552
|
-
readonly answer: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1553
|
-
readonly status: v.OptionalSchema<v.PicklistSchema<["open", "dismissed"], undefined>, "open">;
|
|
1554
|
-
readonly recommendation: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, undefined>;
|
|
1555
|
-
}, undefined>, undefined>, readonly []>;
|
|
1556
|
-
readonly interview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1557
|
-
readonly round: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
1558
|
-
readonly maxRounds: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1559
|
-
readonly status: v.PicklistSchema<["awaiting", "done"], undefined>;
|
|
1560
|
-
}, undefined>, undefined>, undefined>;
|
|
1561
|
-
readonly analysisSummary: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 8000, undefined>]>, "">;
|
|
1562
|
-
readonly phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1563
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1564
|
-
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1565
|
-
readonly goal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1566
|
-
readonly maxConcurrent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
1567
|
-
readonly checkpoint: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1568
|
-
readonly checkpointClearedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1569
|
-
}, undefined>, undefined>, readonly []>;
|
|
1570
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1571
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1572
|
-
readonly phaseId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1573
|
-
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1574
|
-
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 8000, undefined>]>;
|
|
1575
|
-
readonly dependsOn: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, readonly []>;
|
|
1576
|
-
readonly estimate: v.OptionalSchema<v.ObjectSchema<{
|
|
1577
|
-
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1578
|
-
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1579
|
-
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1580
|
-
readonly rationale: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1581
|
-
}, undefined>, undefined>;
|
|
1582
|
-
readonly pipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1583
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "pr_open", "done", "blocked", "skipped"], undefined>;
|
|
1584
|
-
readonly blockId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1585
|
-
readonly pr: v.OptionalSchema<v.ObjectSchema<{
|
|
1586
|
-
readonly url: v.StringSchema<undefined>;
|
|
1587
|
-
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1588
|
-
}, undefined>, undefined>;
|
|
1589
|
-
readonly note: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1590
|
-
readonly spawn: v.OptionalSchema<v.ObjectSchema<{
|
|
1591
|
-
readonly taskType: v.OptionalSchema<v.PicklistSchema<["feature", "bug", "document", "spike"], undefined>, undefined>;
|
|
1592
|
-
readonly taskTypeFields: v.OptionalSchema<v.ObjectSchema<{
|
|
1593
|
-
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
1594
|
-
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1595
|
-
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
1596
|
-
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
1597
|
-
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1598
|
-
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
1599
|
-
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1600
|
-
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1601
|
-
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1602
|
-
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1603
|
-
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1604
|
-
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1605
|
-
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1606
|
-
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1607
|
-
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1608
|
-
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1609
|
-
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1610
|
-
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1611
|
-
}, undefined>, undefined>;
|
|
1612
|
-
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1613
|
-
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
1614
|
-
readonly gates: v.OptionalSchema<v.ArraySchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1615
|
-
}, undefined>, undefined>;
|
|
1616
|
-
}, undefined>, undefined>, readonly []>;
|
|
1617
|
-
readonly policy: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1618
|
-
readonly maxConcurrent: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>;
|
|
1619
|
-
readonly rules: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1620
|
-
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1621
|
-
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1622
|
-
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1623
|
-
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1624
|
-
}, undefined>, undefined>, readonly []>;
|
|
1625
|
-
readonly defaultPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1626
|
-
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">;
|
|
1627
|
-
}, undefined>, undefined>, undefined>;
|
|
1628
|
-
readonly decisions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1629
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1630
|
-
readonly at: v.NumberSchema<undefined>;
|
|
1631
|
-
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1632
|
-
readonly detail: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1633
|
-
readonly source: v.PicklistSchema<["planning", "human", "agent"], undefined>;
|
|
1634
|
-
}, undefined>, undefined>, readonly []>;
|
|
1635
|
-
readonly deviations: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1636
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1637
|
-
readonly at: v.NumberSchema<undefined>;
|
|
1638
|
-
readonly itemId: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, undefined>;
|
|
1639
|
-
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1640
|
-
readonly resolution: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1641
|
-
}, undefined>, undefined>, readonly []>;
|
|
1642
|
-
readonly followUps: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1643
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1644
|
-
readonly at: v.NumberSchema<undefined>;
|
|
1645
|
-
readonly sourceItemId: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, undefined>;
|
|
1646
|
-
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1647
|
-
readonly detail: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1648
|
-
readonly status: v.PicklistSchema<["open", "promoted", "dismissed"], undefined>;
|
|
1649
|
-
readonly promotedItemId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1650
|
-
}, undefined>, undefined>, readonly []>;
|
|
1651
|
-
readonly caveats: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1652
|
-
readonly status: v.PicklistSchema<["planning", "awaiting_approval", "executing", "paused", "done", "cancelled"], undefined>;
|
|
1653
|
-
readonly doc: v.OptionalSchema<v.ObjectSchema<{
|
|
1654
|
-
readonly version: v.NumberSchema<undefined>;
|
|
1655
|
-
readonly hash: v.StringSchema<undefined>;
|
|
1656
|
-
readonly committedAt: v.NumberSchema<undefined>;
|
|
1657
|
-
}, undefined>, undefined>;
|
|
1658
|
-
readonly rev: v.NumberSchema<undefined>;
|
|
1659
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
1660
|
-
readonly updatedAt: v.NumberSchema<undefined>;
|
|
1661
|
-
}, undefined>, undefined>, undefined>;
|
|
1662
|
-
readonly initiativePresets: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1663
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1664
|
-
readonly presentation: v.ObjectSchema<{
|
|
1665
|
-
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1666
|
-
readonly icon: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1667
|
-
readonly color: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>;
|
|
1668
|
-
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1505
|
+
readonly title: v.StringSchema<undefined>;
|
|
1506
|
+
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
1507
|
+
readonly description: v.StringSchema<undefined>;
|
|
1508
|
+
readonly position: v.ObjectSchema<{
|
|
1509
|
+
readonly x: v.NumberSchema<undefined>;
|
|
1510
|
+
readonly y: v.NumberSchema<undefined>;
|
|
1669
1511
|
}, undefined>;
|
|
1670
|
-
readonly
|
|
1671
|
-
readonly
|
|
1672
|
-
readonly
|
|
1673
|
-
readonly help: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1674
|
-
readonly placeholder: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1675
|
-
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1676
|
-
readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
|
|
1677
|
-
readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1678
|
-
readonly value: v.StringSchema<undefined>;
|
|
1679
|
-
readonly label: v.StringSchema<undefined>;
|
|
1680
|
-
}, undefined>, undefined>, undefined>;
|
|
1681
|
-
readonly default: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1682
|
-
readonly defaultValues: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1683
|
-
readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
|
|
1684
|
-
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1685
|
-
readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
|
|
1686
|
-
readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1687
|
-
}, undefined>, undefined>;
|
|
1688
|
-
}, undefined>, undefined>;
|
|
1689
|
-
readonly planningPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1690
|
-
readonly interview: v.PicklistSchema<["full", "skip"], undefined>;
|
|
1691
|
-
readonly humanReviewDefault: v.BooleanSchema<undefined>;
|
|
1692
|
-
readonly defaultFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
1693
|
-
readonly policyDefaults: v.OptionalSchema<Omit<v.ObjectSchema<{
|
|
1694
|
-
readonly maxConcurrent: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>;
|
|
1695
|
-
readonly rules: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1696
|
-
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1697
|
-
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1698
|
-
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1699
|
-
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1700
|
-
}, undefined>, undefined>, readonly []>;
|
|
1701
|
-
readonly defaultPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1702
|
-
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">;
|
|
1703
|
-
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
1704
|
-
readonly entries: {
|
|
1705
|
-
readonly maxConcurrent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
1706
|
-
readonly rules: v.OptionalSchema<v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1707
|
-
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1708
|
-
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1709
|
-
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1710
|
-
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
1711
|
-
}, undefined>, undefined>, readonly []>, undefined>;
|
|
1712
|
-
readonly defaultPipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1713
|
-
readonly onMissingEstimate: v.OptionalSchema<v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">, undefined>;
|
|
1714
|
-
};
|
|
1715
|
-
readonly "~standard": v.StandardProps<{
|
|
1716
|
-
maxConcurrent?: number | undefined;
|
|
1717
|
-
rules?: {
|
|
1718
|
-
pipelineId: string;
|
|
1719
|
-
minComplexity?: number | undefined;
|
|
1720
|
-
minRisk?: number | undefined;
|
|
1721
|
-
minImpact?: number | undefined;
|
|
1722
|
-
}[] | undefined;
|
|
1723
|
-
defaultPipelineId?: string | undefined;
|
|
1724
|
-
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
1725
|
-
}, {
|
|
1726
|
-
maxConcurrent?: number | undefined;
|
|
1727
|
-
rules?: {
|
|
1728
|
-
pipelineId: string;
|
|
1729
|
-
minComplexity?: number | undefined;
|
|
1730
|
-
minRisk?: number | undefined;
|
|
1731
|
-
minImpact?: number | undefined;
|
|
1732
|
-
}[] | undefined;
|
|
1733
|
-
defaultPipelineId?: string | undefined;
|
|
1734
|
-
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
1735
|
-
}>;
|
|
1736
|
-
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
1737
|
-
maxConcurrent?: number | undefined;
|
|
1738
|
-
rules?: {
|
|
1739
|
-
pipelineId: string;
|
|
1740
|
-
minComplexity?: number | undefined;
|
|
1741
|
-
minRisk?: number | undefined;
|
|
1742
|
-
minImpact?: number | undefined;
|
|
1743
|
-
}[] | undefined;
|
|
1744
|
-
defaultPipelineId?: string | undefined;
|
|
1745
|
-
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
1746
|
-
}, v.ArrayIssue | v.IntegerIssue<number> | v.MaxLengthIssue<string, 80> | v.MaxValueIssue<number, 1> | v.MaxValueIssue<number, 20> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue>;
|
|
1747
|
-
readonly "~types"?: {
|
|
1748
|
-
readonly input: {
|
|
1749
|
-
maxConcurrent?: number | undefined;
|
|
1750
|
-
rules?: {
|
|
1751
|
-
pipelineId: string;
|
|
1752
|
-
minComplexity?: number | undefined;
|
|
1753
|
-
minRisk?: number | undefined;
|
|
1754
|
-
minImpact?: number | undefined;
|
|
1755
|
-
}[] | undefined;
|
|
1756
|
-
defaultPipelineId?: string | undefined;
|
|
1757
|
-
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
1758
|
-
};
|
|
1759
|
-
readonly output: {
|
|
1760
|
-
maxConcurrent?: number | undefined;
|
|
1761
|
-
rules?: {
|
|
1762
|
-
pipelineId: string;
|
|
1763
|
-
minComplexity?: number | undefined;
|
|
1764
|
-
minRisk?: number | undefined;
|
|
1765
|
-
minImpact?: number | undefined;
|
|
1766
|
-
}[] | undefined;
|
|
1767
|
-
defaultPipelineId?: string | undefined;
|
|
1768
|
-
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
1769
|
-
};
|
|
1770
|
-
readonly issue: v.ArrayIssue | v.IntegerIssue<number> | v.MaxLengthIssue<string, 80> | v.MaxValueIssue<number, 1> | v.MaxValueIssue<number, 20> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
1771
|
-
} | undefined;
|
|
1772
|
-
}, undefined>;
|
|
1773
|
-
readonly phaseTemplate: v.OptionalSchema<v.ObjectSchema<{
|
|
1774
|
-
readonly phases: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1775
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1776
|
-
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1777
|
-
readonly goal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1778
|
-
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1779
|
-
readonly checkpoint: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1780
|
-
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1781
|
-
id: string;
|
|
1782
|
-
title: string;
|
|
1783
|
-
goal: string;
|
|
1784
|
-
required?: boolean | undefined;
|
|
1785
|
-
checkpoint?: boolean | undefined;
|
|
1786
|
-
}[], 1, undefined>, v.CheckAction<{
|
|
1787
|
-
id: string;
|
|
1788
|
-
title: string;
|
|
1789
|
-
goal: string;
|
|
1790
|
-
required?: boolean | undefined;
|
|
1791
|
-
checkpoint?: boolean | undefined;
|
|
1792
|
-
}[], "Phase template ids must be unique.">]>;
|
|
1793
|
-
readonly allowAdditionalPhases: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1794
|
-
}, undefined>, undefined>;
|
|
1795
|
-
readonly probe: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1796
|
-
}, undefined>, undefined>, undefined>;
|
|
1797
|
-
readonly infraSetup: v.OptionalSchema<v.ObjectSchema<{
|
|
1798
|
-
readonly ephemeralEnvironments: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
1799
|
-
readonly agentExecutor: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
1800
|
-
readonly binaryStorage: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
1801
|
-
}, undefined>, undefined>;
|
|
1802
|
-
}, undefined>;
|
|
1803
|
-
};
|
|
1804
|
-
};
|
|
1805
|
-
export declare const getWorkspaceContract: {
|
|
1806
|
-
readonly method: "get";
|
|
1807
|
-
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
1808
|
-
workspaceId: v.StringSchema<undefined>;
|
|
1809
|
-
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
1810
|
-
readonly pathResolver: ({ workspaceId }: {
|
|
1811
|
-
workspaceId: string;
|
|
1812
|
-
}) => string;
|
|
1813
|
-
readonly responsesByStatusCode: {
|
|
1814
|
-
readonly '4xx': v.ObjectSchema<{
|
|
1815
|
-
readonly error: v.ObjectSchema<{
|
|
1816
|
-
readonly code: v.StringSchema<undefined>;
|
|
1817
|
-
readonly message: v.StringSchema<undefined>;
|
|
1818
|
-
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1819
|
-
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1820
|
-
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1821
|
-
readonly message: v.StringSchema<undefined>;
|
|
1822
|
-
}, undefined>, undefined>, undefined>;
|
|
1823
|
-
}, undefined>;
|
|
1824
|
-
}, undefined>;
|
|
1825
|
-
readonly '5xx': v.ObjectSchema<{
|
|
1826
|
-
readonly error: v.ObjectSchema<{
|
|
1827
|
-
readonly code: v.StringSchema<undefined>;
|
|
1828
|
-
readonly message: v.StringSchema<undefined>;
|
|
1829
|
-
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
1830
|
-
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1831
|
-
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
1832
|
-
readonly message: v.StringSchema<undefined>;
|
|
1833
|
-
}, undefined>, undefined>, undefined>;
|
|
1834
|
-
}, undefined>;
|
|
1835
|
-
}, undefined>;
|
|
1836
|
-
readonly 200: v.ObjectSchema<{
|
|
1837
|
-
readonly workspace: v.ObjectSchema<{
|
|
1838
|
-
readonly id: v.StringSchema<undefined>;
|
|
1839
|
-
readonly name: v.StringSchema<undefined>;
|
|
1840
|
-
readonly description: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1841
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
1842
|
-
readonly accountId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
1843
|
-
}, undefined>;
|
|
1844
|
-
readonly blocks: v.ArraySchema<v.ObjectSchema<{
|
|
1845
|
-
readonly id: v.StringSchema<undefined>;
|
|
1846
|
-
readonly title: v.StringSchema<undefined>;
|
|
1847
|
-
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
1848
|
-
readonly description: v.StringSchema<undefined>;
|
|
1849
|
-
readonly position: v.ObjectSchema<{
|
|
1850
|
-
readonly x: v.NumberSchema<undefined>;
|
|
1851
|
-
readonly y: v.NumberSchema<undefined>;
|
|
1852
|
-
}, undefined>;
|
|
1853
|
-
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
1854
|
-
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1855
|
-
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1512
|
+
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
1513
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1514
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1856
1515
|
}, undefined>, undefined>;
|
|
1857
1516
|
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
1858
1517
|
readonly progress: v.NumberSchema<undefined>;
|
|
@@ -2172,427 +1831,721 @@ export declare const getWorkspaceContract: {
|
|
|
2172
1831
|
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2173
1832
|
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2174
1833
|
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1834
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2175
1835
|
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1836
|
+
}, undefined>, undefined>, undefined>;
|
|
1837
|
+
readonly settings: v.OptionalSchema<v.ObjectSchema<{
|
|
1838
|
+
readonly waitingEscalationMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100000, undefined>]>;
|
|
1839
|
+
readonly taskLimitMode: v.PicklistSchema<["off", "shared", "per_type"], undefined>;
|
|
1840
|
+
readonly taskLimitShared: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
1841
|
+
readonly taskLimitPerType: v.NullableSchema<v.RecordSchema<v.PicklistSchema<["feature", "bug", "document", "spike"], undefined>, v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>, undefined>;
|
|
1842
|
+
readonly storeAgentContext: v.BooleanSchema<undefined>;
|
|
1843
|
+
readonly artifactRetentionDays: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 3650, undefined>]>;
|
|
1844
|
+
readonly kaizenEnabled: v.BooleanSchema<undefined>;
|
|
1845
|
+
readonly delegateAgentsToRunnerPool: v.BooleanSchema<undefined>;
|
|
1846
|
+
readonly spendCurrency: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.ToUpperCaseAction, v.LengthAction<string, 3, undefined>, v.RegexAction<string, "currency must be a 3-letter ISO 4217 code">]>, undefined>;
|
|
1847
|
+
readonly spendMonthlyLimit: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
2176
1848
|
}, undefined>, undefined>;
|
|
2177
|
-
readonly
|
|
1849
|
+
readonly customAgentKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1850
|
+
readonly kind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
1851
|
+
readonly presentation: v.ObjectSchema<{
|
|
1852
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1853
|
+
readonly icon: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
1854
|
+
readonly color: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>;
|
|
1855
|
+
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
1856
|
+
readonly category: v.OptionalSchema<v.PicklistSchema<["review", "design", "build", "test", "docs", "gates"], undefined>, undefined>;
|
|
1857
|
+
readonly resultView: v.OptionalSchema<v.PicklistSchema<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", "doc-interview"], undefined>, undefined>;
|
|
1858
|
+
}, undefined>;
|
|
1859
|
+
readonly container: v.BooleanSchema<undefined>;
|
|
1860
|
+
}, undefined>, undefined>, undefined>;
|
|
1861
|
+
readonly environmentBackendKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1862
|
+
readonly kind: v.StringSchema<undefined>;
|
|
1863
|
+
readonly label: v.StringSchema<undefined>;
|
|
1864
|
+
readonly engines: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1865
|
+
}, undefined>, undefined>, undefined>;
|
|
1866
|
+
readonly runnerBackendKinds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1867
|
+
readonly kind: v.StringSchema<undefined>;
|
|
1868
|
+
readonly label: v.StringSchema<undefined>;
|
|
1869
|
+
readonly engines: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
1870
|
+
}, undefined>, undefined>, undefined>;
|
|
1871
|
+
readonly pipelineCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1872
|
+
readonly riskPolicyCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1873
|
+
readonly modelPresetCatalogVersions: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.NumberSchema<undefined>, undefined>, undefined>;
|
|
1874
|
+
readonly initiatives: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2178
1875
|
readonly id: v.StringSchema<undefined>;
|
|
2179
|
-
readonly
|
|
2180
|
-
readonly
|
|
2181
|
-
readonly
|
|
2182
|
-
readonly
|
|
2183
|
-
readonly
|
|
2184
|
-
readonly
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
1876
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
1877
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1878
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1879
|
+
readonly presetId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1880
|
+
readonly presetInputs: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, v.UnionSchema<[v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, v.MaxLengthAction<string[], 50, undefined>]>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>, undefined>;
|
|
1881
|
+
readonly goal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 8000, undefined>]>, "">;
|
|
1882
|
+
readonly constraints: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1883
|
+
readonly nonGoals: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1884
|
+
readonly qa: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1885
|
+
readonly id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1886
|
+
readonly question: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1887
|
+
readonly answer: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1888
|
+
readonly status: v.OptionalSchema<v.PicklistSchema<["open", "dismissed"], undefined>, "open">;
|
|
1889
|
+
readonly recommendation: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, undefined>;
|
|
1890
|
+
}, undefined>, undefined>, readonly []>;
|
|
1891
|
+
readonly interview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1892
|
+
readonly round: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
1893
|
+
readonly maxRounds: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
1894
|
+
readonly status: v.PicklistSchema<["awaiting", "done"], undefined>;
|
|
1895
|
+
}, undefined>, undefined>, undefined>;
|
|
1896
|
+
readonly analysisSummary: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 8000, undefined>]>, "">;
|
|
1897
|
+
readonly phases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1898
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1899
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1900
|
+
readonly goal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1901
|
+
readonly maxConcurrent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
1902
|
+
readonly checkpoint: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
1903
|
+
readonly checkpointClearedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1904
|
+
}, undefined>, undefined>, readonly []>;
|
|
1905
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1906
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1907
|
+
readonly phaseId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1908
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1909
|
+
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 8000, undefined>]>;
|
|
1910
|
+
readonly dependsOn: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, readonly []>;
|
|
1911
|
+
readonly estimate: v.OptionalSchema<v.ObjectSchema<{
|
|
1912
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1913
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1914
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
1915
|
+
readonly rationale: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
2192
1916
|
}, undefined>, undefined>;
|
|
2193
|
-
readonly
|
|
2194
|
-
readonly
|
|
2195
|
-
readonly
|
|
2196
|
-
|
|
1917
|
+
readonly pipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1918
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "pr_open", "done", "blocked", "skipped"], undefined>;
|
|
1919
|
+
readonly blockId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1920
|
+
readonly pr: v.OptionalSchema<v.ObjectSchema<{
|
|
1921
|
+
readonly url: v.StringSchema<undefined>;
|
|
1922
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1923
|
+
}, undefined>, undefined>;
|
|
1924
|
+
readonly note: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1925
|
+
readonly spawn: v.OptionalSchema<v.ObjectSchema<{
|
|
1926
|
+
readonly taskType: v.OptionalSchema<v.PicklistSchema<["feature", "bug", "document", "spike"], undefined>, undefined>;
|
|
1927
|
+
readonly taskTypeFields: v.OptionalSchema<v.ObjectSchema<{
|
|
1928
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
1929
|
+
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1930
|
+
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
1931
|
+
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
1932
|
+
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
1933
|
+
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
1934
|
+
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
1935
|
+
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1936
|
+
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1937
|
+
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1938
|
+
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1939
|
+
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1940
|
+
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1941
|
+
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1942
|
+
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1943
|
+
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1944
|
+
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1945
|
+
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1946
|
+
}, undefined>, undefined>;
|
|
1947
|
+
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
1948
|
+
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
1949
|
+
readonly gates: v.OptionalSchema<v.ArraySchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
1950
|
+
}, undefined>, undefined>;
|
|
1951
|
+
}, undefined>, undefined>, readonly []>;
|
|
1952
|
+
readonly policy: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
1953
|
+
readonly maxConcurrent: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>;
|
|
1954
|
+
readonly rules: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1955
|
+
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2197
1956
|
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2198
1957
|
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2199
1958
|
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
readonly
|
|
2206
|
-
readonly
|
|
2207
|
-
readonly
|
|
2208
|
-
readonly
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
readonly
|
|
2212
|
-
readonly
|
|
2213
|
-
readonly
|
|
2214
|
-
|
|
1959
|
+
}, undefined>, undefined>, readonly []>;
|
|
1960
|
+
readonly defaultPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1961
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">;
|
|
1962
|
+
}, undefined>, undefined>, undefined>;
|
|
1963
|
+
readonly decisions: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1964
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1965
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1966
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1967
|
+
readonly detail: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1968
|
+
readonly source: v.PicklistSchema<["planning", "human", "agent"], undefined>;
|
|
1969
|
+
}, undefined>, undefined>, readonly []>;
|
|
1970
|
+
readonly deviations: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1971
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1972
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1973
|
+
readonly itemId: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, undefined>;
|
|
1974
|
+
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
1975
|
+
readonly resolution: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
1976
|
+
}, undefined>, undefined>, readonly []>;
|
|
1977
|
+
readonly followUps: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1978
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1979
|
+
readonly at: v.NumberSchema<undefined>;
|
|
1980
|
+
readonly sourceItemId: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>, undefined>;
|
|
1981
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
1982
|
+
readonly detail: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
1983
|
+
readonly status: v.PicklistSchema<["open", "promoted", "dismissed"], undefined>;
|
|
1984
|
+
readonly promotedItemId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
1985
|
+
}, undefined>, undefined>, readonly []>;
|
|
1986
|
+
readonly caveats: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, readonly []>;
|
|
1987
|
+
readonly status: v.PicklistSchema<["planning", "awaiting_approval", "executing", "paused", "done", "cancelled"], undefined>;
|
|
1988
|
+
readonly doc: v.OptionalSchema<v.ObjectSchema<{
|
|
1989
|
+
readonly version: v.NumberSchema<undefined>;
|
|
1990
|
+
readonly hash: v.StringSchema<undefined>;
|
|
1991
|
+
readonly committedAt: v.NumberSchema<undefined>;
|
|
1992
|
+
}, undefined>, undefined>;
|
|
1993
|
+
readonly rev: v.NumberSchema<undefined>;
|
|
1994
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
1995
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
1996
|
+
}, undefined>, undefined>, undefined>;
|
|
1997
|
+
readonly initiativePresets: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
1998
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
1999
|
+
readonly presentation: v.ObjectSchema<{
|
|
2000
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2001
|
+
readonly icon: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2002
|
+
readonly color: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 40, undefined>]>;
|
|
2003
|
+
readonly description: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2004
|
+
}, undefined>;
|
|
2005
|
+
readonly fields: v.ArraySchema<v.ObjectSchema<{
|
|
2006
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2007
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2008
|
+
readonly help: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2009
|
+
readonly placeholder: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2010
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2011
|
+
readonly type: v.OptionalSchema<v.PicklistSchema<["text", "password", "select", "number", "checkbox", "textarea", "checkbox-group", "path"], undefined>, undefined>;
|
|
2012
|
+
readonly options: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2013
|
+
readonly value: v.StringSchema<undefined>;
|
|
2014
|
+
readonly label: v.StringSchema<undefined>;
|
|
2015
|
+
}, undefined>, undefined>, undefined>;
|
|
2016
|
+
readonly default: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2017
|
+
readonly defaultValues: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2018
|
+
readonly showWhen: v.OptionalSchema<v.ObjectSchema<{
|
|
2019
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2020
|
+
readonly equals: v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.BooleanSchema<undefined>, v.NumberSchema<undefined>], undefined>, undefined>;
|
|
2021
|
+
readonly includes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2022
|
+
}, undefined>, undefined>;
|
|
2023
|
+
}, undefined>, undefined>;
|
|
2024
|
+
readonly planningPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2025
|
+
readonly interview: v.PicklistSchema<["full", "skip"], undefined>;
|
|
2026
|
+
readonly humanReviewDefault: v.BooleanSchema<undefined>;
|
|
2027
|
+
readonly defaultFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
2028
|
+
readonly policyDefaults: v.OptionalSchema<Omit<v.ObjectSchema<{
|
|
2029
|
+
readonly maxConcurrent: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>;
|
|
2030
|
+
readonly rules: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2031
|
+
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2215
2032
|
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2216
2033
|
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2217
2034
|
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
readonly
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2035
|
+
}, undefined>, undefined>, readonly []>;
|
|
2036
|
+
readonly defaultPipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2037
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">;
|
|
2038
|
+
}, undefined>, "entries" | "~run" | "~standard" | "~types"> & {
|
|
2039
|
+
readonly entries: {
|
|
2040
|
+
readonly maxConcurrent: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
|
|
2041
|
+
readonly rules: v.OptionalSchema<v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2042
|
+
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2043
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2044
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2045
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2046
|
+
}, undefined>, undefined>, readonly []>, undefined>;
|
|
2047
|
+
readonly defaultPipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>, undefined>;
|
|
2048
|
+
readonly onMissingEstimate: v.OptionalSchema<v.OptionalSchema<v.PicklistSchema<["default", "strongest"], undefined>, "default">, undefined>;
|
|
2049
|
+
};
|
|
2050
|
+
readonly "~standard": v.StandardProps<{
|
|
2051
|
+
maxConcurrent?: number | undefined;
|
|
2052
|
+
rules?: {
|
|
2053
|
+
pipelineId: string;
|
|
2054
|
+
minComplexity?: number | undefined;
|
|
2055
|
+
minRisk?: number | undefined;
|
|
2056
|
+
minImpact?: number | undefined;
|
|
2057
|
+
}[] | undefined;
|
|
2058
|
+
defaultPipelineId?: string | undefined;
|
|
2059
|
+
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
2060
|
+
}, {
|
|
2061
|
+
maxConcurrent?: number | undefined;
|
|
2062
|
+
rules?: {
|
|
2063
|
+
pipelineId: string;
|
|
2064
|
+
minComplexity?: number | undefined;
|
|
2065
|
+
minRisk?: number | undefined;
|
|
2066
|
+
minImpact?: number | undefined;
|
|
2067
|
+
}[] | undefined;
|
|
2068
|
+
defaultPipelineId?: string | undefined;
|
|
2069
|
+
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
2070
|
+
}>;
|
|
2071
|
+
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
2072
|
+
maxConcurrent?: number | undefined;
|
|
2073
|
+
rules?: {
|
|
2074
|
+
pipelineId: string;
|
|
2075
|
+
minComplexity?: number | undefined;
|
|
2076
|
+
minRisk?: number | undefined;
|
|
2077
|
+
minImpact?: number | undefined;
|
|
2078
|
+
}[] | undefined;
|
|
2079
|
+
defaultPipelineId?: string | undefined;
|
|
2080
|
+
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
2081
|
+
}, v.ArrayIssue | v.IntegerIssue<number> | v.MaxLengthIssue<string, 80> | v.MaxValueIssue<number, 1> | v.MaxValueIssue<number, 20> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue>;
|
|
2082
|
+
readonly "~types"?: {
|
|
2083
|
+
readonly input: {
|
|
2084
|
+
maxConcurrent?: number | undefined;
|
|
2085
|
+
rules?: {
|
|
2086
|
+
pipelineId: string;
|
|
2087
|
+
minComplexity?: number | undefined;
|
|
2088
|
+
minRisk?: number | undefined;
|
|
2089
|
+
minImpact?: number | undefined;
|
|
2090
|
+
}[] | undefined;
|
|
2091
|
+
defaultPipelineId?: string | undefined;
|
|
2092
|
+
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
2093
|
+
};
|
|
2094
|
+
readonly output: {
|
|
2095
|
+
maxConcurrent?: number | undefined;
|
|
2096
|
+
rules?: {
|
|
2097
|
+
pipelineId: string;
|
|
2098
|
+
minComplexity?: number | undefined;
|
|
2099
|
+
minRisk?: number | undefined;
|
|
2100
|
+
minImpact?: number | undefined;
|
|
2101
|
+
}[] | undefined;
|
|
2102
|
+
defaultPipelineId?: string | undefined;
|
|
2103
|
+
onMissingEstimate?: "default" | "strongest" | undefined;
|
|
2104
|
+
};
|
|
2105
|
+
readonly issue: v.ArrayIssue | v.IntegerIssue<number> | v.MaxLengthIssue<string, 80> | v.MaxValueIssue<number, 1> | v.MaxValueIssue<number, 20> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 0> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.StringIssue;
|
|
2106
|
+
} | undefined;
|
|
2107
|
+
}, undefined>;
|
|
2108
|
+
readonly phaseTemplate: v.OptionalSchema<v.ObjectSchema<{
|
|
2109
|
+
readonly phases: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
2110
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 80, undefined>]>;
|
|
2111
|
+
readonly title: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2112
|
+
readonly goal: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, "">;
|
|
2113
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2114
|
+
readonly checkpoint: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2115
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
2116
|
+
id: string;
|
|
2117
|
+
title: string;
|
|
2118
|
+
goal: string;
|
|
2119
|
+
required?: boolean | undefined;
|
|
2120
|
+
checkpoint?: boolean | undefined;
|
|
2121
|
+
}[], 1, undefined>, v.CheckAction<{
|
|
2122
|
+
id: string;
|
|
2123
|
+
title: string;
|
|
2124
|
+
goal: string;
|
|
2125
|
+
required?: boolean | undefined;
|
|
2126
|
+
checkpoint?: boolean | undefined;
|
|
2127
|
+
}[], "Phase template ids must be unique.">]>;
|
|
2128
|
+
readonly allowAdditionalPhases: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2129
|
+
}, undefined>, undefined>;
|
|
2130
|
+
readonly probe: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2131
|
+
}, undefined>, undefined>, undefined>;
|
|
2132
|
+
readonly infraSetup: v.OptionalSchema<v.ObjectSchema<{
|
|
2133
|
+
readonly ephemeralEnvironments: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
2134
|
+
readonly agentExecutor: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
2135
|
+
readonly binaryStorage: v.PicklistSchema<["not_defined", "configured", "not_applicable"], undefined>;
|
|
2230
2136
|
}, undefined>, undefined>;
|
|
2231
|
-
|
|
2137
|
+
}, undefined>;
|
|
2138
|
+
};
|
|
2139
|
+
};
|
|
2140
|
+
export declare const getWorkspaceContract: {
|
|
2141
|
+
readonly method: "get";
|
|
2142
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
2143
|
+
workspaceId: v.StringSchema<undefined>;
|
|
2144
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
2145
|
+
readonly pathResolver: ({ workspaceId }: {
|
|
2146
|
+
workspaceId: string;
|
|
2147
|
+
}) => string;
|
|
2148
|
+
readonly responsesByStatusCode: {
|
|
2149
|
+
readonly '4xx': v.ObjectSchema<{
|
|
2150
|
+
readonly error: v.ObjectSchema<{
|
|
2151
|
+
readonly code: v.StringSchema<undefined>;
|
|
2152
|
+
readonly message: v.StringSchema<undefined>;
|
|
2153
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2154
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2155
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2156
|
+
readonly message: v.StringSchema<undefined>;
|
|
2157
|
+
}, undefined>, undefined>, undefined>;
|
|
2158
|
+
}, undefined>;
|
|
2159
|
+
}, undefined>;
|
|
2160
|
+
readonly '5xx': v.ObjectSchema<{
|
|
2161
|
+
readonly error: v.ObjectSchema<{
|
|
2162
|
+
readonly code: v.StringSchema<undefined>;
|
|
2163
|
+
readonly message: v.StringSchema<undefined>;
|
|
2164
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2165
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2166
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2167
|
+
readonly message: v.StringSchema<undefined>;
|
|
2168
|
+
}, undefined>, undefined>, undefined>;
|
|
2169
|
+
}, undefined>;
|
|
2170
|
+
}, undefined>;
|
|
2171
|
+
readonly 200: v.ObjectSchema<{
|
|
2172
|
+
readonly workspace: v.ObjectSchema<{
|
|
2232
2173
|
readonly id: v.StringSchema<undefined>;
|
|
2233
|
-
readonly
|
|
2234
|
-
readonly
|
|
2235
|
-
readonly
|
|
2236
|
-
readonly
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
readonly
|
|
2300
|
-
readonly
|
|
2301
|
-
readonly
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2174
|
+
readonly name: v.StringSchema<undefined>;
|
|
2175
|
+
readonly description: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2176
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2177
|
+
readonly accountId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2178
|
+
}, undefined>;
|
|
2179
|
+
readonly blocks: v.ArraySchema<v.ObjectSchema<{
|
|
2180
|
+
readonly id: v.StringSchema<undefined>;
|
|
2181
|
+
readonly title: v.StringSchema<undefined>;
|
|
2182
|
+
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
2183
|
+
readonly description: v.StringSchema<undefined>;
|
|
2184
|
+
readonly position: v.ObjectSchema<{
|
|
2185
|
+
readonly x: v.NumberSchema<undefined>;
|
|
2186
|
+
readonly y: v.NumberSchema<undefined>;
|
|
2187
|
+
}, undefined>;
|
|
2188
|
+
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
2189
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
2190
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
2191
|
+
}, undefined>, undefined>;
|
|
2192
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
2193
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
2194
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2195
|
+
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2196
|
+
readonly level: v.PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
2197
|
+
readonly parentId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2198
|
+
readonly epicId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2199
|
+
readonly initiativeId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2200
|
+
readonly autoStartDependents: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2201
|
+
readonly confidence: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2202
|
+
readonly estimate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2203
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2204
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2205
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2206
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
2207
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2208
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2209
|
+
}, undefined>, undefined>, undefined>;
|
|
2210
|
+
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2211
|
+
readonly taskType: v.OptionalSchema<v.PicklistSchema<["feature", "bug", "document", "spike", "recurring"], undefined>, undefined>;
|
|
2212
|
+
readonly taskTypeFields: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2213
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
2214
|
+
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2215
|
+
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
2216
|
+
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
2217
|
+
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
2218
|
+
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
2219
|
+
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2220
|
+
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2221
|
+
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2222
|
+
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2223
|
+
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2224
|
+
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2225
|
+
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2226
|
+
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2227
|
+
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2228
|
+
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2229
|
+
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2230
|
+
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2231
|
+
}, undefined>, undefined>, undefined>;
|
|
2232
|
+
readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2233
|
+
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2234
|
+
readonly serviceFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2235
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2236
|
+
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
2237
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
2238
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
2239
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2240
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
2241
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2242
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2243
|
+
}, undefined>, v.ObjectSchema<{
|
|
2244
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
2245
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2246
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2247
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2248
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2249
|
+
}, undefined>], undefined>, undefined>;
|
|
2250
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2251
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2252
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2253
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
2254
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
2255
|
+
readonly composeProfiles: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2256
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2257
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2258
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2305
2259
|
}, undefined>, undefined>, undefined>;
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
readonly
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
readonly
|
|
2317
|
-
readonly
|
|
2318
|
-
readonly
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
readonly title: v.StringSchema<undefined>;
|
|
2322
|
-
readonly detail: v.StringSchema<undefined>;
|
|
2323
|
-
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2260
|
+
readonly externalNetworks: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2261
|
+
readonly sharedStackRefs: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2262
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2263
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
2264
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
2265
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
2266
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2267
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2268
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2269
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2270
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2271
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2272
|
+
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
2273
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2274
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2324
2275
|
}, undefined>, undefined>;
|
|
2325
|
-
readonly
|
|
2326
|
-
readonly
|
|
2327
|
-
|
|
2328
|
-
readonly artifactId: v.StringSchema<undefined>;
|
|
2329
|
-
readonly hash: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2330
|
-
readonly width: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2331
|
-
readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2332
|
-
readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2333
|
-
}, undefined>, undefined>, undefined>;
|
|
2334
|
-
readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2335
|
-
readonly reason: v.StringSchema<undefined>;
|
|
2336
|
-
}, undefined>, undefined>, undefined>;
|
|
2337
|
-
}, undefined>, v.TransformAction<{
|
|
2338
|
-
greenlight: boolean;
|
|
2339
|
-
summary: string;
|
|
2340
|
-
tested: string[];
|
|
2341
|
-
outcomes: {
|
|
2342
|
-
name: string;
|
|
2343
|
-
status: "failed" | "passed" | "skipped";
|
|
2344
|
-
detail?: string | undefined;
|
|
2345
|
-
}[];
|
|
2346
|
-
concerns: {
|
|
2347
|
-
title: string;
|
|
2348
|
-
detail: string;
|
|
2349
|
-
severity: "critical" | "high" | "low" | "medium";
|
|
2350
|
-
}[];
|
|
2351
|
-
environment?: "ephemeral" | "local" | undefined;
|
|
2352
|
-
screenshots?: {
|
|
2353
|
-
view: string;
|
|
2354
|
-
artifactId: string;
|
|
2355
|
-
hash?: string | undefined;
|
|
2356
|
-
width?: number | undefined;
|
|
2357
|
-
height?: number | undefined;
|
|
2358
|
-
referenceArtifactId?: string | undefined;
|
|
2359
|
-
}[] | undefined;
|
|
2360
|
-
abort?: {
|
|
2361
|
-
reason: string;
|
|
2362
|
-
} | null | undefined;
|
|
2363
|
-
}, {
|
|
2364
|
-
greenlight: boolean;
|
|
2365
|
-
summary: string;
|
|
2366
|
-
tested: string[];
|
|
2367
|
-
outcomes: {
|
|
2368
|
-
name: string;
|
|
2369
|
-
status: "failed" | "passed" | "skipped";
|
|
2370
|
-
detail?: string | undefined;
|
|
2371
|
-
}[];
|
|
2372
|
-
concerns: {
|
|
2373
|
-
title: string;
|
|
2374
|
-
detail: string;
|
|
2375
|
-
severity: "critical" | "high" | "low" | "medium";
|
|
2376
|
-
}[];
|
|
2377
|
-
environment?: "ephemeral" | "local" | undefined;
|
|
2378
|
-
screenshots?: {
|
|
2379
|
-
view: string;
|
|
2380
|
-
artifactId: string;
|
|
2381
|
-
hash?: string | undefined;
|
|
2382
|
-
width?: number | undefined;
|
|
2383
|
-
height?: number | undefined;
|
|
2384
|
-
referenceArtifactId?: string | undefined;
|
|
2385
|
-
}[] | undefined;
|
|
2386
|
-
abort?: {
|
|
2387
|
-
reason: string;
|
|
2388
|
-
} | null | undefined;
|
|
2389
|
-
}>]>, undefined>, undefined>;
|
|
2390
|
-
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2391
|
-
readonly attempt: v.NumberSchema<undefined>;
|
|
2392
|
-
readonly at: v.NumberSchema<undefined>;
|
|
2393
|
-
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2394
|
-
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2395
|
-
readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2396
|
-
readonly title: v.StringSchema<undefined>;
|
|
2397
|
-
readonly detail: v.StringSchema<undefined>;
|
|
2398
|
-
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2399
|
-
}, undefined>, undefined>, undefined>, undefined>;
|
|
2400
|
-
}, undefined>, undefined>, undefined>, undefined>;
|
|
2401
|
-
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2402
|
-
readonly started: v.BooleanSchema<undefined>;
|
|
2403
|
-
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2404
|
-
readonly at: v.NumberSchema<undefined>;
|
|
2405
|
-
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2406
|
-
readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2407
|
-
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2408
|
-
}, undefined>, undefined>, undefined>;
|
|
2409
|
-
}, undefined>, undefined>, undefined>;
|
|
2410
|
-
readonly testerQuality: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2411
|
-
readonly enabled: v.BooleanSchema<undefined>;
|
|
2412
|
-
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2413
|
-
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2414
|
-
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2415
|
-
readonly enabled: v.BooleanSchema<undefined>;
|
|
2416
|
-
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2417
|
-
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2418
|
-
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2419
|
-
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2276
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2277
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2278
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2420
2279
|
}, undefined>, undefined>, undefined>;
|
|
2421
|
-
readonly
|
|
2422
|
-
readonly
|
|
2423
|
-
readonly
|
|
2424
|
-
readonly
|
|
2425
|
-
readonly
|
|
2426
|
-
readonly
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
readonly
|
|
2434
|
-
readonly
|
|
2435
|
-
readonly
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
readonly
|
|
2444
|
-
|
|
2445
|
-
readonly
|
|
2446
|
-
readonly
|
|
2447
|
-
readonly
|
|
2448
|
-
readonly
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
readonly
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
readonly
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
readonly
|
|
2467
|
-
|
|
2468
|
-
readonly
|
|
2469
|
-
readonly
|
|
2470
|
-
readonly
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
readonly
|
|
2492
|
-
readonly
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2280
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2281
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2282
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2283
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2284
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2285
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2286
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2287
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2288
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2289
|
+
}, undefined>, v.ObjectSchema<{
|
|
2290
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2291
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2292
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2293
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2294
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2295
|
+
}, undefined>, v.ObjectSchema<{
|
|
2296
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2297
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2298
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2299
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2300
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2301
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2302
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2303
|
+
}, undefined>, v.ObjectSchema<{
|
|
2304
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2305
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2306
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2307
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2308
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2309
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2310
|
+
}, undefined>, v.ObjectSchema<{
|
|
2311
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2312
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2313
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2314
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2315
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2316
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2317
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2318
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
2319
|
+
}, undefined>, v.ObjectSchema<{
|
|
2320
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
2321
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2322
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2323
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2324
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2325
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2326
|
+
}, undefined>, v.ObjectSchema<{
|
|
2327
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2328
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2329
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2330
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2331
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2332
|
+
}, undefined>], undefined>, undefined>;
|
|
2333
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2334
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
2335
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2336
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2337
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2338
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2339
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2340
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2341
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2342
|
+
}, undefined>, v.ObjectSchema<{
|
|
2343
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
2344
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2345
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2346
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2347
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2348
|
+
}, undefined>, v.ObjectSchema<{
|
|
2349
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
2350
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2351
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2352
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2353
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2354
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2355
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2356
|
+
}, undefined>, v.ObjectSchema<{
|
|
2357
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
2358
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2359
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2360
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2361
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2362
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2363
|
+
}, undefined>, v.ObjectSchema<{
|
|
2364
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2365
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2366
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2367
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2368
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2369
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2510
2370
|
}, undefined>, undefined>;
|
|
2511
|
-
readonly
|
|
2512
|
-
readonly
|
|
2513
|
-
|
|
2514
|
-
readonly
|
|
2515
|
-
readonly
|
|
2516
|
-
readonly
|
|
2517
|
-
readonly
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2371
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
2372
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2373
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2374
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2375
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2376
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2377
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2378
|
+
}, undefined>, v.CheckAction<{
|
|
2379
|
+
name: string;
|
|
2380
|
+
newNameTemplate?: string | undefined;
|
|
2381
|
+
newTagTemplate?: string | undefined;
|
|
2382
|
+
digestTemplate?: string | undefined;
|
|
2383
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
2384
|
+
name: string;
|
|
2385
|
+
newNameTemplate?: string | undefined;
|
|
2386
|
+
newTagTemplate?: string | undefined;
|
|
2387
|
+
digestTemplate?: string | undefined;
|
|
2388
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2389
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2390
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2391
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2392
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2393
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2394
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2395
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
2396
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2397
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2398
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2523
2399
|
}, undefined>, undefined>, undefined>;
|
|
2400
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2401
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2402
|
+
readonly secretRef: v.ObjectSchema<{
|
|
2403
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2404
|
+
}, undefined>;
|
|
2405
|
+
}, undefined>, undefined>, undefined>;
|
|
2406
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
2524
2407
|
}, undefined>, undefined>, undefined>;
|
|
2525
|
-
readonly
|
|
2526
|
-
readonly
|
|
2527
|
-
readonly
|
|
2528
|
-
readonly
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly
|
|
2531
|
-
readonly
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
readonly
|
|
2547
|
-
readonly
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
readonly
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
readonly
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
readonly
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
readonly
|
|
2576
|
-
|
|
2577
|
-
|
|
2408
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
2409
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
2410
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2411
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2412
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2413
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2414
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2415
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2416
|
+
}, undefined>, undefined>;
|
|
2417
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2418
|
+
}, undefined>, v.CheckAction<{
|
|
2419
|
+
key: string;
|
|
2420
|
+
secretRef?: {
|
|
2421
|
+
key: string;
|
|
2422
|
+
} | undefined;
|
|
2423
|
+
valueTemplate?: string | undefined;
|
|
2424
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2425
|
+
}, undefined>, v.ObjectSchema<{
|
|
2426
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
2427
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2428
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2429
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
2430
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
2431
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2432
|
+
}, undefined>, undefined>;
|
|
2433
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2434
|
+
}, undefined>, v.CheckAction<{
|
|
2435
|
+
key: string;
|
|
2436
|
+
secretRef?: {
|
|
2437
|
+
key: string;
|
|
2438
|
+
} | undefined;
|
|
2439
|
+
valueTemplate?: string | undefined;
|
|
2440
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
2441
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2442
|
+
}, undefined>, undefined>;
|
|
2443
|
+
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
2444
|
+
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
2445
|
+
readonly frontendConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
2446
|
+
readonly packageManager: v.OptionalSchema<v.PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
2447
|
+
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2448
|
+
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2449
|
+
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2450
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2451
|
+
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
2452
|
+
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
2453
|
+
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2454
|
+
readonly envInjection: v.OptionalSchema<v.PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
2455
|
+
readonly branch: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2456
|
+
readonly kind: v.LiteralSchema<"default", undefined>;
|
|
2457
|
+
}, undefined>, v.ObjectSchema<{
|
|
2458
|
+
readonly kind: v.LiteralSchema<"task", undefined>;
|
|
2459
|
+
readonly fromTaskBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2460
|
+
}, undefined>], undefined>, undefined>;
|
|
2461
|
+
readonly mockMappingsPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
2462
|
+
readonly previewEnabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2463
|
+
readonly backendBindings: v.ArraySchema<v.ObjectSchema<{
|
|
2464
|
+
readonly envVar: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
2465
|
+
readonly source: v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2466
|
+
readonly kind: v.LiteralSchema<"service", undefined>;
|
|
2467
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2468
|
+
}, undefined>, v.ObjectSchema<{
|
|
2469
|
+
readonly kind: v.LiteralSchema<"mock", undefined>;
|
|
2470
|
+
}, undefined>], undefined>;
|
|
2471
|
+
}, undefined>, undefined>;
|
|
2472
|
+
}, undefined>, undefined>;
|
|
2473
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
2474
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2475
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
2476
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
2477
|
+
serviceBlockId: string;
|
|
2478
|
+
description?: string | undefined;
|
|
2479
|
+
}[], 50, undefined>]>, undefined>;
|
|
2480
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2481
|
+
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
2482
|
+
readonly url: v.StringSchema<undefined>;
|
|
2483
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2484
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2485
|
+
}, undefined>, undefined>;
|
|
2486
|
+
readonly peerPullRequests: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2487
|
+
readonly repo: v.StringSchema<undefined>;
|
|
2488
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2489
|
+
readonly ref: v.ObjectSchema<{
|
|
2490
|
+
readonly url: v.StringSchema<undefined>;
|
|
2491
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2492
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2493
|
+
}, undefined>;
|
|
2494
|
+
}, undefined>, undefined>, undefined>;
|
|
2495
|
+
readonly referenceRepos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2496
|
+
readonly repoId: v.NumberSchema<undefined>;
|
|
2497
|
+
readonly owner: v.StringSchema<undefined>;
|
|
2498
|
+
readonly name: v.StringSchema<undefined>;
|
|
2499
|
+
readonly defaultBranch: v.StringSchema<undefined>;
|
|
2500
|
+
readonly connectionId: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2501
|
+
}, undefined>, undefined>, undefined>;
|
|
2502
|
+
readonly riskPolicyId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2503
|
+
readonly modelPresetId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2504
|
+
readonly pipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2505
|
+
readonly createdBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2506
|
+
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2507
|
+
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2508
|
+
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
2509
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2510
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2511
|
+
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2512
|
+
}, undefined>, undefined>;
|
|
2513
|
+
readonly pipelines: v.ArraySchema<v.ObjectSchema<{
|
|
2514
|
+
readonly id: v.StringSchema<undefined>;
|
|
2515
|
+
readonly name: v.StringSchema<undefined>;
|
|
2516
|
+
readonly agentKinds: v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2517
|
+
readonly gates: v.OptionalSchema<v.ArraySchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2518
|
+
readonly thresholds: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>, undefined>, undefined>;
|
|
2519
|
+
readonly enabled: v.OptionalSchema<v.ArraySchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
2520
|
+
readonly consensus: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.ObjectSchema<{
|
|
2521
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2522
|
+
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
2523
|
+
readonly participants: v.ArraySchema<v.ObjectSchema<{
|
|
2524
|
+
readonly id: v.StringSchema<undefined>;
|
|
2525
|
+
readonly role: v.StringSchema<undefined>;
|
|
2526
|
+
readonly systemFraming: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2527
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2528
|
+
}, undefined>, undefined>;
|
|
2529
|
+
readonly synthesizerModelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2530
|
+
readonly rounds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
2531
|
+
readonly gating: v.OptionalSchema<v.ObjectSchema<{
|
|
2578
2532
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
2579
|
-
readonly
|
|
2580
|
-
readonly
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
}, undefined>, undefined>, undefined>;
|
|
2533
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2534
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2535
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2536
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["consensus", "standard"], undefined>, "consensus">;
|
|
2537
|
+
}, undefined>, undefined>;
|
|
2538
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2539
|
+
readonly gating: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.ObjectSchema<{
|
|
2540
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2541
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2542
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2543
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2544
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2545
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2546
|
+
readonly followUps: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2547
|
+
readonly testerQuality: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.ObjectSchema<{
|
|
2548
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2596
2549
|
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2597
2550
|
readonly enabled: v.BooleanSchema<undefined>;
|
|
2598
2551
|
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
@@ -2600,670 +2553,1387 @@ export declare const getWorkspaceContract: {
|
|
|
2600
2553
|
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2601
2554
|
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2602
2555
|
}, undefined>, undefined>, undefined>;
|
|
2603
|
-
|
|
2604
|
-
|
|
2556
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2557
|
+
readonly stepOptions: v.OptionalSchema<v.ArraySchema<v.NullableSchema<v.ObjectSchema<{
|
|
2558
|
+
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2559
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2560
|
+
readonly labels: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2561
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2562
|
+
readonly builtin: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2563
|
+
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2564
|
+
readonly public: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2565
|
+
readonly availability: v.OptionalSchema<v.UnionSchema<[v.LiteralSchema<"one-off", undefined>, v.LiteralSchema<"recurring", undefined>, v.LiteralSchema<"both", undefined>], undefined>, undefined>;
|
|
2566
|
+
}, undefined>, undefined>;
|
|
2567
|
+
readonly executions: v.ArraySchema<v.ObjectSchema<{
|
|
2568
|
+
readonly id: v.StringSchema<undefined>;
|
|
2569
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
2570
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
2571
|
+
readonly pipelineName: v.StringSchema<undefined>;
|
|
2572
|
+
readonly steps: v.ArraySchema<v.ObjectSchema<{
|
|
2573
|
+
readonly runId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2574
|
+
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2575
|
+
readonly state: v.PicklistSchema<["pending", "working", "waiting_decision", "done"], undefined>;
|
|
2576
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
2577
|
+
readonly metrics: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2578
|
+
readonly calls: v.NumberSchema<undefined>;
|
|
2579
|
+
readonly promptTokens: v.NumberSchema<undefined>;
|
|
2580
|
+
readonly cachedPromptTokens: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2581
|
+
readonly completionTokens: v.NumberSchema<undefined>;
|
|
2582
|
+
readonly peakCompletionTokens: v.NumberSchema<undefined>;
|
|
2583
|
+
readonly maxOutputTokens: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
2584
|
+
readonly truncatedCalls: v.NumberSchema<undefined>;
|
|
2585
|
+
readonly upstreamMs: v.NumberSchema<undefined>;
|
|
2586
|
+
readonly overheadMs: v.NumberSchema<undefined>;
|
|
2587
|
+
readonly errors: v.NumberSchema<undefined>;
|
|
2588
|
+
readonly warnings: v.NumberSchema<undefined>;
|
|
2605
2589
|
}, undefined>, undefined>, undefined>;
|
|
2606
|
-
readonly
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
readonly
|
|
2623
|
-
readonly
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
readonly
|
|
2630
|
-
readonly
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
readonly
|
|
2636
|
-
readonly
|
|
2637
|
-
readonly
|
|
2638
|
-
readonly
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
readonly
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2590
|
+
readonly gate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2591
|
+
readonly phase: v.PicklistSchema<["checking", "working"], undefined>;
|
|
2592
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2593
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2594
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2595
|
+
readonly headShas: v.OptionalSchema<v.NullableSchema<v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2596
|
+
readonly conflictTarget: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2597
|
+
readonly repo: v.StringSchema<undefined>;
|
|
2598
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2599
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2600
|
+
}, undefined>, undefined>, undefined>;
|
|
2601
|
+
readonly lastVerdict: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["pass", "pending", "fail"], undefined>, undefined>, undefined>;
|
|
2602
|
+
readonly lastFailureSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2603
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2604
|
+
readonly name: v.StringSchema<undefined>;
|
|
2605
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2606
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2607
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2608
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2609
|
+
readonly lastDispatchedInstructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2610
|
+
readonly watchSince: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2611
|
+
readonly watchWindowMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2612
|
+
readonly regressedSignals: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2613
|
+
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
2614
|
+
readonly id: v.StringSchema<undefined>;
|
|
2615
|
+
readonly name: v.StringSchema<undefined>;
|
|
2616
|
+
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
2617
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2618
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2619
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2620
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2621
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2622
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2623
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2624
|
+
readonly instructions: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2625
|
+
readonly failingChecks: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2626
|
+
readonly name: v.StringSchema<undefined>;
|
|
2627
|
+
readonly conclusion: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2628
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2629
|
+
readonly repo: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2630
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2631
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2632
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2633
|
+
readonly lastApprovals: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2634
|
+
readonly requiredApprovingReviewCount: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2635
|
+
readonly pendingThreadIds: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>;
|
|
2636
|
+
readonly lastAddressedCommentAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2637
|
+
readonly humanReviewGraceMinutes: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2638
|
+
readonly pendingFix: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2639
|
+
readonly instructions: v.StringSchema<undefined>;
|
|
2640
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2641
|
+
}, undefined>, undefined>, undefined>;
|
|
2642
|
+
}, undefined>, undefined>, undefined>;
|
|
2643
|
+
readonly test: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2644
|
+
readonly phase: v.PicklistSchema<["testing", "fixing"], undefined>;
|
|
2645
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2646
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2647
|
+
readonly lastReport: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2648
|
+
readonly greenlight: v.BooleanSchema<undefined>;
|
|
2649
|
+
readonly summary: v.StringSchema<undefined>;
|
|
2650
|
+
readonly tested: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2651
|
+
readonly outcomes: v.ArraySchema<v.ObjectSchema<{
|
|
2652
|
+
readonly name: v.StringSchema<undefined>;
|
|
2653
|
+
readonly status: v.PicklistSchema<["passed", "failed", "skipped"], undefined>;
|
|
2654
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2655
|
+
}, undefined>, undefined>;
|
|
2656
|
+
readonly concerns: v.ArraySchema<v.ObjectSchema<{
|
|
2657
|
+
readonly title: v.StringSchema<undefined>;
|
|
2658
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2659
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2660
|
+
}, undefined>, undefined>;
|
|
2661
|
+
readonly environment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
2662
|
+
readonly screenshots: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2663
|
+
readonly view: v.StringSchema<undefined>;
|
|
2664
|
+
readonly artifactId: v.StringSchema<undefined>;
|
|
2665
|
+
readonly hash: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2666
|
+
readonly width: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2667
|
+
readonly height: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2668
|
+
readonly referenceArtifactId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2661
2669
|
}, undefined>, undefined>, undefined>;
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
readonly
|
|
2726
|
-
readonly
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2670
|
+
readonly abort: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2671
|
+
readonly reason: v.StringSchema<undefined>;
|
|
2672
|
+
}, undefined>, undefined>, undefined>;
|
|
2673
|
+
}, undefined>, v.TransformAction<{
|
|
2674
|
+
greenlight: boolean;
|
|
2675
|
+
summary: string;
|
|
2676
|
+
tested: string[];
|
|
2677
|
+
outcomes: {
|
|
2678
|
+
name: string;
|
|
2679
|
+
status: "failed" | "passed" | "skipped";
|
|
2680
|
+
detail?: string | undefined;
|
|
2681
|
+
}[];
|
|
2682
|
+
concerns: {
|
|
2683
|
+
title: string;
|
|
2684
|
+
detail: string;
|
|
2685
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
2686
|
+
}[];
|
|
2687
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
2688
|
+
screenshots?: {
|
|
2689
|
+
view: string;
|
|
2690
|
+
artifactId: string;
|
|
2691
|
+
hash?: string | undefined;
|
|
2692
|
+
width?: number | undefined;
|
|
2693
|
+
height?: number | undefined;
|
|
2694
|
+
referenceArtifactId?: string | undefined;
|
|
2695
|
+
}[] | undefined;
|
|
2696
|
+
abort?: {
|
|
2697
|
+
reason: string;
|
|
2698
|
+
} | null | undefined;
|
|
2699
|
+
}, {
|
|
2700
|
+
greenlight: boolean;
|
|
2701
|
+
summary: string;
|
|
2702
|
+
tested: string[];
|
|
2703
|
+
outcomes: {
|
|
2704
|
+
name: string;
|
|
2705
|
+
status: "failed" | "passed" | "skipped";
|
|
2706
|
+
detail?: string | undefined;
|
|
2707
|
+
}[];
|
|
2708
|
+
concerns: {
|
|
2709
|
+
title: string;
|
|
2710
|
+
detail: string;
|
|
2711
|
+
severity: "critical" | "high" | "low" | "medium";
|
|
2712
|
+
}[];
|
|
2713
|
+
environment?: "ephemeral" | "local" | undefined;
|
|
2714
|
+
screenshots?: {
|
|
2715
|
+
view: string;
|
|
2716
|
+
artifactId: string;
|
|
2717
|
+
hash?: string | undefined;
|
|
2718
|
+
width?: number | undefined;
|
|
2719
|
+
height?: number | undefined;
|
|
2720
|
+
referenceArtifactId?: string | undefined;
|
|
2721
|
+
}[] | undefined;
|
|
2722
|
+
abort?: {
|
|
2723
|
+
reason: string;
|
|
2724
|
+
} | null | undefined;
|
|
2725
|
+
}>]>, undefined>, undefined>;
|
|
2726
|
+
readonly attemptLog: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2727
|
+
readonly attempt: v.NumberSchema<undefined>;
|
|
2728
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2729
|
+
readonly outcome: v.PicklistSchema<["completed", "failed"], undefined>;
|
|
2730
|
+
readonly summary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2731
|
+
readonly concerns: v.OptionalSchema<v.NullableSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2732
|
+
readonly title: v.StringSchema<undefined>;
|
|
2733
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2734
|
+
readonly severity: v.PicklistSchema<["low", "medium", "high", "critical"], undefined>;
|
|
2735
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2736
|
+
}, undefined>, undefined>, undefined>, undefined>;
|
|
2737
|
+
readonly infraSetup: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2738
|
+
readonly started: v.BooleanSchema<undefined>;
|
|
2739
|
+
readonly composePath: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2740
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2741
|
+
readonly durationMs: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2742
|
+
readonly logs: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2743
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2744
|
+
}, undefined>, undefined>, undefined>;
|
|
2745
|
+
}, undefined>, undefined>, undefined>;
|
|
2746
|
+
readonly testerQuality: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2747
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2748
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2749
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2750
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2751
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2752
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2753
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2754
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2755
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2756
|
+
}, undefined>, undefined>, undefined>;
|
|
2757
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
2758
|
+
readonly adequate: v.BooleanSchema<undefined>;
|
|
2759
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2760
|
+
readonly gaps: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2761
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2762
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2763
|
+
}, undefined>, undefined>;
|
|
2764
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2765
|
+
}, undefined>, undefined>, undefined>;
|
|
2766
|
+
readonly humanTest: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2767
|
+
readonly phase: v.PicklistSchema<["provisioning", "awaiting_human", "fixing", "resolving_conflicts", "passed"], undefined>;
|
|
2768
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2769
|
+
readonly id: v.StringSchema<undefined>;
|
|
2770
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2771
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2772
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2773
|
+
}, undefined>, undefined>, undefined>;
|
|
2774
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2775
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2776
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2777
|
+
readonly headSha: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2778
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2779
|
+
readonly kind: v.PicklistSchema<["fix", "pull-main"], undefined>;
|
|
2780
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2781
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2782
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2783
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2784
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2785
|
+
}, undefined>, undefined>, undefined>;
|
|
2786
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2787
|
+
readonly type: v.PicklistSchema<["confirm", "request-fix", "pull-main", "recreate"], undefined>;
|
|
2788
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2789
|
+
}, undefined>, undefined>, undefined>;
|
|
2790
|
+
}, undefined>, undefined>, undefined>;
|
|
2791
|
+
readonly visualConfirm: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2792
|
+
readonly phase: v.PicklistSchema<["awaiting_human", "fixing", "approved"], undefined>;
|
|
2793
|
+
readonly pairs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2794
|
+
readonly view: v.StringSchema<undefined>;
|
|
2795
|
+
readonly actualArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2796
|
+
readonly referenceArtifactId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2797
|
+
}, undefined>, undefined>, undefined>;
|
|
2798
|
+
readonly degradedReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2799
|
+
readonly attempts: v.NumberSchema<undefined>;
|
|
2800
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2801
|
+
readonly rounds: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2802
|
+
readonly findings: v.StringSchema<undefined>;
|
|
2803
|
+
readonly helperKind: v.StringSchema<undefined>;
|
|
2804
|
+
readonly jobId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2805
|
+
readonly outcome: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["completed", "failed"], undefined>, undefined>, undefined>;
|
|
2806
|
+
readonly at: v.NumberSchema<undefined>;
|
|
2807
|
+
}, undefined>, undefined>, undefined>;
|
|
2808
|
+
readonly pendingAction: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2809
|
+
readonly type: v.PicklistSchema<["approve", "request-fix", "recapture"], undefined>;
|
|
2810
|
+
readonly findings: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2811
|
+
}, undefined>, undefined>, undefined>;
|
|
2812
|
+
}, undefined>, undefined>, undefined>;
|
|
2813
|
+
readonly environment: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2814
|
+
readonly id: v.StringSchema<undefined>;
|
|
2815
|
+
readonly url: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2816
|
+
readonly status: v.PicklistSchema<["provisioning", "ready", "failed", "expired", "tearing_down", "torn_down"], undefined>;
|
|
2817
|
+
readonly expiresAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2818
|
+
readonly lastError: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2819
|
+
readonly provisionType: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>, undefined>, undefined>;
|
|
2820
|
+
readonly engine: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["local-docker", "local-k3s", "remote-kubernetes", "remote-custom", "none"], undefined>, undefined>, undefined>;
|
|
2821
|
+
}, undefined>, undefined>, undefined>;
|
|
2822
|
+
readonly subtasks: v.OptionalSchema<v.ObjectSchema<{
|
|
2823
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
2824
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
2825
|
+
readonly total: v.NumberSchema<undefined>;
|
|
2826
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2827
|
+
readonly label: v.StringSchema<undefined>;
|
|
2828
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2829
|
+
}, undefined>, undefined>, undefined>;
|
|
2830
|
+
}, undefined>, undefined>;
|
|
2831
|
+
readonly container: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2832
|
+
readonly status: v.PicklistSchema<["starting", "up", "errored", "destroyed"], undefined>;
|
|
2833
|
+
readonly phase: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2834
|
+
readonly id: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2835
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2836
|
+
}, undefined>, undefined>, undefined>;
|
|
2837
|
+
readonly search: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2838
|
+
readonly available: v.BooleanSchema<undefined>;
|
|
2839
|
+
readonly provider: v.NullableSchema<v.PicklistSchema<["brave", "searxng"], undefined>, undefined>;
|
|
2840
|
+
}, undefined>, undefined>, undefined>;
|
|
2841
|
+
readonly decision: v.NullableSchema<v.ObjectSchema<{
|
|
2842
|
+
readonly id: v.StringSchema<undefined>;
|
|
2843
|
+
readonly question: v.StringSchema<undefined>;
|
|
2844
|
+
readonly options: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2845
|
+
readonly chosen: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2846
|
+
}, undefined>, undefined>;
|
|
2847
|
+
readonly requiresApproval: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2848
|
+
readonly approval: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2849
|
+
readonly id: v.StringSchema<undefined>;
|
|
2850
|
+
readonly status: v.PicklistSchema<["pending", "approved", "changes_requested", "rejected"], undefined>;
|
|
2851
|
+
readonly proposal: v.StringSchema<undefined>;
|
|
2852
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2853
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2854
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2855
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2856
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2857
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2858
|
+
readonly body: v.StringSchema<undefined>;
|
|
2859
|
+
}, undefined>, undefined>, undefined>;
|
|
2860
|
+
}, undefined>, undefined>, undefined>;
|
|
2861
|
+
readonly companion: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2862
|
+
readonly threshold: v.NumberSchema<undefined>;
|
|
2863
|
+
readonly maxAttempts: v.NumberSchema<undefined>;
|
|
2864
|
+
readonly attempts: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2865
|
+
readonly verdicts: v.ArraySchema<v.ObjectSchema<{
|
|
2866
|
+
readonly rating: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2867
|
+
readonly threshold: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
2868
|
+
readonly passed: v.BooleanSchema<undefined>;
|
|
2869
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2870
|
+
}, undefined>, undefined>;
|
|
2871
|
+
readonly exceeded: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2872
|
+
}, undefined>, undefined>, undefined>;
|
|
2873
|
+
readonly followUps: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2874
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2875
|
+
readonly items: v.ArraySchema<v.ObjectSchema<{
|
|
2876
|
+
readonly id: v.StringSchema<undefined>;
|
|
2877
|
+
readonly kind: v.PicklistSchema<["follow_up", "question"], undefined>;
|
|
2878
|
+
readonly title: v.StringSchema<undefined>;
|
|
2879
|
+
readonly detail: v.StringSchema<undefined>;
|
|
2880
|
+
readonly suggestedAction: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2881
|
+
readonly status: v.PicklistSchema<["pending", "filed", "queued", "answered", "dismissed"], undefined>;
|
|
2882
|
+
readonly answer: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2883
|
+
readonly sentToCoder: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2884
|
+
readonly ticketExternalId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2885
|
+
readonly ticketUrl: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2886
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
2887
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
2888
|
+
}, undefined>, undefined>;
|
|
2889
|
+
readonly loops: v.OptionalSchema<v.NumberSchema<undefined>, 0>;
|
|
2890
|
+
readonly maxLoops: v.OptionalSchema<v.NumberSchema<undefined>, 3>;
|
|
2891
|
+
}, undefined>, undefined>, undefined>;
|
|
2892
|
+
readonly rework: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2893
|
+
readonly previousProposal: v.StringSchema<undefined>;
|
|
2894
|
+
readonly feedback: v.StringSchema<undefined>;
|
|
2895
|
+
readonly comments: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2896
|
+
readonly quotedSource: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2897
|
+
readonly srcStart: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2898
|
+
readonly srcEnd: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2899
|
+
readonly anchorId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2900
|
+
readonly body: v.StringSchema<undefined>;
|
|
2901
|
+
}, undefined>, undefined>, undefined>;
|
|
2902
|
+
}, undefined>, undefined>, undefined>;
|
|
2903
|
+
readonly pendingIncorporation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2904
|
+
readonly feedback: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2905
|
+
}, undefined>, undefined>, undefined>;
|
|
2906
|
+
readonly pendingRecommendation: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2907
|
+
readonly itemIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
2908
|
+
readonly note: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2909
|
+
}, undefined>, undefined>, undefined>;
|
|
2910
|
+
readonly pendingInterview: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2911
|
+
readonly proceed: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2912
|
+
}, undefined>, undefined>, undefined>;
|
|
2913
|
+
readonly consensus: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2914
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2915
|
+
readonly strategy: v.PicklistSchema<["specialist-panel", "debate", "ranked-voting"], undefined>;
|
|
2916
|
+
readonly participants: v.ArraySchema<v.ObjectSchema<{
|
|
2917
|
+
readonly id: v.StringSchema<undefined>;
|
|
2918
|
+
readonly role: v.StringSchema<undefined>;
|
|
2919
|
+
readonly systemFraming: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2920
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2921
|
+
}, undefined>, undefined>;
|
|
2922
|
+
readonly synthesizerModelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2923
|
+
readonly rounds: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 5, undefined>]>, undefined>;
|
|
2924
|
+
readonly gating: v.OptionalSchema<v.ObjectSchema<{
|
|
2925
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2926
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2927
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2928
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2929
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["consensus", "standard"], undefined>, "consensus">;
|
|
2930
|
+
}, undefined>, undefined>;
|
|
2931
|
+
}, undefined>, undefined>, undefined>;
|
|
2932
|
+
readonly gating: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2933
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
2934
|
+
readonly minComplexity: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2935
|
+
readonly minRisk: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2936
|
+
readonly minImpact: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
|
|
2937
|
+
readonly onMissingEstimate: v.OptionalSchema<v.PicklistSchema<["run", "skip"], undefined>, "run">;
|
|
2938
|
+
}, undefined>, undefined>, undefined>;
|
|
2939
|
+
readonly stepOptions: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
2940
|
+
readonly autoRecommend: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2941
|
+
}, undefined>, undefined>, undefined>;
|
|
2942
|
+
readonly skipped: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2943
|
+
readonly noBusinessSpecs: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2944
|
+
readonly technicalCorroborated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2945
|
+
readonly output: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2946
|
+
readonly custom: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
2947
|
+
readonly model: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2948
|
+
readonly selectedFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2949
|
+
readonly jobId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2950
|
+
readonly startedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2951
|
+
readonly finishedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2952
|
+
readonly pausedAt: v.OptionalSchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>;
|
|
2953
|
+
readonly evictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2954
|
+
readonly transientEvictionRecoveries: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2955
|
+
readonly deployProvisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
2956
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
2957
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2958
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
2959
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2960
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2961
|
+
}, undefined>, v.ObjectSchema<{
|
|
2962
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
2963
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
2964
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
2965
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2966
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
2967
|
+
}, undefined>], undefined>, undefined>;
|
|
2968
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2969
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2970
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2971
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
2972
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
2973
|
+
readonly composeProfiles: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2974
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2975
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2976
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
2977
|
+
}, undefined>, undefined>, undefined>;
|
|
2978
|
+
readonly externalNetworks: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2979
|
+
readonly sharedStackRefs: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
2980
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2981
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
2982
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
2983
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
2984
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2985
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2986
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
2987
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2988
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2989
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2990
|
+
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
2991
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2992
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2993
|
+
}, undefined>, undefined>;
|
|
2994
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2995
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
2996
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2997
|
+
}, undefined>, undefined>, undefined>;
|
|
2998
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
2999
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3000
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3001
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3002
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3003
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3004
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3005
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3006
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3007
|
+
}, undefined>, v.ObjectSchema<{
|
|
3008
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
3009
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3010
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3011
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3012
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3013
|
+
}, undefined>, v.ObjectSchema<{
|
|
3014
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
3015
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3016
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3017
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3018
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3019
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3020
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3021
|
+
}, undefined>, v.ObjectSchema<{
|
|
3022
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
3023
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3024
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3025
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3026
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3027
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3028
|
+
}, undefined>, v.ObjectSchema<{
|
|
3029
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3030
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3031
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3032
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3033
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3034
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
3035
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3036
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
3037
|
+
}, undefined>, v.ObjectSchema<{
|
|
3038
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
3039
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3040
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3041
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3042
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3043
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3044
|
+
}, undefined>, v.ObjectSchema<{
|
|
3045
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3046
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3047
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3048
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3049
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3050
|
+
}, undefined>], undefined>, undefined>;
|
|
3051
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3052
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3053
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3054
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3055
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3056
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3057
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3058
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3059
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3060
|
+
}, undefined>, v.ObjectSchema<{
|
|
3061
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
3062
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3063
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3064
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3065
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3066
|
+
}, undefined>, v.ObjectSchema<{
|
|
3067
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
3068
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3069
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3070
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3071
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3072
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3073
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3074
|
+
}, undefined>, v.ObjectSchema<{
|
|
3075
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
3076
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3077
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3078
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3079
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3080
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3081
|
+
}, undefined>, v.ObjectSchema<{
|
|
3082
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3083
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3084
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3085
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3086
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3087
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
3088
|
+
}, undefined>, undefined>;
|
|
3089
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
3090
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3091
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3092
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3093
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3094
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3095
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3096
|
+
}, undefined>, v.CheckAction<{
|
|
3097
|
+
name: string;
|
|
3098
|
+
newNameTemplate?: string | undefined;
|
|
3099
|
+
newTagTemplate?: string | undefined;
|
|
3100
|
+
digestTemplate?: string | undefined;
|
|
3101
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
3102
|
+
name: string;
|
|
3103
|
+
newNameTemplate?: string | undefined;
|
|
3104
|
+
newTagTemplate?: string | undefined;
|
|
3105
|
+
digestTemplate?: string | undefined;
|
|
3106
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
3107
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3108
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3109
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3110
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3111
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
3112
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3113
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
3114
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3115
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3116
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3117
|
+
}, undefined>, undefined>, undefined>;
|
|
3118
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3119
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3120
|
+
readonly secretRef: v.ObjectSchema<{
|
|
3121
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3122
|
+
}, undefined>;
|
|
3123
|
+
}, undefined>, undefined>, undefined>;
|
|
3124
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
3125
|
+
}, undefined>, undefined>, undefined>;
|
|
3126
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
3127
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
3128
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3129
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
3130
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3131
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
3132
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
3133
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3134
|
+
}, undefined>, undefined>;
|
|
3135
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3136
|
+
}, undefined>, v.CheckAction<{
|
|
3137
|
+
key: string;
|
|
3138
|
+
secretRef?: {
|
|
3139
|
+
key: string;
|
|
3140
|
+
} | undefined;
|
|
3141
|
+
valueTemplate?: string | undefined;
|
|
3142
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
3143
|
+
}, undefined>, v.ObjectSchema<{
|
|
3144
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
3145
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3146
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3147
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
3148
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
3149
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3150
|
+
}, undefined>, undefined>;
|
|
3151
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3152
|
+
}, undefined>, v.CheckAction<{
|
|
3153
|
+
key: string;
|
|
3154
|
+
secretRef?: {
|
|
3155
|
+
key: string;
|
|
3156
|
+
} | undefined;
|
|
3157
|
+
valueTemplate?: string | undefined;
|
|
3158
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
3159
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
3160
|
+
}, undefined>, undefined>;
|
|
3161
|
+
readonly deployEnvs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ObjectSchema<{
|
|
3162
|
+
readonly status: v.PicklistSchema<["ready", "failed", "skipped"], undefined>;
|
|
3163
|
+
readonly url: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3164
|
+
readonly error: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3165
|
+
}, undefined>, undefined>, undefined>;
|
|
3166
|
+
readonly deployFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3167
|
+
readonly deployPrimaryFrameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3168
|
+
}, undefined>, undefined>;
|
|
3169
|
+
readonly currentStep: v.NumberSchema<undefined>;
|
|
3170
|
+
readonly status: v.PicklistSchema<["running", "blocked", "done", "paused", "failed"], undefined>;
|
|
3171
|
+
readonly failure: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3172
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3173
|
+
readonly message: v.StringSchema<undefined>;
|
|
3174
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3175
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3176
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3177
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3178
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3179
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3180
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3181
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3182
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3183
|
+
readonly label: v.StringSchema<undefined>;
|
|
3184
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3185
|
+
}, undefined>, undefined>, undefined>;
|
|
3186
|
+
}, undefined>, undefined>;
|
|
3187
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3188
|
+
}, undefined>, undefined>, undefined>;
|
|
3189
|
+
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3190
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3191
|
+
readonly message: v.StringSchema<undefined>;
|
|
3192
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3193
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3194
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3195
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3196
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3197
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3198
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3199
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3200
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3201
|
+
readonly label: v.StringSchema<undefined>;
|
|
3202
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3203
|
+
}, undefined>, undefined>, undefined>;
|
|
3204
|
+
}, undefined>, undefined>;
|
|
3205
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3206
|
+
}, undefined>, undefined>, undefined>;
|
|
3207
|
+
readonly outputHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3208
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3209
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3210
|
+
readonly output: v.StringSchema<undefined>;
|
|
3211
|
+
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3212
|
+
}, undefined>, undefined>, undefined>;
|
|
3213
|
+
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3214
|
+
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3215
|
+
readonly envVar: v.StringSchema<undefined>;
|
|
3216
|
+
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3217
|
+
}, undefined>, undefined>, undefined>;
|
|
3218
|
+
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3219
|
+
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3220
|
+
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3221
|
+
readonly diagnostics: v.OptionalSchema<v.ObjectSchema<{
|
|
3222
|
+
readonly lastDispatch: v.OptionalSchema<v.ObjectSchema<{
|
|
3223
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
3224
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
3225
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3226
|
+
readonly executionBackend: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3227
|
+
readonly repo: v.OptionalSchema<v.ObjectSchema<{
|
|
3228
|
+
readonly owner: v.StringSchema<undefined>;
|
|
3229
|
+
readonly name: v.StringSchema<undefined>;
|
|
3230
|
+
readonly baseBranch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3231
|
+
readonly provider: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3232
|
+
}, undefined>, undefined>;
|
|
3233
|
+
readonly at: v.NumberSchema<undefined>;
|
|
3234
|
+
}, undefined>, undefined>;
|
|
3235
|
+
readonly host: v.OptionalSchema<v.ObjectSchema<{
|
|
3236
|
+
readonly platform: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3237
|
+
}, undefined>, undefined>;
|
|
3238
|
+
}, undefined>, undefined>;
|
|
3239
|
+
}, undefined>, undefined>;
|
|
3240
|
+
readonly bootstrapJobs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3241
|
+
readonly id: v.StringSchema<undefined>;
|
|
3242
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
3243
|
+
readonly referenceArchitectureId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3244
|
+
readonly referenceArchitectureName: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3245
|
+
readonly repoName: v.StringSchema<undefined>;
|
|
3246
|
+
readonly repoOwner: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3247
|
+
readonly repoUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3248
|
+
readonly instructions: v.StringSchema<undefined>;
|
|
3249
|
+
readonly status: v.PicklistSchema<["pending", "running", "succeeded", "failed"], undefined>;
|
|
3250
|
+
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3251
|
+
readonly subtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3252
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3253
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3254
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3255
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3256
|
+
readonly label: v.StringSchema<undefined>;
|
|
3257
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3258
|
+
}, undefined>, undefined>, undefined>;
|
|
3259
|
+
}, undefined>, undefined>;
|
|
3260
|
+
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3261
|
+
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
3262
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3263
|
+
readonly message: v.StringSchema<undefined>;
|
|
3264
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3265
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3266
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3267
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3268
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3269
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3270
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3271
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3272
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3273
|
+
readonly label: v.StringSchema<undefined>;
|
|
3274
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3275
|
+
}, undefined>, undefined>, undefined>;
|
|
3276
|
+
}, undefined>, undefined>;
|
|
3277
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3278
|
+
}, undefined>, undefined>;
|
|
3279
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3280
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3281
|
+
}, undefined>, undefined>, undefined>;
|
|
3282
|
+
readonly envConfigRepairJobs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3283
|
+
readonly id: v.StringSchema<undefined>;
|
|
3284
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
3285
|
+
readonly owner: v.StringSchema<undefined>;
|
|
3286
|
+
readonly repo: v.StringSchema<undefined>;
|
|
3287
|
+
readonly branch: v.StringSchema<undefined>;
|
|
3288
|
+
readonly status: v.PicklistSchema<["running", "succeeded", "failed"], undefined>;
|
|
3289
|
+
readonly ok: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3290
|
+
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
3291
|
+
readonly severity: v.PicklistSchema<["error", "warning"], undefined>;
|
|
3292
|
+
readonly message: v.StringSchema<undefined>;
|
|
3293
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3294
|
+
}, undefined>, undefined>;
|
|
3295
|
+
readonly subtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3296
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3297
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3298
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3299
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3300
|
+
readonly label: v.StringSchema<undefined>;
|
|
3301
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3302
|
+
}, undefined>, undefined>, undefined>;
|
|
3303
|
+
}, undefined>, undefined>;
|
|
3304
|
+
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3305
|
+
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
3306
|
+
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
3307
|
+
readonly message: v.StringSchema<undefined>;
|
|
3308
|
+
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3309
|
+
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3310
|
+
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3311
|
+
readonly occurredAt: v.NumberSchema<undefined>;
|
|
3312
|
+
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
3313
|
+
readonly completed: v.NumberSchema<undefined>;
|
|
3314
|
+
readonly inProgress: v.NumberSchema<undefined>;
|
|
3315
|
+
readonly total: v.NumberSchema<undefined>;
|
|
3316
|
+
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3317
|
+
readonly label: v.StringSchema<undefined>;
|
|
3318
|
+
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3319
|
+
}, undefined>, undefined>, undefined>;
|
|
3320
|
+
}, undefined>, undefined>;
|
|
3321
|
+
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3322
|
+
}, undefined>, undefined>;
|
|
3323
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3324
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3325
|
+
}, undefined>, undefined>, undefined>;
|
|
3326
|
+
readonly spend: v.OptionalSchema<v.ObjectSchema<{
|
|
3327
|
+
readonly periodStart: v.NumberSchema<undefined>;
|
|
3328
|
+
readonly inputTokens: v.NumberSchema<undefined>;
|
|
3329
|
+
readonly outputTokens: v.NumberSchema<undefined>;
|
|
3330
|
+
readonly costSpent: v.NumberSchema<undefined>;
|
|
3331
|
+
readonly costLimit: v.NumberSchema<undefined>;
|
|
3332
|
+
readonly currency: v.StringSchema<undefined>;
|
|
3333
|
+
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3334
|
+
}, undefined>, undefined>;
|
|
3335
|
+
readonly accountSpend: v.OptionalSchema<v.ObjectSchema<{
|
|
3336
|
+
readonly periodStart: v.NumberSchema<undefined>;
|
|
3337
|
+
readonly inputTokens: v.NumberSchema<undefined>;
|
|
3338
|
+
readonly outputTokens: v.NumberSchema<undefined>;
|
|
3339
|
+
readonly costSpent: v.NumberSchema<undefined>;
|
|
3340
|
+
readonly costLimit: v.NumberSchema<undefined>;
|
|
3341
|
+
readonly currency: v.StringSchema<undefined>;
|
|
3342
|
+
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3343
|
+
}, undefined>, undefined>;
|
|
3344
|
+
readonly userSpend: v.OptionalSchema<v.ObjectSchema<{
|
|
3345
|
+
readonly periodStart: v.NumberSchema<undefined>;
|
|
3346
|
+
readonly inputTokens: v.NumberSchema<undefined>;
|
|
3347
|
+
readonly outputTokens: v.NumberSchema<undefined>;
|
|
3348
|
+
readonly costSpent: v.NumberSchema<undefined>;
|
|
3349
|
+
readonly costLimit: v.NumberSchema<undefined>;
|
|
3350
|
+
readonly currency: v.StringSchema<undefined>;
|
|
3351
|
+
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3352
|
+
}, undefined>, undefined>;
|
|
3353
|
+
readonly userSettings: v.OptionalSchema<v.ObjectSchema<{
|
|
3354
|
+
readonly spendMonthlyLimit: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
3355
|
+
}, undefined>, undefined>;
|
|
3356
|
+
readonly budgetCaps: v.OptionalSchema<v.ObjectSchema<{
|
|
3357
|
+
readonly accountMonthlyLimitMax: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3358
|
+
readonly userMonthlyLimitMax: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3359
|
+
readonly currency: v.StringSchema<undefined>;
|
|
3360
|
+
}, undefined>, undefined>;
|
|
3361
|
+
readonly notifications: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3362
|
+
readonly id: v.StringSchema<undefined>;
|
|
3363
|
+
readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "initiative"], undefined>;
|
|
3364
|
+
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
3365
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
3366
|
+
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3367
|
+
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3368
|
+
readonly title: v.StringSchema<undefined>;
|
|
3369
|
+
readonly body: v.StringSchema<undefined>;
|
|
3370
|
+
readonly payload: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3371
|
+
readonly assessment: v.OptionalSchema<v.ObjectSchema<{
|
|
3372
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3373
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3374
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3375
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
3376
|
+
}, undefined>, undefined>;
|
|
3377
|
+
readonly prUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3378
|
+
readonly pipelineName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3379
|
+
readonly findingCount: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3380
|
+
readonly onCallAssessment: v.OptionalSchema<v.ObjectSchema<{
|
|
3381
|
+
readonly culpritConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3382
|
+
readonly recommendation: v.PicklistSchema<["revert", "hold", "monitor"], undefined>;
|
|
3383
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
3384
|
+
readonly evidence: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3385
|
+
}, undefined>, undefined>;
|
|
3386
|
+
readonly releaseSignals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3387
|
+
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
3388
|
+
readonly id: v.StringSchema<undefined>;
|
|
3389
|
+
readonly name: v.StringSchema<undefined>;
|
|
3390
|
+
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
3391
|
+
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3392
|
+
}, undefined>, undefined>, undefined>;
|
|
3393
|
+
readonly revertUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3394
|
+
readonly targetUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3395
|
+
readonly initiativeReason: v.OptionalSchema<v.PicklistSchema<["item_blocked", "complete", "checkpoint"], undefined>, undefined>;
|
|
3396
|
+
readonly mergedRepos: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3397
|
+
readonly unmergedRepos: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3398
|
+
}, undefined>, undefined>, undefined>;
|
|
3399
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3400
|
+
readonly resolvedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3401
|
+
}, undefined>, undefined>, undefined>;
|
|
3402
|
+
readonly riskPolicies: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3403
|
+
readonly id: v.StringSchema<undefined>;
|
|
3404
|
+
readonly name: v.StringSchema<undefined>;
|
|
3405
|
+
readonly maxComplexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3406
|
+
readonly maxRisk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3407
|
+
readonly maxImpact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3408
|
+
readonly ciMaxAttempts: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3409
|
+
readonly maxRequirementIterations: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3410
|
+
readonly maxRequirementConcernAllowed: v.PicklistSchema<["none", "low", "medium", "high"], undefined>;
|
|
3411
|
+
readonly maxTesterQualityIterations: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3412
|
+
readonly releaseWatchWindowMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3413
|
+
readonly releaseMaxAttempts: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3414
|
+
readonly humanReviewGraceMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>;
|
|
3415
|
+
readonly autoMergeEnabled: v.BooleanSchema<undefined>;
|
|
3416
|
+
readonly isDefault: v.BooleanSchema<undefined>;
|
|
3417
|
+
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3418
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3419
|
+
}, undefined>, undefined>, undefined>;
|
|
3420
|
+
readonly sharedStacks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3421
|
+
readonly id: v.StringSchema<undefined>;
|
|
3422
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
3423
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3424
|
+
readonly cloneUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3425
|
+
readonly gitRef: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3426
|
+
readonly composeFiles: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3427
|
+
readonly composeProfiles: v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3428
|
+
readonly envFiles: v.ArraySchema<v.ObjectSchema<{
|
|
3429
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3430
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3431
|
+
}, undefined>, undefined>;
|
|
3432
|
+
readonly managedNetworks: v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3433
|
+
readonly setupSteps: v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3434
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3435
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3436
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3437
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3438
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3439
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3440
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3441
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3442
|
+
}, undefined>, v.ObjectSchema<{
|
|
3443
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
3444
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3445
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3446
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3447
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3448
|
+
}, undefined>, v.ObjectSchema<{
|
|
3449
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
3450
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3451
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3452
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3453
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3454
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3455
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3456
|
+
}, undefined>, v.ObjectSchema<{
|
|
3457
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
3458
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3459
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3460
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3461
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3462
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3463
|
+
}, undefined>, v.ObjectSchema<{
|
|
3464
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3465
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3466
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3467
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3468
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3469
|
+
}, undefined>], undefined>, undefined>;
|
|
3470
|
+
readonly prerequisites: v.ArraySchema<v.ObjectSchema<{
|
|
3471
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
3472
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
3473
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
3474
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3475
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3476
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
3477
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3478
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3479
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3480
|
+
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
3481
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3482
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3483
|
+
}, undefined>, undefined>;
|
|
3484
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3485
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3486
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3487
|
+
}, undefined>, undefined>;
|
|
3488
|
+
readonly healthGate: v.NullableSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3489
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
3490
|
+
}, undefined>, v.ObjectSchema<{
|
|
3491
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
3492
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3493
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3494
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3495
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3496
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3497
|
+
}, undefined>, v.ObjectSchema<{
|
|
3498
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3499
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3500
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3501
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3502
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3503
|
+
}, undefined>], undefined>, undefined>;
|
|
3504
|
+
readonly allowHostCommands: v.BooleanSchema<undefined>;
|
|
3505
|
+
readonly status: v.PicklistSchema<["stopped", "starting", "running", "failed"], undefined>;
|
|
3506
|
+
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3507
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3508
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3509
|
+
}, undefined>, undefined>, undefined>;
|
|
3510
|
+
readonly agentConfigCatalog: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3511
|
+
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3512
|
+
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3513
|
+
readonly label: v.StringSchema<undefined>;
|
|
3514
|
+
readonly description: v.StringSchema<undefined>;
|
|
3515
|
+
readonly type: v.PicklistSchema<["select"], undefined>;
|
|
3516
|
+
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
3517
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3518
|
+
readonly label: v.StringSchema<undefined>;
|
|
3519
|
+
}, undefined>, undefined>;
|
|
3520
|
+
readonly default: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3521
|
+
}, undefined>, undefined>, undefined>;
|
|
3522
|
+
readonly modelPresets: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3523
|
+
readonly id: v.StringSchema<undefined>;
|
|
3524
|
+
readonly name: v.StringSchema<undefined>;
|
|
3525
|
+
readonly baseModelId: v.StringSchema<undefined>;
|
|
3526
|
+
readonly overrides: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
3527
|
+
readonly isDefault: v.BooleanSchema<undefined>;
|
|
3528
|
+
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3529
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3530
|
+
}, undefined>, undefined>, undefined>;
|
|
3531
|
+
readonly deploymentModelDefaults: v.OptionalSchema<v.ObjectSchema<{
|
|
3532
|
+
readonly default: v.StringSchema<undefined>;
|
|
3533
|
+
readonly byKind: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
3534
|
+
}, undefined>, undefined>;
|
|
3535
|
+
readonly serviceFragmentDefaults: v.OptionalSchema<v.ObjectSchema<{
|
|
3536
|
+
readonly fragmentIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3537
|
+
}, undefined>, undefined>;
|
|
3538
|
+
readonly recurringPipelines: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3539
|
+
readonly id: v.StringSchema<undefined>;
|
|
3540
|
+
readonly serviceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3541
|
+
readonly blockId: v.StringSchema<undefined>;
|
|
3542
|
+
readonly frameId: v.StringSchema<undefined>;
|
|
3543
|
+
readonly pipelineId: v.StringSchema<undefined>;
|
|
3544
|
+
readonly template: v.PicklistSchema<["dep-update", "tech-debt", "bug-triage", "custom"], undefined>;
|
|
3545
|
+
readonly name: v.StringSchema<undefined>;
|
|
3546
|
+
readonly recurrence: v.ObjectSchema<{
|
|
3547
|
+
readonly intervalHours: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
3548
|
+
readonly weekdays: v.ArraySchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 6, undefined>]>, undefined>;
|
|
3549
|
+
readonly windowStartHour: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 23, undefined>]>, undefined>;
|
|
3550
|
+
readonly windowEndHour: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 23, undefined>]>, undefined>;
|
|
3551
|
+
readonly timezone: v.StringSchema<undefined>;
|
|
3552
|
+
}, undefined>;
|
|
3553
|
+
readonly onDemand: v.BooleanSchema<undefined>;
|
|
3554
|
+
readonly issueIntake: v.OptionalSchema<v.ObjectSchema<{
|
|
3555
|
+
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
3556
|
+
readonly board: v.ObjectSchema<{
|
|
3557
|
+
readonly jiraProjectKey: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3558
|
+
readonly linearTeamId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3559
|
+
readonly githubRepo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3560
|
+
}, undefined>;
|
|
3561
|
+
readonly predicates: v.ObjectSchema<{
|
|
3562
|
+
readonly titleFragment: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3563
|
+
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
3564
|
+
readonly issueType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3565
|
+
}, undefined>;
|
|
3566
|
+
readonly inProgressLabel: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3567
|
+
}, undefined>, undefined>;
|
|
3568
|
+
readonly enabled: v.BooleanSchema<undefined>;
|
|
3569
|
+
readonly lastRunAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3570
|
+
readonly nextRunAt: v.NumberSchema<undefined>;
|
|
3571
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3572
|
+
}, undefined>, undefined>, undefined>;
|
|
3573
|
+
readonly trackerSettings: v.OptionalSchema<v.ObjectSchema<{
|
|
3574
|
+
readonly tracker: v.NullableSchema<v.PicklistSchema<["github", "jira", "linear"], undefined>, undefined>;
|
|
3575
|
+
readonly jiraProjectKey: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3576
|
+
readonly linearTeamId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3577
|
+
readonly writebackCommentOnPrOpen: v.BooleanSchema<undefined>;
|
|
3578
|
+
readonly writebackResolveOnMerge: v.BooleanSchema<undefined>;
|
|
3579
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3580
|
+
}, undefined>, undefined>;
|
|
3581
|
+
readonly mounts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3582
|
+
readonly workspaceId: v.StringSchema<undefined>;
|
|
3583
|
+
readonly serviceId: v.StringSchema<undefined>;
|
|
3584
|
+
readonly position: v.ObjectSchema<{
|
|
3585
|
+
readonly x: v.NumberSchema<undefined>;
|
|
3586
|
+
readonly y: v.NumberSchema<undefined>;
|
|
3587
|
+
}, undefined>;
|
|
3588
|
+
readonly size: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3589
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3590
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3591
|
+
}, undefined>, undefined>, undefined>;
|
|
3592
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3593
|
+
}, undefined>, undefined>, undefined>;
|
|
3594
|
+
readonly serviceCatalog: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3595
|
+
readonly id: v.StringSchema<undefined>;
|
|
3596
|
+
readonly accountId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3597
|
+
readonly frameBlockId: v.StringSchema<undefined>;
|
|
3598
|
+
readonly installationId: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3599
|
+
readonly repoGithubId: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3600
|
+
readonly directory: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3601
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3602
|
+
readonly mountCount: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3603
|
+
}, undefined>, undefined>, undefined>;
|
|
3604
|
+
readonly archivedServices: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3605
|
+
readonly id: v.StringSchema<undefined>;
|
|
3606
|
+
readonly title: v.StringSchema<undefined>;
|
|
3607
|
+
readonly type: v.PicklistSchema<["frontend", "service", "library", "document", "api", "database", "queue", "integration", "external", "environment"], undefined>;
|
|
3608
|
+
readonly description: v.StringSchema<undefined>;
|
|
3609
|
+
readonly position: v.ObjectSchema<{
|
|
3610
|
+
readonly x: v.NumberSchema<undefined>;
|
|
3611
|
+
readonly y: v.NumberSchema<undefined>;
|
|
3612
|
+
}, undefined>;
|
|
3613
|
+
readonly size: v.OptionalSchema<v.ObjectSchema<{
|
|
3614
|
+
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3615
|
+
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3616
|
+
}, undefined>, undefined>;
|
|
3617
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
3618
|
+
readonly progress: v.NumberSchema<undefined>;
|
|
3619
|
+
readonly dependsOn: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3620
|
+
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3621
|
+
readonly level: v.PicklistSchema<["frame", "module", "task", "epic", "initiative"], undefined>;
|
|
3622
|
+
readonly parentId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3623
|
+
readonly epicId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3624
|
+
readonly initiativeId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3625
|
+
readonly autoStartDependents: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3626
|
+
readonly confidence: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3627
|
+
readonly estimate: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3628
|
+
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3629
|
+
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3630
|
+
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3631
|
+
readonly rationale: v.StringSchema<undefined>;
|
|
3632
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3633
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
3634
|
+
}, undefined>, undefined>, undefined>;
|
|
3635
|
+
readonly moduleName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3636
|
+
readonly taskType: v.OptionalSchema<v.PicklistSchema<["feature", "bug", "document", "spike", "recurring"], undefined>, undefined>;
|
|
3637
|
+
readonly taskTypeFields: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3638
|
+
readonly severity: v.OptionalSchema<v.PicklistSchema<["low", "medium", "high", "critical"], undefined>, undefined>;
|
|
3639
|
+
readonly stepsToReproduce: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3640
|
+
readonly timeboxHours: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
|
|
3641
|
+
readonly docKind: v.OptionalSchema<v.PicklistSchema<readonly ["prd", "rfc", "adr", "design", "technical", "api", "runbook", "research", "reference", "other"], undefined>, undefined>;
|
|
3642
|
+
readonly audience: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
3643
|
+
readonly targetPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 300, undefined>, v.CheckAction<string, "targetPath must be a relative path inside the repo, ending in .md, with no \"..\", absolute, or backslash segments.">]>, undefined>;
|
|
3644
|
+
readonly outlineHints: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3645
|
+
readonly targetUsers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3646
|
+
readonly successMetrics: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3647
|
+
readonly alternativesConsidered: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3648
|
+
readonly rolloutConcerns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3649
|
+
readonly decisionDrivers: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3650
|
+
readonly consideredOptions: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3651
|
+
readonly whenToUse: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3652
|
+
readonly escalationPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3653
|
+
readonly researchQuestion: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3654
|
+
readonly optionsToCompare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3655
|
+
readonly apiSurface: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3656
|
+
}, undefined>, undefined>, undefined>;
|
|
3657
|
+
readonly technical: v.OptionalSchema<v.NullableSchema<v.BooleanSchema<undefined>, undefined>, undefined>;
|
|
3658
|
+
readonly fragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3659
|
+
readonly serviceFragmentIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3660
|
+
readonly modelId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3661
|
+
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
3662
|
+
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
3663
|
+
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
3664
|
+
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
3665
|
+
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
3666
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3667
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
3668
|
+
}, undefined>, v.ObjectSchema<{
|
|
3669
|
+
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
3670
|
+
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
3671
|
+
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
3672
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3673
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
3674
|
+
}, undefined>], undefined>, undefined>;
|
|
3675
|
+
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3676
|
+
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3677
|
+
readonly composeBuild: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3678
|
+
readonly recipe: v.OptionalSchema<v.ObjectSchema<{
|
|
3679
|
+
readonly composeFiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>, undefined>;
|
|
3680
|
+
readonly composeProfiles: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
3681
|
+
readonly envFiles: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3682
|
+
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3683
|
+
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3684
|
+
}, undefined>, undefined>, undefined>;
|
|
3685
|
+
readonly externalNetworks: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
3686
|
+
readonly sharedStackRefs: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
3687
|
+
readonly prerequisites: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3688
|
+
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
3689
|
+
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
3690
|
+
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
3691
|
+
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3692
|
+
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3693
|
+
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
3694
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2734
3695
|
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
2735
3696
|
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2736
|
-
readonly
|
|
2737
|
-
readonly
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
2744
|
-
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2745
|
-
}, undefined>, v.ObjectSchema<{
|
|
2746
|
-
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
2747
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
2748
|
-
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
2749
|
-
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2750
|
-
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2751
|
-
}, undefined>], undefined>, undefined>, undefined>;
|
|
2752
|
-
}, undefined>, undefined>;
|
|
2753
|
-
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
2754
|
-
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2755
|
-
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
2756
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2757
|
-
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2758
|
-
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2759
|
-
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2760
|
-
}, undefined>, v.CheckAction<{
|
|
2761
|
-
name: string;
|
|
2762
|
-
newNameTemplate?: string | undefined;
|
|
2763
|
-
newTagTemplate?: string | undefined;
|
|
2764
|
-
digestTemplate?: string | undefined;
|
|
2765
|
-
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
2766
|
-
name: string;
|
|
2767
|
-
newNameTemplate?: string | undefined;
|
|
2768
|
-
newTagTemplate?: string | undefined;
|
|
2769
|
-
digestTemplate?: string | undefined;
|
|
2770
|
-
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
2771
|
-
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2772
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2773
|
-
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2774
|
-
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2775
|
-
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
2776
|
-
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2777
|
-
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
2778
|
-
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2779
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2780
|
-
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2781
|
-
}, undefined>, undefined>, undefined>;
|
|
2782
|
-
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2783
|
-
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
2784
|
-
readonly secretRef: v.ObjectSchema<{
|
|
2785
|
-
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
2786
|
-
}, undefined>;
|
|
2787
|
-
}, undefined>, undefined>, undefined>;
|
|
2788
|
-
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
3697
|
+
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
3698
|
+
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3699
|
+
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3700
|
+
}, undefined>, undefined>;
|
|
3701
|
+
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3702
|
+
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3703
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
2789
3704
|
}, undefined>, undefined>, undefined>;
|
|
2790
|
-
readonly
|
|
2791
|
-
readonly
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
2794
|
-
readonly
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
2800
|
-
}, undefined>, v.CheckAction<{
|
|
2801
|
-
key: string;
|
|
2802
|
-
secretRef?: {
|
|
2803
|
-
key: string;
|
|
2804
|
-
} | undefined;
|
|
2805
|
-
valueTemplate?: string | undefined;
|
|
2806
|
-
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
3705
|
+
readonly setupSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3706
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3707
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3708
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3709
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3710
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3711
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3712
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3713
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2807
3714
|
}, undefined>, v.ObjectSchema<{
|
|
2808
|
-
readonly
|
|
2809
|
-
readonly
|
|
2810
|
-
readonly
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
3715
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
3716
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3717
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3718
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3719
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3720
|
+
}, undefined>, v.ObjectSchema<{
|
|
3721
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
3722
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3723
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3724
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3725
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3726
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3727
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3728
|
+
}, undefined>, v.ObjectSchema<{
|
|
3729
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
3730
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3731
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3732
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3733
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3734
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3735
|
+
}, undefined>, v.ObjectSchema<{
|
|
3736
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3737
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3738
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3739
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3740
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3741
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
3742
|
+
readonly healthGate: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3743
|
+
readonly kind: v.LiteralSchema<"compose-healthy", undefined>;
|
|
3744
|
+
}, undefined>, v.ObjectSchema<{
|
|
3745
|
+
readonly kind: v.LiteralSchema<"http", undefined>;
|
|
3746
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3747
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3748
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3749
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3750
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3751
|
+
}, undefined>, v.ObjectSchema<{
|
|
3752
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3753
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3754
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3755
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3756
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3757
|
+
}, undefined>], undefined>, undefined>;
|
|
3758
|
+
readonly teardownSteps: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3759
|
+
readonly kind: v.LiteralSchema<"compose-exec", undefined>;
|
|
3760
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3761
|
+
readonly service: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3762
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3763
|
+
readonly stdinFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3764
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3765
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3766
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3767
|
+
}, undefined>, v.ObjectSchema<{
|
|
3768
|
+
readonly kind: v.LiteralSchema<"copy-file", undefined>;
|
|
3769
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3770
|
+
readonly from: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3771
|
+
readonly to: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3772
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3773
|
+
}, undefined>, v.ObjectSchema<{
|
|
3774
|
+
readonly kind: v.LiteralSchema<"wait-http", undefined>;
|
|
3775
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3776
|
+
readonly url: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
3777
|
+
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3778
|
+
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3779
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3780
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3781
|
+
}, undefined>, v.ObjectSchema<{
|
|
3782
|
+
readonly kind: v.LiteralSchema<"wait-file", undefined>;
|
|
3783
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3784
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3785
|
+
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3786
|
+
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3787
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3788
|
+
}, undefined>, v.ObjectSchema<{
|
|
3789
|
+
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3790
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3791
|
+
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3792
|
+
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3793
|
+
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
2823
3794
|
}, undefined>], undefined>, undefined>, undefined>;
|
|
2824
3795
|
}, undefined>, undefined>;
|
|
2825
|
-
readonly
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
readonly
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
readonly
|
|
2845
|
-
readonly
|
|
2846
|
-
readonly
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
readonly failureHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2854
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2855
|
-
readonly message: v.StringSchema<undefined>;
|
|
2856
|
-
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2857
|
-
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2858
|
-
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2859
|
-
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2860
|
-
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2861
|
-
readonly completed: v.NumberSchema<undefined>;
|
|
2862
|
-
readonly inProgress: v.NumberSchema<undefined>;
|
|
2863
|
-
readonly total: v.NumberSchema<undefined>;
|
|
2864
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2865
|
-
readonly label: v.StringSchema<undefined>;
|
|
2866
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2867
|
-
}, undefined>, undefined>, undefined>;
|
|
2868
|
-
}, undefined>, undefined>;
|
|
2869
|
-
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2870
|
-
}, undefined>, undefined>, undefined>;
|
|
2871
|
-
readonly outputHistory: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2872
|
-
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2873
|
-
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2874
|
-
readonly output: v.StringSchema<undefined>;
|
|
2875
|
-
readonly truncated: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2876
|
-
}, undefined>, undefined>, undefined>;
|
|
2877
|
-
readonly notes: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2878
|
-
readonly frontendBindings: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2879
|
-
readonly envVar: v.StringSchema<undefined>;
|
|
2880
|
-
readonly serviceUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2881
|
-
}, undefined>, undefined>, undefined>;
|
|
2882
|
-
readonly initiatedBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2883
|
-
readonly createdAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2884
|
-
readonly rev: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2885
|
-
readonly diagnostics: v.OptionalSchema<v.ObjectSchema<{
|
|
2886
|
-
readonly lastDispatch: v.OptionalSchema<v.ObjectSchema<{
|
|
2887
|
-
readonly stepIndex: v.NumberSchema<undefined>;
|
|
2888
|
-
readonly agentKind: v.StringSchema<undefined>;
|
|
2889
|
-
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2890
|
-
readonly executionBackend: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2891
|
-
readonly repo: v.OptionalSchema<v.ObjectSchema<{
|
|
2892
|
-
readonly owner: v.StringSchema<undefined>;
|
|
2893
|
-
readonly name: v.StringSchema<undefined>;
|
|
2894
|
-
readonly baseBranch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2895
|
-
readonly provider: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2896
|
-
}, undefined>, undefined>;
|
|
2897
|
-
readonly at: v.NumberSchema<undefined>;
|
|
2898
|
-
}, undefined>, undefined>;
|
|
2899
|
-
readonly host: v.OptionalSchema<v.ObjectSchema<{
|
|
2900
|
-
readonly platform: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2901
|
-
}, undefined>, undefined>;
|
|
2902
|
-
}, undefined>, undefined>;
|
|
2903
|
-
}, undefined>, undefined>;
|
|
2904
|
-
readonly bootstrapJobs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2905
|
-
readonly id: v.StringSchema<undefined>;
|
|
2906
|
-
readonly workspaceId: v.StringSchema<undefined>;
|
|
2907
|
-
readonly referenceArchitectureId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2908
|
-
readonly referenceArchitectureName: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2909
|
-
readonly repoName: v.StringSchema<undefined>;
|
|
2910
|
-
readonly repoOwner: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2911
|
-
readonly repoUrl: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2912
|
-
readonly instructions: v.StringSchema<undefined>;
|
|
2913
|
-
readonly status: v.PicklistSchema<["pending", "running", "succeeded", "failed"], undefined>;
|
|
2914
|
-
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2915
|
-
readonly subtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2916
|
-
readonly completed: v.NumberSchema<undefined>;
|
|
2917
|
-
readonly inProgress: v.NumberSchema<undefined>;
|
|
2918
|
-
readonly total: v.NumberSchema<undefined>;
|
|
2919
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2920
|
-
readonly label: v.StringSchema<undefined>;
|
|
2921
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2922
|
-
}, undefined>, undefined>, undefined>;
|
|
2923
|
-
}, undefined>, undefined>;
|
|
2924
|
-
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2925
|
-
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
2926
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2927
|
-
readonly message: v.StringSchema<undefined>;
|
|
2928
|
-
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2929
|
-
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2930
|
-
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2931
|
-
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2932
|
-
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2933
|
-
readonly completed: v.NumberSchema<undefined>;
|
|
2934
|
-
readonly inProgress: v.NumberSchema<undefined>;
|
|
2935
|
-
readonly total: v.NumberSchema<undefined>;
|
|
2936
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2937
|
-
readonly label: v.StringSchema<undefined>;
|
|
2938
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3796
|
+
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
3797
|
+
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3798
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3799
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3800
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3801
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3802
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3803
|
+
}, undefined>, v.CheckAction<{
|
|
3804
|
+
name: string;
|
|
3805
|
+
newNameTemplate?: string | undefined;
|
|
3806
|
+
newTagTemplate?: string | undefined;
|
|
3807
|
+
digestTemplate?: string | undefined;
|
|
3808
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
3809
|
+
name: string;
|
|
3810
|
+
newNameTemplate?: string | undefined;
|
|
3811
|
+
newTagTemplate?: string | undefined;
|
|
3812
|
+
digestTemplate?: string | undefined;
|
|
3813
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
3814
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3815
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3816
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3817
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3818
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
3819
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3820
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
3821
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3822
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3823
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
2939
3824
|
}, undefined>, undefined>, undefined>;
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
}, undefined>, undefined>, undefined>;
|
|
2946
|
-
readonly envConfigRepairJobs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2947
|
-
readonly id: v.StringSchema<undefined>;
|
|
2948
|
-
readonly workspaceId: v.StringSchema<undefined>;
|
|
2949
|
-
readonly owner: v.StringSchema<undefined>;
|
|
2950
|
-
readonly repo: v.StringSchema<undefined>;
|
|
2951
|
-
readonly branch: v.StringSchema<undefined>;
|
|
2952
|
-
readonly status: v.PicklistSchema<["running", "succeeded", "failed"], undefined>;
|
|
2953
|
-
readonly ok: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2954
|
-
readonly issues: v.ArraySchema<v.ObjectSchema<{
|
|
2955
|
-
readonly severity: v.PicklistSchema<["error", "warning"], undefined>;
|
|
2956
|
-
readonly message: v.StringSchema<undefined>;
|
|
2957
|
-
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2958
|
-
}, undefined>, undefined>;
|
|
2959
|
-
readonly subtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2960
|
-
readonly completed: v.NumberSchema<undefined>;
|
|
2961
|
-
readonly inProgress: v.NumberSchema<undefined>;
|
|
2962
|
-
readonly total: v.NumberSchema<undefined>;
|
|
2963
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2964
|
-
readonly label: v.StringSchema<undefined>;
|
|
2965
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
2966
|
-
}, undefined>, undefined>, undefined>;
|
|
2967
|
-
}, undefined>, undefined>;
|
|
2968
|
-
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2969
|
-
readonly failure: v.NullableSchema<v.ObjectSchema<{
|
|
2970
|
-
readonly kind: v.PicklistSchema<["preflight", "dispatch", "environment", "evicted", "timeout", "agent", "job_failed", "rejected", "companion_rejected", "stalled", "cancelled", "unknown"], undefined>;
|
|
2971
|
-
readonly message: v.StringSchema<undefined>;
|
|
2972
|
-
readonly detail: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2973
|
-
readonly hint: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
2974
|
-
readonly reason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
2975
|
-
readonly occurredAt: v.NumberSchema<undefined>;
|
|
2976
|
-
readonly lastSubtasks: v.NullableSchema<v.ObjectSchema<{
|
|
2977
|
-
readonly completed: v.NumberSchema<undefined>;
|
|
2978
|
-
readonly inProgress: v.NumberSchema<undefined>;
|
|
2979
|
-
readonly total: v.NumberSchema<undefined>;
|
|
2980
|
-
readonly items: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2981
|
-
readonly label: v.StringSchema<undefined>;
|
|
2982
|
-
readonly status: v.PicklistSchema<["pending", "in_progress", "completed"], undefined>;
|
|
3825
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3826
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3827
|
+
readonly secretRef: v.ObjectSchema<{
|
|
3828
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3829
|
+
}, undefined>;
|
|
2983
3830
|
}, undefined>, undefined>, undefined>;
|
|
2984
|
-
|
|
2985
|
-
readonly stepIndex: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
2986
|
-
}, undefined>, undefined>;
|
|
2987
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
2988
|
-
readonly updatedAt: v.NumberSchema<undefined>;
|
|
2989
|
-
}, undefined>, undefined>, undefined>;
|
|
2990
|
-
readonly spend: v.OptionalSchema<v.ObjectSchema<{
|
|
2991
|
-
readonly periodStart: v.NumberSchema<undefined>;
|
|
2992
|
-
readonly inputTokens: v.NumberSchema<undefined>;
|
|
2993
|
-
readonly outputTokens: v.NumberSchema<undefined>;
|
|
2994
|
-
readonly costSpent: v.NumberSchema<undefined>;
|
|
2995
|
-
readonly costLimit: v.NumberSchema<undefined>;
|
|
2996
|
-
readonly currency: v.StringSchema<undefined>;
|
|
2997
|
-
readonly exceeded: v.BooleanSchema<undefined>;
|
|
2998
|
-
}, undefined>, undefined>;
|
|
2999
|
-
readonly accountSpend: v.OptionalSchema<v.ObjectSchema<{
|
|
3000
|
-
readonly periodStart: v.NumberSchema<undefined>;
|
|
3001
|
-
readonly inputTokens: v.NumberSchema<undefined>;
|
|
3002
|
-
readonly outputTokens: v.NumberSchema<undefined>;
|
|
3003
|
-
readonly costSpent: v.NumberSchema<undefined>;
|
|
3004
|
-
readonly costLimit: v.NumberSchema<undefined>;
|
|
3005
|
-
readonly currency: v.StringSchema<undefined>;
|
|
3006
|
-
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3007
|
-
}, undefined>, undefined>;
|
|
3008
|
-
readonly userSpend: v.OptionalSchema<v.ObjectSchema<{
|
|
3009
|
-
readonly periodStart: v.NumberSchema<undefined>;
|
|
3010
|
-
readonly inputTokens: v.NumberSchema<undefined>;
|
|
3011
|
-
readonly outputTokens: v.NumberSchema<undefined>;
|
|
3012
|
-
readonly costSpent: v.NumberSchema<undefined>;
|
|
3013
|
-
readonly costLimit: v.NumberSchema<undefined>;
|
|
3014
|
-
readonly currency: v.StringSchema<undefined>;
|
|
3015
|
-
readonly exceeded: v.BooleanSchema<undefined>;
|
|
3016
|
-
}, undefined>, undefined>;
|
|
3017
|
-
readonly userSettings: v.OptionalSchema<v.ObjectSchema<{
|
|
3018
|
-
readonly spendMonthlyLimit: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
3019
|
-
}, undefined>, undefined>;
|
|
3020
|
-
readonly budgetCaps: v.OptionalSchema<v.ObjectSchema<{
|
|
3021
|
-
readonly accountMonthlyLimitMax: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3022
|
-
readonly userMonthlyLimitMax: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3023
|
-
readonly currency: v.StringSchema<undefined>;
|
|
3024
|
-
}, undefined>, undefined>;
|
|
3025
|
-
readonly notifications: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3026
|
-
readonly id: v.StringSchema<undefined>;
|
|
3027
|
-
readonly type: v.PicklistSchema<["merge_review", "pipeline_complete", "ci_failed", "test_failed", "requirement_review", "clarity_review", "release_regression", "decision_required", "human_test_ready", "visual_confirmation_ready", "human_review", "followup_pending", "initiative"], undefined>;
|
|
3028
|
-
readonly status: v.PicklistSchema<["open", "acted", "dismissed"], undefined>;
|
|
3029
|
-
readonly severity: v.OptionalSchema<v.PicklistSchema<["normal", "urgent"], undefined>, undefined>;
|
|
3030
|
-
readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3031
|
-
readonly executionId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3032
|
-
readonly title: v.StringSchema<undefined>;
|
|
3033
|
-
readonly body: v.StringSchema<undefined>;
|
|
3034
|
-
readonly payload: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3035
|
-
readonly assessment: v.OptionalSchema<v.ObjectSchema<{
|
|
3036
|
-
readonly complexity: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3037
|
-
readonly risk: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3038
|
-
readonly impact: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3039
|
-
readonly rationale: v.StringSchema<undefined>;
|
|
3040
|
-
}, undefined>, undefined>;
|
|
3041
|
-
readonly prUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3042
|
-
readonly pipelineName: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3043
|
-
readonly findingCount: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3044
|
-
readonly onCallAssessment: v.OptionalSchema<v.ObjectSchema<{
|
|
3045
|
-
readonly culpritConfidence: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>;
|
|
3046
|
-
readonly recommendation: v.PicklistSchema<["revert", "hold", "monitor"], undefined>;
|
|
3047
|
-
readonly rationale: v.StringSchema<undefined>;
|
|
3048
|
-
readonly evidence: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, readonly []>;
|
|
3049
|
-
}, undefined>, undefined>;
|
|
3050
|
-
readonly releaseSignals: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3051
|
-
readonly kind: v.PicklistSchema<["monitor", "slo"], undefined>;
|
|
3052
|
-
readonly id: v.StringSchema<undefined>;
|
|
3053
|
-
readonly name: v.StringSchema<undefined>;
|
|
3054
|
-
readonly state: v.PicklistSchema<["ok", "warn", "alert", "no_data"], undefined>;
|
|
3055
|
-
readonly detail: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3831
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
3056
3832
|
}, undefined>, undefined>, undefined>;
|
|
3057
|
-
readonly
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
readonly composeProfiles: v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3092
|
-
readonly envFiles: v.ArraySchema<v.ObjectSchema<{
|
|
3093
|
-
readonly template: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3094
|
-
readonly target: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3833
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
3834
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
3835
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3836
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
3837
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3838
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
3839
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
3840
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3841
|
+
}, undefined>, undefined>;
|
|
3842
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3843
|
+
}, undefined>, v.CheckAction<{
|
|
3844
|
+
key: string;
|
|
3845
|
+
secretRef?: {
|
|
3846
|
+
key: string;
|
|
3847
|
+
} | undefined;
|
|
3848
|
+
valueTemplate?: string | undefined;
|
|
3849
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
3850
|
+
}, undefined>, v.ObjectSchema<{
|
|
3851
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
3852
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
3853
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
3854
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
3855
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
3856
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
3857
|
+
}, undefined>, undefined>;
|
|
3858
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3859
|
+
}, undefined>, v.CheckAction<{
|
|
3860
|
+
key: string;
|
|
3861
|
+
secretRef?: {
|
|
3862
|
+
key: string;
|
|
3863
|
+
} | undefined;
|
|
3864
|
+
valueTemplate?: string | undefined;
|
|
3865
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
3866
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
3095
3867
|
}, undefined>, undefined>;
|
|
3096
|
-
readonly
|
|
3097
|
-
readonly
|
|
3098
|
-
|
|
3099
|
-
readonly
|
|
3100
|
-
readonly
|
|
3101
|
-
readonly
|
|
3102
|
-
readonly
|
|
3103
|
-
readonly
|
|
3104
|
-
readonly
|
|
3105
|
-
readonly
|
|
3106
|
-
|
|
3107
|
-
readonly
|
|
3108
|
-
readonly
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
readonly
|
|
3115
|
-
readonly
|
|
3116
|
-
readonly
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
readonly service: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3125
|
-
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3126
|
-
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3127
|
-
}, undefined>, v.ObjectSchema<{
|
|
3128
|
-
readonly kind: v.LiteralSchema<"host-command", undefined>;
|
|
3129
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3130
|
-
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3131
|
-
readonly workdir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3132
|
-
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3133
|
-
}, undefined>], undefined>, undefined>;
|
|
3134
|
-
readonly prerequisites: v.ArraySchema<v.ObjectSchema<{
|
|
3135
|
-
readonly check: v.PicklistSchema<["docker-daemon", "disk-space", "memory", "registry-auth", "tcp-reachable", "http-reachable", "mkcert-ca", "hosts-entries", "env-secrets-marker"], undefined>;
|
|
3136
|
-
readonly params: v.OptionalSchema<v.ObjectSchema<{
|
|
3137
|
-
readonly minGib: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1024, undefined>]>, undefined>;
|
|
3138
|
-
readonly registry: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3139
|
-
readonly host: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3140
|
-
readonly port: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
3141
|
-
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
3142
|
-
readonly expectStatus: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 100, undefined>, v.MaxValueAction<number, 599, undefined>]>, undefined>;
|
|
3143
|
-
readonly expectBodyContains: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3144
|
-
readonly hostnames: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>, undefined>;
|
|
3145
|
-
readonly file: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3146
|
-
readonly marker: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3868
|
+
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
3869
|
+
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
3870
|
+
readonly frontendConfig: v.OptionalSchema<v.ObjectSchema<{
|
|
3871
|
+
readonly packageManager: v.OptionalSchema<v.PicklistSchema<["pnpm", "npm", "yarn"], undefined>, undefined>;
|
|
3872
|
+
readonly installCommand: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3873
|
+
readonly buildScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3874
|
+
readonly outputDir: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3875
|
+
readonly directory: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3876
|
+
readonly serveMode: v.OptionalSchema<v.PicklistSchema<["static", "command"], undefined>, undefined>;
|
|
3877
|
+
readonly serveScript: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3878
|
+
readonly servePort: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 65535, undefined>]>, undefined>;
|
|
3879
|
+
readonly envInjection: v.OptionalSchema<v.PicklistSchema<["build", "runtime"], undefined>, undefined>;
|
|
3880
|
+
readonly branch: v.OptionalSchema<v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3881
|
+
readonly kind: v.LiteralSchema<"default", undefined>;
|
|
3882
|
+
}, undefined>, v.ObjectSchema<{
|
|
3883
|
+
readonly kind: v.LiteralSchema<"task", undefined>;
|
|
3884
|
+
readonly fromTaskBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3885
|
+
}, undefined>], undefined>, undefined>;
|
|
3886
|
+
readonly mockMappingsPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
3887
|
+
readonly previewEnabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3888
|
+
readonly backendBindings: v.ArraySchema<v.ObjectSchema<{
|
|
3889
|
+
readonly envVar: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 200, undefined>]>;
|
|
3890
|
+
readonly source: v.VariantSchema<"kind", [v.ObjectSchema<{
|
|
3891
|
+
readonly kind: v.LiteralSchema<"service", undefined>;
|
|
3892
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3893
|
+
}, undefined>, v.ObjectSchema<{
|
|
3894
|
+
readonly kind: v.LiteralSchema<"mock", undefined>;
|
|
3895
|
+
}, undefined>], undefined>;
|
|
3147
3896
|
}, undefined>, undefined>;
|
|
3148
|
-
readonly required: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3149
|
-
readonly remediation: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>, undefined>;
|
|
3150
|
-
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
3151
3897
|
}, undefined>, undefined>;
|
|
3152
|
-
readonly
|
|
3153
|
-
readonly
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
readonly
|
|
3163
|
-
readonly
|
|
3164
|
-
readonly command: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
|
|
3165
|
-
readonly intervalMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 250, undefined>, v.MaxValueAction<number, 60000, undefined>]>, undefined>;
|
|
3166
|
-
readonly timeoutMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1000, undefined>, v.MaxValueAction<number, 3600000, undefined>]>, undefined>;
|
|
3167
|
-
}, undefined>], undefined>, undefined>;
|
|
3168
|
-
readonly allowHostCommands: v.BooleanSchema<undefined>;
|
|
3169
|
-
readonly status: v.PicklistSchema<["stopped", "starting", "running", "failed"], undefined>;
|
|
3170
|
-
readonly lastError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3171
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
3172
|
-
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3173
|
-
}, undefined>, undefined>, undefined>;
|
|
3174
|
-
readonly agentConfigCatalog: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3175
|
-
readonly id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3176
|
-
readonly agentKind: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3177
|
-
readonly label: v.StringSchema<undefined>;
|
|
3178
|
-
readonly description: v.StringSchema<undefined>;
|
|
3179
|
-
readonly type: v.PicklistSchema<["select"], undefined>;
|
|
3180
|
-
readonly options: v.ArraySchema<v.ObjectSchema<{
|
|
3181
|
-
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
3182
|
-
readonly label: v.StringSchema<undefined>;
|
|
3898
|
+
readonly serviceConnections: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
3899
|
+
readonly serviceBlockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
3900
|
+
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 300, undefined>]>, undefined>;
|
|
3901
|
+
}, undefined>, undefined>, v.MaxLengthAction<{
|
|
3902
|
+
serviceBlockId: string;
|
|
3903
|
+
description?: string | undefined;
|
|
3904
|
+
}[], 50, undefined>]>, undefined>;
|
|
3905
|
+
readonly involvedServiceIds: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3906
|
+
readonly pullRequest: v.OptionalSchema<v.ObjectSchema<{
|
|
3907
|
+
readonly url: v.StringSchema<undefined>;
|
|
3908
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3909
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3183
3910
|
}, undefined>, undefined>;
|
|
3184
|
-
readonly
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
readonly isDefault: v.BooleanSchema<undefined>;
|
|
3192
|
-
readonly version: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3193
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
3194
|
-
}, undefined>, undefined>, undefined>;
|
|
3195
|
-
readonly deploymentModelDefaults: v.OptionalSchema<v.ObjectSchema<{
|
|
3196
|
-
readonly default: v.StringSchema<undefined>;
|
|
3197
|
-
readonly byKind: v.RecordSchema<v.StringSchema<undefined>, v.StringSchema<undefined>, undefined>;
|
|
3198
|
-
}, undefined>, undefined>;
|
|
3199
|
-
readonly serviceFragmentDefaults: v.OptionalSchema<v.ObjectSchema<{
|
|
3200
|
-
readonly fragmentIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
3201
|
-
}, undefined>, undefined>;
|
|
3202
|
-
readonly recurringPipelines: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3203
|
-
readonly id: v.StringSchema<undefined>;
|
|
3204
|
-
readonly serviceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3205
|
-
readonly blockId: v.StringSchema<undefined>;
|
|
3206
|
-
readonly frameId: v.StringSchema<undefined>;
|
|
3207
|
-
readonly pipelineId: v.StringSchema<undefined>;
|
|
3208
|
-
readonly template: v.PicklistSchema<["dep-update", "tech-debt", "bug-triage", "custom"], undefined>;
|
|
3209
|
-
readonly name: v.StringSchema<undefined>;
|
|
3210
|
-
readonly recurrence: v.ObjectSchema<{
|
|
3211
|
-
readonly intervalHours: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>;
|
|
3212
|
-
readonly weekdays: v.ArraySchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 6, undefined>]>, undefined>;
|
|
3213
|
-
readonly windowStartHour: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 23, undefined>]>, undefined>;
|
|
3214
|
-
readonly windowEndHour: v.NullableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 23, undefined>]>, undefined>;
|
|
3215
|
-
readonly timezone: v.StringSchema<undefined>;
|
|
3216
|
-
}, undefined>;
|
|
3217
|
-
readonly onDemand: v.BooleanSchema<undefined>;
|
|
3218
|
-
readonly issueIntake: v.OptionalSchema<v.ObjectSchema<{
|
|
3219
|
-
readonly source: v.PicklistSchema<["jira", "github", "linear"], undefined>;
|
|
3220
|
-
readonly board: v.ObjectSchema<{
|
|
3221
|
-
readonly jiraProjectKey: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3222
|
-
readonly linearTeamId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3223
|
-
readonly githubRepo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3224
|
-
}, undefined>;
|
|
3225
|
-
readonly predicates: v.ObjectSchema<{
|
|
3226
|
-
readonly titleFragment: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3227
|
-
readonly labels: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>, undefined>;
|
|
3228
|
-
readonly issueType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3911
|
+
readonly peerPullRequests: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3912
|
+
readonly repo: v.StringSchema<undefined>;
|
|
3913
|
+
readonly frameId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3914
|
+
readonly ref: v.ObjectSchema<{
|
|
3915
|
+
readonly url: v.StringSchema<undefined>;
|
|
3916
|
+
readonly number: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3917
|
+
readonly branch: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3229
3918
|
}, undefined>;
|
|
3230
|
-
readonly inProgressLabel: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
3231
|
-
}, undefined>, undefined>;
|
|
3232
|
-
readonly enabled: v.BooleanSchema<undefined>;
|
|
3233
|
-
readonly lastRunAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
3234
|
-
readonly nextRunAt: v.NumberSchema<undefined>;
|
|
3235
|
-
readonly createdAt: v.NumberSchema<undefined>;
|
|
3236
|
-
}, undefined>, undefined>, undefined>;
|
|
3237
|
-
readonly trackerSettings: v.OptionalSchema<v.ObjectSchema<{
|
|
3238
|
-
readonly tracker: v.NullableSchema<v.PicklistSchema<["github", "jira", "linear"], undefined>, undefined>;
|
|
3239
|
-
readonly jiraProjectKey: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3240
|
-
readonly linearTeamId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
3241
|
-
readonly writebackCommentOnPrOpen: v.BooleanSchema<undefined>;
|
|
3242
|
-
readonly writebackResolveOnMerge: v.BooleanSchema<undefined>;
|
|
3243
|
-
readonly updatedAt: v.NumberSchema<undefined>;
|
|
3244
|
-
}, undefined>, undefined>;
|
|
3245
|
-
readonly mounts: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3246
|
-
readonly workspaceId: v.StringSchema<undefined>;
|
|
3247
|
-
readonly serviceId: v.StringSchema<undefined>;
|
|
3248
|
-
readonly position: v.ObjectSchema<{
|
|
3249
|
-
readonly x: v.NumberSchema<undefined>;
|
|
3250
|
-
readonly y: v.NumberSchema<undefined>;
|
|
3251
|
-
}, undefined>;
|
|
3252
|
-
readonly size: v.OptionalSchema<v.NullableSchema<v.ObjectSchema<{
|
|
3253
|
-
readonly w: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3254
|
-
readonly h: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>;
|
|
3255
3919
|
}, undefined>, undefined>, undefined>;
|
|
3256
|
-
readonly
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
readonly
|
|
3264
|
-
readonly
|
|
3265
|
-
readonly
|
|
3266
|
-
readonly
|
|
3920
|
+
readonly referenceRepos: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3921
|
+
readonly repoId: v.NumberSchema<undefined>;
|
|
3922
|
+
readonly owner: v.StringSchema<undefined>;
|
|
3923
|
+
readonly name: v.StringSchema<undefined>;
|
|
3924
|
+
readonly defaultBranch: v.StringSchema<undefined>;
|
|
3925
|
+
readonly connectionId: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
3926
|
+
}, undefined>, undefined>, undefined>;
|
|
3927
|
+
readonly riskPolicyId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3928
|
+
readonly modelPresetId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3929
|
+
readonly pipelineId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
3930
|
+
readonly createdBy: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3931
|
+
readonly responsibleProductUserId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
3932
|
+
readonly trackerCommentOnPrOpen: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
3933
|
+
readonly trackerResolveOnMerge: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["on", "off"], undefined>, undefined>, undefined>;
|
|
3934
|
+
readonly internal: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3935
|
+
readonly archived: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3936
|
+
readonly accessDenied: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
3267
3937
|
}, undefined>, undefined>, undefined>;
|
|
3268
3938
|
readonly settings: v.OptionalSchema<v.ObjectSchema<{
|
|
3269
3939
|
readonly waitingEscalationMinutes: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100000, undefined>]>;
|