@treeseed/sdk 0.10.28 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +207 -6
- package/dist/capacity-provider.d.ts +3 -1
- package/dist/capacity-provider.js +25 -5
- package/dist/control-plane.d.ts +1 -0
- package/dist/control-plane.js +38 -13
- package/dist/db/market-schema.d.ts +8860 -6172
- package/dist/db/market-schema.js +108 -0
- package/dist/db/node-sqlite.js +7 -2
- package/dist/hosting/apps.d.ts +12 -0
- package/dist/hosting/apps.js +107 -0
- package/dist/hosting/builtins.d.ts +25 -0
- package/dist/hosting/builtins.js +791 -0
- package/dist/hosting/contracts.d.ts +207 -0
- package/dist/hosting/contracts.js +0 -0
- package/dist/hosting/graph.d.ts +192 -0
- package/dist/hosting/graph.js +1106 -0
- package/dist/hosting/index.d.ts +4 -0
- package/dist/hosting/index.js +4 -0
- package/dist/index.d.ts +10 -3
- package/dist/index.js +63 -6
- package/dist/managed-dependencies.js +1 -2
- package/dist/market-client.d.ts +63 -3
- package/dist/market-client.js +83 -11
- package/dist/operations/services/bootstrap-runner.d.ts +3 -1
- package/dist/operations/services/bootstrap-runner.js +22 -2
- package/dist/operations/services/config-runtime.d.ts +10 -5
- package/dist/operations/services/config-runtime.js +209 -66
- package/dist/operations/services/deploy.d.ts +70 -7
- package/dist/operations/services/deploy.js +579 -64
- package/dist/operations/services/deployment-readiness.d.ts +30 -0
- package/dist/operations/services/deployment-readiness.js +175 -0
- package/dist/operations/services/git-workflow.d.ts +2 -1
- package/dist/operations/services/git-workflow.js +9 -3
- package/dist/operations/services/github-actions-verification.d.ts +1 -0
- package/dist/operations/services/github-actions-verification.js +1 -0
- package/dist/operations/services/github-api.js +1 -1
- package/dist/operations/services/github-automation.d.ts +1 -1
- package/dist/operations/services/github-automation.js +4 -3
- package/dist/operations/services/github-credentials.d.ts +13 -0
- package/dist/operations/services/github-credentials.js +58 -0
- package/dist/operations/services/hosted-service-checks.d.ts +63 -0
- package/dist/operations/services/hosted-service-checks.js +327 -0
- package/dist/operations/services/hub-provider-launch.js +3 -3
- package/dist/operations/services/live-hosted-service-checks.d.ts +25 -0
- package/dist/operations/services/live-hosted-service-checks.js +350 -0
- package/dist/operations/services/managed-host-security.js +1 -1
- package/dist/operations/services/operations-runner-smoke.d.ts +30 -0
- package/dist/operations/services/operations-runner-smoke.js +180 -0
- package/dist/operations/services/package-adapters.d.ts +95 -0
- package/dist/operations/services/package-adapters.js +288 -0
- package/dist/operations/services/package-reference-policy.d.ts +1 -0
- package/dist/operations/services/package-reference-policy.js +15 -2
- package/dist/operations/services/project-platform.d.ts +80 -22
- package/dist/operations/services/project-platform.js +49 -8
- package/dist/operations/services/project-web-monitor.js +26 -4
- package/dist/operations/services/railway-api.d.ts +88 -5
- package/dist/operations/services/railway-api.js +626 -35
- package/dist/operations/services/railway-deploy.d.ts +46 -40
- package/dist/operations/services/railway-deploy.js +261 -293
- package/dist/operations/services/release-candidate.d.ts +19 -0
- package/dist/operations/services/release-candidate.js +375 -38
- package/dist/operations/services/repository-save-orchestrator.d.ts +3 -1
- package/dist/operations/services/repository-save-orchestrator.js +279 -66
- package/dist/operations/services/runtime-tools.d.ts +1 -0
- package/dist/operations/services/runtime-tools.js +10 -9
- package/dist/operations/services/verification-cache.d.ts +25 -0
- package/dist/operations/services/verification-cache.js +71 -0
- package/dist/operations/services/workspace-dependency-mode.js +9 -1
- package/dist/operations/services/workspace-save.js +1 -1
- package/dist/operations/services/workspace-tools.js +2 -1
- package/dist/platform/contracts.d.ts +32 -1
- package/dist/platform/deploy-config.js +73 -8
- package/dist/platform/env.yaml +163 -35
- package/dist/platform/environment.d.ts +1 -0
- package/dist/platform/environment.js +74 -5
- package/dist/platform/plugin.d.ts +9 -0
- package/dist/platform-operation-store.js +2 -2
- package/dist/platform-operations.js +1 -1
- package/dist/reconcile/bootstrap-systems.js +2 -2
- package/dist/reconcile/builtin-adapters.js +372 -189
- package/dist/reconcile/contracts.d.ts +9 -5
- package/dist/reconcile/desired-state.d.ts +1 -0
- package/dist/reconcile/desired-state.js +5 -5
- package/dist/reconcile/engine.d.ts +5 -2
- package/dist/reconcile/engine.js +53 -32
- package/dist/reconcile/index.d.ts +2 -0
- package/dist/reconcile/index.js +2 -0
- package/dist/reconcile/live-acceptance.d.ts +79 -0
- package/dist/reconcile/live-acceptance.js +1615 -0
- package/dist/reconcile/platform.d.ts +104 -0
- package/dist/reconcile/platform.js +100 -0
- package/dist/reconcile/state.js +4 -4
- package/dist/reconcile/units.js +2 -2
- package/dist/scripts/deployment-readiness.js +20 -0
- package/dist/scripts/generate-treedx-openapi-types.js +186 -0
- package/dist/scripts/operations-runner-smoke.js +16 -0
- package/dist/scripts/release-verify.js +4 -1
- package/dist/scripts/tenant-workflow-action.js +10 -1
- package/dist/sdk-types.d.ts +169 -4
- package/dist/sdk-types.js +20 -2
- package/dist/sdk.d.ts +35 -24
- package/dist/sdk.js +186 -17
- package/dist/template-launch-requirements.js +9 -0
- package/dist/treedx/adapters.d.ts +6 -0
- package/dist/treedx/adapters.js +36 -0
- package/dist/treedx/client.d.ts +222 -0
- package/dist/treedx/client.js +871 -0
- package/dist/treedx/errors.d.ts +13 -0
- package/dist/treedx/errors.js +17 -0
- package/dist/treedx/federated-client.d.ts +27 -0
- package/dist/treedx/federated-client.js +158 -0
- package/dist/treedx/generated/openapi-types.d.ts +3558 -0
- package/dist/treedx/generated/openapi-types.js +0 -0
- package/dist/treedx/graph-adapter.d.ts +33 -0
- package/dist/treedx/graph-adapter.js +156 -0
- package/dist/treedx/index.d.ts +14 -0
- package/dist/treedx/index.js +48 -0
- package/dist/treedx/market-integration.d.ts +27 -0
- package/dist/treedx/market-integration.js +131 -0
- package/dist/treedx/ports.d.ts +166 -0
- package/dist/treedx/ports.js +231 -0
- package/dist/treedx/query-adapter.d.ts +19 -0
- package/dist/treedx/query-adapter.js +62 -0
- package/dist/treedx/registry-client.d.ts +11 -0
- package/dist/treedx/registry-client.js +19 -0
- package/dist/treedx/repository-adapter.d.ts +45 -0
- package/dist/treedx/repository-adapter.js +308 -0
- package/dist/treedx/sdk-integration.d.ts +27 -0
- package/dist/treedx/sdk-integration.js +63 -0
- package/dist/treedx/types.d.ts +1084 -0
- package/dist/treedx/types.js +8 -0
- package/dist/treedx/workspace-adapter.d.ts +27 -0
- package/dist/treedx/workspace-adapter.js +65 -0
- package/dist/treedx-backends.d.ts +218 -0
- package/dist/treedx-backends.js +632 -0
- package/dist/treedx-client.d.ts +86 -0
- package/dist/treedx-client.js +175 -0
- package/dist/treeseed/template-catalog/catalog.fixture.json +23 -23
- package/dist/workflow/operations.d.ts +119 -13
- package/dist/workflow/operations.js +309 -53
- package/dist/workflow-state.d.ts +13 -0
- package/dist/workflow-state.js +43 -26
- package/dist/workflow-support.d.ts +11 -3
- package/dist/workflow-support.js +67 -3
- package/dist/workflow.d.ts +5 -0
- package/drizzle/market/0004_treedx_market_integration.sql +99 -0
- package/package.json +34 -3
- package/templates/github/deploy-web.workflow.yml +39 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ReleaseCandidateReport } from '../operations/services/release-candidate.ts';
|
|
1
|
+
import { type ReleaseCandidateMode, type ReleaseCandidateReport } from '../operations/services/release-candidate.ts';
|
|
2
2
|
import { type RepositorySaveReport } from '../operations/services/repository-save-orchestrator.ts';
|
|
3
3
|
import { type DevTagBranchScope } from '../operations/services/package-reference-policy.ts';
|
|
4
4
|
import { resolveTreeseedWorkflowState, type TreeseedWorkflowStatusOptions } from '../workflow-state.ts';
|
|
@@ -49,6 +49,18 @@ type WorkflowRepoReport = {
|
|
|
49
49
|
changelog?: Record<string, unknown> | null;
|
|
50
50
|
adminCommitSummary?: Record<string, unknown> | null;
|
|
51
51
|
};
|
|
52
|
+
type WorkflowApplicationSelection = {
|
|
53
|
+
selected: string[];
|
|
54
|
+
skipped: Array<{
|
|
55
|
+
appId: string;
|
|
56
|
+
reason: string;
|
|
57
|
+
}>;
|
|
58
|
+
reasons: Array<{
|
|
59
|
+
appId: string;
|
|
60
|
+
reason: string;
|
|
61
|
+
}>;
|
|
62
|
+
source: 'changed-paths' | 'package-selection' | 'default';
|
|
63
|
+
};
|
|
52
64
|
export declare function workflowStatus(helpers: WorkflowOperationHelpers, input?: TreeseedWorkflowStatusOptions): Promise<TreeseedWorkflowResult<import("../workflow-state.ts").TreeseedWorkflowState>>;
|
|
53
65
|
export declare function workflowCi(helpers: WorkflowOperationHelpers, input?: TreeseedCiInput): Promise<TreeseedWorkflowResult<TreeseedCiResult>>;
|
|
54
66
|
export declare function workflowTasks(helpers: WorkflowOperationHelpers): Promise<TreeseedWorkflowResult<{
|
|
@@ -351,7 +363,10 @@ export declare function workflowSave(helpers: WorkflowOperationHelpers, input: T
|
|
|
351
363
|
} | null;
|
|
352
364
|
workspaceLinks: import("../operations/services/workspace-dependency-mode.ts").WorkspaceDependencyModeReport;
|
|
353
365
|
ciMode: "hosted" | "off";
|
|
366
|
+
lane: string;
|
|
354
367
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
368
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
369
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
355
370
|
} & {
|
|
356
371
|
finalState?: WorkflowStatePayload;
|
|
357
372
|
}> | TreeseedWorkflowResult<{
|
|
@@ -407,7 +422,10 @@ export declare function workflowSave(helpers: WorkflowOperationHelpers, input: T
|
|
|
407
422
|
}[];
|
|
408
423
|
};
|
|
409
424
|
ciMode: "hosted" | "off";
|
|
425
|
+
lane: string;
|
|
410
426
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
427
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
428
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
411
429
|
workflowGates: (Record<string, unknown> | {
|
|
412
430
|
name: string;
|
|
413
431
|
repository: string | null;
|
|
@@ -425,7 +443,12 @@ export declare function workflowSave(helpers: WorkflowOperationHelpers, input: T
|
|
|
425
443
|
cached: boolean;
|
|
426
444
|
})[];
|
|
427
445
|
releaseCandidate: ReleaseCandidateReport | null;
|
|
428
|
-
hostingAudit:
|
|
446
|
+
hostingAudit: {
|
|
447
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
448
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
449
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
450
|
+
live: boolean;
|
|
451
|
+
} | null;
|
|
429
452
|
} & {
|
|
430
453
|
finalState?: WorkflowStatePayload;
|
|
431
454
|
}>>;
|
|
@@ -494,7 +517,10 @@ export declare function workflowClose(helpers: WorkflowOperationHelpers, input:
|
|
|
494
517
|
} | null;
|
|
495
518
|
workspaceLinks: import("../operations/services/workspace-dependency-mode.ts").WorkspaceDependencyModeReport;
|
|
496
519
|
ciMode: "hosted" | "off";
|
|
520
|
+
lane: string;
|
|
497
521
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
522
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
523
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
498
524
|
} & {
|
|
499
525
|
finalState?: WorkflowStatePayload;
|
|
500
526
|
}) | ({
|
|
@@ -550,7 +576,10 @@ export declare function workflowClose(helpers: WorkflowOperationHelpers, input:
|
|
|
550
576
|
}[];
|
|
551
577
|
};
|
|
552
578
|
ciMode: "hosted" | "off";
|
|
579
|
+
lane: string;
|
|
553
580
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
581
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
582
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
554
583
|
workflowGates: (Record<string, unknown> | {
|
|
555
584
|
name: string;
|
|
556
585
|
repository: string | null;
|
|
@@ -568,7 +597,12 @@ export declare function workflowClose(helpers: WorkflowOperationHelpers, input:
|
|
|
568
597
|
cached: boolean;
|
|
569
598
|
})[];
|
|
570
599
|
releaseCandidate: ReleaseCandidateReport | null;
|
|
571
|
-
hostingAudit:
|
|
600
|
+
hostingAudit: {
|
|
601
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
602
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
603
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
604
|
+
live: boolean;
|
|
605
|
+
} | null;
|
|
572
606
|
} & {
|
|
573
607
|
finalState?: WorkflowStatePayload;
|
|
574
608
|
}) | null;
|
|
@@ -611,6 +645,7 @@ export declare function workflowClose(helpers: WorkflowOperationHelpers, input:
|
|
|
611
645
|
export declare function workflowStage(helpers: WorkflowOperationHelpers, input: TreeseedStageInput): Promise<TreeseedWorkflowResult<{
|
|
612
646
|
autoSaveRequired: boolean;
|
|
613
647
|
blockers: string[];
|
|
648
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
614
649
|
rootRepo: WorkflowRepoReport;
|
|
615
650
|
repos: WorkflowRepoReport[];
|
|
616
651
|
plannedSteps: {
|
|
@@ -627,6 +662,7 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
627
662
|
mergeStrategy: string;
|
|
628
663
|
message: string;
|
|
629
664
|
ciMode: "hosted" | "off";
|
|
665
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
630
666
|
autoResumeCandidate: {
|
|
631
667
|
runId: string;
|
|
632
668
|
branch: string | null;
|
|
@@ -678,7 +714,10 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
678
714
|
} | null;
|
|
679
715
|
workspaceLinks: import("../operations/services/workspace-dependency-mode.ts").WorkspaceDependencyModeReport;
|
|
680
716
|
ciMode: "hosted" | "off";
|
|
717
|
+
lane: string;
|
|
681
718
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
719
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
720
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
682
721
|
} & {
|
|
683
722
|
finalState?: WorkflowStatePayload;
|
|
684
723
|
}) | ({
|
|
@@ -734,7 +773,10 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
734
773
|
}[];
|
|
735
774
|
};
|
|
736
775
|
ciMode: "hosted" | "off";
|
|
776
|
+
lane: string;
|
|
737
777
|
verifyMode: "action-first" | "local-only" | import("../workflow.ts").TreeseedWorkflowVerifyMode;
|
|
778
|
+
releaseCandidateMode: ReleaseCandidateMode;
|
|
779
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
738
780
|
workflowGates: (Record<string, unknown> | {
|
|
739
781
|
name: string;
|
|
740
782
|
repository: string | null;
|
|
@@ -752,7 +794,12 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
752
794
|
cached: boolean;
|
|
753
795
|
})[];
|
|
754
796
|
releaseCandidate: ReleaseCandidateReport | null;
|
|
755
|
-
hostingAudit:
|
|
797
|
+
hostingAudit: {
|
|
798
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
799
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
800
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
801
|
+
live: boolean;
|
|
802
|
+
} | null;
|
|
756
803
|
} & {
|
|
757
804
|
finalState?: WorkflowStatePayload;
|
|
758
805
|
}) | null;
|
|
@@ -767,6 +814,7 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
767
814
|
workflowGates: any;
|
|
768
815
|
};
|
|
769
816
|
releaseCandidate: ReleaseCandidateReport;
|
|
817
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
770
818
|
previewCleanup: {
|
|
771
819
|
performed: boolean;
|
|
772
820
|
state: any;
|
|
@@ -781,7 +829,12 @@ export declare function workflowStage(helpers: WorkflowOperationHelpers, input:
|
|
|
781
829
|
workspaceLinks: import("../operations/services/workspace-dependency-mode.ts").WorkspaceDependencyModeReport;
|
|
782
830
|
ciMode: "hosted" | "off";
|
|
783
831
|
workflowGates: any;
|
|
784
|
-
hostingAudit:
|
|
832
|
+
hostingAudit: {
|
|
833
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
834
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
835
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
836
|
+
live: boolean;
|
|
837
|
+
} | null;
|
|
785
838
|
worktreeCleanup: {
|
|
786
839
|
removed: boolean;
|
|
787
840
|
reason: string;
|
|
@@ -865,6 +918,7 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
865
918
|
managedWorktree: import("./worktrees.ts").ManagedWorkflowWorktreeMetadata | null;
|
|
866
919
|
worktreePath: string | null;
|
|
867
920
|
primaryRoot: string | null;
|
|
921
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
868
922
|
ciMode: "hosted" | "off";
|
|
869
923
|
fresh: boolean;
|
|
870
924
|
freshArchivedRuns: never[];
|
|
@@ -889,6 +943,7 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
889
943
|
};
|
|
890
944
|
plannedVersions: any;
|
|
891
945
|
stableDependencyVersions: Record<string, string>;
|
|
946
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
892
947
|
plannedDevReferenceRewrites: {
|
|
893
948
|
repoName: string;
|
|
894
949
|
filePath: string;
|
|
@@ -941,6 +996,7 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
941
996
|
dependents: never[];
|
|
942
997
|
selected: never[];
|
|
943
998
|
};
|
|
999
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
944
1000
|
publishWait: never[];
|
|
945
1001
|
repos: never[];
|
|
946
1002
|
rootRepo: WorkflowRepoReport;
|
|
@@ -1003,7 +1059,12 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
1003
1059
|
timeoutSeconds: number | null;
|
|
1004
1060
|
cached: boolean;
|
|
1005
1061
|
})[];
|
|
1006
|
-
hostingAudit:
|
|
1062
|
+
hostingAudit: {
|
|
1063
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
1064
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
1065
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
1066
|
+
live: boolean;
|
|
1067
|
+
} | null;
|
|
1007
1068
|
} & {
|
|
1008
1069
|
finalState?: WorkflowStatePayload;
|
|
1009
1070
|
}> | TreeseedWorkflowResult<{
|
|
@@ -1033,6 +1094,7 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
1033
1094
|
dependents: string[];
|
|
1034
1095
|
selected: string[];
|
|
1035
1096
|
};
|
|
1097
|
+
applicationSelection: WorkflowApplicationSelection;
|
|
1036
1098
|
replacedDevReferences: (import("../operations/services/package-reference-policy.ts").RewrittenDevReference & {
|
|
1037
1099
|
repoName: string;
|
|
1038
1100
|
packageJsonPath: string;
|
|
@@ -1150,7 +1212,12 @@ export declare function workflowRelease(helpers: WorkflowOperationHelpers, input
|
|
|
1150
1212
|
timeoutSeconds: number | null;
|
|
1151
1213
|
cached: boolean;
|
|
1152
1214
|
})[];
|
|
1153
|
-
hostingAudit:
|
|
1215
|
+
hostingAudit: {
|
|
1216
|
+
hostingAudit: import("../workflow-support.ts").TreeseedHostingAuditReport;
|
|
1217
|
+
hostedServices: import("../index.ts").TreeseedHostedServiceCheckReport;
|
|
1218
|
+
readiness: import("../workflow-support.ts").TreeseedDeploymentReadinessReport;
|
|
1219
|
+
live: boolean;
|
|
1220
|
+
} | null;
|
|
1154
1221
|
} & {
|
|
1155
1222
|
finalState?: WorkflowStatePayload;
|
|
1156
1223
|
}>>;
|
|
@@ -1236,6 +1303,7 @@ export declare function workflowDestroy(helpers: WorkflowOperationHelpers, input
|
|
|
1236
1303
|
branchName: string;
|
|
1237
1304
|
};
|
|
1238
1305
|
deleteData: boolean;
|
|
1306
|
+
sweepTreeseed: boolean;
|
|
1239
1307
|
summary: {
|
|
1240
1308
|
target: any;
|
|
1241
1309
|
identity: any;
|
|
@@ -1293,18 +1361,55 @@ export declare function workflowDestroy(helpers: WorkflowOperationHelpers, input
|
|
|
1293
1361
|
name: any;
|
|
1294
1362
|
status: any;
|
|
1295
1363
|
}[];
|
|
1296
|
-
local:
|
|
1297
|
-
provider: any;
|
|
1298
|
-
type: any;
|
|
1299
|
-
name: any;
|
|
1300
|
-
status: any;
|
|
1301
|
-
}[];
|
|
1364
|
+
local: any[];
|
|
1302
1365
|
};
|
|
1366
|
+
verification: {
|
|
1367
|
+
localDocker?: {
|
|
1368
|
+
provider: string;
|
|
1369
|
+
method: string;
|
|
1370
|
+
status: string;
|
|
1371
|
+
reason: string;
|
|
1372
|
+
remaining: {
|
|
1373
|
+
containers: number;
|
|
1374
|
+
volumes: number;
|
|
1375
|
+
networks: number;
|
|
1376
|
+
};
|
|
1377
|
+
totalRemaining: number;
|
|
1378
|
+
} | {
|
|
1379
|
+
provider: string;
|
|
1380
|
+
method: string;
|
|
1381
|
+
status: string;
|
|
1382
|
+
remaining: {
|
|
1383
|
+
containers: any;
|
|
1384
|
+
volumes: any;
|
|
1385
|
+
networks: any;
|
|
1386
|
+
};
|
|
1387
|
+
totalRemaining: any;
|
|
1388
|
+
reason?: undefined;
|
|
1389
|
+
} | undefined;
|
|
1390
|
+
cloudflare: {
|
|
1391
|
+
provider: string;
|
|
1392
|
+
method: string;
|
|
1393
|
+
status: string;
|
|
1394
|
+
remaining: {
|
|
1395
|
+
pages: any;
|
|
1396
|
+
workers: any;
|
|
1397
|
+
kvNamespaces: any;
|
|
1398
|
+
queues: any;
|
|
1399
|
+
d1Databases: any;
|
|
1400
|
+
r2Buckets: any;
|
|
1401
|
+
turnstileWidgets: any;
|
|
1402
|
+
dnsRecords: any;
|
|
1403
|
+
};
|
|
1404
|
+
totalRemaining: any;
|
|
1405
|
+
};
|
|
1406
|
+
} | null;
|
|
1303
1407
|
} | null;
|
|
1304
1408
|
scope: string;
|
|
1305
1409
|
dryRun: boolean;
|
|
1306
1410
|
force: boolean;
|
|
1307
1411
|
deleteData: boolean;
|
|
1412
|
+
sweepTreeseed: boolean;
|
|
1308
1413
|
destroyRemote: boolean;
|
|
1309
1414
|
destroyLocal: boolean;
|
|
1310
1415
|
removeBuildArtifacts: boolean;
|
|
@@ -1325,6 +1430,7 @@ export declare function workflowDestroy(helpers: WorkflowOperationHelpers, input
|
|
|
1325
1430
|
scope: string;
|
|
1326
1431
|
force: boolean;
|
|
1327
1432
|
deleteData: boolean;
|
|
1433
|
+
sweepTreeseed: boolean;
|
|
1328
1434
|
destroyRemote: boolean;
|
|
1329
1435
|
destroyLocal: boolean;
|
|
1330
1436
|
removeBuildArtifacts: boolean;
|