@stacksjs/types 0.70.365 → 0.70.367

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.
Files changed (2) hide show
  1. package/dist/deploy.d.ts +41 -0
  2. package/package.json +2 -2
package/dist/deploy.d.ts CHANGED
@@ -13,4 +13,45 @@ export declare interface DeployOptions extends CliOptions {
13
13
  dev?: boolean
14
14
  staging?: boolean
15
15
  yes?: boolean
16
+ site?: string
17
+ docker?: boolean
18
+ dryRun?: boolean
19
+ json?: boolean
16
20
  }
21
+ export declare interface DeploymentPreviewSite {
22
+ name: string
23
+ kind: DeploymentSiteKind
24
+ domains: string[]
25
+ path: string
26
+ root: string | null
27
+ port: number | null
28
+ build: string | null
29
+ preStart: string[]
30
+ }
31
+ export declare interface DeploymentPreviewOperation {
32
+ phase: 'validate' | 'infrastructure' | 'build' | 'package' | 'release' | 'runtime' | 'gateway' | 'dns' | 'tls' | 'container'
33
+ label: string
34
+ detail: string
35
+ sites: string[]
36
+ }
37
+ export declare interface DeploymentPreview {
38
+ version: 1
39
+ dryRun: true
40
+ project: {
41
+ name: string
42
+ slug: string
43
+ }
44
+ provider: string
45
+ mode: string
46
+ environment: string
47
+ region: string
48
+ target: {
49
+ site: string | null
50
+ domain: string | null
51
+ attachTo: string | null
52
+ }
53
+ sites: DeploymentPreviewSite[]
54
+ operations: DeploymentPreviewOperation[]
55
+ warnings: string[]
56
+ }
57
+ export type DeploymentSiteKind = 'bucket' | 'server-app' | 'server-static' | 'server-php' | 'redirect';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.70.365",
4
+ "version": "0.70.367",
5
5
  "description": "The Stacks framework types.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": [
@@ -71,7 +71,7 @@
71
71
  }
72
72
  },
73
73
  "devDependencies": {
74
- "@stacksjs/validation": "0.70.365",
74
+ "@stacksjs/validation": "0.70.367",
75
75
  "better-dx": "^0.2.17",
76
76
  "meilisearch": "^0.59.0"
77
77
  },