@salesforce/plugin-command-reference 3.0.73 → 3.0.75
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 +68 -3
- package/npm-shrinkwrap.json +138 -69
- package/oclif.lock +79 -53
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -81,9 +81,74 @@ Now diff the output. Changes should be intentional!
|
|
|
81
81
|
|
|
82
82
|
<!-- commands -->
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
- [`sf commandreference generate`](#sf-commandreference-generate)
|
|
85
|
+
- [`sf jit install`](#sf-jit-install)
|
|
85
86
|
|
|
86
|
-
|
|
87
|
-
|
|
87
|
+
## `sf commandreference generate`
|
|
88
|
+
|
|
89
|
+
generate the command reference guide located
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
USAGE
|
|
93
|
+
$ sf commandreference generate [--json] [-d <value>] [-p <value> | -a] [-s <value>] [--hidden] [--error-on-warnings] [-c
|
|
94
|
+
<value>]
|
|
95
|
+
|
|
96
|
+
FLAGS
|
|
97
|
+
-a, --all include all relevant plugins in the generation
|
|
98
|
+
-c, --config-path=<value> A path to the directory containing a plugin or cli
|
|
99
|
+
-d, --output-dir=<value> [default: ./tmp/root] output directory to put generated files
|
|
100
|
+
-p, --plugins=<value>... comma separated list of plugin names to be part of the generation. Defaults to the oclif
|
|
101
|
+
plugin in the current working directory
|
|
102
|
+
-s, --ditamap-suffix=<value> [default: unified] unique suffix to append to generated ditamap
|
|
103
|
+
--error-on-warnings fail the command if there are any warnings
|
|
104
|
+
--hidden show hidden commands
|
|
105
|
+
|
|
106
|
+
GLOBAL FLAGS
|
|
107
|
+
--json Format output as json.
|
|
108
|
+
|
|
109
|
+
DESCRIPTION
|
|
110
|
+
generate the command reference guide located
|
|
111
|
+
|
|
112
|
+
generate the command reference guide located
|
|
113
|
+
|
|
114
|
+
EXAMPLES
|
|
115
|
+
Generate the command reference guide
|
|
116
|
+
|
|
117
|
+
$ sf commandreference generate
|
|
118
|
+
|
|
119
|
+
Generate the command reference for a set of plugins
|
|
120
|
+
|
|
121
|
+
$ sf commandreference generate --plugins pluginA,pluginB
|
|
122
|
+
|
|
123
|
+
Generate the command reference for all plugins
|
|
124
|
+
|
|
125
|
+
$ sf commandreference generate --all --output-dir ./docs
|
|
126
|
+
|
|
127
|
+
Generate the command reference for all plugins in a directory
|
|
128
|
+
|
|
129
|
+
$ sf commandreference generate --all --config-path /path/to/plugin --output-dir ./docs
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
_See code: [src/commands/commandreference/generate.ts](https://github.com/salesforcecli/plugin-command-reference/blob/3.0.75/src/commands/commandreference/generate.ts)_
|
|
133
|
+
|
|
134
|
+
## `sf jit install`
|
|
135
|
+
|
|
136
|
+
Install all JIT plugins.
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
USAGE
|
|
140
|
+
$ sf jit install [--json] [-d]
|
|
141
|
+
|
|
142
|
+
FLAGS
|
|
143
|
+
-d, --dry-run List the plugins that would be installed.
|
|
144
|
+
|
|
145
|
+
GLOBAL FLAGS
|
|
146
|
+
--json Format output as json.
|
|
147
|
+
|
|
148
|
+
EXAMPLES
|
|
149
|
+
$ sf jit install
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
_See code: [src/commands/jit/install.ts](https://github.com/salesforcecli/plugin-command-reference/blob/3.0.75/src/commands/jit/install.ts)_
|
|
88
153
|
|
|
89
154
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-command-reference",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.75",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-command-reference",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.75",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^3.26.0",
|
|
13
|
-
"@salesforce/core": "^6.7.
|
|
14
|
-
"@salesforce/kit": "^3.0
|
|
13
|
+
"@salesforce/core": "^6.7.6",
|
|
14
|
+
"@salesforce/kit": "^3.1.0",
|
|
15
15
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
16
16
|
"@salesforce/ts-types": "^2.0.9",
|
|
17
17
|
"chalk": "^4",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@salesforce/plugin-auth": "^2.8.26",
|
|
25
25
|
"@types/debug": "^4.1.12",
|
|
26
26
|
"@types/ejs": "^3.1.5",
|
|
27
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
27
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
28
28
|
"oclif": "^4",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
30
|
"typescript": "^5.4.3"
|
|
@@ -2451,7 +2451,7 @@
|
|
|
2451
2451
|
"node": ">=18"
|
|
2452
2452
|
}
|
|
2453
2453
|
},
|
|
2454
|
-
"node_modules/@inquirer/core": {
|
|
2454
|
+
"node_modules/@inquirer/confirm/node_modules/@inquirer/core": {
|
|
2455
2455
|
"version": "7.1.0",
|
|
2456
2456
|
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.0.tgz",
|
|
2457
2457
|
"integrity": "sha512-FRCiDiU54XHt5B/D8hX4twwZuzSP244ANHbu3R7CAsJfiv1dUOz24ePBgCZjygEjDUi6BWIJuk4eWLKJ7LATUw==",
|
|
@@ -2477,7 +2477,7 @@
|
|
|
2477
2477
|
"node": ">=18"
|
|
2478
2478
|
}
|
|
2479
2479
|
},
|
|
2480
|
-
"node_modules/@inquirer/
|
|
2480
|
+
"node_modules/@inquirer/confirm/node_modules/@types/node": {
|
|
2481
2481
|
"version": "20.11.30",
|
|
2482
2482
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz",
|
|
2483
2483
|
"integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==",
|
|
@@ -2487,20 +2487,7 @@
|
|
|
2487
2487
|
"undici-types": "~5.26.4"
|
|
2488
2488
|
}
|
|
2489
2489
|
},
|
|
2490
|
-
"node_modules/@inquirer/
|
|
2491
|
-
"version": "2.9.2",
|
|
2492
|
-
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
|
|
2493
|
-
"integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
|
|
2494
|
-
"dev": true,
|
|
2495
|
-
"license": "MIT",
|
|
2496
|
-
"engines": {
|
|
2497
|
-
"node": ">=6"
|
|
2498
|
-
},
|
|
2499
|
-
"funding": {
|
|
2500
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
2501
|
-
}
|
|
2502
|
-
},
|
|
2503
|
-
"node_modules/@inquirer/core/node_modules/cli-width": {
|
|
2490
|
+
"node_modules/@inquirer/confirm/node_modules/cli-width": {
|
|
2504
2491
|
"version": "4.1.0",
|
|
2505
2492
|
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
2506
2493
|
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
@@ -2510,7 +2497,7 @@
|
|
|
2510
2497
|
"node": ">= 12"
|
|
2511
2498
|
}
|
|
2512
2499
|
},
|
|
2513
|
-
"node_modules/@inquirer/
|
|
2500
|
+
"node_modules/@inquirer/confirm/node_modules/mute-stream": {
|
|
2514
2501
|
"version": "1.0.0",
|
|
2515
2502
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz",
|
|
2516
2503
|
"integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==",
|
|
@@ -2520,7 +2507,7 @@
|
|
|
2520
2507
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
2521
2508
|
}
|
|
2522
2509
|
},
|
|
2523
|
-
"node_modules/@inquirer/
|
|
2510
|
+
"node_modules/@inquirer/confirm/node_modules/run-async": {
|
|
2524
2511
|
"version": "3.0.0",
|
|
2525
2512
|
"resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz",
|
|
2526
2513
|
"integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==",
|
|
@@ -2530,6 +2517,74 @@
|
|
|
2530
2517
|
"node": ">=0.12.0"
|
|
2531
2518
|
}
|
|
2532
2519
|
},
|
|
2520
|
+
"node_modules/@inquirer/confirm/node_modules/signal-exit": {
|
|
2521
|
+
"version": "4.1.0",
|
|
2522
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2523
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2524
|
+
"dev": true,
|
|
2525
|
+
"license": "ISC",
|
|
2526
|
+
"engines": {
|
|
2527
|
+
"node": ">=14"
|
|
2528
|
+
},
|
|
2529
|
+
"funding": {
|
|
2530
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2531
|
+
}
|
|
2532
|
+
},
|
|
2533
|
+
"node_modules/@inquirer/core": {
|
|
2534
|
+
"version": "7.1.2",
|
|
2535
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.2.tgz",
|
|
2536
|
+
"integrity": "sha512-ne5VhDqruYYzx8mmjDZ9F58ymrLJGxmSHJUcJGiW3tifzvl3goAm6gNX11w6+zUnGE54vgQ6ALDXL3IOSezMRw==",
|
|
2537
|
+
"dev": true,
|
|
2538
|
+
"license": "MIT",
|
|
2539
|
+
"dependencies": {
|
|
2540
|
+
"@inquirer/type": "^1.2.1",
|
|
2541
|
+
"@types/mute-stream": "^0.0.4",
|
|
2542
|
+
"@types/node": "^20.12.4",
|
|
2543
|
+
"@types/wrap-ansi": "^3.0.0",
|
|
2544
|
+
"ansi-escapes": "^4.3.2",
|
|
2545
|
+
"chalk": "^4.1.2",
|
|
2546
|
+
"cli-spinners": "^2.9.2",
|
|
2547
|
+
"cli-width": "^4.1.0",
|
|
2548
|
+
"figures": "^3.2.0",
|
|
2549
|
+
"mute-stream": "^1.0.0",
|
|
2550
|
+
"signal-exit": "^4.1.0",
|
|
2551
|
+
"strip-ansi": "^6.0.1",
|
|
2552
|
+
"wrap-ansi": "^6.2.0"
|
|
2553
|
+
},
|
|
2554
|
+
"engines": {
|
|
2555
|
+
"node": ">=18"
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2558
|
+
"node_modules/@inquirer/core/node_modules/@types/node": {
|
|
2559
|
+
"version": "20.12.5",
|
|
2560
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz",
|
|
2561
|
+
"integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==",
|
|
2562
|
+
"dev": true,
|
|
2563
|
+
"license": "MIT",
|
|
2564
|
+
"dependencies": {
|
|
2565
|
+
"undici-types": "~5.26.4"
|
|
2566
|
+
}
|
|
2567
|
+
},
|
|
2568
|
+
"node_modules/@inquirer/core/node_modules/cli-width": {
|
|
2569
|
+
"version": "4.1.0",
|
|
2570
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
2571
|
+
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
2572
|
+
"dev": true,
|
|
2573
|
+
"license": "ISC",
|
|
2574
|
+
"engines": {
|
|
2575
|
+
"node": ">= 12"
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2578
|
+
"node_modules/@inquirer/core/node_modules/mute-stream": {
|
|
2579
|
+
"version": "1.0.0",
|
|
2580
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz",
|
|
2581
|
+
"integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==",
|
|
2582
|
+
"dev": true,
|
|
2583
|
+
"license": "ISC",
|
|
2584
|
+
"engines": {
|
|
2585
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
2586
|
+
}
|
|
2587
|
+
},
|
|
2533
2588
|
"node_modules/@inquirer/core/node_modules/signal-exit": {
|
|
2534
2589
|
"version": "4.1.0",
|
|
2535
2590
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
@@ -2544,13 +2599,13 @@
|
|
|
2544
2599
|
}
|
|
2545
2600
|
},
|
|
2546
2601
|
"node_modules/@inquirer/input": {
|
|
2547
|
-
"version": "2.1.
|
|
2548
|
-
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.
|
|
2549
|
-
"integrity": "sha512-
|
|
2602
|
+
"version": "2.1.2",
|
|
2603
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.2.tgz",
|
|
2604
|
+
"integrity": "sha512-Szr9POj/NxbKSmbOx81ZD76b6xmvXXUY56QLWBXRv8zIGTIKtj03V4zAsw3MTiL6Qoo+IaRLwTLr3bI+qIblzA==",
|
|
2550
2605
|
"dev": true,
|
|
2551
2606
|
"license": "MIT",
|
|
2552
2607
|
"dependencies": {
|
|
2553
|
-
"@inquirer/core": "^7.1.
|
|
2608
|
+
"@inquirer/core": "^7.1.2",
|
|
2554
2609
|
"@inquirer/type": "^1.2.1"
|
|
2555
2610
|
},
|
|
2556
2611
|
"engines": {
|
|
@@ -2558,13 +2613,13 @@
|
|
|
2558
2613
|
}
|
|
2559
2614
|
},
|
|
2560
2615
|
"node_modules/@inquirer/select": {
|
|
2561
|
-
"version": "2.2.
|
|
2562
|
-
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.2.
|
|
2563
|
-
"integrity": "sha512-
|
|
2616
|
+
"version": "2.2.2",
|
|
2617
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.2.2.tgz",
|
|
2618
|
+
"integrity": "sha512-WaoleV3O/7iDAHFC0GArOkl7Yg/7wQ/UptxEkfM+bG67h65v0troAjkNASBbNiz9vvoNZxOGhVrug0LNDftCoQ==",
|
|
2564
2619
|
"dev": true,
|
|
2565
2620
|
"license": "MIT",
|
|
2566
2621
|
"dependencies": {
|
|
2567
|
-
"@inquirer/core": "^7.1.
|
|
2622
|
+
"@inquirer/core": "^7.1.2",
|
|
2568
2623
|
"@inquirer/type": "^1.2.1",
|
|
2569
2624
|
"ansi-escapes": "^4.3.2",
|
|
2570
2625
|
"chalk": "^4.1.2",
|
|
@@ -2935,13 +2990,13 @@
|
|
|
2935
2990
|
}
|
|
2936
2991
|
},
|
|
2937
2992
|
"node_modules/@oclif/plugin-help": {
|
|
2938
|
-
"version": "6.0.
|
|
2939
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.
|
|
2940
|
-
"integrity": "sha512-
|
|
2993
|
+
"version": "6.0.20",
|
|
2994
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.20.tgz",
|
|
2995
|
+
"integrity": "sha512-4UG/5q7O3dhUsC0JMqcUV0NU7jybkXkAXLnsRt+KVzDtZWwNOeBECimIFWOmwna5BaneTn8b0+lqO4JvUgeiqA==",
|
|
2941
2996
|
"dev": true,
|
|
2942
2997
|
"license": "MIT",
|
|
2943
2998
|
"dependencies": {
|
|
2944
|
-
"@oclif/core": "^3.
|
|
2999
|
+
"@oclif/core": "^3.26.0"
|
|
2945
3000
|
},
|
|
2946
3001
|
"engines": {
|
|
2947
3002
|
"node": ">=18.0.0"
|
|
@@ -2976,13 +3031,13 @@
|
|
|
2976
3031
|
}
|
|
2977
3032
|
},
|
|
2978
3033
|
"node_modules/@oclif/plugin-warn-if-update-available": {
|
|
2979
|
-
"version": "3.0.
|
|
2980
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
2981
|
-
"integrity": "sha512-
|
|
3034
|
+
"version": "3.0.15",
|
|
3035
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz",
|
|
3036
|
+
"integrity": "sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==",
|
|
2982
3037
|
"dev": true,
|
|
2983
3038
|
"license": "MIT",
|
|
2984
3039
|
"dependencies": {
|
|
2985
|
-
"@oclif/core": "^3.
|
|
3040
|
+
"@oclif/core": "^3.26.0",
|
|
2986
3041
|
"chalk": "^5.3.0",
|
|
2987
3042
|
"debug": "^4.1.0",
|
|
2988
3043
|
"http-call": "^5.2.2",
|
|
@@ -3017,15 +3072,14 @@
|
|
|
3017
3072
|
}
|
|
3018
3073
|
},
|
|
3019
3074
|
"node_modules/@salesforce/core": {
|
|
3020
|
-
"version": "6.7.
|
|
3021
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.
|
|
3022
|
-
"integrity": "sha512-
|
|
3075
|
+
"version": "6.7.6",
|
|
3076
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.6.tgz",
|
|
3077
|
+
"integrity": "sha512-0ZZ1GgUQTwTs8/xa+hmZd+wwKXkK8MNcI2Kn20HmHShsweA2Jp3Yaxx0+EbRPqhSBARXso+TADSnsOjlZvQ3tg==",
|
|
3023
3078
|
"license": "BSD-3-Clause",
|
|
3024
3079
|
"dependencies": {
|
|
3025
|
-
"@salesforce/kit": "^3.0
|
|
3026
|
-
"@salesforce/schemas": "^1.
|
|
3080
|
+
"@salesforce/kit": "^3.1.0",
|
|
3081
|
+
"@salesforce/schemas": "^1.7.0",
|
|
3027
3082
|
"@salesforce/ts-types": "^2.0.9",
|
|
3028
|
-
"@types/semver": "^7.5.8",
|
|
3029
3083
|
"ajv": "^8.12.0",
|
|
3030
3084
|
"change-case": "^4.1.2",
|
|
3031
3085
|
"faye": "^1.4.0",
|
|
@@ -3176,9 +3230,9 @@
|
|
|
3176
3230
|
}
|
|
3177
3231
|
},
|
|
3178
3232
|
"node_modules/@salesforce/kit": {
|
|
3179
|
-
"version": "3.0
|
|
3180
|
-
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.0.
|
|
3181
|
-
"integrity": "sha512-
|
|
3233
|
+
"version": "3.1.0",
|
|
3234
|
+
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.1.0.tgz",
|
|
3235
|
+
"integrity": "sha512-X2d9O/U2wdQBXIrtVqQdMwo872Cv+qkYFzF0W+AQKG/LEe9cngnOzUVDYNkGD9tq3jcl+oenHXYuVDpkMhxTwA==",
|
|
3182
3236
|
"license": "BSD-3-Clause",
|
|
3183
3237
|
"dependencies": {
|
|
3184
3238
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -3360,9 +3414,9 @@
|
|
|
3360
3414
|
"license": "BSD-3-Clause"
|
|
3361
3415
|
},
|
|
3362
3416
|
"node_modules/@salesforce/schemas": {
|
|
3363
|
-
"version": "1.
|
|
3364
|
-
"resolved": "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.
|
|
3365
|
-
"integrity": "sha512-
|
|
3417
|
+
"version": "1.7.0",
|
|
3418
|
+
"resolved": "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.7.0.tgz",
|
|
3419
|
+
"integrity": "sha512-Z0PiCEV55khm0PG+DsnRYCjaDmacNe3HDmsoSm/CSyYvJJm+D5vvkHKN9/PKD/gaRe8XAU836yfamIYFblLINw==",
|
|
3366
3420
|
"license": "ISC"
|
|
3367
3421
|
},
|
|
3368
3422
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
@@ -4365,6 +4419,7 @@
|
|
|
4365
4419
|
"version": "7.5.8",
|
|
4366
4420
|
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
|
|
4367
4421
|
"integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
|
|
4422
|
+
"dev": true,
|
|
4368
4423
|
"license": "MIT"
|
|
4369
4424
|
},
|
|
4370
4425
|
"node_modules/@types/sinon": {
|
|
@@ -5574,9 +5629,10 @@
|
|
|
5574
5629
|
}
|
|
5575
5630
|
},
|
|
5576
5631
|
"node_modules/cli-spinners": {
|
|
5577
|
-
"version": "2.
|
|
5578
|
-
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.
|
|
5579
|
-
"integrity": "sha512-
|
|
5632
|
+
"version": "2.9.2",
|
|
5633
|
+
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
|
|
5634
|
+
"integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
|
|
5635
|
+
"dev": true,
|
|
5580
5636
|
"license": "MIT",
|
|
5581
5637
|
"engines": {
|
|
5582
5638
|
"node": ">=6"
|
|
@@ -6699,13 +6755,13 @@
|
|
|
6699
6755
|
}
|
|
6700
6756
|
},
|
|
6701
6757
|
"node_modules/eslint-plugin-sf-plugin": {
|
|
6702
|
-
"version": "1.17.
|
|
6703
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
6704
|
-
"integrity": "sha512-
|
|
6758
|
+
"version": "1.17.5",
|
|
6759
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz",
|
|
6760
|
+
"integrity": "sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==",
|
|
6705
6761
|
"dev": true,
|
|
6706
6762
|
"license": "BSD-3-Clause",
|
|
6707
6763
|
"dependencies": {
|
|
6708
|
-
"@salesforce/core": "^6.7.
|
|
6764
|
+
"@salesforce/core": "^6.7.3",
|
|
6709
6765
|
"@typescript-eslint/utils": "^6.17.0"
|
|
6710
6766
|
},
|
|
6711
6767
|
"engines": {
|
|
@@ -10548,21 +10604,21 @@
|
|
|
10548
10604
|
}
|
|
10549
10605
|
},
|
|
10550
10606
|
"node_modules/oclif": {
|
|
10551
|
-
"version": "4.6
|
|
10552
|
-
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.6.
|
|
10553
|
-
"integrity": "sha512-
|
|
10607
|
+
"version": "4.7.6",
|
|
10608
|
+
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.7.6.tgz",
|
|
10609
|
+
"integrity": "sha512-R2Fdef6R8n1UIVAJTCP0oEIRkExMniei4QqmK7ue9iN8PTf+6q5ROrl7/pxMH/DzDCKnkTsi5mBhyT3HqFAZ1w==",
|
|
10554
10610
|
"dev": true,
|
|
10555
10611
|
"license": "MIT",
|
|
10556
10612
|
"dependencies": {
|
|
10557
10613
|
"@aws-sdk/client-cloudfront": "^3.535.0",
|
|
10558
10614
|
"@aws-sdk/client-s3": "^3.535.0",
|
|
10559
10615
|
"@inquirer/confirm": "^3.0.0",
|
|
10560
|
-
"@inquirer/input": "^2.1.
|
|
10561
|
-
"@inquirer/select": "^2.
|
|
10562
|
-
"@oclif/core": "^3.
|
|
10616
|
+
"@inquirer/input": "^2.1.1",
|
|
10617
|
+
"@inquirer/select": "^2.2.1",
|
|
10618
|
+
"@oclif/core": "^3.26.0",
|
|
10563
10619
|
"@oclif/plugin-help": "^6.0.18",
|
|
10564
10620
|
"@oclif/plugin-not-found": "^3.0.14",
|
|
10565
|
-
"@oclif/plugin-warn-if-update-available": "^3.0.
|
|
10621
|
+
"@oclif/plugin-warn-if-update-available": "^3.0.14",
|
|
10566
10622
|
"async-retry": "^1.3.3",
|
|
10567
10623
|
"chalk": "^4",
|
|
10568
10624
|
"change-case": "^4",
|
|
@@ -10575,7 +10631,7 @@
|
|
|
10575
10631
|
"lodash.template": "^4.5.0",
|
|
10576
10632
|
"normalize-package-data": "^3.0.3",
|
|
10577
10633
|
"semver": "^7.6.0",
|
|
10578
|
-
"sort-package-json": "^2.
|
|
10634
|
+
"sort-package-json": "^2.10.0",
|
|
10579
10635
|
"validate-npm-package-name": "^5.0.0"
|
|
10580
10636
|
},
|
|
10581
10637
|
"bin": {
|
|
@@ -10681,6 +10737,18 @@
|
|
|
10681
10737
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
10682
10738
|
}
|
|
10683
10739
|
},
|
|
10740
|
+
"node_modules/ora/node_modules/cli-spinners": {
|
|
10741
|
+
"version": "2.6.1",
|
|
10742
|
+
"resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz",
|
|
10743
|
+
"integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==",
|
|
10744
|
+
"license": "MIT",
|
|
10745
|
+
"engines": {
|
|
10746
|
+
"node": ">=6"
|
|
10747
|
+
},
|
|
10748
|
+
"funding": {
|
|
10749
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10750
|
+
}
|
|
10751
|
+
},
|
|
10684
10752
|
"node_modules/os-tmpdir": {
|
|
10685
10753
|
"version": "1.0.2",
|
|
10686
10754
|
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
|
@@ -12139,9 +12207,9 @@
|
|
|
12139
12207
|
"license": "MIT"
|
|
12140
12208
|
},
|
|
12141
12209
|
"node_modules/sort-package-json": {
|
|
12142
|
-
"version": "2.
|
|
12143
|
-
"resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.
|
|
12144
|
-
"integrity": "sha512-
|
|
12210
|
+
"version": "2.10.0",
|
|
12211
|
+
"resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.0.tgz",
|
|
12212
|
+
"integrity": "sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==",
|
|
12145
12213
|
"dev": true,
|
|
12146
12214
|
"license": "MIT",
|
|
12147
12215
|
"dependencies": {
|
|
@@ -12151,6 +12219,7 @@
|
|
|
12151
12219
|
"git-hooks-list": "^3.0.0",
|
|
12152
12220
|
"globby": "^13.1.2",
|
|
12153
12221
|
"is-plain-obj": "^4.1.0",
|
|
12222
|
+
"semver": "^7.6.0",
|
|
12154
12223
|
"sort-object-keys": "^1.1.3"
|
|
12155
12224
|
},
|
|
12156
12225
|
"bin": {
|
package/oclif.lock
CHANGED
|
@@ -1147,20 +1147,39 @@
|
|
|
1147
1147
|
strip-ansi "^6.0.1"
|
|
1148
1148
|
wrap-ansi "^6.2.0"
|
|
1149
1149
|
|
|
1150
|
-
"@inquirer/
|
|
1151
|
-
version "
|
|
1152
|
-
resolved "https://registry.yarnpkg.com/@inquirer/
|
|
1153
|
-
integrity sha512-
|
|
1150
|
+
"@inquirer/core@^7.1.2":
|
|
1151
|
+
version "7.1.2"
|
|
1152
|
+
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-7.1.2.tgz#f16222e8838193c29a868d9d6d5ae3b79313342f"
|
|
1153
|
+
integrity sha512-ne5VhDqruYYzx8mmjDZ9F58ymrLJGxmSHJUcJGiW3tifzvl3goAm6gNX11w6+zUnGE54vgQ6ALDXL3IOSezMRw==
|
|
1154
1154
|
dependencies:
|
|
1155
|
-
"@inquirer/core" "^7.1.0"
|
|
1156
1155
|
"@inquirer/type" "^1.2.1"
|
|
1156
|
+
"@types/mute-stream" "^0.0.4"
|
|
1157
|
+
"@types/node" "^20.12.4"
|
|
1158
|
+
"@types/wrap-ansi" "^3.0.0"
|
|
1159
|
+
ansi-escapes "^4.3.2"
|
|
1160
|
+
chalk "^4.1.2"
|
|
1161
|
+
cli-spinners "^2.9.2"
|
|
1162
|
+
cli-width "^4.1.0"
|
|
1163
|
+
figures "^3.2.0"
|
|
1164
|
+
mute-stream "^1.0.0"
|
|
1165
|
+
signal-exit "^4.1.0"
|
|
1166
|
+
strip-ansi "^6.0.1"
|
|
1167
|
+
wrap-ansi "^6.2.0"
|
|
1157
1168
|
|
|
1158
|
-
"@inquirer/
|
|
1159
|
-
version "2.2
|
|
1160
|
-
resolved "https://registry.yarnpkg.com/@inquirer/
|
|
1161
|
-
integrity sha512-
|
|
1169
|
+
"@inquirer/input@^2.1.1":
|
|
1170
|
+
version "2.1.2"
|
|
1171
|
+
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.1.2.tgz#cc0b0688c6ef7e58661e3d451dabcccbb0801e1a"
|
|
1172
|
+
integrity sha512-Szr9POj/NxbKSmbOx81ZD76b6xmvXXUY56QLWBXRv8zIGTIKtj03V4zAsw3MTiL6Qoo+IaRLwTLr3bI+qIblzA==
|
|
1162
1173
|
dependencies:
|
|
1163
|
-
"@inquirer/core" "^7.1.
|
|
1174
|
+
"@inquirer/core" "^7.1.2"
|
|
1175
|
+
"@inquirer/type" "^1.2.1"
|
|
1176
|
+
|
|
1177
|
+
"@inquirer/select@^2.2.1":
|
|
1178
|
+
version "2.2.2"
|
|
1179
|
+
resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.2.2.tgz#6a81ce041745725343afacaf38e1b03ff9adee3a"
|
|
1180
|
+
integrity sha512-WaoleV3O/7iDAHFC0GArOkl7Yg/7wQ/UptxEkfM+bG67h65v0troAjkNASBbNiz9vvoNZxOGhVrug0LNDftCoQ==
|
|
1181
|
+
dependencies:
|
|
1182
|
+
"@inquirer/core" "^7.1.2"
|
|
1164
1183
|
"@inquirer/type" "^1.2.1"
|
|
1165
1184
|
ansi-escapes "^4.3.2"
|
|
1166
1185
|
chalk "^4.1.2"
|
|
@@ -1294,7 +1313,7 @@
|
|
|
1294
1313
|
wordwrap "^1.0.0"
|
|
1295
1314
|
wrap-ansi "^7.0.0"
|
|
1296
1315
|
|
|
1297
|
-
"@oclif/core@^3.15.1", "@oclif/core@^3.
|
|
1316
|
+
"@oclif/core@^3.15.1", "@oclif/core@^3.21.0", "@oclif/core@^3.26.0":
|
|
1298
1317
|
version "3.26.0"
|
|
1299
1318
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.0.tgz#959d5e9f13f4ad6a4e98235ad125189df9ee4279"
|
|
1300
1319
|
integrity sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==
|
|
@@ -1329,11 +1348,11 @@
|
|
|
1329
1348
|
wrap-ansi "^7.0.0"
|
|
1330
1349
|
|
|
1331
1350
|
"@oclif/plugin-help@^6", "@oclif/plugin-help@^6.0.18":
|
|
1332
|
-
version "6.0.
|
|
1333
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-6.0.
|
|
1334
|
-
integrity sha512-
|
|
1351
|
+
version "6.0.20"
|
|
1352
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-6.0.20.tgz#e4a640505508224d7b9c0e61711ae4dad3f4782b"
|
|
1353
|
+
integrity sha512-4UG/5q7O3dhUsC0JMqcUV0NU7jybkXkAXLnsRt+KVzDtZWwNOeBECimIFWOmwna5BaneTn8b0+lqO4JvUgeiqA==
|
|
1335
1354
|
dependencies:
|
|
1336
|
-
"@oclif/core" "^3.
|
|
1355
|
+
"@oclif/core" "^3.26.0"
|
|
1337
1356
|
|
|
1338
1357
|
"@oclif/plugin-not-found@^3.0.14":
|
|
1339
1358
|
version "3.0.14"
|
|
@@ -1344,12 +1363,12 @@
|
|
|
1344
1363
|
chalk "^5.3.0"
|
|
1345
1364
|
fast-levenshtein "^3.0.0"
|
|
1346
1365
|
|
|
1347
|
-
"@oclif/plugin-warn-if-update-available@^3.0.
|
|
1348
|
-
version "3.0.
|
|
1349
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
1350
|
-
integrity sha512-
|
|
1366
|
+
"@oclif/plugin-warn-if-update-available@^3.0.14":
|
|
1367
|
+
version "3.0.15"
|
|
1368
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz#533e5914c9efc46a1539b5a5e931dbf3c32ffb52"
|
|
1369
|
+
integrity sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==
|
|
1351
1370
|
dependencies:
|
|
1352
|
-
"@oclif/core" "^3.
|
|
1371
|
+
"@oclif/core" "^3.26.0"
|
|
1353
1372
|
chalk "^5.3.0"
|
|
1354
1373
|
debug "^4.1.0"
|
|
1355
1374
|
http-call "^5.2.2"
|
|
@@ -1384,15 +1403,14 @@
|
|
|
1384
1403
|
semver "^7.5.4"
|
|
1385
1404
|
ts-retry-promise "^0.7.1"
|
|
1386
1405
|
|
|
1387
|
-
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.
|
|
1388
|
-
version "6.7.
|
|
1389
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.
|
|
1390
|
-
integrity sha512-
|
|
1406
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.3", "@salesforce/core@^6.7.6":
|
|
1407
|
+
version "6.7.6"
|
|
1408
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.6.tgz#6a73c6a4e615ce837be5b5c142cfc63a6c8db3bd"
|
|
1409
|
+
integrity sha512-0ZZ1GgUQTwTs8/xa+hmZd+wwKXkK8MNcI2Kn20HmHShsweA2Jp3Yaxx0+EbRPqhSBARXso+TADSnsOjlZvQ3tg==
|
|
1391
1410
|
dependencies:
|
|
1392
|
-
"@salesforce/kit" "^3.0
|
|
1393
|
-
"@salesforce/schemas" "^1.
|
|
1411
|
+
"@salesforce/kit" "^3.1.0"
|
|
1412
|
+
"@salesforce/schemas" "^1.7.0"
|
|
1394
1413
|
"@salesforce/ts-types" "^2.0.9"
|
|
1395
|
-
"@types/semver" "^7.5.8"
|
|
1396
1414
|
ajv "^8.12.0"
|
|
1397
1415
|
change-case "^4.1.2"
|
|
1398
1416
|
faye "^1.4.0"
|
|
@@ -1445,10 +1463,10 @@
|
|
|
1445
1463
|
typescript "^4.9.5"
|
|
1446
1464
|
wireit "^0.14.1"
|
|
1447
1465
|
|
|
1448
|
-
"@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15":
|
|
1449
|
-
version "3.0
|
|
1450
|
-
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.
|
|
1451
|
-
integrity sha512-
|
|
1466
|
+
"@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15", "@salesforce/kit@^3.1.0":
|
|
1467
|
+
version "3.1.0"
|
|
1468
|
+
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.1.0.tgz#aa42533084c676e865f0f9c1907a16fb6f74dee7"
|
|
1469
|
+
integrity sha512-X2d9O/U2wdQBXIrtVqQdMwo872Cv+qkYFzF0W+AQKG/LEe9cngnOzUVDYNkGD9tq3jcl+oenHXYuVDpkMhxTwA==
|
|
1452
1470
|
dependencies:
|
|
1453
1471
|
"@salesforce/ts-types" "^2.0.9"
|
|
1454
1472
|
tslib "^2.6.2"
|
|
@@ -1473,10 +1491,10 @@
|
|
|
1473
1491
|
resolved "https://registry.yarnpkg.com/@salesforce/prettier-config/-/prettier-config-0.0.3.tgz#ba648d4886bb38adabe073dbea0b3a91b3753bb0"
|
|
1474
1492
|
integrity sha512-hYOhoPTCSYMDYn+U1rlEk16PoBeAJPkrdg4/UtAzupM1mRRJOwEPMG1d7U8DxJFKuXW3DMEYWr2MwAIBDaHmFg==
|
|
1475
1493
|
|
|
1476
|
-
"@salesforce/schemas@^1.6.1":
|
|
1477
|
-
version "1.
|
|
1478
|
-
resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.
|
|
1479
|
-
integrity sha512-
|
|
1494
|
+
"@salesforce/schemas@^1.6.1", "@salesforce/schemas@^1.7.0":
|
|
1495
|
+
version "1.7.0"
|
|
1496
|
+
resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.7.0.tgz#b7e0af3ee414ae7160bce351c0184d77ccb98fe3"
|
|
1497
|
+
integrity sha512-Z0PiCEV55khm0PG+DsnRYCjaDmacNe3HDmsoSm/CSyYvJJm+D5vvkHKN9/PKD/gaRe8XAU836yfamIYFblLINw==
|
|
1480
1498
|
|
|
1481
1499
|
"@salesforce/sf-plugins-core@^3.1.28":
|
|
1482
1500
|
version "3.1.28"
|
|
@@ -2135,6 +2153,13 @@
|
|
|
2135
2153
|
dependencies:
|
|
2136
2154
|
undici-types "~5.26.4"
|
|
2137
2155
|
|
|
2156
|
+
"@types/node@^20.12.4":
|
|
2157
|
+
version "20.12.5"
|
|
2158
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.5.tgz#74c4f31ab17955d0b5808cdc8fd2839526ad00b3"
|
|
2159
|
+
integrity sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==
|
|
2160
|
+
dependencies:
|
|
2161
|
+
undici-types "~5.26.4"
|
|
2162
|
+
|
|
2138
2163
|
"@types/normalize-package-data@^2.4.0":
|
|
2139
2164
|
version "2.4.1"
|
|
2140
2165
|
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
|
|
@@ -2145,7 +2170,7 @@
|
|
|
2145
2170
|
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
|
2146
2171
|
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
|
2147
2172
|
|
|
2148
|
-
"@types/semver@^7.5.0", "@types/semver@^7.5.4"
|
|
2173
|
+
"@types/semver@^7.5.0", "@types/semver@^7.5.4":
|
|
2149
2174
|
version "7.5.8"
|
|
2150
2175
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
|
|
2151
2176
|
integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
|
|
@@ -3606,12 +3631,12 @@ eslint-plugin-jsdoc@^46.9.0:
|
|
|
3606
3631
|
semver "^7.5.4"
|
|
3607
3632
|
spdx-expression-parse "^3.0.1"
|
|
3608
3633
|
|
|
3609
|
-
eslint-plugin-sf-plugin@^1.17.
|
|
3610
|
-
version "1.17.
|
|
3611
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
3612
|
-
integrity sha512-
|
|
3634
|
+
eslint-plugin-sf-plugin@^1.17.5:
|
|
3635
|
+
version "1.17.5"
|
|
3636
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz#3ce0e7033eaf50675c962e7d2def3bb2cad15018"
|
|
3637
|
+
integrity sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==
|
|
3613
3638
|
dependencies:
|
|
3614
|
-
"@salesforce/core" "^6.7.
|
|
3639
|
+
"@salesforce/core" "^6.7.3"
|
|
3615
3640
|
"@typescript-eslint/utils" "^6.17.0"
|
|
3616
3641
|
|
|
3617
3642
|
eslint-plugin-unicorn@^49.0.0:
|
|
@@ -5691,19 +5716,19 @@ object.values@^1.1.7:
|
|
|
5691
5716
|
es-abstract "^1.22.1"
|
|
5692
5717
|
|
|
5693
5718
|
oclif@^4:
|
|
5694
|
-
version "4.6
|
|
5695
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.6.
|
|
5696
|
-
integrity sha512-
|
|
5719
|
+
version "4.7.6"
|
|
5720
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.7.6.tgz#2cb7ecfdaa0db9bc2131fa56abff28ba7c88c073"
|
|
5721
|
+
integrity sha512-R2Fdef6R8n1UIVAJTCP0oEIRkExMniei4QqmK7ue9iN8PTf+6q5ROrl7/pxMH/DzDCKnkTsi5mBhyT3HqFAZ1w==
|
|
5697
5722
|
dependencies:
|
|
5698
5723
|
"@aws-sdk/client-cloudfront" "^3.535.0"
|
|
5699
5724
|
"@aws-sdk/client-s3" "^3.535.0"
|
|
5700
5725
|
"@inquirer/confirm" "^3.0.0"
|
|
5701
|
-
"@inquirer/input" "^2.1.
|
|
5702
|
-
"@inquirer/select" "^2.
|
|
5703
|
-
"@oclif/core" "^3.
|
|
5726
|
+
"@inquirer/input" "^2.1.1"
|
|
5727
|
+
"@inquirer/select" "^2.2.1"
|
|
5728
|
+
"@oclif/core" "^3.26.0"
|
|
5704
5729
|
"@oclif/plugin-help" "^6.0.18"
|
|
5705
5730
|
"@oclif/plugin-not-found" "^3.0.14"
|
|
5706
|
-
"@oclif/plugin-warn-if-update-available" "^3.0.
|
|
5731
|
+
"@oclif/plugin-warn-if-update-available" "^3.0.14"
|
|
5707
5732
|
async-retry "^1.3.3"
|
|
5708
5733
|
chalk "^4"
|
|
5709
5734
|
change-case "^4"
|
|
@@ -5716,7 +5741,7 @@ oclif@^4:
|
|
|
5716
5741
|
lodash.template "^4.5.0"
|
|
5717
5742
|
normalize-package-data "^3.0.3"
|
|
5718
5743
|
semver "^7.6.0"
|
|
5719
|
-
sort-package-json "^2.
|
|
5744
|
+
sort-package-json "^2.10.0"
|
|
5720
5745
|
validate-npm-package-name "^5.0.0"
|
|
5721
5746
|
|
|
5722
5747
|
on-exit-leak-free@^2.1.0:
|
|
@@ -6603,10 +6628,10 @@ sort-object-keys@^1.1.3:
|
|
|
6603
6628
|
resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45"
|
|
6604
6629
|
integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==
|
|
6605
6630
|
|
|
6606
|
-
sort-package-json@^2.
|
|
6607
|
-
version "2.
|
|
6608
|
-
resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-2.
|
|
6609
|
-
integrity sha512-
|
|
6631
|
+
sort-package-json@^2.10.0:
|
|
6632
|
+
version "2.10.0"
|
|
6633
|
+
resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-2.10.0.tgz#6be07424bf3b7db9fbb1bdd69e7945f301026d8a"
|
|
6634
|
+
integrity sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==
|
|
6610
6635
|
dependencies:
|
|
6611
6636
|
detect-indent "^7.0.1"
|
|
6612
6637
|
detect-newline "^4.0.0"
|
|
@@ -6614,6 +6639,7 @@ sort-package-json@^2.8.0:
|
|
|
6614
6639
|
git-hooks-list "^3.0.0"
|
|
6615
6640
|
globby "^13.1.2"
|
|
6616
6641
|
is-plain-obj "^4.1.0"
|
|
6642
|
+
semver "^7.6.0"
|
|
6617
6643
|
sort-object-keys "^1.1.3"
|
|
6618
6644
|
|
|
6619
6645
|
source-map-support@^0.5.21:
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-command-reference",
|
|
3
3
|
"description": "Generate the Salesforce CLI command reference guide",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.75",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/salesforcecli/plugin-command-reference/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^3.26.0",
|
|
9
|
-
"@salesforce/core": "^6.7.
|
|
10
|
-
"@salesforce/kit": "^3.0
|
|
9
|
+
"@salesforce/core": "^6.7.6",
|
|
10
|
+
"@salesforce/kit": "^3.1.0",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
12
12
|
"@salesforce/ts-types": "^2.0.9",
|
|
13
13
|
"chalk": "^4",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@salesforce/plugin-auth": "^2.8.26",
|
|
21
21
|
"@types/debug": "^4.1.12",
|
|
22
22
|
"@types/ejs": "^3.1.5",
|
|
23
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
23
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
24
24
|
"oclif": "^4",
|
|
25
25
|
"ts-node": "^10.9.2",
|
|
26
26
|
"typescript": "^5.4.3"
|