@treeseed/sdk 0.12.25 → 0.12.27
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/README.md +1 -1
- package/dist/guarantees/index.js +15 -1
- package/dist/hosting/builtins.js +4 -4
- package/dist/hosting/contracts.d.ts +3 -3
- package/dist/hosting/graph.d.ts +4 -4
- package/dist/hosting/graph.js +17 -17
- package/dist/operations/agent-tools.d.ts +1 -1
- package/dist/operations/agent-tools.js +1 -1
- package/dist/operations/providers/default.js +2 -2
- package/dist/operations/services/config-runtime.d.ts +9 -9
- package/dist/operations/services/config-runtime.js +10 -10
- package/dist/operations/services/deploy.d.ts +8 -8
- package/dist/operations/services/deploy.js +151 -151
- package/dist/operations/services/github-automation.d.ts +6 -6
- package/dist/operations/services/github-automation.js +8 -8
- package/dist/operations/services/hub-launch.d.ts +1 -1
- package/dist/operations/services/hub-launch.js +1 -1
- package/dist/operations/services/package-adapters.d.ts +2 -2
- package/dist/operations/services/package-adapters.js +1 -1
- package/dist/operations/services/project-host-operations.d.ts +1 -1
- package/dist/operations/services/project-host-operations.js +1 -1
- package/dist/operations/services/project-platform.d.ts +8 -8
- package/dist/operations/services/project-platform.js +31 -31
- package/dist/operations/services/project-web-monitor.d.ts +1 -1
- package/dist/operations/services/project-web-monitor.js +4 -4
- package/dist/operations/services/railway-deploy.d.ts +4 -4
- package/dist/operations/services/railway-deploy.js +7 -7
- package/dist/operations/services/repository-save-orchestrator.js +3 -3
- package/dist/operations/services/template-secret-sync.d.ts +1 -1
- package/dist/operations/services/template-secret-sync.js +3 -3
- package/dist/reconcile/builtin-adapters.js +137 -44
- package/dist/reconcile/contracts.d.ts +1 -1
- package/dist/reconcile/engine.d.ts +4 -4
- package/dist/reconcile/engine.js +12 -12
- package/dist/reconcile/providers/release-private.d.ts +1 -1
- package/dist/scripts/tenant-deploy.js +9 -9
- package/dist/scripts/tenant-destroy.js +7 -7
- package/dist/scripts/tenant-workflow-action.js +4 -4
- package/dist/scripts/test-scaffold.js +2 -2
- package/dist/scripts/workspace-command-e2e.js +4 -4
- package/dist/sdk-types.d.ts +2 -2
- package/dist/treedx/generated/openapi-types.d.ts +11 -11
- package/dist/treedx/types.d.ts +15 -15
- package/dist/workflow/operations.d.ts +6 -4
- package/dist/workflow/operations.js +46 -23
- package/dist/workflow.d.ts +0 -9
- package/package.json +1 -1
package/dist/workflow.d.ts
CHANGED
|
@@ -122,7 +122,6 @@ export type TreeseedSaveInput = {
|
|
|
122
122
|
skipCleanup?: boolean;
|
|
123
123
|
sceneArtifacts?: 'full' | 'screenshots';
|
|
124
124
|
plan?: boolean;
|
|
125
|
-
dryRun?: boolean;
|
|
126
125
|
};
|
|
127
126
|
export type TreeseedUpdateInput = {
|
|
128
127
|
from?: string;
|
|
@@ -131,7 +130,6 @@ export type TreeseedUpdateInput = {
|
|
|
131
130
|
worktreeMode?: TreeseedWorkflowWorktreeMode;
|
|
132
131
|
workspaceLinks?: 'auto' | 'off';
|
|
133
132
|
plan?: boolean;
|
|
134
|
-
dryRun?: boolean;
|
|
135
133
|
};
|
|
136
134
|
export type TreeseedCiInput = {
|
|
137
135
|
failed?: boolean;
|
|
@@ -161,7 +159,6 @@ export type TreeseedCloseInput = {
|
|
|
161
159
|
worktreeMode?: TreeseedWorkflowWorktreeMode;
|
|
162
160
|
workspaceLinks?: 'auto' | 'off';
|
|
163
161
|
plan?: boolean;
|
|
164
|
-
dryRun?: boolean;
|
|
165
162
|
};
|
|
166
163
|
export type TreeseedStageInput = {
|
|
167
164
|
message: string;
|
|
@@ -180,7 +177,6 @@ export type TreeseedStageInput = {
|
|
|
180
177
|
skipCleanup?: boolean;
|
|
181
178
|
sceneArtifacts?: 'full' | 'screenshots';
|
|
182
179
|
plan?: boolean;
|
|
183
|
-
dryRun?: boolean;
|
|
184
180
|
};
|
|
185
181
|
export type TreeseedReleaseCandidateInput = {
|
|
186
182
|
mode?: TreeseedReleaseCandidateMode;
|
|
@@ -188,7 +184,6 @@ export type TreeseedReleaseCandidateInput = {
|
|
|
188
184
|
package?: string | string[];
|
|
189
185
|
keepWorkspace?: boolean;
|
|
190
186
|
plan?: boolean;
|
|
191
|
-
dryRun?: boolean;
|
|
192
187
|
};
|
|
193
188
|
export type TreeseedProofInput = {
|
|
194
189
|
action?: 'plan' | 'run' | 'status' | 'failures' | 'explain' | 'clean';
|
|
@@ -198,7 +193,6 @@ export type TreeseedProofInput = {
|
|
|
198
193
|
last?: boolean;
|
|
199
194
|
olderThan?: string | null;
|
|
200
195
|
plan?: boolean;
|
|
201
|
-
dryRun?: boolean;
|
|
202
196
|
};
|
|
203
197
|
export type TreeseedSwitchInput = {
|
|
204
198
|
branch?: string;
|
|
@@ -209,7 +203,6 @@ export type TreeseedSwitchInput = {
|
|
|
209
203
|
worktreeMode?: TreeseedWorkflowWorktreeMode;
|
|
210
204
|
workspaceLinks?: 'auto' | 'off';
|
|
211
205
|
plan?: boolean;
|
|
212
|
-
dryRun?: boolean;
|
|
213
206
|
};
|
|
214
207
|
export type TreeseedConfigScope = 'all' | 'local' | 'staging' | 'prod';
|
|
215
208
|
export type TreeseedBootstrapSystem = 'all' | 'github' | 'data' | 'web' | 'api' | 'agents';
|
|
@@ -265,7 +258,6 @@ export type TreeseedReleaseInput = {
|
|
|
265
258
|
skipCleanup?: boolean;
|
|
266
259
|
sceneArtifacts?: 'full' | 'screenshots';
|
|
267
260
|
plan?: boolean;
|
|
268
|
-
dryRun?: boolean;
|
|
269
261
|
};
|
|
270
262
|
export type TreeseedResumeInput = {
|
|
271
263
|
runId: string;
|
|
@@ -280,7 +272,6 @@ export type TreeseedDestroyInput = {
|
|
|
280
272
|
target?: 'local' | 'staging' | 'prod';
|
|
281
273
|
environment?: 'local' | 'staging' | 'prod';
|
|
282
274
|
confirm?: boolean | string;
|
|
283
|
-
dryRun?: boolean;
|
|
284
275
|
plan?: boolean;
|
|
285
276
|
destroyRemote?: boolean;
|
|
286
277
|
destroyLocal?: boolean;
|