Skip to content

Commit 29d1681

Browse files
committed
version bump
1 parent 6abb7c1 commit 29d1681

3 files changed

Lines changed: 10646 additions & 6798 deletions

File tree

README.md

Lines changed: 41 additions & 41 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.4 darwin-arm64 node-v22.2.0
23+
@contentstack/apps-cli/1.5.0 darwin-arm64 node-v22.13.1
2424
$ csdx --help [COMMAND]
2525
USAGE
2626
$ csdx COMMAND
@@ -69,26 +69,26 @@ EXAMPLES
6969
$ csdx app:update
7070
```
7171

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

7474
## `csdx app:create`
7575

7676
Create a new app in Developer Hub and optionally clone a boilerplate locally.
7777

7878
```
7979
USAGE
80-
$ csdx app:create [-n <value>] [--app-type stack|organization] [-c <value>] [-d <value>] [--boilerplate
81-
<value>] [--org <value>]
80+
$ csdx app:create [--org <value>] [-n <value>] [--app-type stack|organization] [-c <value>] [-d <value>]
81+
[--boilerplate <value>]
8282
8383
FLAGS
84-
-c, --config=<value> Path of the external config
85-
-d, --data-dir=<value> Current working directory.
86-
-n, --name=<value> Name of the app to be created
87-
--app-type=<option> [default: stack] Type of app
88-
<options: stack|organization>
89-
--boilerplate=<value> Provide a boilerplate. <options: App Boilerplate|DAM App Boilerplate|Ecommerce App
90-
Boilerplate>
91-
--org=<value> Provide the organization UID to fetch the app details for the operation.
84+
-c, --config=<value> Path of the external config
85+
-d, --data-dir=<value> Current working directory.
86+
-n, --name=<value> Name of the app to be created
87+
--app-type=<option> [default: stack] Type of app
88+
<options: stack|organization>
89+
--boilerplate=<value> Provide a boilerplate. <options: App Boilerplate|DAM App Boilerplate|Ecommerce App
90+
Boilerplate>
91+
--org=<value> Provide the organization UID to fetch the app details for the operation.
9292
9393
DESCRIPTION
9494
Create a new app in Developer Hub and optionally clone a boilerplate locally.
@@ -109,15 +109,15 @@ 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.4/src/commands/app/create.ts)_
112+
_See code: [src/commands/app/create.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/create.ts)_
113113

114114
## `csdx app:delete`
115115

116116
Delete app from marketplace
117117

118118
```
119119
USAGE
120-
$ csdx app:delete [--app-uid <value>] [--org <value>]
120+
$ csdx app:delete [--org <value>] [--app-uid <value>]
121121
122122
FLAGS
123123
--app-uid=<value> Provide the app UID of an existing app.
@@ -134,26 +134,26 @@ 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.4/src/commands/app/delete.ts)_
137+
_See code: [src/commands/app/delete.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/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>]
146-
[--launch-project existing|new] [-c <value>] [--org <value>]
145+
$ csdx app:deploy [--org <value>] [--app-uid <value>] [--hosting-type hosting-with-launch|custom-hosting]
146+
[--app-url <value>] [--launch-project existing|new] [-c <value>]
147147
148148
FLAGS
149-
-c, --config=<value> [optional] Please enter the path of the config file.
150-
--app-uid=<value> Provide the app UID of an existing app.
151-
--app-url=<value> Please enter the URL of the app you want to deploy.
152-
--hosting-type=<option> Choose a valid Hosting Type.
153-
<options: hosting-with-launch|custom-hosting>
154-
--launch-project=<option> Choose a new or an existing Launch project.
155-
<options: existing|new>
156-
--org=<value> Provide the organization UID to fetch the app details for the operation.
149+
-c, --config=<value> [optional] Please enter the path of the config file.
150+
--app-uid=<value> Provide the app UID of an existing app.
151+
--app-url=<value> Please enter the URL of the app you want to deploy.
152+
--hosting-type=<option> Choose a valid Hosting Type.
153+
<options: hosting-with-launch|custom-hosting>
154+
--launch-project=<option> Choose a new or an existing Launch project.
155+
<options: existing|new>
156+
--org=<value> Provide the organization UID to fetch the app details for the operation.
157157
158158
DESCRIPTION
159159
Deploy an app
@@ -172,22 +172,22 @@ EXAMPLES
172172
$ 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.4/src/commands/app/deploy.ts)_
175+
_See code: [src/commands/app/deploy.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/deploy.ts)_
176176

177177
## `csdx app:get`
178178

179179
Get details of an app in developer hub
180180

181181
```
182182
USAGE
183-
$ csdx app:get [--app-uid <value>] [--app-type stack|organization] [-d <value>] [--org <value>]
183+
$ csdx app:get [--org <value>] [--app-uid <value>] [--app-type stack|organization] [-d <value>]
184184
185185
FLAGS
186-
-d, --data-dir=<value> Current working directory.
187-
--app-type=<option> [default: stack] Type of app
188-
<options: stack|organization>
189-
--app-uid=<value> Provide the app UID of an existing app.
190-
--org=<value> Provide the organization UID to fetch the app details for the operation.
186+
-d, --data-dir=<value> Current working directory.
187+
--app-type=<option> [default: stack] Type of app
188+
<options: stack|organization>
189+
--app-uid=<value> Provide the app UID of an existing app.
190+
--org=<value> Provide the organization UID to fetch the app details for the operation.
191191
192192
DESCRIPTION
193193
Get details of an app in developer hub
@@ -202,15 +202,15 @@ 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.4/src/commands/app/get.ts)_
205+
_See code: [src/commands/app/get.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/get.ts)_
206206

207207
## `csdx app:install`
208208

209209
Install an app from the marketplace
210210

211211
```
212212
USAGE
213-
$ csdx app:install [--app-uid <value>] [--stack-api-key <value>] [--org <value>]
213+
$ csdx app:install [--org <value>] [--app-uid <value>] [--stack-api-key <value>]
214214
215215
FLAGS
216216
--app-uid=<value> Provide the app UID of an existing app.
@@ -228,15 +228,15 @@ 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.4/src/commands/app/install.ts)_
231+
_See code: [src/commands/app/install.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/install.ts)_
232232

233233
## `csdx app:reinstall`
234234

235235
Reinstall an app from the marketplace
236236

237237
```
238238
USAGE
239-
$ csdx app:reinstall [--app-uid <value>] [--stack-api-key <value>] [--org <value>]
239+
$ csdx app:reinstall [--org <value>] [--app-uid <value>] [--stack-api-key <value>]
240240
241241
FLAGS
242242
--app-uid=<value> Provide the app UID of an existing app.
@@ -254,15 +254,15 @@ 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.4/src/commands/app/reinstall.ts)_
257+
_See code: [src/commands/app/reinstall.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/reinstall.ts)_
258258

259259
## `csdx app:uninstall`
260260

261261
Uninstall an app
262262

263263
```
264264
USAGE
265-
$ csdx app:uninstall [--app-uid <value>] [--installation-uid <value>] [--uninstall-all] [--org <value>]
265+
$ csdx app:uninstall [--org <value>] [--app-uid <value>] [--installation-uid <value>] [--uninstall-all]
266266
267267
FLAGS
268268
--app-uid=<value> Provide the app UID of an existing app.
@@ -281,15 +281,15 @@ 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.4/src/commands/app/uninstall.ts)_
284+
_See code: [src/commands/app/uninstall.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/uninstall.ts)_
285285

286286
## `csdx app:update`
287287

288288
Update the existing app in developer hub
289289

290290
```
291291
USAGE
292-
$ csdx app:update [--app-manifest <value>] [--org <value>]
292+
$ csdx app:update [--org <value>] [--app-manifest <value>]
293293
294294
FLAGS
295295
--app-manifest=<value> Path to the app manifest.json file:
@@ -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.4/src/commands/app/update.ts)_
307+
_See code: [src/commands/app/update.ts](https://github.com/contentstack/apps-cli/blob/v1.5.0/src/commands/app/update.ts)_
308308
<!-- commandsstop -->

0 commit comments

Comments
 (0)