@salesforce/plugin-signups 2.0.7 → 2.0.9
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 +8 -8
- package/lib/commands/org/create/snapshot.d.ts +1 -1
- package/lib/commands/org/create/snapshot.js +1 -1
- package/lib/commands/org/create/snapshot.js.map +1 -1
- package/lib/commands/org/delete/snapshot.d.ts +1 -1
- package/lib/commands/org/delete/snapshot.js +1 -1
- package/lib/commands/org/delete/snapshot.js.map +1 -1
- package/lib/commands/org/get/snapshot.d.ts +1 -1
- package/lib/commands/org/get/snapshot.js +1 -1
- package/lib/commands/org/get/snapshot.js.map +1 -1
- package/lib/commands/org/list/snapshot.d.ts +1 -1
- package/lib/commands/org/list/snapshot.js +1 -1
- package/lib/commands/org/list/snapshot.js.map +1 -1
- package/oclif.lock +29 -29
- package/oclif.manifest.json +5 -5
- package/package.json +16 -16
package/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
## Learn about the plugin-signups
|
6
6
|
|
7
|
-
Salesforce CLI plugins are based on the [oclif plugin framework](
|
7
|
+
Salesforce CLI plugins are based on the [oclif plugin framework](https://oclif.io/docs/introduction). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
|
8
8
|
|
9
9
|
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](https://github.com/forcedotcom/sfdx-dev-packages/) used by Salesforce. There is also a default circleci config using the [release management orb](https://github.com/forcedotcom/npm-release-management-orb) standards.
|
10
10
|
|
@@ -122,7 +122,7 @@ EXAMPLES
|
|
122
122
|
$ sf org create shape --target-org SourceOrg
|
123
123
|
```
|
124
124
|
|
125
|
-
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
125
|
+
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/create/shape.ts)_
|
126
126
|
|
127
127
|
## `sf org create snapshot`
|
128
128
|
|
@@ -176,7 +176,7 @@ FLAG DESCRIPTIONS
|
|
176
176
|
as a version control system tag or commit ID.
|
177
177
|
```
|
178
178
|
|
179
|
-
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
179
|
+
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/create/snapshot.ts)_
|
180
180
|
|
181
181
|
## `sf org delete shape`
|
182
182
|
|
@@ -215,7 +215,7 @@ EXAMPLES
|
|
215
215
|
$ sf org delete shape --target-org SourceOrg --no-prompt
|
216
216
|
```
|
217
217
|
|
218
|
-
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
218
|
+
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/delete/shape.ts)_
|
219
219
|
|
220
220
|
## `sf org delete snapshot`
|
221
221
|
|
@@ -258,7 +258,7 @@ FLAG DESCRIPTIONS
|
|
258
258
|
The IDs of scratch org snapshots start with 0Oo.
|
259
259
|
```
|
260
260
|
|
261
|
-
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
261
|
+
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/delete/snapshot.ts)_
|
262
262
|
|
263
263
|
## `sf org get snapshot`
|
264
264
|
|
@@ -304,7 +304,7 @@ FLAG DESCRIPTIONS
|
|
304
304
|
The IDs of scratch org snapshots start with 0Oo.
|
305
305
|
```
|
306
306
|
|
307
|
-
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
307
|
+
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/get/snapshot.ts)_
|
308
308
|
|
309
309
|
## `sf org list shape`
|
310
310
|
|
@@ -336,7 +336,7 @@ EXAMPLES
|
|
336
336
|
$ sf org list shape --json > tmp/MyOrgShapeList.json
|
337
337
|
```
|
338
338
|
|
339
|
-
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
339
|
+
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/list/shape.ts)_
|
340
340
|
|
341
341
|
## `sf org list snapshot`
|
342
342
|
|
@@ -377,6 +377,6 @@ EXAMPLES
|
|
377
377
|
$ sf org list snapshot --target-dev-hub SnapshotDevHub
|
378
378
|
```
|
379
379
|
|
380
|
-
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.
|
380
|
+
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.9/src/commands/org/list/snapshot.ts)_
|
381
381
|
|
382
382
|
<!-- commandsstop -->
|
@@ -6,7 +6,7 @@ export declare class SnapshotCreate extends SfCommand<OrgSnapshot> {
|
|
6
6
|
static readonly examples: string[];
|
7
7
|
static readonly aliases: string[];
|
8
8
|
static readonly deprecateAliases = true;
|
9
|
-
static readonly state = "
|
9
|
+
static readonly state = "beta";
|
10
10
|
static readonly flags: {
|
11
11
|
'target-dev-hub': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
12
12
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
@@ -17,7 +17,7 @@ export class SnapshotCreate extends SfCommand {
|
|
17
17
|
static examples = messages.getMessages('examples');
|
18
18
|
static aliases = ['force:org:snapshot:create'];
|
19
19
|
static deprecateAliases = true;
|
20
|
-
static state = '
|
20
|
+
static state = 'beta';
|
21
21
|
static flags = {
|
22
22
|
'target-dev-hub': requiredHubFlagWithDeprecations,
|
23
23
|
'api-version': orgApiVersionFlagWithDeprecations,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/create/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EACL,KAAK,EACL,SAAS,EACT,QAAQ,EACR,iCAAiC,EACjC,+BAA+B,GAChC,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAAe,eAAe,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAEnG,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,iBAAiB,CAAC,CAAC;AAExF,MAAM,OAAO,cAAe,SAAQ,SAAsB;IACjD,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,2BAA2B,CAAC,CAAC;IACxD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,
|
1
|
+
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/create/snapshot.ts"],"names":[],"mappings":"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"}
|
@@ -6,7 +6,7 @@ export declare class SnapshotDelete extends SfCommand<SaveResult> {
|
|
6
6
|
static readonly examples: string[];
|
7
7
|
static readonly aliases: string[];
|
8
8
|
static readonly deprecateAliases = true;
|
9
|
-
static readonly state = "
|
9
|
+
static readonly state = "beta";
|
10
10
|
static readonly flags: {
|
11
11
|
'target-dev-hub': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
12
12
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
@@ -20,7 +20,7 @@ export class SnapshotDelete extends SfCommand {
|
|
20
20
|
static examples = messages.getMessages('examples');
|
21
21
|
static aliases = ['force:org:snapshot:delete'];
|
22
22
|
static deprecateAliases = true;
|
23
|
-
static state = '
|
23
|
+
static state = 'beta';
|
24
24
|
static flags = {
|
25
25
|
'target-dev-hub': requiredHubFlagWithDeprecations,
|
26
26
|
'api-version': orgApiVersionFlagWithDeprecations,
|
@@ -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;AAC9B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,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,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,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,SAAqB;IAChD,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,2BAA2B,CAAC,CAAC;IACxD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,
|
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;AAC9B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,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,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,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,SAAqB;IAChD,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,2BAA2B,CAAC,CAAC;IACxD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,MAAM,CAAC;IAE/B,MAAM,CAAU,KAAK,GAAG;QAC7B,gBAAgB,EAAE,+BAA+B;QACjD,aAAa,EAAE,iCAAiC;QAChD,QAAQ;QACR,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC;YACrB,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,wBAAwB,CAAC;YACtD,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,4BAA4B,CAAC;YAC9D,QAAQ,EAAE,IAAI;SACf,CAAC;KACH,CAAC;IAEK,KAAK,CAAC,GAAG;QACd,iFAAiF;QACjF,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;QACnD,MAAM,IAAI,GAAG,KAAK,CAAC,gBAAgB,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC;QACzE,MAAM,MAAM,GAAG,MAAM,eAAe,CAAC,IAAI,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC3D,MAAM,YAAY,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;QACzE,IAAI,YAAY,CAAC,OAAO,EAAE;YACxB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAClE,OAAO,YAAY,CAAC;SACrB;QACD,MAAM,IAAI,KAAK,CACb,YAAY,CAAC,MAAM;aAChB,MAAM,CAAC,WAAW,CAAC;aACnB,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC;aAC7B,IAAI,CAAC,GAAG,CAAC,CACb,CAAC;IACJ,CAAC"}
|
@@ -6,7 +6,7 @@ export declare class SnapshotGet extends SfCommand<OrgSnapshot> {
|
|
6
6
|
static readonly examples: string[];
|
7
7
|
static readonly aliases: string[];
|
8
8
|
static readonly deprecateAliases = true;
|
9
|
-
static readonly state = "
|
9
|
+
static readonly state = "beta";
|
10
10
|
static readonly flags: {
|
11
11
|
'target-dev-hub': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
12
12
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
@@ -17,7 +17,7 @@ export class SnapshotGet extends SfCommand {
|
|
17
17
|
static examples = messages.getMessages('examples');
|
18
18
|
static aliases = ['force:org:snapshot:get'];
|
19
19
|
static deprecateAliases = true;
|
20
|
-
static state = '
|
20
|
+
static state = 'beta';
|
21
21
|
static flags = {
|
22
22
|
'target-dev-hub': requiredHubFlagWithDeprecations,
|
23
23
|
'api-version': orgApiVersionFlagWithDeprecations,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/get/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EACL,KAAK,EACL,SAAS,EACT,QAAQ,EACR,+BAA+B,EAC/B,iCAAiC,GAClC,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAe,eAAe,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAEnG,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,cAAc,CAAC,CAAC;AAErF,MAAM,OAAO,WAAY,SAAQ,SAAsB;IAC9C,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,wBAAwB,CAAC,CAAC;IACrD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,
|
1
|
+
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/get/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EACL,KAAK,EACL,SAAS,EACT,QAAQ,EACR,+BAA+B,EAC/B,iCAAiC,GAClC,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAe,eAAe,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAEnG,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,cAAc,CAAC,CAAC;AAErF,MAAM,OAAO,WAAY,SAAQ,SAAsB;IAC9C,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,wBAAwB,CAAC,CAAC;IACrD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,MAAM,CAAC;IAE/B,MAAM,CAAU,KAAK,GAAG;QAC7B,gBAAgB,EAAE,+BAA+B;QACjD,aAAa,EAAE,iCAAiC;QAChD,QAAQ;QACR,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC;YACrB,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,wBAAwB,CAAC;YACtD,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,4BAA4B,CAAC;YAC9D,QAAQ,EAAE,IAAI;SACf,CAAC;KACH,CAAC;IAEK,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QAChD,MAAM,MAAM,GAAG,MAAM,eAAe,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;QAClH,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE;YACvB,sBAAsB,CAAC,MAAM,CAAC,CAAC;SAChC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC"}
|
@@ -6,7 +6,7 @@ export declare class SnapshotList extends SfCommand<OrgSnapshot[]> {
|
|
6
6
|
static readonly examples: string[];
|
7
7
|
static readonly aliases: string[];
|
8
8
|
static readonly deprecateAliases = true;
|
9
|
-
static readonly state = "
|
9
|
+
static readonly state = "beta";
|
10
10
|
static readonly flags: {
|
11
11
|
'target-dev-hub': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
12
12
|
'api-version': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
@@ -17,7 +17,7 @@ export class SnapshotList extends SfCommand {
|
|
17
17
|
static examples = messages.getMessages('examples');
|
18
18
|
static aliases = ['force:org:snapshot:list'];
|
19
19
|
static deprecateAliases = true;
|
20
|
-
static state = '
|
20
|
+
static state = 'beta';
|
21
21
|
static flags = {
|
22
22
|
'target-dev-hub': requiredHubFlagWithDeprecations,
|
23
23
|
'api-version': orgApiVersionFlagWithDeprecations,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/list/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EACL,QAAQ,EACR,iCAAiC,EACjC,+BAA+B,EAC/B,SAAS,GACV,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAe,QAAQ,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAEtF,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,eAAe,CAAC,CAAC;AAEtF,MAAM,OAAO,YAAa,SAAQ,SAAwB;IACjD,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,yBAAyB,CAAC,CAAC;IACtD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,
|
1
|
+
{"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../../../src/commands/org/list/snapshot.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EACL,QAAQ,EACR,iCAAiC,EACjC,+BAA+B,EAC/B,SAAS,GACV,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAe,QAAQ,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAEtF,QAAQ,CAAC,uBAAuB,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;AAC1E,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,4BAA4B,EAAE,eAAe,CAAC,CAAC;AAEtF,MAAM,OAAO,YAAa,SAAQ,SAAwB;IACjD,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,yBAAyB,CAAC,CAAC;IACtD,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,KAAK,GAAG,MAAM,CAAC;IAC/B,MAAM,CAAU,KAAK,GAAG;QAC7B,gBAAgB,EAAE,+BAA+B;QACjD,aAAa,EAAE,iCAAiC;QAChD,QAAQ;KACT,CAAC;IAEK,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;QACjD,MAAM,OAAO,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QAC5F,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE;YACvB,gBAAgB,CAAC,OAAO,CAAC,CAAC;SAC3B;QACD,OAAO,OAAO,CAAC;IACjB,CAAC"}
|
package/oclif.lock
CHANGED
@@ -769,13 +769,13 @@
|
|
769
769
|
wordwrap "^1.0.0"
|
770
770
|
wrap-ansi "^7.0.0"
|
771
771
|
|
772
|
-
"@oclif/plugin-command-snapshot@^5.0.
|
773
|
-
version "5.0.
|
774
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.0.
|
775
|
-
integrity sha512-
|
772
|
+
"@oclif/plugin-command-snapshot@^5.0.3":
|
773
|
+
version "5.0.3"
|
774
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.0.3.tgz#1ca2ccc173ba66d81e0e351f0cf640a9c3782f02"
|
775
|
+
integrity sha512-LbG7lxdKhaapv7nrgUoQU505PA92OU4SOMyczS74BatgUHjx4B0qXOe3VI2aKmd+SApPaLDe/QsGnm98gfZhmQ==
|
776
776
|
dependencies:
|
777
777
|
"@oclif/core" "^3.10.8"
|
778
|
-
"@types/lodash.difference" "^4.5.
|
778
|
+
"@types/lodash.difference" "^4.5.9"
|
779
779
|
chalk "^5.3.0"
|
780
780
|
just-diff "^5.2.0"
|
781
781
|
lodash.difference "^4.5.0"
|
@@ -917,14 +917,14 @@
|
|
917
917
|
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
918
918
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
919
919
|
|
920
|
-
"@salesforce/cli-plugins-testkit@^5.0
|
921
|
-
version "5.0
|
922
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.0.
|
923
|
-
integrity sha512-
|
920
|
+
"@salesforce/cli-plugins-testkit@^5.1.0":
|
921
|
+
version "5.1.0"
|
922
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.0.tgz#8d9caa22ea9e99879629206892afb26bcd540cef"
|
923
|
+
integrity sha512-P5tYlNqE87lX9Yp2aAsK75PICoAbmrSK3LEqiIVbtn75PN3OKiD1JEEX2ZDu+HWtO4/nxPtO4JFvX5j00EZGBA==
|
924
924
|
dependencies:
|
925
|
-
"@salesforce/core" "^
|
925
|
+
"@salesforce/core" "^6.2.2"
|
926
926
|
"@salesforce/kit" "^3.0.15"
|
927
|
-
"@salesforce/ts-types" "^2.0.
|
927
|
+
"@salesforce/ts-types" "^2.0.9"
|
928
928
|
"@types/shelljs" "^0.8.15"
|
929
929
|
debug "^4.3.1"
|
930
930
|
jszip "^3.10.1"
|
@@ -985,10 +985,10 @@
|
|
985
985
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
|
986
986
|
integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
|
987
987
|
|
988
|
-
"@salesforce/dev-scripts@^8.1.
|
989
|
-
version "8.1.
|
990
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.1.
|
991
|
-
integrity sha512-
|
988
|
+
"@salesforce/dev-scripts@^8.1.1":
|
989
|
+
version "8.1.1"
|
990
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.1.1.tgz#a54733057712706b08fc5abcdccad336be01fea3"
|
991
|
+
integrity sha512-pYf8eMhv/OLTUtQcNZkUXMioInQTwNnHuiePGbhcMb2KR41Ynk63sdLWZoGDSc82c1FX0cJfY4yrNMIMpEGQjw==
|
992
992
|
dependencies:
|
993
993
|
"@commitlint/cli" "^17.1.2"
|
994
994
|
"@commitlint/config-conventional" "^17.1.0"
|
@@ -1011,7 +1011,7 @@
|
|
1011
1011
|
shelljs "^0.8.5"
|
1012
1012
|
sinon "10.0.0"
|
1013
1013
|
source-map-support "^0.5.21"
|
1014
|
-
ts-node "^10.9.
|
1014
|
+
ts-node "^10.9.2"
|
1015
1015
|
typedoc "^0.25.3"
|
1016
1016
|
typedoc-plugin-missing-exports "0.23.0"
|
1017
1017
|
typescript "^4.9.5"
|
@@ -1062,7 +1062,7 @@
|
|
1062
1062
|
chalk "^4"
|
1063
1063
|
inquirer "^8.2.5"
|
1064
1064
|
|
1065
|
-
"@salesforce/ts-types@^2.0.
|
1065
|
+
"@salesforce/ts-types@^2.0.9":
|
1066
1066
|
version "2.0.9"
|
1067
1067
|
resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.9.tgz#66bff7b41720065d6b01631b6f6a3ccca02857c5"
|
1068
1068
|
integrity sha512-boUD9jw5vQpTCPCCmK/NFTWjSuuW+lsaxOynkyNXLW+zxOc4GDjhtKc4j0vWZJQvolpafbyS8ZLFHZJvs12gYA==
|
@@ -1218,10 +1218,10 @@
|
|
1218
1218
|
dependencies:
|
1219
1219
|
"@types/node" "*"
|
1220
1220
|
|
1221
|
-
"@types/lodash.difference@^4.5.
|
1222
|
-
version "4.5.
|
1223
|
-
resolved "https://registry.yarnpkg.com/@types/lodash.difference/-/lodash.difference-4.5.
|
1224
|
-
integrity sha512-
|
1221
|
+
"@types/lodash.difference@^4.5.9":
|
1222
|
+
version "4.5.9"
|
1223
|
+
resolved "https://registry.yarnpkg.com/@types/lodash.difference/-/lodash.difference-4.5.9.tgz#69e82a68557779abac489585f43159997cab874c"
|
1224
|
+
integrity sha512-MNlajcjtwzLpXk+cw38UkBvEXJNEPhULgS8A4EHwtUwT7f7yFH/SFKD0iw5Rfilwh60yJIgFo0vsMr7xsa5+aw==
|
1225
1225
|
dependencies:
|
1226
1226
|
"@types/lodash" "*"
|
1227
1227
|
|
@@ -2158,10 +2158,10 @@ change-case@^4, change-case@^4.1.2:
|
|
2158
2158
|
snake-case "^3.0.4"
|
2159
2159
|
tslib "^2.0.3"
|
2160
2160
|
|
2161
|
-
change-case@^5.
|
2162
|
-
version "5.
|
2163
|
-
resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.
|
2164
|
-
integrity sha512-
|
2161
|
+
change-case@^5.3.0:
|
2162
|
+
version "5.3.0"
|
2163
|
+
resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.3.0.tgz#b2fc5a8bea0cf8b4856a5a9aaf79abd8ea5309f6"
|
2164
|
+
integrity sha512-Eykca0fGS/xYlx2fG5NqnGSnsWauhSGiSXYhB1kO6E909GUfo8S54u4UZNS7lMJmgZumZ2SUpWaoLgAcfQRICg==
|
2165
2165
|
|
2166
2166
|
chardet@^0.7.0:
|
2167
2167
|
version "0.7.0"
|
@@ -7134,10 +7134,10 @@ ts-json-schema-generator@^1.4.0:
|
|
7134
7134
|
safe-stable-stringify "^2.4.3"
|
7135
7135
|
typescript "~5.2.2"
|
7136
7136
|
|
7137
|
-
ts-node@^10.8.1, ts-node@^10.9.1:
|
7138
|
-
version "10.9.
|
7139
|
-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.
|
7140
|
-
integrity sha512-
|
7137
|
+
ts-node@^10.8.1, ts-node@^10.9.1, ts-node@^10.9.2:
|
7138
|
+
version "10.9.2"
|
7139
|
+
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f"
|
7140
|
+
integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==
|
7141
7141
|
dependencies:
|
7142
7142
|
"@cspotcode/source-map-support" "^0.8.0"
|
7143
7143
|
"@tsconfig/node10" "^1.0.7"
|
package/oclif.manifest.json
CHANGED
@@ -204,7 +204,7 @@
|
|
204
204
|
"pluginAlias": "@salesforce/plugin-signups",
|
205
205
|
"pluginName": "@salesforce/plugin-signups",
|
206
206
|
"pluginType": "core",
|
207
|
-
"state": "
|
207
|
+
"state": "beta",
|
208
208
|
"strict": true,
|
209
209
|
"summary": "Create a snapshot of a scratch org.",
|
210
210
|
"enableJsonFlag": true,
|
@@ -443,7 +443,7 @@
|
|
443
443
|
"pluginAlias": "@salesforce/plugin-signups",
|
444
444
|
"pluginName": "@salesforce/plugin-signups",
|
445
445
|
"pluginType": "core",
|
446
|
-
"state": "
|
446
|
+
"state": "beta",
|
447
447
|
"strict": true,
|
448
448
|
"summary": "Delete a scratch org snapshot.",
|
449
449
|
"enableJsonFlag": true,
|
@@ -562,7 +562,7 @@
|
|
562
562
|
"pluginAlias": "@salesforce/plugin-signups",
|
563
563
|
"pluginName": "@salesforce/plugin-signups",
|
564
564
|
"pluginType": "core",
|
565
|
-
"state": "
|
565
|
+
"state": "beta",
|
566
566
|
"strict": true,
|
567
567
|
"summary": "Get details about a scratch org snapshot.",
|
568
568
|
"enableJsonFlag": true,
|
@@ -761,7 +761,7 @@
|
|
761
761
|
"pluginAlias": "@salesforce/plugin-signups",
|
762
762
|
"pluginName": "@salesforce/plugin-signups",
|
763
763
|
"pluginType": "core",
|
764
|
-
"state": "
|
764
|
+
"state": "beta",
|
765
765
|
"strict": true,
|
766
766
|
"summary": "List scratch org snapshots.",
|
767
767
|
"enableJsonFlag": true,
|
@@ -810,5 +810,5 @@
|
|
810
810
|
]
|
811
811
|
}
|
812
812
|
},
|
813
|
-
"version": "2.0.
|
813
|
+
"version": "2.0.9"
|
814
814
|
}
|
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.0.
|
4
|
+
"version": "2.0.9",
|
5
5
|
"author": "Salesforce",
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
7
7
|
"dependencies": {
|
@@ -10,12 +10,12 @@
|
|
10
10
|
"@salesforce/kit": "^3.0.15",
|
11
11
|
"@salesforce/sf-plugins-core": "^5.0.1",
|
12
12
|
"chalk": "^5.3.0",
|
13
|
-
"change-case": "^5.
|
13
|
+
"change-case": "^5.3.0"
|
14
14
|
},
|
15
15
|
"devDependencies": {
|
16
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
17
|
-
"@salesforce/cli-plugins-testkit": "^5.0
|
18
|
-
"@salesforce/dev-scripts": "^8.1.
|
16
|
+
"@oclif/plugin-command-snapshot": "^5.0.3",
|
17
|
+
"@salesforce/cli-plugins-testkit": "^5.1.0",
|
18
|
+
"@salesforce/dev-scripts": "^8.1.1",
|
19
19
|
"@salesforce/plugin-command-reference": "^3.0.51",
|
20
20
|
"@salesforce/ts-types": "^2.0.9",
|
21
21
|
"@types/chai-as-promised": "^7.1.8",
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"jsforce": "^2.0.0-beta.28",
|
27
27
|
"oclif": "^4.0.3",
|
28
28
|
"shx": "0.3.4",
|
29
|
-
"ts-node": "^10.9.
|
29
|
+
"ts-node": "^10.9.2",
|
30
30
|
"typescript": "^5.2.2"
|
31
31
|
},
|
32
32
|
"config": {},
|
@@ -66,10 +66,10 @@
|
|
66
66
|
"description": "Commands to create org shapes and snapshots.",
|
67
67
|
"subtopics": {
|
68
68
|
"snapshot": {
|
69
|
-
"state": "
|
69
|
+
"state": "beta",
|
70
70
|
"trailblazerCommunityLink": {
|
71
71
|
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
|
72
|
-
"name": "
|
72
|
+
"name": "W24 Beta: Scratch Org Snapshots"
|
73
73
|
}
|
74
74
|
}
|
75
75
|
}
|
@@ -78,10 +78,10 @@
|
|
78
78
|
"description": "Commands to list org shapes and snapshots.",
|
79
79
|
"subtopics": {
|
80
80
|
"snapshot": {
|
81
|
-
"state": "
|
81
|
+
"state": "beta",
|
82
82
|
"trailblazerCommunityLink": {
|
83
83
|
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
|
84
|
-
"name": "
|
84
|
+
"name": "W24 Beta: Scratch Org Snapshots"
|
85
85
|
}
|
86
86
|
}
|
87
87
|
}
|
@@ -90,10 +90,10 @@
|
|
90
90
|
"description": " Commands to delete shapes and snapshots.",
|
91
91
|
"subtopics": {
|
92
92
|
"snapshot": {
|
93
|
-
"state": "
|
93
|
+
"state": "beta",
|
94
94
|
"trailblazerCommunityLink": {
|
95
95
|
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
|
96
|
-
"name": "
|
96
|
+
"name": "W24 Beta: Scratch Org Snapshots"
|
97
97
|
}
|
98
98
|
}
|
99
99
|
}
|
@@ -102,10 +102,10 @@
|
|
102
102
|
"description": "Commands to get an org snapshot.",
|
103
103
|
"subtopics": {
|
104
104
|
"snapshot": {
|
105
|
-
"state": "
|
105
|
+
"state": "beta",
|
106
106
|
"trailblazerCommunityLink": {
|
107
107
|
"url": "https://success.salesforce.com/_ui/core/chatter/groups/GroupProfilePage?g=0F93A00000020d5",
|
108
|
-
"name": "
|
108
|
+
"name": "W24 Beta: Scratch Org Snapshots"
|
109
109
|
}
|
110
110
|
}
|
111
111
|
}
|
@@ -257,7 +257,7 @@
|
|
257
257
|
"exports": "./lib/index.js",
|
258
258
|
"type": "module",
|
259
259
|
"sfdx": {
|
260
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.
|
261
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.
|
260
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.9.crt",
|
261
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.9.sig"
|
262
262
|
}
|
263
263
|
}
|