sfdx-jayree 4.4.19 → 4.4.20
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/CHANGELOG.md +15 -0
- package/README.md +71 -50
- package/lib/commands/jayree/flowtestcoverage.js +7 -1
- package/lib/commands/jayree/flowtestcoverage.js.map +1 -1
- package/lib/commands/jayree/org/configure/country.js +7 -1
- package/lib/commands/jayree/org/configure/country.js.map +1 -1
- package/lib/commands/jayree/org/configure/index.js +7 -1
- package/lib/commands/jayree/org/configure/index.js.map +1 -1
- package/lib/commands/jayree/org/configure/state.js +7 -1
- package/lib/commands/jayree/org/configure/state.js.map +1 -1
- package/lib/commands/jayree/org/settings.js +9 -4
- package/lib/commands/jayree/org/settings.js.map +1 -1
- package/lib/commands/jayree/org/streaming.js +7 -1
- package/lib/commands/jayree/org/streaming.js.map +1 -1
- package/lib/commands/jayree/source/fix.js +7 -1
- package/lib/commands/jayree/source/fix.js.map +1 -1
- package/lib/commands/jayree/source/tracking/list.js +9 -4
- package/lib/commands/jayree/source/tracking/list.js.map +1 -1
- package/lib/commands/jayree/source/tracking/store/get.js +8 -3
- package/lib/commands/jayree/source/tracking/store/get.js.map +1 -1
- package/lib/commands/jayree/source/tracking/store/set.js +8 -3
- package/lib/commands/jayree/source/tracking/store/set.js.map +1 -1
- package/lib/commands/jayree/version.js +7 -2
- package/lib/commands/jayree/version.js.map +1 -1
- package/lib/hooks/changelog.js +7 -2
- package/lib/hooks/changelog.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [4.4.20](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.4.19...v4.4.20) (2023-01-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump @jayree/sfdx-plugin-legacy from 1.1.18 to 1.1.19 ([#507](https://github.com/jayree/sfdx-jayree-plugin/issues/507)) ([7a69e34](https://github.com/jayree/sfdx-jayree-plugin/commit/7a69e34bce435de34fb6df744cff6c7c31a3a40b))
|
|
7
|
+
* **deps:** bump @jayree/sfdx-plugin-manifest from 2.6.3 to 2.7.1 ([#508](https://github.com/jayree/sfdx-jayree-plugin/issues/508)) ([62cd533](https://github.com/jayree/sfdx-jayree-plugin/commit/62cd5334fc5fcdade26c392f599c70f75e930903))
|
|
8
|
+
* **deps:** bump @jayree/sfdx-plugin-prettier from 1.2.18 to 1.2.19 ([#498](https://github.com/jayree/sfdx-jayree-plugin/issues/498)) ([90d83ba](https://github.com/jayree/sfdx-jayree-plugin/commit/90d83ba567d609da1421a9765498da64c2612bf3))
|
|
9
|
+
* **deps:** bump @oclif/core from 1.23.1 to 1.24.0 ([#501](https://github.com/jayree/sfdx-jayree-plugin/issues/501)) ([5fc1894](https://github.com/jayree/sfdx-jayree-plugin/commit/5fc18940ca0d57ac5aa8f4a4714ec38436e72526))
|
|
10
|
+
* **deps:** bump @salesforce/command from 5.2.37 to 5.2.40 ([#512](https://github.com/jayree/sfdx-jayree-plugin/issues/512)) ([ef621ff](https://github.com/jayree/sfdx-jayree-plugin/commit/ef621ff9c6205600479fb6ba754e4943dc51a397))
|
|
11
|
+
* **deps:** bump @salesforce/source-deploy-retrieve from 7.5.22 to 7.6.0 ([#503](https://github.com/jayree/sfdx-jayree-plugin/issues/503)) ([849ebb8](https://github.com/jayree/sfdx-jayree-plugin/commit/849ebb8e97ad309268a35b656d37ee08f114fb4a))
|
|
12
|
+
* **deps:** bump fast-xml-parser from 4.0.12 to 4.0.13 ([#505](https://github.com/jayree/sfdx-jayree-plugin/issues/505)) ([c6e33e7](https://github.com/jayree/sfdx-jayree-plugin/commit/c6e33e735e6bf27774234fa034e77760016707b7))
|
|
13
|
+
* **deps:** bump puppeteer from 19.4.1 to 19.5.1 ([#504](https://github.com/jayree/sfdx-jayree-plugin/issues/504)) ([216ac0f](https://github.com/jayree/sfdx-jayree-plugin/commit/216ac0fbc20e2bce5964df69a030e9738dc890bc))
|
|
14
|
+
* restore windows compatibility ([7b37318](https://github.com/jayree/sfdx-jayree-plugin/commit/7b3731804eaa02c617fbf8f832119c11257cc70c))
|
|
15
|
+
|
|
1
16
|
## [4.4.19](https://github.com/jayree/sfdx-jayree-plugin/compare/v4.4.18...v4.4.19) (2023-01-06)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ sfdx plugins:install sfdx-jayree
|
|
|
24
24
|
$ sfdx jayree:[COMMAND]
|
|
25
25
|
running command...
|
|
26
26
|
$ sfdx plugins
|
|
27
|
-
sfdx-jayree 4.4.
|
|
27
|
+
sfdx-jayree 4.4.20
|
|
28
28
|
$ sfdx help jayree:[COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sfdx jayree:COMMAND
|
|
@@ -103,7 +103,7 @@ EXAMPLES
|
|
|
103
103
|
❯ ChangeSet1
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
106
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/automation/changeset/deploy.ts)_
|
|
107
107
|
|
|
108
108
|
### `sfdx jayree:automation:changeset:list`
|
|
109
109
|
|
|
@@ -127,7 +127,7 @@ DESCRIPTION
|
|
|
127
127
|
list incomming change sets of an org (beta)
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
130
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/automation/changeset/list.ts)_
|
|
131
131
|
|
|
132
132
|
### `sfdx jayree:automation:ltngsync:status`
|
|
133
133
|
|
|
@@ -165,7 +165,7 @@ EXAMPLES
|
|
|
165
165
|
userContacts/userEvents: Exchange to Salesforce sync status... Initial sync completed/Initial sync completed
|
|
166
166
|
```
|
|
167
167
|
|
|
168
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
168
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/automation/ltngsync/status.ts)_
|
|
169
169
|
|
|
170
170
|
### `sfdx jayree:flowtestcoverage`
|
|
171
171
|
|
|
@@ -195,65 +195,86 @@ EXAMPLES
|
|
|
195
195
|
...
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
-
_See code: [src/commands/jayree/flowtestcoverage.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
198
|
+
_See code: [src/commands/jayree/flowtestcoverage.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/flowtestcoverage.ts)_
|
|
199
199
|
|
|
200
200
|
### `sfdx jayree:manifest:beta:git:diff`
|
|
201
201
|
|
|
202
|
-
|
|
202
|
+
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or delete based on changes in your git history.
|
|
203
203
|
|
|
204
204
|
```
|
|
205
205
|
USAGE
|
|
206
|
-
$ sfdx jayree:manifest:beta:git:diff [
|
|
207
|
-
|
|
206
|
+
$ sfdx jayree:manifest:beta:git:diff [REF1] [REF2] [--json] [--api-version <value>] [-d <value>] [--output-dir <value>]
|
|
207
|
+
[--destructive-changes-only]
|
|
208
208
|
|
|
209
209
|
ARGUMENTS
|
|
210
210
|
REF1 base commit or branch
|
|
211
211
|
REF2 commit or branch to compare to the base commit
|
|
212
212
|
|
|
213
213
|
FLAGS
|
|
214
|
-
-d, --
|
|
215
|
-
|
|
216
|
-
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
--apiversion=<value> override the api version used for
|
|
222
|
-
api requests made by this command
|
|
223
|
-
--json format output as json
|
|
224
|
-
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
|
|
225
|
-
this command invocation
|
|
214
|
+
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
215
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
216
|
+
--destructive-changes-only Create a destructiveChanges manifest only.
|
|
217
|
+
--output-dir=<value> Directory to save the created manifest files.
|
|
218
|
+
|
|
219
|
+
GLOBAL FLAGS
|
|
220
|
+
--json Format output as json.
|
|
226
221
|
|
|
227
222
|
DESCRIPTION
|
|
228
|
-
|
|
229
|
-
delete based on changes in your git history
|
|
223
|
+
Create a project manifest and destructiveChanges manifest that lists the metadata components you want to deploy or
|
|
224
|
+
delete based on changes in your git history.
|
|
225
|
+
|
|
230
226
|
Use this command to create a manifest and destructiveChanges manifest file based on the difference (git diff) of two
|
|
231
227
|
git refs.
|
|
232
228
|
|
|
233
|
-
You can use all ways to spell <commit> which are valid for 'git diff'.
|
|
234
|
-
(See https://git-scm.com/docs/git-diff)
|
|
229
|
+
You can use all ways to spell <commit> which are valid for 'git diff' (See https://git-scm.com/docs/git-diff).
|
|
235
230
|
|
|
236
231
|
EXAMPLES
|
|
237
|
-
|
|
232
|
+
Uses the changes between two arbitrary <commit>.
|
|
238
233
|
|
|
239
|
-
|
|
234
|
+
$ sfdx jayree:manifest:beta:git:diff <commit> <commit>
|
|
235
|
+
$ sfdx jayree:manifest:beta:git:diff <commit>..<commit>
|
|
240
236
|
|
|
241
|
-
|
|
237
|
+
Uses the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both
|
|
238
|
+
<commit>.
|
|
242
239
|
|
|
243
|
-
|
|
240
|
+
$ sfdx jayree:manifest:beta:git:diff <commit>...<commit>
|
|
244
241
|
|
|
245
|
-
|
|
242
|
+
Uses the diff of what is unique in branchB (REF2) and unique in branchA (REF1).
|
|
246
243
|
|
|
247
|
-
|
|
244
|
+
$ sfdx jayree:manifest:beta:git:diff branchA..branchB
|
|
248
245
|
|
|
249
|
-
|
|
246
|
+
Uses the diff of what is unique in branchB (REF2).
|
|
250
247
|
|
|
251
|
-
|
|
248
|
+
$ sfdx jayree:manifest:beta:git:diff branchA...branchB
|
|
252
249
|
|
|
253
|
-
|
|
250
|
+
Specify the flags before or after the REF args
|
|
251
|
+
|
|
252
|
+
$ sfdx jayree:manifest:beta:git:diff --output-dir package <commit> <commit>
|
|
253
|
+
$ sfdx jayree:manifest:beta:git:diff <commit> <commit> --output-dir package
|
|
254
|
+
|
|
255
|
+
If you specify the 'source-dir' flag before the REF args, use '--' to separate the args from the 'source-dir'
|
|
256
|
+
values.
|
|
257
|
+
|
|
258
|
+
$ sfdx jayree:manifest:beta:git:diff --source-dir force-app -- <commit> <commit>
|
|
259
|
+
|
|
260
|
+
FLAG DESCRIPTIONS
|
|
261
|
+
-d, --source-dir=<value>... Path to the local source files to include in the manifest.
|
|
262
|
+
|
|
263
|
+
The supplied path can be to a single file (in which case the operation is applied to only one file) or to a folder
|
|
264
|
+
(in which case the operation is applied to all metadata types in the directory and its subdirectories).
|
|
265
|
+
|
|
266
|
+
You can specify this flag more than once.
|
|
267
|
+
|
|
268
|
+
--destructive-changes-only Create a destructiveChanges manifest only.
|
|
269
|
+
|
|
270
|
+
Use this flag to create a 'destructiveChanges.xml' and a blank 'package.xml'.
|
|
271
|
+
|
|
272
|
+
--output-dir=<value> Directory to save the created manifest files.
|
|
273
|
+
|
|
274
|
+
The location can be an absolute path or relative to the current working directory.
|
|
254
275
|
```
|
|
255
276
|
|
|
256
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.
|
|
277
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.7.1/src/commands/jayree/manifest/beta/git/diff.ts)_
|
|
257
278
|
|
|
258
279
|
### `sfdx jayree:manifest:cleanup`
|
|
259
280
|
|
|
@@ -281,7 +302,7 @@ EXAMPLES
|
|
|
281
302
|
$ sfdx jayree:manifest:cleanup --manifest=package.xml --file=packageignore.xml
|
|
282
303
|
```
|
|
283
304
|
|
|
284
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.
|
|
305
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.7.1/src/commands/jayree/manifest/cleanup.ts)_
|
|
285
306
|
|
|
286
307
|
### `sfdx jayree:manifest:generate`
|
|
287
308
|
|
|
@@ -324,7 +345,7 @@ EXAMPLES
|
|
|
324
345
|
<Package xmlns='http://soap.sforce.com/2006/04/metadata'>...</Package>
|
|
325
346
|
```
|
|
326
347
|
|
|
327
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.
|
|
348
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.7.1/src/commands/jayree/manifest/generate.ts)_
|
|
328
349
|
|
|
329
350
|
### `sfdx jayree:manifest:git:diff`
|
|
330
351
|
|
|
@@ -378,7 +399,7 @@ EXAMPLES
|
|
|
378
399
|
uses the diff of what is unique in branchB (REF2)
|
|
379
400
|
```
|
|
380
401
|
|
|
381
|
-
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.
|
|
402
|
+
_See code: [@jayree/sfdx-plugin-manifest](https://github.com/jayree/sfdx-plugin-manifest/blob/v2.7.1/src/commands/jayree/manifest/git/diff.ts)_
|
|
382
403
|
|
|
383
404
|
### `sfdx jayree:org:configure`
|
|
384
405
|
|
|
@@ -413,7 +434,7 @@ EXAMPLES
|
|
|
413
434
|
$ sfdx jayree:org:configure --concurrent --tasks="Asset Settings","Activity Settings"
|
|
414
435
|
```
|
|
415
436
|
|
|
416
|
-
_See code: [src/commands/jayree/org/configure/index.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
437
|
+
_See code: [src/commands/jayree/org/configure/index.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/org/configure/index.ts)_
|
|
417
438
|
|
|
418
439
|
### `sfdx jayree:org:configure:country`
|
|
419
440
|
|
|
@@ -437,7 +458,7 @@ DESCRIPTION
|
|
|
437
458
|
update country integration values in the State/Country Picklists
|
|
438
459
|
```
|
|
439
460
|
|
|
440
|
-
_See code: [src/commands/jayree/org/configure/country.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
461
|
+
_See code: [src/commands/jayree/org/configure/country.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/org/configure/country.ts)_
|
|
441
462
|
|
|
442
463
|
### `sfdx jayree:org:configure:state`
|
|
443
464
|
|
|
@@ -466,7 +487,7 @@ DESCRIPTION
|
|
|
466
487
|
import (create/update) states into the State/Country Picklists
|
|
467
488
|
```
|
|
468
489
|
|
|
469
|
-
_See code: [src/commands/jayree/org/configure/state.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
490
|
+
_See code: [src/commands/jayree/org/configure/state.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/org/configure/state.ts)_
|
|
470
491
|
|
|
471
492
|
### `sfdx jayree:org:settings`
|
|
472
493
|
|
|
@@ -499,7 +520,7 @@ EXAMPLES
|
|
|
499
520
|
$ sfdx jayree:org:settings -u MyTestOrg1 -w
|
|
500
521
|
```
|
|
501
522
|
|
|
502
|
-
_See code: [src/commands/jayree/org/settings.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
523
|
+
_See code: [src/commands/jayree/org/settings.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/org/settings.ts)_
|
|
503
524
|
|
|
504
525
|
### `sfdx jayree:org:streaming`
|
|
505
526
|
|
|
@@ -528,7 +549,7 @@ EXAMPLES
|
|
|
528
549
|
...
|
|
529
550
|
```
|
|
530
551
|
|
|
531
|
-
_See code: [src/commands/jayree/org/streaming.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
552
|
+
_See code: [src/commands/jayree/org/streaming.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/org/streaming.ts)_
|
|
532
553
|
|
|
533
554
|
### `sfdx jayree:packagedescription:create`
|
|
534
555
|
|
|
@@ -553,7 +574,7 @@ EXAMPLES
|
|
|
553
574
|
$ sfdx jayree:packagedescription:create --file FILENAME --description 'DESCRIPTION'
|
|
554
575
|
```
|
|
555
576
|
|
|
556
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
577
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/packagedescription/create.ts)_
|
|
557
578
|
|
|
558
579
|
### `sfdx jayree:packagedescription:get`
|
|
559
580
|
|
|
@@ -578,7 +599,7 @@ EXAMPLES
|
|
|
578
599
|
Description of Package FILENAME
|
|
579
600
|
```
|
|
580
601
|
|
|
581
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
602
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/packagedescription/get.ts)_
|
|
582
603
|
|
|
583
604
|
### `sfdx jayree:packagedescription:remove`
|
|
584
605
|
|
|
@@ -602,7 +623,7 @@ EXAMPLES
|
|
|
602
623
|
$ sfdx jayree:packagedescription:remove --file FILENAME
|
|
603
624
|
```
|
|
604
625
|
|
|
605
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
626
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/packagedescription/remove.ts)_
|
|
606
627
|
|
|
607
628
|
### `sfdx jayree:packagedescription:set`
|
|
608
629
|
|
|
@@ -627,7 +648,7 @@ EXAMPLES
|
|
|
627
648
|
$ sfdx jayree:packagedescription:set --file FILENAME --description 'NEW DESCRIPTION'
|
|
628
649
|
```
|
|
629
650
|
|
|
630
|
-
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.
|
|
651
|
+
_See code: [@jayree/sfdx-plugin-legacy](https://github.com/jayree/sfdx-plugin-legacy/blob/v1.1.19/src/commands/jayree/packagedescription/set.ts)_
|
|
631
652
|
|
|
632
653
|
### `sfdx jayree:source:fix`
|
|
633
654
|
|
|
@@ -655,7 +676,7 @@ DESCRIPTION
|
|
|
655
676
|
(examples will follow)
|
|
656
677
|
```
|
|
657
678
|
|
|
658
|
-
_See code: [src/commands/jayree/source/fix.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
679
|
+
_See code: [src/commands/jayree/source/fix.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/source/fix.ts)_
|
|
659
680
|
|
|
660
681
|
### `sfdx jayree:source:tracking:list`
|
|
661
682
|
|
|
@@ -686,7 +707,7 @@ EXAMPLES
|
|
|
686
707
|
$ sfdx jayree:source:tracking:list -u me@my.org -r 101
|
|
687
708
|
```
|
|
688
709
|
|
|
689
|
-
_See code: [src/commands/jayree/source/tracking/list.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
710
|
+
_See code: [src/commands/jayree/source/tracking/list.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/source/tracking/list.ts)_
|
|
690
711
|
|
|
691
712
|
### `sfdx jayree:source:tracking:store:get`
|
|
692
713
|
|
|
@@ -714,7 +735,7 @@ EXAMPLES
|
|
|
714
735
|
$ sfdx jayree:source:tracking:store:get -u me@my.org
|
|
715
736
|
```
|
|
716
737
|
|
|
717
|
-
_See code: [src/commands/jayree/source/tracking/store/get.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
738
|
+
_See code: [src/commands/jayree/source/tracking/store/get.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/source/tracking/store/get.ts)_
|
|
718
739
|
|
|
719
740
|
### `sfdx jayree:source:tracking:store:set`
|
|
720
741
|
|
|
@@ -745,7 +766,7 @@ EXAMPLES
|
|
|
745
766
|
$ sfdx jayree:source:tracking:store:set -u MyTestOrg1 -r 101
|
|
746
767
|
```
|
|
747
768
|
|
|
748
|
-
_See code: [src/commands/jayree/source/tracking/store/set.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.
|
|
769
|
+
_See code: [src/commands/jayree/source/tracking/store/set.ts](https://github.com/jayree/sfdx-jayree-plugin/blob/v4.4.20/src/commands/jayree/source/tracking/store/set.ts)_
|
|
749
770
|
<!-- commandsstop -->
|
|
750
771
|
|
|
751
772
|
## Hooks
|
|
@@ -4,9 +4,15 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
+
import { dirname } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
7
9
|
import { SfdxCommand } from '@salesforce/command';
|
|
8
10
|
import { Messages } from '@salesforce/core';
|
|
9
|
-
|
|
11
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
14
|
+
const __dirname = dirname(__filename);
|
|
15
|
+
Messages.importMessagesDirectory(__dirname);
|
|
10
16
|
const messages = Messages.loadMessages('sfdx-jayree', 'flowtestcoverage');
|
|
11
17
|
export default class FlowTestCoverage extends SfdxCommand {
|
|
12
18
|
async run() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flowtestcoverage.js","sourceRoot":"","sources":["../../../src/commands/jayree/flowtestcoverage.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAG5C,
|
|
1
|
+
{"version":3,"file":"flowtestcoverage.js","sourceRoot":"","sources":["../../../src/commands/jayree/flowtestcoverage.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
7
|
import { createRequire } from 'module';
|
|
8
|
+
import { dirname } from 'node:path';
|
|
9
|
+
import { fileURLToPath } from 'node:url';
|
|
8
10
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
9
11
|
import { Messages } from '@salesforce/core';
|
|
10
12
|
import chalk from 'chalk';
|
|
@@ -14,7 +16,11 @@ import { Tabletojson as tabletojson } from 'tabletojson';
|
|
|
14
16
|
import config from '../../../../utils/config.js';
|
|
15
17
|
const require = createRequire(import.meta.url);
|
|
16
18
|
const CSconfig = require('../../../../../config/countrystate.json');
|
|
17
|
-
|
|
19
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
20
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
21
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
22
|
+
const __dirname = dirname(__filename);
|
|
23
|
+
Messages.importMessagesDirectory(__dirname);
|
|
18
24
|
const messages = Messages.loadMessages('sfdx-jayree', 'createstatecountry');
|
|
19
25
|
export default class UpdateCountry extends SfdxCommand {
|
|
20
26
|
async run() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/country.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,SAAS,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,WAAW,IAAI,WAAW,EAAE,MAAM,aAAa,CAAC;AACzD,OAAO,MAAM,MAAM,6BAA6B,CAAC;AAEjD,MAAM,OAAO,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC/C,MAAM,QAAQ,GAAG,OAAO,CAAC,yCAAyC,CAAC,CAAC;AAEpE,
|
|
1
|
+
{"version":3,"file":"country.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/country.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
+
import { dirname } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
7
9
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
8
10
|
import { Messages } from '@salesforce/core';
|
|
9
11
|
import { traverse } from '@salesforce/core/lib/util/internal.js';
|
|
@@ -12,7 +14,11 @@ import kit from '@salesforce/kit';
|
|
|
12
14
|
import Debug from 'debug';
|
|
13
15
|
import config from '../../../../utils/config.js';
|
|
14
16
|
import { PuppeteerConfigureTasks } from '../../../../utils/puppeteer/configuretasks.js';
|
|
15
|
-
|
|
17
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
18
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
19
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
20
|
+
const __dirname = dirname(__filename);
|
|
21
|
+
Messages.importMessagesDirectory(__dirname);
|
|
16
22
|
const messages = Messages.loadMessages('sfdx-jayree', 'configure');
|
|
17
23
|
const logger = new Logger({ useIcons: false });
|
|
18
24
|
const debug = Debug('jayree:org:configure');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,uCAAuC,CAAC;AAEjE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,GAAG,MAAM,iBAAiB,CAAC;AAClC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,MAAM,MAAM,6BAA6B,CAAC;AACjD,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AAExF,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
+
import { dirname } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
7
9
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
8
10
|
import { Messages } from '@salesforce/core';
|
|
9
11
|
import { Logger, Listr } from 'listr2';
|
|
@@ -12,7 +14,11 @@ import Enquirer from 'enquirer';
|
|
|
12
14
|
import Debug from 'debug';
|
|
13
15
|
import { MyDefaultRenderer } from '../../../../utils/renderer.js';
|
|
14
16
|
import { PuppeteerStateTasks } from '../../../../utils/puppeteer/statetasks.js';
|
|
15
|
-
|
|
17
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
18
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
19
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
20
|
+
const __dirname = dirname(__filename);
|
|
21
|
+
Messages.importMessagesDirectory(__dirname);
|
|
16
22
|
const messages = Messages.loadMessages('sfdx-jayree', 'createstatecountry');
|
|
17
23
|
const logger = new Logger({ useIcons: false });
|
|
18
24
|
const debug = Debug('jayree:x:y');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/state.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,GAAG,MAAM,iBAAiB,CAAC;AAClC,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAEhF,
|
|
1
|
+
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/org/configure/state.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
-
import path from 'path';
|
|
8
7
|
import os from 'os';
|
|
8
|
+
import { dirname, join } from 'node:path';
|
|
9
|
+
import { fileURLToPath } from 'node:url';
|
|
9
10
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
10
11
|
import { Messages, SfProject } from '@salesforce/core';
|
|
11
12
|
import createDebug from 'debug';
|
|
@@ -13,7 +14,11 @@ import fs from 'fs-extra';
|
|
|
13
14
|
import { ComponentSet } from '@salesforce/source-deploy-retrieve';
|
|
14
15
|
import mkdirp from 'mkdirp';
|
|
15
16
|
import { parseSourceComponent } from '../../../utils/xml.js';
|
|
16
|
-
|
|
17
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
18
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
19
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
20
|
+
const __dirname = dirname(__filename);
|
|
21
|
+
Messages.importMessagesDirectory(__dirname);
|
|
17
22
|
const messages = Messages.loadMessages('sfdx-jayree', 'scratchorgsettings');
|
|
18
23
|
function camelize(str) {
|
|
19
24
|
return str.replace(/(?:^\w|[A-Z]|\b\w|\s+)/g, (match, index) => {
|
|
@@ -48,7 +53,7 @@ export default class ScratchOrgSettings extends SfdxCommand {
|
|
|
48
53
|
};
|
|
49
54
|
let settings = {};
|
|
50
55
|
const targetDir = process.env.SFDX_MDAPI_TEMP_DIR || os.tmpdir();
|
|
51
|
-
const destRoot =
|
|
56
|
+
const destRoot = join(targetDir, 'RetrieveSettings');
|
|
52
57
|
// this.ux.startSpinner('Generating settings');
|
|
53
58
|
try {
|
|
54
59
|
await mkdirp(destRoot, '700');
|
|
@@ -137,7 +142,7 @@ export default class ScratchOrgSettings extends SfdxCommand {
|
|
|
137
142
|
if (this.flags.writetoprojectscratchdeffile) {
|
|
138
143
|
const deffilepath =
|
|
139
144
|
// eslint-disable-next-line @typescript-eslint/await-thenable
|
|
140
|
-
this.flags.file ||
|
|
145
|
+
this.flags.file || join(await this.project.getPath(), 'config', 'project-scratch-def.json');
|
|
141
146
|
let deffile = {};
|
|
142
147
|
await fs
|
|
143
148
|
.readFile(deffilepath, 'utf8')
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../../../src/commands/jayree/org/settings.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,
|
|
1
|
+
{"version":3,"file":"settings.js","sourceRoot":"","sources":["../../../../src/commands/jayree/org/settings.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,9 +4,15 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
+
import { dirname } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
7
9
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
8
10
|
import { Messages } from '@salesforce/core';
|
|
9
|
-
|
|
11
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
14
|
+
const __dirname = dirname(__filename);
|
|
15
|
+
Messages.importMessagesDirectory(__dirname);
|
|
10
16
|
const messages = Messages.loadMessages('sfdx-jayree', 'streaming');
|
|
11
17
|
export default class Streaming extends SfdxCommand {
|
|
12
18
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"streaming.js","sourceRoot":"","sources":["../../../../src/commands/jayree/org/streaming.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAG5C,
|
|
1
|
+
{"version":3,"file":"streaming.js","sourceRoot":"","sources":["../../../../src/commands/jayree/org/streaming.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAG5C,gDAAgD;AAChD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,gDAAgD;AAChD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAEtC,QAAQ,CAAC,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAE5C,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC;AAEnE,MAAM,CAAC,OAAO,OAAO,SAAU,SAAQ,WAAW;IAqBhD,4DAA4D;IACrD,KAAK,CAAC,GAAG;QACd,MAAM,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC;QAC7B,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,EAAE,CAAC;QACtC,gCAAgC;QAChC,MAAM,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,EAAE,EAAE;YAC/D,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;QAEH,OAAO;YACL,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE;SAC3B,CAAC;IACJ,CAAC;;AAhCa,qBAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC;AAExD,kBAAQ,GAAG;IACvB;;CAEH;CACE,CAAC;AAEe,qBAAW,GAAG;IAC7B,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC;QAClB,IAAI,EAAE,GAAG;QACT,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,sBAAsB,CAAC;KACzD,CAAC;CACH,CAAC;AAEe,0BAAgB,GAAG,IAAI,CAAC;AACxB,gCAAsB,GAAG,KAAK,CAAC;AAC/B,yBAAe,GAAG,KAAK,CAAC"}
|
|
@@ -4,10 +4,16 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
+
import { dirname } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
7
9
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
8
10
|
import { Messages } from '@salesforce/core';
|
|
9
11
|
import { applyFixes, logFixes } from '../../../utils/souceUtils.js';
|
|
10
|
-
|
|
12
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
13
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
14
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
15
|
+
const __dirname = dirname(__filename);
|
|
16
|
+
Messages.importMessagesDirectory(__dirname);
|
|
11
17
|
const messages = Messages.loadMessages('sfdx-jayree', 'sourceretrievefix');
|
|
12
18
|
export default class FixMetadata extends SfdxCommand {
|
|
13
19
|
async run() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fix.js","sourceRoot":"","sources":["../../../../src/commands/jayree/source/fix.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAwB,MAAM,8BAA8B,CAAC;AAE1F,
|
|
1
|
+
{"version":3,"file":"fix.js","sourceRoot":"","sources":["../../../../src/commands/jayree/source/fix.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAwB,MAAM,8BAA8B,CAAC;AAE1F,gDAAgD;AAChD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,gDAAgD;AAChD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAEtC,QAAQ,CAAC,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAE5C,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,aAAa,EAAE,mBAAmB,CAAC,CAAC;AAE3E,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,WAAW;IA0B3C,KAAK,CAAC,GAAG;QACd,IAAI,YAAY,GAAyB,EAAE,CAAC;QAE5C,IAAI;YACF,YAAY,GAAG,MAAM,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAChD,oCAAoC;SACrC;gBAAS;SACT;QAED,MAAM,QAAQ,CAAC,YAAY,CAAC,CAAC;QAE7B,OAAO;YACL,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC;iBACpC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;iBACnC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;YAC5C,OAAO,EAAE,YAAY;SACtB,CAAC;IACJ,CAAC;;AA1Ca,uBAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC;AAEtE;;;;;;KAMK;AAEY,uBAAW,GAAG;IAC7B,GAAG,EAAE,KAAK,CAAC,KAAK,CAAC;QACf,IAAI,EAAE,GAAG;QACT,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC;KACxC,CAAC;IACF,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;QACrB,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC;QACvC,eAAe,EAAE,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC;KAC5C,CAAC;CACH,CAAC;AAEe,4BAAgB,GAAG,IAAI,CAAC;AACxB,kCAAsB,GAAG,KAAK,CAAC;AAC/B,2BAAe,GAAG,IAAI,CAAC"}
|
|
@@ -5,20 +5,25 @@
|
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
7
|
/* eslint-disable no-console */
|
|
8
|
-
import
|
|
8
|
+
import { dirname, join } from 'node:path';
|
|
9
|
+
import { fileURLToPath } from 'node:url';
|
|
9
10
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
10
11
|
import { Messages } from '@salesforce/core';
|
|
11
12
|
import fs from 'fs-extra';
|
|
12
13
|
import chalk from 'chalk';
|
|
13
14
|
import { getCurrentStateFolderFilePath } from '../../../../utils/stateFolderHandler.js';
|
|
14
|
-
|
|
15
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
16
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
17
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
18
|
+
const __dirname = dirname(__filename);
|
|
19
|
+
Messages.importMessagesDirectory(__dirname);
|
|
15
20
|
const messages = Messages.loadMessages('sfdx-jayree', 'scratchorgtrackinglist');
|
|
16
21
|
export default class SourceTrackingList extends SfdxCommand {
|
|
17
22
|
async run() {
|
|
18
23
|
const conn = this.org.getConnection();
|
|
19
24
|
const { records: [{ maxCounter, maxNum }], } = await conn.tooling.query('SELECT MAX(RevisionCounter) maxCounter,MAX(RevisionNum) maxNum from SourceMember');
|
|
20
25
|
const maxRev = maxCounter >= maxNum ? maxCounter : maxNum;
|
|
21
|
-
const maxrevpath = await getCurrentStateFolderFilePath(this.project.getPath(),
|
|
26
|
+
const maxrevpath = await getCurrentStateFolderFilePath(this.project.getPath(), join('orgs', this.org.getOrgId(), 'maxRevision.json'), false);
|
|
22
27
|
let maxrevfile;
|
|
23
28
|
try {
|
|
24
29
|
const json = await fs.readJSON(maxrevpath);
|
|
@@ -41,7 +46,7 @@ export default class SourceTrackingList extends SfdxCommand {
|
|
|
41
46
|
}
|
|
42
47
|
let storedServerMaxRevisionCounter;
|
|
43
48
|
try {
|
|
44
|
-
const { serverMaxRevisionCounter } = await fs.readJSON(await getCurrentStateFolderFilePath(this.project.getPath(),
|
|
49
|
+
const { serverMaxRevisionCounter } = await fs.readJSON(await getCurrentStateFolderFilePath(this.project.getPath(), join('orgs', this.org.getOrgId(), 'jayreeStoredMaxRevision.json'), true), { throws: false });
|
|
45
50
|
storedServerMaxRevisionCounter = serverMaxRevisionCounter;
|
|
46
51
|
// eslint-disable-next-line no-empty
|
|
47
52
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/source/tracking/list.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,+BAA+B;AAC/B,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"list.js","sourceRoot":"","sources":["../../../../../src/commands/jayree/source/tracking/list.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,17 +4,22 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { dirname, join } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
8
9
|
import { SfdxCommand } from '@salesforce/command';
|
|
9
10
|
import { Messages } from '@salesforce/core';
|
|
10
11
|
import fs from 'fs-extra';
|
|
11
12
|
import chalk from 'chalk';
|
|
12
13
|
import { getCurrentStateFolderFilePath } from '../../../../../utils/stateFolderHandler.js';
|
|
13
|
-
|
|
14
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
15
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
16
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
17
|
+
const __dirname = dirname(__filename);
|
|
18
|
+
Messages.importMessagesDirectory(__dirname);
|
|
14
19
|
const messages = Messages.loadMessages('sfdx-jayree', 'scratchorgtrackingget');
|
|
15
20
|
export default class ScratchOrgRevisionInfo extends SfdxCommand {
|
|
16
21
|
async run() {
|
|
17
|
-
const { serverMaxRevisionCounter } = await fs.readJSON(await getCurrentStateFolderFilePath(this.project.getPath(),
|
|
22
|
+
const { serverMaxRevisionCounter } = await fs.readJSON(await getCurrentStateFolderFilePath(this.project.getPath(), join('orgs', this.org.getOrgId(), 'jayreeStoredMaxRevision.json'), true), { throws: false });
|
|
18
23
|
this.ux.styledHeader(chalk.blue('Get stored SourceMember revision counter number'));
|
|
19
24
|
this.ux.table([
|
|
20
25
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../../src/commands/jayree/source/tracking/store/get.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../../../../../src/commands/jayree/source/tracking/store/get.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,MAAM,UAAU,CAAC;AAC1B,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,6BAA6B,EAAE,MAAM,4CAA4C,CAAC;AAE3F,gDAAgD;AAChD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,gDAAgD;AAChD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAEtC,QAAQ,CAAC,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAE5C,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,aAAa,EAAE,uBAAuB,CAAC,CAAC;AAE/E,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,WAAW;IAYtD,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,wBAAwB,EAAE,GAAG,MAAM,EAAE,CAAC,QAAQ,CACpD,MAAM,6BAA6B,CACjC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,EACtB,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,EAAE,8BAA8B,CAAC,EACjE,IAAI,CACL,EACD,EAAE,MAAM,EAAE,KAAK,EAAE,CAClB,CAAC;QACF,IAAI,CAAC,EAAE,CAAC,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,iDAAiD,CAAC,CAAC,CAAC;QACpF,IAAI,CAAC,EAAE,CAAC,KAAK,CACX;YACE;gBACE,QAAQ,EAAE,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE;gBAChC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE;gBAC1B,wBAAwB,EAAE,wBAAwB,CAAC,QAAQ,EAAE;aAC9D;SACF,EACD;YACE,QAAQ,EAAE;gBACR,MAAM,EAAE,UAAU;gBAClB,GAAG,EAAE,CAAC,GAAQ,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ;aAChC;YACD,KAAK,EAAE;gBACL,MAAM,EAAE,OAAO;gBACf,GAAG,EAAE,CAAC,GAAQ,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK;aAC7B;YACD,eAAe,EAAE;gBACf,MAAM,EAAE,iBAAiB;gBACzB,GAAG,EAAE,CAAC,GAAQ,EAAE,EAAE,CAAC,GAAG,CAAC,wBAAwB;aAChD;SACF,CACF,CAAC;QACF,OAAO;YACL,QAAQ,EAAE,wBAAwB;YAClC,QAAQ,EAAE,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE;SACjC,CAAC;IACJ,CAAC;;AAhDa,kCAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC;AAExD,+BAAQ,GAAG;IACvB;qDACiD;CAClD,CAAC;AAEe,uCAAgB,GAAG,IAAI,CAAC;AACxB,6CAAsB,GAAG,KAAK,CAAC;AAC/B,sCAAe,GAAG,IAAI,CAAC"}
|
|
@@ -4,13 +4,18 @@
|
|
|
4
4
|
* Licensed under the BSD 3-Clause license.
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { dirname, join } from 'node:path';
|
|
8
|
+
import { fileURLToPath } from 'node:url';
|
|
8
9
|
import { flags, SfdxCommand } from '@salesforce/command';
|
|
9
10
|
import { Messages } from '@salesforce/core';
|
|
10
11
|
import fs from 'fs-extra';
|
|
11
12
|
import chalk from 'chalk';
|
|
12
13
|
import { getCurrentStateFolderFilePath } from '../../../../../utils/stateFolderHandler.js';
|
|
13
|
-
|
|
14
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
15
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
16
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
17
|
+
const __dirname = dirname(__filename);
|
|
18
|
+
Messages.importMessagesDirectory(__dirname);
|
|
14
19
|
const messages = Messages.loadMessages('sfdx-jayree', 'scratchorgtrackingset');
|
|
15
20
|
export default class ScratchOrgRevisionInfo extends SfdxCommand {
|
|
16
21
|
async run() {
|
|
@@ -20,7 +25,7 @@ export default class ScratchOrgRevisionInfo extends SfdxCommand {
|
|
|
20
25
|
if (!maxRev) {
|
|
21
26
|
maxRev = 0;
|
|
22
27
|
}
|
|
23
|
-
const storedmaxrevpath = await getCurrentStateFolderFilePath(this.project.getPath(),
|
|
28
|
+
const storedmaxrevpath = await getCurrentStateFolderFilePath(this.project.getPath(), join('orgs', this.org.getOrgId(), 'jayreeStoredMaxRevision.json'), true);
|
|
24
29
|
const newMaxRev = this.flags.revision >= 0 ? this.flags.revision : maxRev;
|
|
25
30
|
await fs.ensureFile(storedmaxrevpath);
|
|
26
31
|
await fs.writeJSON(storedmaxrevpath, { serverMaxRevisionCounter: newMaxRev });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"set.js","sourceRoot":"","sources":["../../../../../../src/commands/jayree/source/tracking/store/set.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"set.js","sourceRoot":"","sources":["../../../../../../src/commands/jayree/source/tracking/store/set.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,13 +5,18 @@
|
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
7
|
import { accessSync, readFileSync } from 'fs';
|
|
8
|
-
import { dirname, join } from 'path';
|
|
8
|
+
import { dirname, join } from 'node:path';
|
|
9
|
+
import { fileURLToPath } from 'node:url';
|
|
9
10
|
import { SfdxCommand } from '@salesforce/command';
|
|
11
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
13
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
14
|
+
const __dirname = dirname(__filename);
|
|
10
15
|
export default class Version extends SfdxCommand {
|
|
11
16
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
12
17
|
async run() {
|
|
13
18
|
const root = () => {
|
|
14
|
-
let currentPath =
|
|
19
|
+
let currentPath = __dirname;
|
|
15
20
|
let rootpath;
|
|
16
21
|
while (!rootpath) {
|
|
17
22
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/commands/jayree/version.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/commands/jayree/version.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGlD,gDAAgD;AAChD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,gDAAgD;AAChD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AAEtC,MAAM,CAAC,OAAO,OAAO,OAAQ,SAAQ,WAAW;IAG9C,4DAA4D;IACrD,KAAK,CAAC,GAAG;QACd,MAAM,IAAI,GAAG,GAAG,EAAE;YAChB,IAAI,WAAW,GAAG,SAAS,CAAC;YAC5B,IAAI,QAAQ,CAAC;YACb,OAAO,CAAC,QAAQ,EAAE;gBAChB,IAAI;oBACF,UAAU,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,CAAC;oBAC9C,QAAQ,GAAG,WAAW,CAAC;iBACxB;gBAAC,MAAM;oBACN,WAAW,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;iBACpC;aACF;YACD,OAAO,QAAQ,CAAC;QAClB,CAAC,CAAC;QAEF,MAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;QACxF,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;QACrC,OAAO;YACL,OAAO,EAAE,eAAe,CAAC,OAAO;SACjC,CAAC;IACJ,CAAC;;AAvBa,cAAM,GAAG,IAAI,CAAC"}
|
package/lib/hooks/changelog.js
CHANGED
|
@@ -5,12 +5,17 @@
|
|
|
5
5
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
6
|
*/
|
|
7
7
|
/* istanbul ignore file */
|
|
8
|
-
import { join } from 'node:path';
|
|
8
|
+
import { dirname, join } from 'node:path';
|
|
9
|
+
import { fileURLToPath } from 'node:url';
|
|
9
10
|
import fs from 'fs-extra';
|
|
10
11
|
import Debug from 'debug';
|
|
11
12
|
import TerminalRenderer from 'marked-terminal';
|
|
12
13
|
import { marked } from 'marked';
|
|
13
14
|
import semver from 'semver';
|
|
15
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
16
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
17
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
18
|
+
const __dirname = dirname(__filename);
|
|
14
19
|
// original from https://github.com/salesforcecli/plugin-info/blob/main/src/shared/parseReleaseNotes.ts
|
|
15
20
|
const parseReleaseNotes = (notes, version, currentVersion) => {
|
|
16
21
|
let found = false;
|
|
@@ -50,7 +55,7 @@ export const changelog = async function () {
|
|
|
50
55
|
const debug = Debug(`${this.config.bin}:jayree-sfdx-plugin:hooks:changelog`);
|
|
51
56
|
process.once('exit', () => {
|
|
52
57
|
try {
|
|
53
|
-
const pluginRootPath = join(
|
|
58
|
+
const pluginRootPath = join(__dirname, '..', '..');
|
|
54
59
|
const { name, version } = fs.readJsonSync(join(pluginRootPath, 'package.json'));
|
|
55
60
|
const changelogFile = fs.readFileSync(join(pluginRootPath, 'CHANGELOG.md'), 'utf8');
|
|
56
61
|
const cacheDir = join(this.config.cacheDir, name);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"changelog.js","sourceRoot":"","sources":["../../src/hooks/changelog.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,0BAA0B;AAC1B,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"changelog.js","sourceRoot":"","sources":["../../src/hooks/changelog.ts"],"names":[],"mappings":"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"}
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"4.4.19","commands":{"jayree:flowtestcoverage":{"id":"jayree:flowtestcoverage","description":"check the flow test coverage of an org","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:flowtestcoverage\n=== Flow Test Coverage\nCoverage: 82%\n...\n"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false}},"args":[],"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:version":{"id":"jayree:version","strict":true,"usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[]},"jayree:org:settings":{"id":"jayree:org:settings","description":"write the current settings from an Org to a scratch org def file","strict":true,"usage":"<%= command.id %> [-w] [-f <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:settings\n$ sfdx jayree:org:settings -u me@my.org\n$ sfdx jayree:org:settings -u MyTestOrg1 -w"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"writetoprojectscratchdeffile":{"name":"writetoprojectscratchdeffile","type":"boolean","char":"w","description":"write output to project-scratch-def.json file","allowNo":false},"file":{"name":"file","type":"option","char":"f","description":"write to 'file' instead of project-scratch-def.json","multiple":false}},"args":[],"flagsConfig":{"writetoprojectscratchdeffile":{"kind":"boolean","char":"w","description":"write output to project-scratch-def.json file","allowNo":false,"type":"boolean"},"file":{"kind":"string","char":"f","description":"write to 'file' instead of project-scratch-def.json","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:org:streaming":{"id":"jayree:org:streaming","description":"listen to streaming api and platform events","strict":true,"usage":"<%= command.id %> -p <string> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:streaming --topic=/event/eventName__e\n...\n"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"topic":{"name":"topic","type":"option","char":"p","description":"topic name","required":true,"multiple":false}},"args":[],"flagsConfig":{"topic":{"kind":"string","char":"p","required":true,"description":"topic name","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:source:fix":{"id":"jayree:source:fix","description":"fix local source files\n(examples will follow)","strict":true,"usage":"<%= command.id %> [-t <array>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"tag":{"name":"tag","type":"option","char":"t","description":"comma-separated list of tag names listed in .sfdx-jayree.json","multiple":false},"verbose":{"name":"verbose","type":"boolean","description":"log output to console","allowNo":false}},"args":[],"flagsConfig":{"tag":{"kind":"array","char":"t","description":"comma-separated list of tag names listed in .sfdx-jayree.json","input":[],"multiple":false,"type":"option"},"verbose":{"description":"log output to console","longDescription":"log output to console","type":"boolean","kind":"boolean","allowNo":false}},"supportsUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:org:configure:country":{"id":"jayree:org:configure:country","description":"update country integration values in the State/Country Picklists","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"silent":{"name":"silent","type":"boolean","description":"silent mode","hidden":true,"required":false,"allowNo":false}},"args":[],"flagsConfig":{"silent":{"kind":"boolean","description":"silent mode","required":false,"default":false,"hidden":true,"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:org:configure":{"id":"jayree:org:configure","description":"make configuration changes that are not covered by the metadata API\nSee example configuration on how to define tasks","strict":true,"usage":"<%= command.id %> [-t <array>] [--concurrent] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:configure\n$ sfdx jayree:org:configure -u me@my.org\n$ sfdx jayree:org:configure --tasks=\"Asset Settings\",\"Activity Settings\"\n$ sfdx jayree:org:configure --concurrent --tasks=\"Asset Settings\",\"Activity Settings\""],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"tasks":{"name":"tasks","type":"option","char":"t","description":"list of task titles, if no tasks are specified, all tasks marked as active will be executed","multiple":false},"concurrent":{"name":"concurrent","type":"boolean","description":"execute tasks in parallel","allowNo":false}},"args":[],"flagsConfig":{"tasks":{"kind":"array","char":"t","description":"list of task titles, if no tasks are specified, all tasks marked as active will be executed","input":[],"multiple":false,"type":"option"},"concurrent":{"kind":"boolean","description":"execute tasks in parallel","default":false,"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:org:configure:state":{"id":"jayree:org:configure:state","description":"import (create/update) states into the State/Country Picklists","strict":true,"usage":"<%= command.id %> [--countrycode <string>] [--category <string>] [--language <string>] [--concurrent <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"countrycode":{"name":"countrycode","type":"option","description":"Alpha-2 code","multiple":false},"category":{"name":"category","type":"option","description":"Subdivision category","multiple":false},"language":{"name":"language","type":"option","description":"Language code","multiple":false},"concurrent":{"name":"concurrent","type":"option","description":"ccc","multiple":false,"default":1}},"args":[],"flagsConfig":{"countrycode":{"kind":"string","description":"Alpha-2 code","input":[],"multiple":false,"type":"option"},"category":{"kind":"string","description":"Subdivision category","input":[],"multiple":false,"type":"option"},"language":{"kind":"string","description":"Language code","input":[],"multiple":false,"type":"option"},"concurrent":{"kind":"integer","description":"ccc","default":1,"input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:source:tracking:list":{"id":"jayree:source:tracking:list","description":"list changes in a scratch org by remote revision counter number","strict":true,"usage":"<%= command.id %> [-r <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:list\n$ sfdx jayree:source:tracking:list -u me@my.org\n$ sfdx jayree:source:tracking:list -u me@my.org -r 101"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"revision":{"name":"revision","type":"option","char":"r","description":"start at a specific revision counter number","multiple":false,"default":0}},"args":[],"flagsConfig":{"revision":{"kind":"integer","char":"r","description":"start at a specific revision counter number","default":0,"input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:source:tracking:store:get":{"id":"jayree:source:tracking:store:get","description":"get stored revision counter number","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:store:get\n$ sfdx jayree:source:tracking:store:get -u me@my.org"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false}},"args":[],"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:source:tracking:store:set":{"id":"jayree:source:tracking:store:set","description":"store revision counter number","strict":true,"usage":"<%= command.id %> [-r <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:store:set\n$ sfdx jayree:source:tracking:store:set -u me@my.org\n$ sfdx jayree:source:tracking:store:set -u MyTestOrg1 -r 101"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"revision":{"name":"revision","type":"option","char":"r","description":"revision counter number (default: remote revision counter number)","multiple":false}},"args":[],"flagsConfig":{"revision":{"kind":"integer","char":"r","description":"revision counter number (default: remote revision counter number)","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true}}}
|
|
1
|
+
{"version":"4.4.20","commands":{"jayree:flowtestcoverage":{"id":"jayree:flowtestcoverage","description":"check the flow test coverage of an org","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:flowtestcoverage\n=== Flow Test Coverage\nCoverage: 82%\n...\n"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false}},"args":[],"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:version":{"id":"jayree:version","strict":true,"usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[]},"jayree:org:settings":{"id":"jayree:org:settings","description":"write the current settings from an Org to a scratch org def file","strict":true,"usage":"<%= command.id %> [-w] [-f <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:settings\n$ sfdx jayree:org:settings -u me@my.org\n$ sfdx jayree:org:settings -u MyTestOrg1 -w"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"writetoprojectscratchdeffile":{"name":"writetoprojectscratchdeffile","type":"boolean","char":"w","description":"write output to project-scratch-def.json file","allowNo":false},"file":{"name":"file","type":"option","char":"f","description":"write to 'file' instead of project-scratch-def.json","multiple":false}},"args":[],"flagsConfig":{"writetoprojectscratchdeffile":{"kind":"boolean","char":"w","description":"write output to project-scratch-def.json file","allowNo":false,"type":"boolean"},"file":{"kind":"string","char":"f","description":"write to 'file' instead of project-scratch-def.json","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:org:streaming":{"id":"jayree:org:streaming","description":"listen to streaming api and platform events","strict":true,"usage":"<%= command.id %> -p <string> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:streaming --topic=/event/eventName__e\n...\n"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"topic":{"name":"topic","type":"option","char":"p","description":"topic name","required":true,"multiple":false}},"args":[],"flagsConfig":{"topic":{"kind":"string","char":"p","required":true,"description":"topic name","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:source:fix":{"id":"jayree:source:fix","description":"fix local source files\n(examples will follow)","strict":true,"usage":"<%= command.id %> [-t <array>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"tag":{"name":"tag","type":"option","char":"t","description":"comma-separated list of tag names listed in .sfdx-jayree.json","multiple":false},"verbose":{"name":"verbose","type":"boolean","description":"log output to console","allowNo":false}},"args":[],"flagsConfig":{"tag":{"kind":"array","char":"t","description":"comma-separated list of tag names listed in .sfdx-jayree.json","input":[],"multiple":false,"type":"option"},"verbose":{"description":"log output to console","longDescription":"log output to console","type":"boolean","kind":"boolean","allowNo":false}},"supportsUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:org:configure:country":{"id":"jayree:org:configure:country","description":"update country integration values in the State/Country Picklists","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"silent":{"name":"silent","type":"boolean","description":"silent mode","hidden":true,"required":false,"allowNo":false}},"args":[],"flagsConfig":{"silent":{"kind":"boolean","description":"silent mode","required":false,"default":false,"hidden":true,"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:org:configure":{"id":"jayree:org:configure","description":"make configuration changes that are not covered by the metadata API\nSee example configuration on how to define tasks","strict":true,"usage":"<%= command.id %> [-t <array>] [--concurrent] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:org:configure\n$ sfdx jayree:org:configure -u me@my.org\n$ sfdx jayree:org:configure --tasks=\"Asset Settings\",\"Activity Settings\"\n$ sfdx jayree:org:configure --concurrent --tasks=\"Asset Settings\",\"Activity Settings\""],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"tasks":{"name":"tasks","type":"option","char":"t","description":"list of task titles, if no tasks are specified, all tasks marked as active will be executed","multiple":false},"concurrent":{"name":"concurrent","type":"boolean","description":"execute tasks in parallel","allowNo":false}},"args":[],"flagsConfig":{"tasks":{"kind":"array","char":"t","description":"list of task titles, if no tasks are specified, all tasks marked as active will be executed","input":[],"multiple":false,"type":"option"},"concurrent":{"kind":"boolean","description":"execute tasks in parallel","default":false,"allowNo":false,"type":"boolean"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:org:configure:state":{"id":"jayree:org:configure:state","description":"import (create/update) states into the State/Country Picklists","strict":true,"usage":"<%= command.id %> [--countrycode <string>] [--category <string>] [--language <string>] [--concurrent <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"countrycode":{"name":"countrycode","type":"option","description":"Alpha-2 code","multiple":false},"category":{"name":"category","type":"option","description":"Subdivision category","multiple":false},"language":{"name":"language","type":"option","description":"Language code","multiple":false},"concurrent":{"name":"concurrent","type":"option","description":"ccc","multiple":false,"default":1}},"args":[],"flagsConfig":{"countrycode":{"kind":"string","description":"Alpha-2 code","input":[],"multiple":false,"type":"option"},"category":{"kind":"string","description":"Subdivision category","input":[],"multiple":false,"type":"option"},"language":{"kind":"string","description":"Language code","input":[],"multiple":false,"type":"option"},"concurrent":{"kind":"integer","description":"ccc","default":1,"input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":false},"jayree:source:tracking:list":{"id":"jayree:source:tracking:list","description":"list changes in a scratch org by remote revision counter number","strict":true,"usage":"<%= command.id %> [-r <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:list\n$ sfdx jayree:source:tracking:list -u me@my.org\n$ sfdx jayree:source:tracking:list -u me@my.org -r 101"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"revision":{"name":"revision","type":"option","char":"r","description":"start at a specific revision counter number","multiple":false,"default":0}},"args":[],"flagsConfig":{"revision":{"kind":"integer","char":"r","description":"start at a specific revision counter number","default":0,"input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:source:tracking:store:get":{"id":"jayree:source:tracking:store:get","description":"get stored revision counter number","strict":true,"usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:store:get\n$ sfdx jayree:source:tracking:store:get -u me@my.org"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false}},"args":[],"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true},"jayree:source:tracking:store:set":{"id":"jayree:source:tracking:store:set","description":"store revision counter number","strict":true,"usage":"<%= command.id %> [-r <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"sfdx-jayree","pluginAlias":"sfdx-jayree","pluginType":"core","aliases":[],"examples":["$ sfdx jayree:source:tracking:store:set\n$ sfdx jayree:source:tracking:store:set -u me@my.org\n$ sfdx jayree:source:tracking:store:set -u MyTestOrg1 -r 101"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"revision":{"name":"revision","type":"option","char":"r","description":"revision counter number (default: remote revision counter number)","multiple":false}},"args":[],"flagsConfig":{"revision":{"kind":"integer","char":"r","description":"revision counter number (default: remote revision counter number)","input":[],"multiple":false,"type":"option"}},"requiresUsername":true,"supportsDevhubUsername":false,"requiresProject":true}}}
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfdx-jayree",
|
|
3
3
|
"description": "A Salesforce CLI plugin containing commands and hooks for Salesforce Application Lifecycle Management tasks.",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.20",
|
|
5
5
|
"author": "jayree <jayree.git@icloud.com>",
|
|
6
6
|
"bugs": "https://github.com/jayree/sfdx-jayree-plugin/issues",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@jayree/sfdx-plugin-legacy": "^1.1.
|
|
10
|
-
"@jayree/sfdx-plugin-manifest": "^2.
|
|
11
|
-
"@jayree/sfdx-plugin-prettier": "^1.2.
|
|
12
|
-
"@oclif/core": "^1.
|
|
13
|
-
"@salesforce/command": "^5.2.
|
|
9
|
+
"@jayree/sfdx-plugin-legacy": "^1.1.19",
|
|
10
|
+
"@jayree/sfdx-plugin-manifest": "^2.7.1",
|
|
11
|
+
"@jayree/sfdx-plugin-prettier": "^1.2.19",
|
|
12
|
+
"@oclif/core": "^1.24.0",
|
|
13
|
+
"@salesforce/command": "^5.2.40",
|
|
14
14
|
"@salesforce/kit": "^1.8.2",
|
|
15
|
-
"@salesforce/source-deploy-retrieve": "^7.
|
|
15
|
+
"@salesforce/source-deploy-retrieve": "^7.6.0",
|
|
16
16
|
"@salesforce/source-tracking": "^2.2.17",
|
|
17
17
|
"debug": "^4.3.4",
|
|
18
18
|
"enquirer": "^2.3.6",
|
|
19
|
-
"fast-xml-parser": "^4.0.
|
|
19
|
+
"fast-xml-parser": "^4.0.13",
|
|
20
20
|
"fs-extra": "^10.1.0",
|
|
21
21
|
"ignore": "^5.2.4",
|
|
22
22
|
"is-docker": "^3.0.0",
|
|
@@ -26,20 +26,20 @@
|
|
|
26
26
|
"marked-terminal": "^5.1.1",
|
|
27
27
|
"mkdirp": "^1.0.4",
|
|
28
28
|
"object-path": "^0.11.8",
|
|
29
|
-
"puppeteer": "^19.
|
|
29
|
+
"puppeteer": "^19.5.1",
|
|
30
30
|
"semver": "^7.3.8",
|
|
31
31
|
"tabletojson": "^2.0.7",
|
|
32
32
|
"tslib": "^2.4.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@commitlint/cli": "^17.4.
|
|
35
|
+
"@commitlint/cli": "^17.4.1",
|
|
36
36
|
"@commitlint/config-conventional": "^17.4.0",
|
|
37
37
|
"@oclif/plugin-command-snapshot": "^3.2.16",
|
|
38
38
|
"@oclif/plugin-help": "^5.1.22",
|
|
39
39
|
"@salesforce/dev-config": "^3.1.0",
|
|
40
40
|
"@salesforce/dev-scripts": "3.1.0",
|
|
41
41
|
"@salesforce/prettier-config": "^0.0.2",
|
|
42
|
-
"@salesforce/ts-sinon": "^1.4.
|
|
42
|
+
"@salesforce/ts-sinon": "^1.4.4",
|
|
43
43
|
"@types/chai": "^4.3.4",
|
|
44
44
|
"@types/fs-extra": "^9.0.13",
|
|
45
45
|
"@types/jsforce": "^1.11.0",
|
|
@@ -50,27 +50,27 @@
|
|
|
50
50
|
"@types/node": "^18.11.18",
|
|
51
51
|
"@types/semver": "^7.3.13",
|
|
52
52
|
"@types/sinon": "^10.0.13",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^5.48.
|
|
54
|
-
"@typescript-eslint/parser": "^5.48.
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
54
|
+
"@typescript-eslint/parser": "^5.48.1",
|
|
55
55
|
"chai": "^4.3.7",
|
|
56
56
|
"eslint": "^8.31.0",
|
|
57
57
|
"eslint-config-prettier": "^8.6.0",
|
|
58
58
|
"eslint-config-salesforce": "^1.1.0",
|
|
59
59
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
60
60
|
"eslint-plugin-header": "^3.1.1",
|
|
61
|
-
"eslint-plugin-import": "^2.
|
|
61
|
+
"eslint-plugin-import": "^2.27.2",
|
|
62
62
|
"eslint-plugin-jsdoc": "^39.6.4",
|
|
63
63
|
"eslint-plugin-prettier": "^4.2.1",
|
|
64
|
-
"eslint-plugin-sf-plugin": "^1.
|
|
64
|
+
"eslint-plugin-sf-plugin": "^1.6.1",
|
|
65
65
|
"husky": "^8.0.3",
|
|
66
66
|
"is-ci": "^3.0.1",
|
|
67
67
|
"mocha": "^10.2.0",
|
|
68
|
-
"nock": "^13.
|
|
68
|
+
"nock": "^13.3.0",
|
|
69
69
|
"nyc": "^15.1.0",
|
|
70
70
|
"oclif": "^3.4.3",
|
|
71
71
|
"patch-package": "^6.5.1",
|
|
72
72
|
"pinst": "^3.0.0",
|
|
73
|
-
"prettier": "^2.8.
|
|
73
|
+
"prettier": "^2.8.2",
|
|
74
74
|
"pretty-quick": "^3.1.3",
|
|
75
75
|
"shx": "^0.3.4",
|
|
76
76
|
"sinon": "^14.0.2",
|