@treeseed/sdk 0.12.60 → 0.12.62
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/guarantees/index.js +59 -56
- package/dist/hosting/contracts.d.ts +0 -19
- package/dist/hosting/graph.d.ts +1 -86
- package/dist/hosting/graph.js +96 -245
- package/dist/local-dev/managed-dev.js +30 -8
- package/dist/managed-dependencies.d.ts +3 -0
- package/dist/managed-dependencies.js +294 -20
- package/dist/operations/services/deploy.js +5 -5
- package/dist/operations/services/deployment-readiness.js +5 -4
- package/dist/operations/services/git-runner.d.ts +2 -0
- package/dist/operations/services/git-runner.js +23 -2
- package/dist/operations/services/hosted-service-checks.js +28 -0
- package/dist/operations/services/live-hosted-service-checks.js +51 -15
- package/dist/operations/services/local-cleanup.d.ts +1 -0
- package/dist/operations/services/local-cleanup.js +28 -9
- package/dist/operations/services/package-adapters.js +3 -3
- package/dist/operations/services/railway-api.d.ts +72 -28
- package/dist/operations/services/railway-api.js +321 -876
- package/dist/operations/services/railway-cli.d.ts +47 -0
- package/dist/operations/services/railway-cli.js +142 -0
- package/dist/operations/services/railway-deploy.d.ts +2 -2
- package/dist/operations/services/railway-deploy.js +36 -91
- package/dist/operations/services/railway-source-policy.d.ts +6 -0
- package/dist/operations/services/railway-source-policy.js +52 -9
- package/dist/operations/services/repository-save-orchestrator.d.ts +2 -0
- package/dist/operations/services/repository-save-orchestrator.js +45 -14
- package/dist/operations-types.d.ts +3 -1
- package/dist/platform/contracts.d.ts +1 -0
- package/dist/platform/deploy-config.js +2 -1
- package/dist/reconcile/builtin-adapters.js +519 -684
- package/dist/reconcile/desired-state.js +5 -3
- package/dist/reconcile/engine.js +34 -28
- package/dist/reconcile/live-acceptance.js +2 -11
- package/dist/reconcile/providers/railway-iac.d.ts +147 -0
- package/dist/reconcile/providers/railway-iac.js +289 -16
- package/dist/scenes/runner.js +11 -11
- package/dist/scripts/build-dist.js +22 -0
- package/dist/workflow/operations.d.ts +12 -0
- package/dist/workflow/operations.js +441 -105
- package/dist/workflow/runs.d.ts +5 -0
- package/dist/workflow/runs.js +9 -3
- package/dist/workflow-support.d.ts +1 -1
- package/dist/workflow-support.js +3 -1
- package/package.json +1 -2
|
@@ -213,6 +213,7 @@ export interface TreeseedManagedServiceEnvironmentConfig {
|
|
|
213
213
|
domain?: string;
|
|
214
214
|
railwayEnvironment?: string;
|
|
215
215
|
railwayProjectName?: string;
|
|
216
|
+
serviceName?: string;
|
|
216
217
|
railwayServiceName?: string;
|
|
217
218
|
}
|
|
218
219
|
export type TreeseedLocalRuntimeMode = 'auto' | 'provider' | 'local';
|
|
@@ -334,7 +334,8 @@ function parseServiceEnvironmentConfig(value, label) {
|
|
|
334
334
|
domain: optionalString(record.domain),
|
|
335
335
|
railwayEnvironment: optionalString(record.railwayEnvironment),
|
|
336
336
|
railwayProjectName: optionalString(record.railwayProjectName),
|
|
337
|
-
|
|
337
|
+
serviceName: optionalString(record.serviceName ?? record.railwayServiceName),
|
|
338
|
+
railwayServiceName: optionalString(record.railwayServiceName ?? record.serviceName)
|
|
338
339
|
};
|
|
339
340
|
}
|
|
340
341
|
function parseLocalRuntimeConfig(value, label) {
|