Skip to content

Commit 6c5653b

Browse files
authored
Merge pull request #332 from contentstack/staging
DX | 14-10-2024 | Release
2 parents 6feeac8 + 17b2311 commit 6c5653b

23 files changed

+2151
-2123
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $ npm install -g @contentstack/apps-cli
2020
$ csdx COMMAND
2121
running command...
2222
$ csdx (--version|-v)
23-
@contentstack/apps-cli/1.3.3 darwin-arm64 node-v18.12.1
23+
@contentstack/apps-cli/1.3.4 darwin-arm64 node-v22.2.0
2424
$ csdx --help [COMMAND]
2525
USAGE
2626
$ csdx COMMAND
@@ -69,7 +69,7 @@ EXAMPLES
6969
$ csdx app:update
7070
```
7171

72-
_See code: [src/commands/app/index.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/index.ts)_
72+
_See code: [src/commands/app/index.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/index.ts)_
7373

7474
## `csdx app:create`
7575

@@ -109,7 +109,7 @@ EXAMPLES
109109
$ csdx app:create --name App-4 --app-type organization --org <UID> --boilerplate <Ecommerce App Boilerplate>
110110
```
111111

112-
_See code: [src/commands/app/create.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/create.ts)_
112+
_See code: [src/commands/app/create.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/create.ts)_
113113

114114
## `csdx app:delete`
115115

@@ -134,23 +134,23 @@ EXAMPLES
134134
$ csdx app:delete --app-uid <value> --org <value> -d ./boilerplate
135135
```
136136

137-
_See code: [src/commands/app/delete.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/delete.ts)_
137+
_See code: [src/commands/app/delete.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/delete.ts)_
138138

139139
## `csdx app:deploy`
140140

141141
Deploy an app
142142

143143
```
144144
USAGE
145-
$ csdx app:deploy [--app-uid <value>] [--hosting-type Hosting with Launch|Custom Hosting] [--app-url <value>]
145+
$ csdx app:deploy [--app-uid <value>] [--hosting-type hosting-with-launch|custom-hosting] [--app-url <value>]
146146
[--launch-project existing|new] [-c <value>] [--org <value>]
147147
148148
FLAGS
149149
-c, --config=<value> [optional] Please enter the path of the config file.
150150
--app-uid=<value> Provide the app UID of an existing app.
151151
--app-url=<value> Please enter the URL of the app you want to deploy.
152152
--hosting-type=<option> Choose a valid Hosting Type.
153-
<options: Hosting with Launch|Custom Hosting>
153+
<options: hosting-with-launch|custom-hosting>
154154
--launch-project=<option> Choose a new or an existing Launch project.
155155
<options: existing|new>
156156
--org=<value> Provide the organization UID to fetch the app details for the operation.
@@ -163,16 +163,16 @@ EXAMPLES
163163
164164
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1>
165165
166-
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <Custom Hosting> --app-url <https://localhost:3000>
166+
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <custom-hosting> --app-url <https://localhost:3000>
167167
168-
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <Hosting with Launch> --launch-project <existing>
168+
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <hosting-with-launch> --launch-project <existing>
169169
170-
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <Hosting with Launch> --launch-project <new>
170+
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <hosting-with-launch> --launch-project <new>
171171
172-
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <Hosting with Launch> --launch-project <new> --config <config-path>
172+
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <hosting-with-launch> --launch-project <new> --config <config-path>
173173
```
174174

175-
_See code: [src/commands/app/deploy.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/deploy.ts)_
175+
_See code: [src/commands/app/deploy.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/deploy.ts)_
176176

177177
## `csdx app:get`
178178

@@ -202,7 +202,7 @@ EXAMPLES
202202
$ csdx app:get --org <value> --app-uid <value> --app-type organization
203203
```
204204

205-
_See code: [src/commands/app/get.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/get.ts)_
205+
_See code: [src/commands/app/get.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/get.ts)_
206206

207207
## `csdx app:install`
208208

@@ -228,7 +228,7 @@ EXAMPLES
228228
$ csdx app:install --org <UID> --app-uid <APP-UID-1> --stack-api-key <STACK-API-KEY-1>
229229
```
230230

231-
_See code: [src/commands/app/install.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/install.ts)_
231+
_See code: [src/commands/app/install.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/install.ts)_
232232

233233
## `csdx app:reinstall`
234234

@@ -254,7 +254,7 @@ EXAMPLES
254254
$ csdx app:reinstall --org <UID> --app-uid <APP-UID-1> --stack-api-key <STACK-API-KEY-1>
255255
```
256256

257-
_See code: [src/commands/app/reinstall.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/reinstall.ts)_
257+
_See code: [src/commands/app/reinstall.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/reinstall.ts)_
258258

259259
## `csdx app:uninstall`
260260

@@ -281,7 +281,7 @@ EXAMPLES
281281
$ csdx app:uninstall --org <UID> --app-uid <APP-UID-1> --installation-uid <INSTALLATION-UID-1>
282282
```
283283

284-
_See code: [src/commands/app/uninstall.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/uninstall.ts)_
284+
_See code: [src/commands/app/uninstall.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/uninstall.ts)_
285285

286286
## `csdx app:update`
287287

@@ -304,5 +304,5 @@ EXAMPLES
304304
$ csdx app:update --app-manifest ./boilerplate/manifest.json
305305
```
306306

307-
_See code: [src/commands/app/update.ts](https://github.com/contentstack/apps-cli/blob/v1.3.3/src/commands/app/update.ts)_
307+
_See code: [src/commands/app/update.ts](https://github.com/contentstack/apps-cli/blob/v1.3.4/src/commands/app/update.ts)_
308308
<!-- commandsstop -->

0 commit comments

Comments
 (0)