@salesforce/plugin-signups 2.3.7 → 2.3.8
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 +7 -7
- package/lib/commands/org/list/shape.js +2 -3
- package/lib/commands/org/list/shape.js.map +1 -1
- package/npm-shrinkwrap.json +78 -255
- package/oclif.lock +3 -28
- package/oclif.manifest.json +1 -1
- package/package.json +3 -4
package/README.md
CHANGED
@@ -123,7 +123,7 @@ EXAMPLES
|
|
123
123
|
$ sf org create shape --target-org SourceOrg
|
124
124
|
```
|
125
125
|
|
126
|
-
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
126
|
+
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/create/shape.ts)_
|
127
127
|
|
128
128
|
## `sf org create snapshot`
|
129
129
|
|
@@ -179,7 +179,7 @@ FLAG DESCRIPTIONS
|
|
179
179
|
as a version control system tag or commit ID.
|
180
180
|
```
|
181
181
|
|
182
|
-
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
182
|
+
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/create/snapshot.ts)_
|
183
183
|
|
184
184
|
## `sf org delete shape`
|
185
185
|
|
@@ -219,7 +219,7 @@ EXAMPLES
|
|
219
219
|
$ sf org delete shape --target-org SourceOrg --no-prompt
|
220
220
|
```
|
221
221
|
|
222
|
-
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
222
|
+
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/delete/shape.ts)_
|
223
223
|
|
224
224
|
## `sf org delete snapshot`
|
225
225
|
|
@@ -264,7 +264,7 @@ FLAG DESCRIPTIONS
|
|
264
264
|
The IDs of scratch org snapshots start with 0Oo.
|
265
265
|
```
|
266
266
|
|
267
|
-
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
267
|
+
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/delete/snapshot.ts)_
|
268
268
|
|
269
269
|
## `sf org get snapshot`
|
270
270
|
|
@@ -311,7 +311,7 @@ FLAG DESCRIPTIONS
|
|
311
311
|
The IDs of scratch org snapshots start with 0Oo.
|
312
312
|
```
|
313
313
|
|
314
|
-
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
314
|
+
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/get/snapshot.ts)_
|
315
315
|
|
316
316
|
## `sf org list shape`
|
317
317
|
|
@@ -344,7 +344,7 @@ EXAMPLES
|
|
344
344
|
$ sf org list shape --json > tmp/MyOrgShapeList.json
|
345
345
|
```
|
346
346
|
|
347
|
-
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
347
|
+
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/list/shape.ts)_
|
348
348
|
|
349
349
|
## `sf org list snapshot`
|
350
350
|
|
@@ -386,6 +386,6 @@ EXAMPLES
|
|
386
386
|
$ sf org list snapshot --target-dev-hub SnapshotDevHub
|
387
387
|
```
|
388
388
|
|
389
|
-
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
389
|
+
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.8/src/commands/org/list/snapshot.ts)_
|
390
390
|
|
391
391
|
<!-- commandsstop -->
|
@@ -4,9 +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 { Flags, loglevel, SfCommand } from '@salesforce/sf-plugins-core';
|
7
|
+
import { Flags, loglevel, SfCommand, StandardColors } from '@salesforce/sf-plugins-core';
|
8
8
|
import { Messages } from '@salesforce/core';
|
9
|
-
import chalk from 'chalk';
|
10
9
|
import utils from '../../../shared/orgShapeListUtils.js';
|
11
10
|
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
|
12
11
|
const messages = Messages.loadMessages('@salesforce/plugin-signups', 'shape.list');
|
@@ -46,7 +45,7 @@ export class OrgShapeListCommand extends SfCommand {
|
|
46
45
|
return orgShapes;
|
47
46
|
}
|
48
47
|
this.styledHeader('Org Shapes');
|
49
|
-
this.table(orgShapes.map((shape) =>
|
48
|
+
this.table(orgShapes.map((shape) => shape.status === 'Active' ? { ...shape, status: StandardColors.success(shape.status) } : shape), orgShapeColumns);
|
50
49
|
return orgShapes;
|
51
50
|
}
|
52
51
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"shape.js","sourceRoot":"","sources":["../../../../src/commands/org/list/shape.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;
|
1
|
+
{"version":3,"file":"shape.js","sourceRoot":"","sources":["../../../../src/commands/org/list/shape.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AACzF,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAA6B,MAAM,sCAAsC,CAAC;AAEjF,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,YAAY,CAAC,CAAC;AAEnF,qCAAqC;AACrC,MAAM,eAAe,GAAG;IACtB,KAAK,EAAE;QACL,MAAM,EAAE,OAAO;QACf,GAAG,EAAE,CAAC,IAAwB,EAAU,EAAE,CAAC,IAAI,CAAC,KAAK,IAAI,EAAE;KAC5D;IACD,QAAQ,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE;IAChC,KAAK,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE;IAC3B,MAAM,EAAE,EAAE,MAAM,EAAE,cAAc,EAAE;IAClC,SAAS,EAAE,EAAE,MAAM,EAAE,YAAY,EAAE;IACnC,WAAW,EAAE,EAAE,MAAM,EAAE,cAAc,EAAE;CACxC,CAAC;AAEF,MAAM,OAAO,mBAAoB,SAAQ,SAA+B;IAC/D,MAAM,CAAU,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACzD,MAAM,CAAU,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IACjE,MAAM,CAAU,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAC5D,MAAM,CAAU,OAAO,GAAG,CAAC,sBAAsB,CAAC,CAAC;IACnD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IAExC,MAAM,CAAU,KAAK,GAAG;QAC7B,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;YACrB,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,uBAAuB,CAAC;YACrD,MAAM,EAAE,IAAI;SACb,CAAC;QACF,QAAQ;KACT,CAAC;IAEF,kDAAkD;IAClD,wDAAwD;IACjD,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,MAAM,KAAK,CAAC,oCAAoC,EAAE,CAAC;QACjF,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QACpC,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC3B,IAAI,CAAC,GAAG,EAAE,CAAC;YACX,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC;YAC9C,OAAO,SAAS,CAAC;QACnB,CAAC;QAED,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;QAChC,IAAI,CAAC,KAAK,CACR,SAAS,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CACtB,KAAK,CAAC,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAE,GAAG,KAAK,EAAE,MAAM,EAAE,cAAc,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAC/F,EACD,eAAe,CAChB,CAAC;QACF,OAAO,SAAS,CAAC;IACnB,CAAC"}
|
package/npm-shrinkwrap.json
CHANGED
@@ -1,19 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
|
-
"version": "2.3.
|
3
|
+
"version": "2.3.8",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@salesforce/plugin-signups",
|
9
|
-
"version": "2.3.
|
9
|
+
"version": "2.3.8",
|
10
10
|
"license": "BSD-3-Clause",
|
11
11
|
"dependencies": {
|
12
12
|
"@oclif/core": "^4",
|
13
13
|
"@salesforce/core": "^7.3.8",
|
14
14
|
"@salesforce/kit": "^3.1.2",
|
15
15
|
"@salesforce/sf-plugins-core": "^10.0.0",
|
16
|
-
"chalk": "^5.3.0",
|
17
16
|
"change-case": "^5.4.4"
|
18
17
|
},
|
19
18
|
"devDependencies": {
|
@@ -2410,23 +2409,6 @@
|
|
2410
2409
|
"node": ">=v14"
|
2411
2410
|
}
|
2412
2411
|
},
|
2413
|
-
"node_modules/@commitlint/format/node_modules/chalk": {
|
2414
|
-
"version": "4.1.2",
|
2415
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
2416
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
2417
|
-
"dev": true,
|
2418
|
-
"license": "MIT",
|
2419
|
-
"dependencies": {
|
2420
|
-
"ansi-styles": "^4.1.0",
|
2421
|
-
"supports-color": "^7.1.0"
|
2422
|
-
},
|
2423
|
-
"engines": {
|
2424
|
-
"node": ">=10"
|
2425
|
-
},
|
2426
|
-
"funding": {
|
2427
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
2428
|
-
}
|
2429
|
-
},
|
2430
2412
|
"node_modules/@commitlint/is-ignored": {
|
2431
2413
|
"version": "17.4.4",
|
2432
2414
|
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.4.4.tgz",
|
@@ -2512,23 +2494,6 @@
|
|
2512
2494
|
"node": ">=v14"
|
2513
2495
|
}
|
2514
2496
|
},
|
2515
|
-
"node_modules/@commitlint/load/node_modules/chalk": {
|
2516
|
-
"version": "4.1.2",
|
2517
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
2518
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
2519
|
-
"dev": true,
|
2520
|
-
"license": "MIT",
|
2521
|
-
"dependencies": {
|
2522
|
-
"ansi-styles": "^4.1.0",
|
2523
|
-
"supports-color": "^7.1.0"
|
2524
|
-
},
|
2525
|
-
"engines": {
|
2526
|
-
"node": ">=10"
|
2527
|
-
},
|
2528
|
-
"funding": {
|
2529
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
2530
|
-
}
|
2531
|
-
},
|
2532
2497
|
"node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": {
|
2533
2498
|
"version": "4.3.0",
|
2534
2499
|
"resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz",
|
@@ -2766,23 +2731,6 @@
|
|
2766
2731
|
"node": ">=v14"
|
2767
2732
|
}
|
2768
2733
|
},
|
2769
|
-
"node_modules/@commitlint/types/node_modules/chalk": {
|
2770
|
-
"version": "4.1.2",
|
2771
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
2772
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
2773
|
-
"dev": true,
|
2774
|
-
"license": "MIT",
|
2775
|
-
"dependencies": {
|
2776
|
-
"ansi-styles": "^4.1.0",
|
2777
|
-
"supports-color": "^7.1.0"
|
2778
|
-
},
|
2779
|
-
"engines": {
|
2780
|
-
"node": ">=10"
|
2781
|
-
},
|
2782
|
-
"funding": {
|
2783
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
2784
|
-
}
|
2785
|
-
},
|
2786
2734
|
"node_modules/@cspotcode/source-map-support": {
|
2787
2735
|
"version": "0.8.1",
|
2788
2736
|
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
@@ -2955,22 +2903,6 @@
|
|
2955
2903
|
"node": ">=18"
|
2956
2904
|
}
|
2957
2905
|
},
|
2958
|
-
"node_modules/@inquirer/core/node_modules/chalk": {
|
2959
|
-
"version": "4.1.2",
|
2960
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
2961
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
2962
|
-
"license": "MIT",
|
2963
|
-
"dependencies": {
|
2964
|
-
"ansi-styles": "^4.1.0",
|
2965
|
-
"supports-color": "^7.1.0"
|
2966
|
-
},
|
2967
|
-
"engines": {
|
2968
|
-
"node": ">=10"
|
2969
|
-
},
|
2970
|
-
"funding": {
|
2971
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
2972
|
-
}
|
2973
|
-
},
|
2974
2906
|
"node_modules/@inquirer/core/node_modules/signal-exit": {
|
2975
2907
|
"version": "4.1.0",
|
2976
2908
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
@@ -3045,23 +2977,6 @@
|
|
3045
2977
|
"node": ">=18"
|
3046
2978
|
}
|
3047
2979
|
},
|
3048
|
-
"node_modules/@inquirer/input/node_modules/chalk": {
|
3049
|
-
"version": "4.1.2",
|
3050
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
3051
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
3052
|
-
"dev": true,
|
3053
|
-
"license": "MIT",
|
3054
|
-
"dependencies": {
|
3055
|
-
"ansi-styles": "^4.1.0",
|
3056
|
-
"supports-color": "^7.1.0"
|
3057
|
-
},
|
3058
|
-
"engines": {
|
3059
|
-
"node": ">=10"
|
3060
|
-
},
|
3061
|
-
"funding": {
|
3062
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3063
|
-
}
|
3064
|
-
},
|
3065
2980
|
"node_modules/@inquirer/input/node_modules/signal-exit": {
|
3066
2981
|
"version": "4.1.0",
|
3067
2982
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
@@ -3121,23 +3036,6 @@
|
|
3121
3036
|
"node": ">=18"
|
3122
3037
|
}
|
3123
3038
|
},
|
3124
|
-
"node_modules/@inquirer/select/node_modules/chalk": {
|
3125
|
-
"version": "4.1.2",
|
3126
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
3127
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
3128
|
-
"dev": true,
|
3129
|
-
"license": "MIT",
|
3130
|
-
"dependencies": {
|
3131
|
-
"ansi-styles": "^4.1.0",
|
3132
|
-
"supports-color": "^7.1.0"
|
3133
|
-
},
|
3134
|
-
"engines": {
|
3135
|
-
"node": ">=10"
|
3136
|
-
},
|
3137
|
-
"funding": {
|
3138
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3139
|
-
}
|
3140
|
-
},
|
3141
3039
|
"node_modules/@inquirer/type": {
|
3142
3040
|
"version": "1.3.3",
|
3143
3041
|
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.3.3.tgz",
|
@@ -3662,36 +3560,6 @@
|
|
3662
3560
|
"sprintf-js": "~1.0.2"
|
3663
3561
|
}
|
3664
3562
|
},
|
3665
|
-
"node_modules/@oclif/plugin-help/node_modules/chalk": {
|
3666
|
-
"version": "4.1.2",
|
3667
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
3668
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
3669
|
-
"dev": true,
|
3670
|
-
"license": "MIT",
|
3671
|
-
"dependencies": {
|
3672
|
-
"ansi-styles": "^4.1.0",
|
3673
|
-
"supports-color": "^7.1.0"
|
3674
|
-
},
|
3675
|
-
"engines": {
|
3676
|
-
"node": ">=10"
|
3677
|
-
},
|
3678
|
-
"funding": {
|
3679
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3680
|
-
}
|
3681
|
-
},
|
3682
|
-
"node_modules/@oclif/plugin-help/node_modules/chalk/node_modules/supports-color": {
|
3683
|
-
"version": "7.2.0",
|
3684
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
3685
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
3686
|
-
"dev": true,
|
3687
|
-
"license": "MIT",
|
3688
|
-
"dependencies": {
|
3689
|
-
"has-flag": "^4.0.0"
|
3690
|
-
},
|
3691
|
-
"engines": {
|
3692
|
-
"node": ">=8"
|
3693
|
-
}
|
3694
|
-
},
|
3695
3563
|
"node_modules/@oclif/plugin-help/node_modules/js-yaml": {
|
3696
3564
|
"version": "3.14.1",
|
3697
3565
|
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
@@ -3862,6 +3730,19 @@
|
|
3862
3730
|
"sprintf-js": "~1.0.2"
|
3863
3731
|
}
|
3864
3732
|
},
|
3733
|
+
"node_modules/@oclif/plugin-not-found/node_modules/chalk": {
|
3734
|
+
"version": "5.3.0",
|
3735
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
3736
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
3737
|
+
"dev": true,
|
3738
|
+
"license": "MIT",
|
3739
|
+
"engines": {
|
3740
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
3741
|
+
},
|
3742
|
+
"funding": {
|
3743
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3744
|
+
}
|
3745
|
+
},
|
3865
3746
|
"node_modules/@oclif/plugin-not-found/node_modules/js-yaml": {
|
3866
3747
|
"version": "3.14.1",
|
3867
3748
|
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
@@ -4033,6 +3914,19 @@
|
|
4033
3914
|
"sprintf-js": "~1.0.2"
|
4034
3915
|
}
|
4035
3916
|
},
|
3917
|
+
"node_modules/@oclif/plugin-warn-if-update-available/node_modules/chalk": {
|
3918
|
+
"version": "5.3.0",
|
3919
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
3920
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
3921
|
+
"dev": true,
|
3922
|
+
"license": "MIT",
|
3923
|
+
"engines": {
|
3924
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
3925
|
+
},
|
3926
|
+
"funding": {
|
3927
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3928
|
+
}
|
3929
|
+
},
|
4036
3930
|
"node_modules/@oclif/plugin-warn-if-update-available/node_modules/js-yaml": {
|
4037
3931
|
"version": "3.14.1",
|
4038
3932
|
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
@@ -4357,23 +4251,6 @@
|
|
4357
4251
|
"undici-types": "~5.26.4"
|
4358
4252
|
}
|
4359
4253
|
},
|
4360
|
-
"node_modules/@salesforce/dev-scripts/node_modules/chalk": {
|
4361
|
-
"version": "4.1.2",
|
4362
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
4363
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
4364
|
-
"dev": true,
|
4365
|
-
"license": "MIT",
|
4366
|
-
"dependencies": {
|
4367
|
-
"ansi-styles": "^4.1.0",
|
4368
|
-
"supports-color": "^7.1.0"
|
4369
|
-
},
|
4370
|
-
"engines": {
|
4371
|
-
"node": ">=10"
|
4372
|
-
},
|
4373
|
-
"funding": {
|
4374
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
4375
|
-
}
|
4376
|
-
},
|
4377
4254
|
"node_modules/@salesforce/kit": {
|
4378
4255
|
"version": "3.1.2",
|
4379
4256
|
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.1.2.tgz",
|
@@ -4503,6 +4380,19 @@
|
|
4503
4380
|
"sprintf-js": "~1.0.2"
|
4504
4381
|
}
|
4505
4382
|
},
|
4383
|
+
"node_modules/@salesforce/plugin-command-reference/node_modules/chalk": {
|
4384
|
+
"version": "5.3.0",
|
4385
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
4386
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
4387
|
+
"dev": true,
|
4388
|
+
"license": "MIT",
|
4389
|
+
"engines": {
|
4390
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
4391
|
+
},
|
4392
|
+
"funding": {
|
4393
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
4394
|
+
}
|
4395
|
+
},
|
4506
4396
|
"node_modules/@salesforce/plugin-command-reference/node_modules/js-yaml": {
|
4507
4397
|
"version": "3.14.1",
|
4508
4398
|
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
@@ -6748,12 +6638,16 @@
|
|
6748
6638
|
}
|
6749
6639
|
},
|
6750
6640
|
"node_modules/chalk": {
|
6751
|
-
"version": "
|
6752
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-
|
6753
|
-
"integrity": "sha512-
|
6641
|
+
"version": "4.1.2",
|
6642
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
6643
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
6754
6644
|
"license": "MIT",
|
6645
|
+
"dependencies": {
|
6646
|
+
"ansi-styles": "^4.1.0",
|
6647
|
+
"supports-color": "^7.1.0"
|
6648
|
+
},
|
6755
6649
|
"engines": {
|
6756
|
-
"node": "
|
6650
|
+
"node": ">=10"
|
6757
6651
|
},
|
6758
6652
|
"funding": {
|
6759
6653
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
@@ -8106,23 +8000,6 @@
|
|
8106
8000
|
"url": "https://opencollective.com/eslint"
|
8107
8001
|
}
|
8108
8002
|
},
|
8109
|
-
"node_modules/eslint/node_modules/chalk": {
|
8110
|
-
"version": "4.1.2",
|
8111
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
8112
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
8113
|
-
"dev": true,
|
8114
|
-
"license": "MIT",
|
8115
|
-
"dependencies": {
|
8116
|
-
"ansi-styles": "^4.1.0",
|
8117
|
-
"supports-color": "^7.1.0"
|
8118
|
-
},
|
8119
|
-
"engines": {
|
8120
|
-
"node": ">=10"
|
8121
|
-
},
|
8122
|
-
"funding": {
|
8123
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
8124
|
-
}
|
8125
|
-
},
|
8126
8003
|
"node_modules/eslint/node_modules/doctrine": {
|
8127
8004
|
"version": "3.0.0",
|
8128
8005
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
@@ -9626,23 +9503,6 @@
|
|
9626
9503
|
"node": ">=8.0.0"
|
9627
9504
|
}
|
9628
9505
|
},
|
9629
|
-
"node_modules/inquirer/node_modules/chalk": {
|
9630
|
-
"version": "4.1.2",
|
9631
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
9632
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
9633
|
-
"dev": true,
|
9634
|
-
"license": "MIT",
|
9635
|
-
"dependencies": {
|
9636
|
-
"ansi-styles": "^4.1.0",
|
9637
|
-
"supports-color": "^7.1.0"
|
9638
|
-
},
|
9639
|
-
"engines": {
|
9640
|
-
"node": ">=10"
|
9641
|
-
},
|
9642
|
-
"funding": {
|
9643
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
9644
|
-
}
|
9645
|
-
},
|
9646
9506
|
"node_modules/inquirer/node_modules/cli-width": {
|
9647
9507
|
"version": "3.0.0",
|
9648
9508
|
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
|
@@ -10260,22 +10120,6 @@
|
|
10260
10120
|
"node": ">=10"
|
10261
10121
|
}
|
10262
10122
|
},
|
10263
|
-
"node_modules/jake/node_modules/chalk": {
|
10264
|
-
"version": "4.1.2",
|
10265
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
10266
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
10267
|
-
"license": "MIT",
|
10268
|
-
"dependencies": {
|
10269
|
-
"ansi-styles": "^4.1.0",
|
10270
|
-
"supports-color": "^7.1.0"
|
10271
|
-
},
|
10272
|
-
"engines": {
|
10273
|
-
"node": ">=10"
|
10274
|
-
},
|
10275
|
-
"funding": {
|
10276
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
10277
|
-
}
|
10278
|
-
},
|
10279
10123
|
"node_modules/joycon": {
|
10280
10124
|
"version": "3.1.1",
|
10281
10125
|
"resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz",
|
@@ -10648,6 +10492,19 @@
|
|
10648
10492
|
"node": ">=18"
|
10649
10493
|
}
|
10650
10494
|
},
|
10495
|
+
"node_modules/linkinator/node_modules/chalk": {
|
10496
|
+
"version": "5.3.0",
|
10497
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
10498
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
10499
|
+
"dev": true,
|
10500
|
+
"license": "MIT",
|
10501
|
+
"engines": {
|
10502
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
10503
|
+
},
|
10504
|
+
"funding": {
|
10505
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
10506
|
+
}
|
10507
|
+
},
|
10651
10508
|
"node_modules/linkinator/node_modules/foreground-child": {
|
10652
10509
|
"version": "3.1.1",
|
10653
10510
|
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
|
@@ -10900,23 +10757,6 @@
|
|
10900
10757
|
"url": "https://github.com/sponsors/sindresorhus"
|
10901
10758
|
}
|
10902
10759
|
},
|
10903
|
-
"node_modules/log-symbols/node_modules/chalk": {
|
10904
|
-
"version": "4.1.2",
|
10905
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
10906
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
10907
|
-
"dev": true,
|
10908
|
-
"license": "MIT",
|
10909
|
-
"dependencies": {
|
10910
|
-
"ansi-styles": "^4.1.0",
|
10911
|
-
"supports-color": "^7.1.0"
|
10912
|
-
},
|
10913
|
-
"engines": {
|
10914
|
-
"node": ">=10"
|
10915
|
-
},
|
10916
|
-
"funding": {
|
10917
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
10918
|
-
}
|
10919
|
-
},
|
10920
10760
|
"node_modules/loupe": {
|
10921
10761
|
"version": "2.3.6",
|
10922
10762
|
"resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz",
|
@@ -11871,22 +11711,6 @@
|
|
11871
11711
|
"node": ">=18.0.0"
|
11872
11712
|
}
|
11873
11713
|
},
|
11874
|
-
"node_modules/oclif/node_modules/@oclif/core/node_modules/supports-color": {
|
11875
|
-
"version": "8.1.1",
|
11876
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
11877
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
11878
|
-
"dev": true,
|
11879
|
-
"license": "MIT",
|
11880
|
-
"dependencies": {
|
11881
|
-
"has-flag": "^4.0.0"
|
11882
|
-
},
|
11883
|
-
"engines": {
|
11884
|
-
"node": ">=10"
|
11885
|
-
},
|
11886
|
-
"funding": {
|
11887
|
-
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
11888
|
-
}
|
11889
|
-
},
|
11890
11714
|
"node_modules/oclif/node_modules/argparse": {
|
11891
11715
|
"version": "1.0.10",
|
11892
11716
|
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
@@ -11897,23 +11721,6 @@
|
|
11897
11721
|
"sprintf-js": "~1.0.2"
|
11898
11722
|
}
|
11899
11723
|
},
|
11900
|
-
"node_modules/oclif/node_modules/chalk": {
|
11901
|
-
"version": "4.1.2",
|
11902
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
11903
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
11904
|
-
"dev": true,
|
11905
|
-
"license": "MIT",
|
11906
|
-
"dependencies": {
|
11907
|
-
"ansi-styles": "^4.1.0",
|
11908
|
-
"supports-color": "^7.1.0"
|
11909
|
-
},
|
11910
|
-
"engines": {
|
11911
|
-
"node": ">=10"
|
11912
|
-
},
|
11913
|
-
"funding": {
|
11914
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
11915
|
-
}
|
11916
|
-
},
|
11917
11724
|
"node_modules/oclif/node_modules/change-case": {
|
11918
11725
|
"version": "4.1.2",
|
11919
11726
|
"resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz",
|
@@ -12022,6 +11829,22 @@
|
|
12022
11829
|
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
12023
11830
|
}
|
12024
11831
|
},
|
11832
|
+
"node_modules/oclif/node_modules/supports-color": {
|
11833
|
+
"version": "8.1.1",
|
11834
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
11835
|
+
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
11836
|
+
"dev": true,
|
11837
|
+
"license": "MIT",
|
11838
|
+
"dependencies": {
|
11839
|
+
"has-flag": "^4.0.0"
|
11840
|
+
},
|
11841
|
+
"engines": {
|
11842
|
+
"node": ">=10"
|
11843
|
+
},
|
11844
|
+
"funding": {
|
11845
|
+
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
11846
|
+
}
|
11847
|
+
},
|
12025
11848
|
"node_modules/on-exit-leak-free": {
|
12026
11849
|
"version": "2.1.0",
|
12027
11850
|
"resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.0.tgz",
|
package/oclif.lock
CHANGED
@@ -7124,16 +7124,7 @@ srcset@^5.0.0:
|
|
7124
7124
|
resolved "https://registry.yarnpkg.com/srcset/-/srcset-5.0.0.tgz#9df6c3961b5b44a02532ce6ae4544832609e2e3f"
|
7125
7125
|
integrity sha512-SqEZaAEhe0A6ETEa9O1IhSPC7MdvehZtCnTR0AftXk3QhY2UNgb+NApFOUPZILXk/YTDfFxMTNJOBpzrJsEdIA==
|
7126
7126
|
|
7127
|
-
"string-width-cjs@npm:string-width@^4.2.0":
|
7128
|
-
version "4.2.3"
|
7129
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
|
7130
|
-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
7131
|
-
dependencies:
|
7132
|
-
emoji-regex "^8.0.0"
|
7133
|
-
is-fullwidth-code-point "^3.0.0"
|
7134
|
-
strip-ansi "^6.0.1"
|
7135
|
-
|
7136
|
-
string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
|
7127
|
+
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
|
7137
7128
|
version "4.2.3"
|
7138
7129
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
|
7139
7130
|
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
@@ -7201,14 +7192,7 @@ string_decoder@~1.1.1:
|
|
7201
7192
|
dependencies:
|
7202
7193
|
safe-buffer "~5.1.0"
|
7203
7194
|
|
7204
|
-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
|
7205
|
-
version "6.0.1"
|
7206
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
7207
|
-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
7208
|
-
dependencies:
|
7209
|
-
ansi-regex "^5.0.1"
|
7210
|
-
|
7211
|
-
strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
7195
|
+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
7212
7196
|
version "6.0.1"
|
7213
7197
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
7214
7198
|
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
@@ -7771,7 +7755,7 @@ workerpool@6.2.1:
|
|
7771
7755
|
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
|
7772
7756
|
integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
|
7773
7757
|
|
7774
|
-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
|
7758
|
+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
|
7775
7759
|
version "7.0.0"
|
7776
7760
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
7777
7761
|
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
@@ -7789,15 +7773,6 @@ wrap-ansi@^6.2.0:
|
|
7789
7773
|
string-width "^4.1.0"
|
7790
7774
|
strip-ansi "^6.0.0"
|
7791
7775
|
|
7792
|
-
wrap-ansi@^7.0.0:
|
7793
|
-
version "7.0.0"
|
7794
|
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
7795
|
-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
7796
|
-
dependencies:
|
7797
|
-
ansi-styles "^4.0.0"
|
7798
|
-
string-width "^4.1.0"
|
7799
|
-
strip-ansi "^6.0.0"
|
7800
|
-
|
7801
7776
|
wrap-ansi@^8.1.0:
|
7802
7777
|
version "8.1.0"
|
7803
7778
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
3
|
"description": "Commands to interact with org shapes",
|
4
|
-
"version": "2.3.
|
4
|
+
"version": "2.3.8",
|
5
5
|
"author": "Salesforce",
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
7
7
|
"dependencies": {
|
@@ -9,7 +9,6 @@
|
|
9
9
|
"@salesforce/core": "^7.3.8",
|
10
10
|
"@salesforce/kit": "^3.1.2",
|
11
11
|
"@salesforce/sf-plugins-core": "^10.0.0",
|
12
|
-
"chalk": "^5.3.0",
|
13
12
|
"change-case": "^5.4.4"
|
14
13
|
},
|
15
14
|
"devDependencies": {
|
@@ -256,7 +255,7 @@
|
|
256
255
|
"exports": "./lib/index.js",
|
257
256
|
"type": "module",
|
258
257
|
"sfdx": {
|
259
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.
|
260
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.
|
258
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.8.crt",
|
259
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.8.sig"
|
261
260
|
}
|
262
261
|
}
|