-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathapp-release.interface.ts
More file actions
60 lines (52 loc) · 1.41 KB
/
app-release.interface.ts
File metadata and controls
60 lines (52 loc) · 1.41 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
// This is an autogenerated file. Don't edit this file manually.
/**
* The following flags are available for the `app release` command:
* @publicDocs
*/
export interface apprelease {
/**
* 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
/**
* Disable color output.
* @environment SHOPIFY_FLAG_NO_COLOR
*/
'--no-color'?: ''
/**
* The path to your app directory.
* @environment SHOPIFY_FLAG_PATH
*/
'--path <value>'?: string
/**
* Reset all your settings.
* @environment SHOPIFY_FLAG_RESET
*/
'--reset'?: ''
/**
* Increase the verbosity of the output.
* @environment SHOPIFY_FLAG_VERBOSE
*/
'--verbose'?: ''
/**
* The name of the app version to release.
* @environment SHOPIFY_FLAG_VERSION
*/
'--version <value>': string
}