@super-protocol/sp-cli 0.0.2-beta.10 → 0.0.2-beta.11

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.
package/README.md CHANGED
@@ -21,7 +21,7 @@ $ npm install -g @super-protocol/sp-cli
21
21
  $ sp COMMAND
22
22
  running command...
23
23
  $ sp (--version)
24
- @super-protocol/sp-cli/0.0.2-beta.10 linux-x64 node-v22.21.1
24
+ @super-protocol/sp-cli/0.0.2-beta.11 linux-x64 node-v22.21.1
25
25
  $ sp --help [COMMAND]
26
26
  USAGE
27
27
  $ sp COMMAND
@@ -33,6 +33,7 @@ USAGE
33
33
  * [`sp account info`](#sp-account-info)
34
34
  * [`sp auth login`](#sp-auth-login)
35
35
  * [`sp auth me`](#sp-auth-me)
36
+ * [`sp autocomplete [SHELL]`](#sp-autocomplete-shell)
36
37
  * [`sp base`](#sp-base)
37
38
  * [`sp config`](#sp-config)
38
39
  * [`sp config add [FILE]`](#sp-config-add-file)
@@ -62,7 +63,7 @@ GLOBAL FLAGS
62
63
  --json Format output as json.
63
64
  ```
64
65
 
65
- _See code: [src/commands/account/info.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/account/info.ts)_
66
+ _See code: [src/commands/account/info.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/account/info.ts)_
66
67
 
67
68
  ## `sp auth login`
68
69
 
@@ -86,7 +87,7 @@ EXAMPLES
86
87
  $ sp auth login
87
88
  ```
88
89
 
89
- _See code: [src/commands/auth/login.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/auth/login.ts)_
90
+ _See code: [src/commands/auth/login.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/auth/login.ts)_
90
91
 
91
92
  ## `sp auth me`
92
93
 
@@ -99,7 +100,38 @@ GLOBAL FLAGS
99
100
  --json Format output as json.
100
101
  ```
101
102
 
102
- _See code: [src/commands/auth/me.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/auth/me.ts)_
103
+ _See code: [src/commands/auth/me.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/auth/me.ts)_
104
+
105
+ ## `sp autocomplete [SHELL]`
106
+
107
+ Display autocomplete installation instructions.
108
+
109
+ ```
110
+ USAGE
111
+ $ sp autocomplete [SHELL] [-r]
112
+
113
+ ARGUMENTS
114
+ [SHELL] (zsh|bash|powershell) Shell type
115
+
116
+ FLAGS
117
+ -r, --refresh-cache Refresh cache (ignores displaying instructions)
118
+
119
+ DESCRIPTION
120
+ Display autocomplete installation instructions.
121
+
122
+ EXAMPLES
123
+ $ sp autocomplete
124
+
125
+ $ sp autocomplete bash
126
+
127
+ $ sp autocomplete zsh
128
+
129
+ $ sp autocomplete powershell
130
+
131
+ $ sp autocomplete --refresh-cache
132
+ ```
133
+
134
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.39/src/commands/autocomplete/index.ts)_
103
135
 
104
136
  ## `sp base`
105
137
 
@@ -112,7 +144,7 @@ GLOBAL FLAGS
112
144
  --json Format output as json.
113
145
  ```
114
146
 
115
- _See code: [src/commands/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/base.ts)_
147
+ _See code: [src/commands/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/base.ts)_
116
148
 
117
149
  ## `sp config`
118
150
 
@@ -142,7 +174,7 @@ EXAMPLES
142
174
  $ sp config delete - Delete a configuration
143
175
  ```
144
176
 
145
- _See code: [src/commands/config/index.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/index.ts)_
177
+ _See code: [src/commands/config/index.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/index.ts)_
146
178
 
147
179
  ## `sp config add [FILE]`
148
180
 
@@ -181,7 +213,7 @@ EXAMPLES
181
213
  }
182
214
  ```
183
215
 
184
- _See code: [src/commands/config/add.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/add.ts)_
216
+ _See code: [src/commands/config/add.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/add.ts)_
185
217
 
186
218
  ## `sp config base`
187
219
 
@@ -193,7 +225,7 @@ GLOBAL FLAGS
193
225
  --json Format output as json.
194
226
  ```
195
227
 
196
- _See code: [src/commands/config/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/base.ts)_
228
+ _See code: [src/commands/config/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/base.ts)_
197
229
 
198
230
  ## `sp config create`
199
231
 
@@ -220,7 +252,7 @@ EXAMPLES
220
252
  $ sp config create --name "Production" --url "https://api.dp.superprotocol.com"
221
253
  ```
222
254
 
223
- _See code: [src/commands/config/create.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/create.ts)_
255
+ _See code: [src/commands/config/create.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/create.ts)_
224
256
 
225
257
  ## `sp config delete`
226
258
 
@@ -248,7 +280,7 @@ EXAMPLES
248
280
  $ sp config delete --name "My Config" --force
249
281
  ```
250
282
 
251
- _See code: [src/commands/config/delete.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/delete.ts)_
283
+ _See code: [src/commands/config/delete.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/delete.ts)_
252
284
 
253
285
  ## `sp config list`
254
286
 
@@ -268,7 +300,7 @@ EXAMPLES
268
300
  $ sp config list
269
301
  ```
270
302
 
271
- _See code: [src/commands/config/list.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/list.ts)_
303
+ _See code: [src/commands/config/list.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/list.ts)_
272
304
 
273
305
  ## `sp config show`
274
306
 
@@ -288,7 +320,7 @@ EXAMPLES
288
320
  $ sp config show
289
321
  ```
290
322
 
291
- _See code: [src/commands/config/show.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/show.ts)_
323
+ _See code: [src/commands/config/show.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/show.ts)_
292
324
 
293
325
  ## `sp config use`
294
326
 
@@ -308,7 +340,7 @@ EXAMPLES
308
340
  $ sp config use
309
341
  ```
310
342
 
311
- _See code: [src/commands/config/use.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/config/use.ts)_
343
+ _See code: [src/commands/config/use.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/config/use.ts)_
312
344
 
313
345
  ## `sp files download RESOURCEFILE LOCALDIRECTORY`
314
346
 
@@ -336,7 +368,7 @@ EXAMPLES
336
368
  $ sp files download ./resource.json ./pathToDownload
337
369
  ```
338
370
 
339
- _See code: [src/commands/files/download.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/files/download.ts)_
371
+ _See code: [src/commands/files/download.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/files/download.ts)_
340
372
 
341
373
  ## `sp files upload PATH`
342
374
 
@@ -370,7 +402,7 @@ EXAMPLES
370
402
  $ sp files upload ./file.txt
371
403
  ```
372
404
 
373
- _See code: [src/commands/files/upload.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/files/upload.ts)_
405
+ _See code: [src/commands/files/upload.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/files/upload.ts)_
374
406
 
375
407
  ## `sp help [COMMAND]`
376
408
 
@@ -425,7 +457,7 @@ GLOBAL FLAGS
425
457
  --json Format output as json.
426
458
  ```
427
459
 
428
- _See code: [src/commands/storage/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/storage/base.ts)_
460
+ _See code: [src/commands/storage/base.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/storage/base.ts)_
429
461
 
430
462
  ## `sp storage create`
431
463
 
@@ -454,7 +486,7 @@ EXAMPLES
454
486
  $ sp storage create --not-default
455
487
  ```
456
488
 
457
- _See code: [src/commands/storage/create.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/storage/create.ts)_
489
+ _See code: [src/commands/storage/create.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/storage/create.ts)_
458
490
 
459
491
  ## `sp storage select`
460
492
 
@@ -480,7 +512,7 @@ EXAMPLES
480
512
  $ sp storage select --id=2de3e3a4-0000-1111-2222-333344445555
481
513
  ```
482
514
 
483
- _See code: [src/commands/storage/select.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/storage/select.ts)_
515
+ _See code: [src/commands/storage/select.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/storage/select.ts)_
484
516
 
485
517
  ## `sp storage update`
486
518
 
@@ -507,5 +539,5 @@ EXAMPLES
507
539
  $ sp storage update --id=2de3e3a4-0000-1111-2222-333344445555
508
540
  ```
509
541
 
510
- _See code: [src/commands/storage/update.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.10/src/commands/storage/update.ts)_
542
+ _See code: [src/commands/storage/update.ts](https://github.com/Super-Protocol/sp-cli/blob/v0.0.2-beta.11/src/commands/storage/update.ts)_
511
543
  <!-- commandsstop -->
@@ -836,5 +836,5 @@
836
836
  ]
837
837
  }
838
838
  },
839
- "version": "0.0.2-beta.10"
839
+ "version": "0.0.2-beta.11"
840
840
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@super-protocol/sp-cli",
3
3
  "description": "SuperProtocol Command line interface",
4
- "version": "0.0.2-beta.10",
4
+ "version": "0.0.2-beta.11",
5
5
  "author": "SuperProtocol",
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "plugins": [
84
84
  "@oclif/plugin-help",
85
+ "@oclif/plugin-autocomplete",
85
86
  "@oclif/plugin-warn-if-update-available"
86
87
  ],
87
88
  "warn-if-update-available": {