-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathapp-deploy.interface.ts
More file actions
84 lines (72 loc) · 2.37 KB
/
app-deploy.interface.ts
File metadata and controls
84 lines (72 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// This is an autogenerated file. Don't edit this file manually.
/**
* The following flags are available for the `app deploy` command:
* @publicDocs
*/
export interface appdeploy {
/**
* Allows removing extensions and configuration without requiring user confirmation. For CI/CD environments, the recommended flag is --allow-updates.
* @environment SHOPIFY_FLAG_ALLOW_DELETES
*/
'--allow-deletes'?: ''
/**
* Allows adding and updating extensions and configuration without requiring user confirmation. Recommended option for CI/CD environments.
* @environment SHOPIFY_FLAG_ALLOW_UPDATES
*/
'--allow-updates'?: ''
/**
* The Client ID of your app.
* @environment SHOPIFY_FLAG_CLIENT_ID
*/
'--client-id <value>'?: string
/**
* The name of the app configuration.
* @environment SHOPIFY_FLAG_APP_CONFIG
*/
'-c, --config <value>'?: string
/**
* Optional message that will be associated with this version. This is for internal use only and won't be available externally.
* @environment SHOPIFY_FLAG_MESSAGE
*/
'--message <value>'?: string
/**
* Use with caution: Skips building any elements of the app that require building. You should ensure your app has been prepared in advance, such as by running `shopify app build` or by caching build artifacts.
* @environment SHOPIFY_FLAG_NO_BUILD
*/
'--no-build'?: ''
/**
* Disable color output.
* @environment SHOPIFY_FLAG_NO_COLOR
*/
'--no-color'?: ''
/**
* Creates a version but doesn't release it - it's not made available to merchants. With this flag, a user confirmation is not required.
* @environment SHOPIFY_FLAG_NO_RELEASE
*/
'--no-release'?: ''
/**
* The path to your app directory.
* @environment SHOPIFY_FLAG_PATH
*/
'--path <value>'?: string
/**
* Reset all your settings.
* @environment SHOPIFY_FLAG_RESET
*/
'--reset'?: ''
/**
* URL associated with the new app version.
* @environment SHOPIFY_FLAG_SOURCE_CONTROL_URL
*/
'--source-control-url <value>'?: string
/**
* Increase the verbosity of the output.
* @environment SHOPIFY_FLAG_VERBOSE
*/
'--verbose'?: ''
/**
* Optional version tag that will be associated with this app version. If not provided, an auto-generated identifier will be generated for this app version.
* @environment SHOPIFY_FLAG_VERSION
*/
'--version <value>'?: string
}