@salesforce/plugin-signups 2.2.6 → 2.3.1
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 +9 -8
- package/lib/commands/org/delete/snapshot.d.ts +3 -2
- package/lib/commands/org/delete/snapshot.js +9 -1
- package/lib/commands/org/delete/snapshot.js.map +1 -1
- package/messages/snapshot.delete.md +8 -0
- package/npm-shrinkwrap.json +186 -11
- package/oclif.lock +42 -8
- package/oclif.manifest.json +8 -1
- package/package.json +4 -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.
|
126
|
+
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/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.
|
182
|
+
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/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.
|
222
|
+
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/src/commands/org/delete/shape.ts)_
|
223
223
|
|
224
224
|
## `sf org delete snapshot`
|
225
225
|
|
@@ -227,9 +227,10 @@ Delete a scratch org snapshot.
|
|
227
227
|
|
228
228
|
```
|
229
229
|
USAGE
|
230
|
-
$ sf org delete snapshot -v <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
230
|
+
$ sf org delete snapshot -v <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-p]
|
231
231
|
|
232
232
|
FLAGS
|
233
|
+
-p, --no-prompt Don't prompt the user to confirm the deletion.
|
233
234
|
-s, --snapshot=<value> (required) Name or ID of snapshot to delete.
|
234
235
|
-v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
|
235
236
|
configuration variable is already set.
|
@@ -263,7 +264,7 @@ FLAG DESCRIPTIONS
|
|
263
264
|
The IDs of scratch org snapshots start with 0Oo.
|
264
265
|
```
|
265
266
|
|
266
|
-
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.
|
267
|
+
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/src/commands/org/delete/snapshot.ts)_
|
267
268
|
|
268
269
|
## `sf org get snapshot`
|
269
270
|
|
@@ -310,7 +311,7 @@ FLAG DESCRIPTIONS
|
|
310
311
|
The IDs of scratch org snapshots start with 0Oo.
|
311
312
|
```
|
312
313
|
|
313
|
-
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.
|
314
|
+
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/src/commands/org/get/snapshot.ts)_
|
314
315
|
|
315
316
|
## `sf org list shape`
|
316
317
|
|
@@ -343,7 +344,7 @@ EXAMPLES
|
|
343
344
|
$ sf org list shape --json > tmp/MyOrgShapeList.json
|
344
345
|
```
|
345
346
|
|
346
|
-
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.
|
347
|
+
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/src/commands/org/list/shape.ts)_
|
347
348
|
|
348
349
|
## `sf org list snapshot`
|
349
350
|
|
@@ -385,6 +386,6 @@ EXAMPLES
|
|
385
386
|
$ sf org list snapshot --target-dev-hub SnapshotDevHub
|
386
387
|
```
|
387
388
|
|
388
|
-
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.
|
389
|
+
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.1/src/commands/org/list/snapshot.ts)_
|
389
390
|
|
390
391
|
<!-- commandsstop -->
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
2
2
|
import type { SaveResult } from '@jsforce/jsforce-node';
|
3
|
-
export declare class SnapshotDelete extends SfCommand<SaveResult> {
|
3
|
+
export declare class SnapshotDelete extends SfCommand<SaveResult | undefined> {
|
4
4
|
static readonly summary: string;
|
5
5
|
static readonly description: string;
|
6
6
|
static readonly examples: string[];
|
@@ -12,6 +12,7 @@ export declare class SnapshotDelete extends SfCommand<SaveResult> {
|
|
12
12
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
13
13
|
loglevel: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
14
14
|
snapshot: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
15
|
+
'no-prompt': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
15
16
|
};
|
16
|
-
run(): Promise<SaveResult>;
|
17
|
+
run(): Promise<SaveResult | undefined>;
|
17
18
|
}
|
@@ -29,10 +29,18 @@ export class SnapshotDelete extends SfCommand {
|
|
29
29
|
description: messages.getMessage('flags.snapshot.description'),
|
30
30
|
required: true,
|
31
31
|
}),
|
32
|
+
'no-prompt': Flags.boolean({
|
33
|
+
char: 'p',
|
34
|
+
summary: messages.getMessage('flags.no-prompt.summary'),
|
35
|
+
}),
|
32
36
|
};
|
33
37
|
async run() {
|
34
|
-
// resolve the query to an ID. This also verifies the snapshot exists in the org
|
35
38
|
const { flags } = await this.parse(SnapshotDelete);
|
39
|
+
const snapshot = flags['snapshot'];
|
40
|
+
if (!flags['no-prompt'] && !(await this.confirm({ message: messages.getMessage('prompt.confirm', [snapshot]) }))) {
|
41
|
+
return;
|
42
|
+
}
|
43
|
+
// resolve the query to an ID. This also verifies the snapshot exists in the org
|
36
44
|
const conn = flags['target-dev-hub'].getConnection(flags['api-version']);
|
37
45
|
const result = await queryByNameOrId(conn, flags.snapshot);
|
38
46
|
const deleteResult = await conn.sobject('OrgSnapshot').delete(result.Id);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/delete/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,GAAG,EAAE,MAAM,SAAS,CAAC;AAE9B,OAAO,EACL,KAAK,EACL,SAAS,EACT,QAAQ,EACR,iCAAiC,EACjC,+BAA+B,GAChC,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAE9D,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,iBAAiB,CAAC,CAAC;AAExF,4CAA4C;AAC5C,MAAM,WAAW,GAAG,CAAC,KAAgB,EAAsB,EAAE,CAAC,KAAK,CAAC,OAAO,KAAK,SAAS,CAAC;AAE1F,MAAM,OAAO,cAAe,SAAQ,
|
1
|
+
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/delete/snapshot.ts"],"names":[],"mappings":"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"}
|
@@ -24,6 +24,14 @@ Name or ID of snapshot to delete.
|
|
24
24
|
|
25
25
|
The IDs of scratch org snapshots start with 0Oo.
|
26
26
|
|
27
|
+
# flags.no-prompt.summary
|
28
|
+
|
29
|
+
Don't prompt the user to confirm the deletion.
|
30
|
+
|
31
|
+
# prompt.confirm
|
32
|
+
|
33
|
+
Are you sure you want to delete the snapshot with name: %s?
|
34
|
+
|
27
35
|
# success
|
28
36
|
|
29
37
|
Successfully deleted snapshot %s.
|
package/npm-shrinkwrap.json
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.3.1",
|
4
4
|
"lockfileVersion": 3,
|
5
5
|
"requires": true,
|
6
6
|
"packages": {
|
7
7
|
"": {
|
8
8
|
"name": "@salesforce/plugin-signups",
|
9
|
-
"version": "2.
|
9
|
+
"version": "2.3.1",
|
10
10
|
"license": "BSD-3-Clause",
|
11
11
|
"dependencies": {
|
12
12
|
"@oclif/core": "^3.26.2",
|
13
13
|
"@salesforce/core": "^7.3.3",
|
14
14
|
"@salesforce/kit": "^3.1.0",
|
15
|
-
"@salesforce/sf-plugins-core": "^9.0.
|
15
|
+
"@salesforce/sf-plugins-core": "^9.0.7",
|
16
16
|
"chalk": "^5.3.0",
|
17
17
|
"change-case": "^5.4.4"
|
18
18
|
},
|
@@ -3551,9 +3551,9 @@
|
|
3551
3551
|
}
|
3552
3552
|
},
|
3553
3553
|
"node_modules/@oclif/core": {
|
3554
|
-
"version": "3.26.
|
3555
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.
|
3556
|
-
"integrity": "sha512-
|
3554
|
+
"version": "3.26.5",
|
3555
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
|
3556
|
+
"integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
|
3557
3557
|
"license": "MIT",
|
3558
3558
|
"dependencies": {
|
3559
3559
|
"@types/cli-progress": "^3.11.5",
|
@@ -3708,6 +3708,117 @@
|
|
3708
3708
|
"node": ">=18.0.0"
|
3709
3709
|
}
|
3710
3710
|
},
|
3711
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core": {
|
3712
|
+
"version": "3.26.4",
|
3713
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.4.tgz",
|
3714
|
+
"integrity": "sha512-ntfo2ut7enNtAn/jB/dryMUPBM2Fh8Fydmi3k/Ybo6lCGU/hmsPFkBRjCEJAQMyNkK2yVZARaWogdOrcVgFz+w==",
|
3715
|
+
"dev": true,
|
3716
|
+
"license": "MIT",
|
3717
|
+
"dependencies": {
|
3718
|
+
"@types/cli-progress": "^3.11.5",
|
3719
|
+
"ansi-escapes": "^4.3.2",
|
3720
|
+
"ansi-styles": "^4.3.0",
|
3721
|
+
"cardinal": "^2.1.1",
|
3722
|
+
"chalk": "^4.1.2",
|
3723
|
+
"clean-stack": "^3.0.1",
|
3724
|
+
"cli-progress": "^3.12.0",
|
3725
|
+
"color": "^4.2.3",
|
3726
|
+
"debug": "^4.3.4",
|
3727
|
+
"ejs": "^3.1.10",
|
3728
|
+
"get-package-type": "^0.1.0",
|
3729
|
+
"globby": "^11.1.0",
|
3730
|
+
"hyperlinker": "^1.0.0",
|
3731
|
+
"indent-string": "^4.0.0",
|
3732
|
+
"is-wsl": "^2.2.0",
|
3733
|
+
"js-yaml": "^3.14.1",
|
3734
|
+
"minimatch": "^9.0.4",
|
3735
|
+
"natural-orderby": "^2.0.3",
|
3736
|
+
"object-treeify": "^1.1.33",
|
3737
|
+
"password-prompt": "^1.1.3",
|
3738
|
+
"slice-ansi": "^4.0.0",
|
3739
|
+
"string-width": "^4.2.3",
|
3740
|
+
"strip-ansi": "^6.0.1",
|
3741
|
+
"supports-color": "^8.1.1",
|
3742
|
+
"supports-hyperlinks": "^2.2.0",
|
3743
|
+
"widest-line": "^3.1.0",
|
3744
|
+
"wordwrap": "^1.0.0",
|
3745
|
+
"wrap-ansi": "^7.0.0"
|
3746
|
+
},
|
3747
|
+
"engines": {
|
3748
|
+
"node": ">=18.0.0"
|
3749
|
+
}
|
3750
|
+
},
|
3751
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk": {
|
3752
|
+
"version": "4.1.2",
|
3753
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
3754
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
3755
|
+
"dev": true,
|
3756
|
+
"license": "MIT",
|
3757
|
+
"dependencies": {
|
3758
|
+
"ansi-styles": "^4.1.0",
|
3759
|
+
"supports-color": "^7.1.0"
|
3760
|
+
},
|
3761
|
+
"engines": {
|
3762
|
+
"node": ">=10"
|
3763
|
+
},
|
3764
|
+
"funding": {
|
3765
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
3766
|
+
}
|
3767
|
+
},
|
3768
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
|
3769
|
+
"version": "7.2.0",
|
3770
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
3771
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
3772
|
+
"dev": true,
|
3773
|
+
"license": "MIT",
|
3774
|
+
"dependencies": {
|
3775
|
+
"has-flag": "^4.0.0"
|
3776
|
+
},
|
3777
|
+
"engines": {
|
3778
|
+
"node": ">=8"
|
3779
|
+
}
|
3780
|
+
},
|
3781
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/globby": {
|
3782
|
+
"version": "11.1.0",
|
3783
|
+
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
|
3784
|
+
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
|
3785
|
+
"dev": true,
|
3786
|
+
"license": "MIT",
|
3787
|
+
"dependencies": {
|
3788
|
+
"array-union": "^2.1.0",
|
3789
|
+
"dir-glob": "^3.0.1",
|
3790
|
+
"fast-glob": "^3.2.9",
|
3791
|
+
"ignore": "^5.2.0",
|
3792
|
+
"merge2": "^1.4.1",
|
3793
|
+
"slash": "^3.0.0"
|
3794
|
+
},
|
3795
|
+
"engines": {
|
3796
|
+
"node": ">=10"
|
3797
|
+
},
|
3798
|
+
"funding": {
|
3799
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
3800
|
+
}
|
3801
|
+
},
|
3802
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/slash": {
|
3803
|
+
"version": "3.0.0",
|
3804
|
+
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
3805
|
+
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
3806
|
+
"dev": true,
|
3807
|
+
"license": "MIT",
|
3808
|
+
"engines": {
|
3809
|
+
"node": ">=8"
|
3810
|
+
}
|
3811
|
+
},
|
3812
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/argparse": {
|
3813
|
+
"version": "1.0.10",
|
3814
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
3815
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
3816
|
+
"dev": true,
|
3817
|
+
"license": "MIT",
|
3818
|
+
"dependencies": {
|
3819
|
+
"sprintf-js": "~1.0.2"
|
3820
|
+
}
|
3821
|
+
},
|
3711
3822
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/globby": {
|
3712
3823
|
"version": "14.0.1",
|
3713
3824
|
"resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz",
|
@@ -3729,6 +3840,36 @@
|
|
3729
3840
|
"url": "https://github.com/sponsors/sindresorhus"
|
3730
3841
|
}
|
3731
3842
|
},
|
3843
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/js-yaml": {
|
3844
|
+
"version": "3.14.1",
|
3845
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
3846
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
3847
|
+
"dev": true,
|
3848
|
+
"license": "MIT",
|
3849
|
+
"dependencies": {
|
3850
|
+
"argparse": "^1.0.7",
|
3851
|
+
"esprima": "^4.0.0"
|
3852
|
+
},
|
3853
|
+
"bin": {
|
3854
|
+
"js-yaml": "bin/js-yaml.js"
|
3855
|
+
}
|
3856
|
+
},
|
3857
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/minimatch": {
|
3858
|
+
"version": "9.0.4",
|
3859
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
|
3860
|
+
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
|
3861
|
+
"dev": true,
|
3862
|
+
"license": "ISC",
|
3863
|
+
"dependencies": {
|
3864
|
+
"brace-expansion": "^2.0.1"
|
3865
|
+
},
|
3866
|
+
"engines": {
|
3867
|
+
"node": ">=16 || 14 >=14.17"
|
3868
|
+
},
|
3869
|
+
"funding": {
|
3870
|
+
"url": "https://github.com/sponsors/isaacs"
|
3871
|
+
}
|
3872
|
+
},
|
3732
3873
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/path-type": {
|
3733
3874
|
"version": "5.0.0",
|
3734
3875
|
"resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
|
@@ -3755,6 +3896,40 @@
|
|
3755
3896
|
"url": "https://github.com/sponsors/sindresorhus"
|
3756
3897
|
}
|
3757
3898
|
},
|
3899
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/supports-color": {
|
3900
|
+
"version": "8.1.1",
|
3901
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
3902
|
+
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
3903
|
+
"dev": true,
|
3904
|
+
"license": "MIT",
|
3905
|
+
"dependencies": {
|
3906
|
+
"has-flag": "^4.0.0"
|
3907
|
+
},
|
3908
|
+
"engines": {
|
3909
|
+
"node": ">=10"
|
3910
|
+
},
|
3911
|
+
"funding": {
|
3912
|
+
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
3913
|
+
}
|
3914
|
+
},
|
3915
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/wrap-ansi": {
|
3916
|
+
"version": "7.0.0",
|
3917
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
3918
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
3919
|
+
"dev": true,
|
3920
|
+
"license": "MIT",
|
3921
|
+
"dependencies": {
|
3922
|
+
"ansi-styles": "^4.0.0",
|
3923
|
+
"string-width": "^4.1.0",
|
3924
|
+
"strip-ansi": "^6.0.0"
|
3925
|
+
},
|
3926
|
+
"engines": {
|
3927
|
+
"node": ">=10"
|
3928
|
+
},
|
3929
|
+
"funding": {
|
3930
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
3931
|
+
}
|
3932
|
+
},
|
3758
3933
|
"node_modules/@oclif/plugin-help": {
|
3759
3934
|
"version": "6.0.21",
|
3760
3935
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.21.tgz",
|
@@ -4121,15 +4296,15 @@
|
|
4121
4296
|
"license": "ISC"
|
4122
4297
|
},
|
4123
4298
|
"node_modules/@salesforce/sf-plugins-core": {
|
4124
|
-
"version": "9.0.
|
4125
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.
|
4126
|
-
"integrity": "sha512-
|
4299
|
+
"version": "9.0.7",
|
4300
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.7.tgz",
|
4301
|
+
"integrity": "sha512-5F6/ax7welNZrizpl9QSQmGADqlCzFDB8t8I5P/n2LplMb3CwJRrZPcOZxJNnhlfXNlLrYtoShv2C+yrxgqYUA==",
|
4127
4302
|
"license": "BSD-3-Clause",
|
4128
4303
|
"dependencies": {
|
4129
4304
|
"@inquirer/confirm": "^2.0.17",
|
4130
4305
|
"@inquirer/password": "^1.1.16",
|
4131
|
-
"@oclif/core": "^3.26.
|
4132
|
-
"@salesforce/core": "^7.3.
|
4306
|
+
"@oclif/core": "^3.26.5",
|
4307
|
+
"@salesforce/core": "^7.3.3",
|
4133
4308
|
"@salesforce/kit": "^3.1.0",
|
4134
4309
|
"@salesforce/ts-types": "^2.0.9",
|
4135
4310
|
"chalk": "^5.3.0"
|
package/oclif.lock
CHANGED
@@ -1560,7 +1560,7 @@
|
|
1560
1560
|
"@nodelib/fs.scandir" "2.1.5"
|
1561
1561
|
fastq "^1.6.0"
|
1562
1562
|
|
1563
|
-
"@oclif/core@3.26.4"
|
1563
|
+
"@oclif/core@3.26.4":
|
1564
1564
|
version "3.26.4"
|
1565
1565
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.4.tgz#ab0c6d06f699abaf0fa6186466f64f02a8435c61"
|
1566
1566
|
integrity sha512-ntfo2ut7enNtAn/jB/dryMUPBM2Fh8Fydmi3k/Ybo6lCGU/hmsPFkBRjCEJAQMyNkK2yVZARaWogdOrcVgFz+w==
|
@@ -1594,6 +1594,40 @@
|
|
1594
1594
|
wordwrap "^1.0.0"
|
1595
1595
|
wrap-ansi "^7.0.0"
|
1596
1596
|
|
1597
|
+
"@oclif/core@^3.21.0", "@oclif/core@^3.26.0", "@oclif/core@^3.26.2", "@oclif/core@^3.26.4", "@oclif/core@^3.26.5":
|
1598
|
+
version "3.26.5"
|
1599
|
+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.5.tgz#6a1962971fcaa4e235c0d6a83d50681ccb2bd0e4"
|
1600
|
+
integrity sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==
|
1601
|
+
dependencies:
|
1602
|
+
"@types/cli-progress" "^3.11.5"
|
1603
|
+
ansi-escapes "^4.3.2"
|
1604
|
+
ansi-styles "^4.3.0"
|
1605
|
+
cardinal "^2.1.1"
|
1606
|
+
chalk "^4.1.2"
|
1607
|
+
clean-stack "^3.0.1"
|
1608
|
+
cli-progress "^3.12.0"
|
1609
|
+
color "^4.2.3"
|
1610
|
+
debug "^4.3.4"
|
1611
|
+
ejs "^3.1.10"
|
1612
|
+
get-package-type "^0.1.0"
|
1613
|
+
globby "^11.1.0"
|
1614
|
+
hyperlinker "^1.0.0"
|
1615
|
+
indent-string "^4.0.0"
|
1616
|
+
is-wsl "^2.2.0"
|
1617
|
+
js-yaml "^3.14.1"
|
1618
|
+
minimatch "^9.0.4"
|
1619
|
+
natural-orderby "^2.0.3"
|
1620
|
+
object-treeify "^1.1.33"
|
1621
|
+
password-prompt "^1.1.3"
|
1622
|
+
slice-ansi "^4.0.0"
|
1623
|
+
string-width "^4.2.3"
|
1624
|
+
strip-ansi "^6.0.1"
|
1625
|
+
supports-color "^8.1.1"
|
1626
|
+
supports-hyperlinks "^2.2.0"
|
1627
|
+
widest-line "^3.1.0"
|
1628
|
+
wordwrap "^1.0.0"
|
1629
|
+
wrap-ansi "^7.0.0"
|
1630
|
+
|
1597
1631
|
"@oclif/plugin-command-snapshot@^5.1.7":
|
1598
1632
|
version "5.1.7"
|
1599
1633
|
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.7.tgz#b62da4c6cf20fa38af139ca2e9ba75d2b49d4050"
|
@@ -1658,7 +1692,7 @@
|
|
1658
1692
|
strip-ansi "6.0.1"
|
1659
1693
|
ts-retry-promise "^0.8.0"
|
1660
1694
|
|
1661
|
-
"@salesforce/core@^7.3.
|
1695
|
+
"@salesforce/core@^7.3.1", "@salesforce/core@^7.3.3":
|
1662
1696
|
version "7.3.3"
|
1663
1697
|
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-7.3.3.tgz#4b84aba806264dd13716f4c4774bd5a417259662"
|
1664
1698
|
integrity sha512-THjYnOrfj0vW+qvlm70NDasH3RHD03cm884yi1+1axA4ugS4FFxXrPDPWAEU5ve5B4vnT7CJfuD/Q56l67ug8w==
|
@@ -1750,15 +1784,15 @@
|
|
1750
1784
|
resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.7.0.tgz#b7e0af3ee414ae7160bce351c0184d77ccb98fe3"
|
1751
1785
|
integrity sha512-Z0PiCEV55khm0PG+DsnRYCjaDmacNe3HDmsoSm/CSyYvJJm+D5vvkHKN9/PKD/gaRe8XAU836yfamIYFblLINw==
|
1752
1786
|
|
1753
|
-
"@salesforce/sf-plugins-core@^9.0.
|
1754
|
-
version "9.0.
|
1755
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.
|
1756
|
-
integrity sha512-
|
1787
|
+
"@salesforce/sf-plugins-core@^9.0.5", "@salesforce/sf-plugins-core@^9.0.7":
|
1788
|
+
version "9.0.7"
|
1789
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.7.tgz#77ffc67df994e0cec205827462811f521e3086ba"
|
1790
|
+
integrity sha512-5F6/ax7welNZrizpl9QSQmGADqlCzFDB8t8I5P/n2LplMb3CwJRrZPcOZxJNnhlfXNlLrYtoShv2C+yrxgqYUA==
|
1757
1791
|
dependencies:
|
1758
1792
|
"@inquirer/confirm" "^2.0.17"
|
1759
1793
|
"@inquirer/password" "^1.1.16"
|
1760
|
-
"@oclif/core" "^3.26.
|
1761
|
-
"@salesforce/core" "^7.3.
|
1794
|
+
"@oclif/core" "^3.26.5"
|
1795
|
+
"@salesforce/core" "^7.3.3"
|
1762
1796
|
"@salesforce/kit" "^3.1.0"
|
1763
1797
|
"@salesforce/ts-types" "^2.0.9"
|
1764
1798
|
chalk "^5.3.0"
|
package/oclif.manifest.json
CHANGED
@@ -590,6 +590,13 @@
|
|
590
590
|
"hasDynamicHelp": false,
|
591
591
|
"multiple": false,
|
592
592
|
"type": "option"
|
593
|
+
},
|
594
|
+
"no-prompt": {
|
595
|
+
"char": "p",
|
596
|
+
"name": "no-prompt",
|
597
|
+
"summary": "Don't prompt the user to confirm the deletion.",
|
598
|
+
"allowNo": false,
|
599
|
+
"type": "boolean"
|
593
600
|
}
|
594
601
|
},
|
595
602
|
"hasDynamicHelp": true,
|
@@ -859,5 +866,5 @@
|
|
859
866
|
]
|
860
867
|
}
|
861
868
|
},
|
862
|
-
"version": "2.
|
869
|
+
"version": "2.3.1"
|
863
870
|
}
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
3
|
"description": "Commands to interact with org shapes",
|
4
|
-
"version": "2.
|
4
|
+
"version": "2.3.1",
|
5
5
|
"author": "Salesforce",
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
7
7
|
"dependencies": {
|
8
8
|
"@oclif/core": "^3.26.2",
|
9
9
|
"@salesforce/core": "^7.3.3",
|
10
10
|
"@salesforce/kit": "^3.1.0",
|
11
|
-
"@salesforce/sf-plugins-core": "^9.0.
|
11
|
+
"@salesforce/sf-plugins-core": "^9.0.7",
|
12
12
|
"chalk": "^5.3.0",
|
13
13
|
"change-case": "^5.4.4"
|
14
14
|
},
|
@@ -256,7 +256,7 @@
|
|
256
256
|
"exports": "./lib/index.js",
|
257
257
|
"type": "module",
|
258
258
|
"sfdx": {
|
259
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.
|
260
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.
|
259
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.1.crt",
|
260
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.1.sig"
|
261
261
|
}
|
262
262
|
}
|