@salesforce/plugin-packaging 2.13.6 → 2.14.0
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 +110 -22
- package/lib/commands/package/convert.d.ts +0 -1
- package/lib/commands/package/convert.js +0 -2
- package/lib/commands/package/convert.js.map +1 -1
- package/oclif.manifest.json +110 -112
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -30,6 +30,7 @@ See [DEVELOPING.md](DEVELOPING.md)
|
|
|
30
30
|
|
|
31
31
|
<!-- commands -->
|
|
32
32
|
|
|
33
|
+
- [`sf package convert`](#sf-package-convert)
|
|
33
34
|
- [`sf package create`](#sf-package-create)
|
|
34
35
|
- [`sf package delete`](#sf-package-delete)
|
|
35
36
|
- [`sf package install`](#sf-package-install)
|
|
@@ -53,6 +54,93 @@ See [DEVELOPING.md](DEVELOPING.md)
|
|
|
53
54
|
- [`sf package1 version display`](#sf-package1-version-display)
|
|
54
55
|
- [`sf package1 version list`](#sf-package1-version-list)
|
|
55
56
|
|
|
57
|
+
## `sf package convert`
|
|
58
|
+
|
|
59
|
+
Create a second-generation package version from a first-generation package.
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
USAGE
|
|
63
|
+
$ sf package convert -v <value> -p <value> [--json] [--flags-dir <value>] [--api-version <value>] [-k <value>] [-f
|
|
64
|
+
<value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>]
|
|
65
|
+
|
|
66
|
+
FLAGS
|
|
67
|
+
-a, --patch-version=<value> Specific released patch version to convert
|
|
68
|
+
-f, --definition-file=<value> Path to a definition file that contains features and org preferences that the metadata
|
|
69
|
+
of the package version depends on.
|
|
70
|
+
-k, --installation-key=<value> Installation key for key-protected package.
|
|
71
|
+
-m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
|
|
72
|
+
-p, --package=<value> (required) ID (starts with 033) of the first-generation package to convert.
|
|
73
|
+
-v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
|
|
74
|
+
configuration variable is already set.
|
|
75
|
+
-w, --wait=<value> Minutes to wait for the package version to be created.
|
|
76
|
+
-x, --installation-key-bypass Bypass the installation key requirement.
|
|
77
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
78
|
+
--verbose Display verbose command output.
|
|
79
|
+
|
|
80
|
+
GLOBAL FLAGS
|
|
81
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
82
|
+
--json Format output as json.
|
|
83
|
+
|
|
84
|
+
DESCRIPTION
|
|
85
|
+
Create a second-generation package version from a first-generation package.
|
|
86
|
+
|
|
87
|
+
The package convert creates a new package in the Dev Hub if one does not already exist for the specified
|
|
88
|
+
first-generation package.
|
|
89
|
+
|
|
90
|
+
It then creates a new package version in the Dev Hub with contents based on the specified first-generation package.
|
|
91
|
+
|
|
92
|
+
By default, the latest released non-patch version from the specified first-generation package will be converted. Use
|
|
93
|
+
--patch-version to override the default. Read more about --patch-version option in help
|
|
94
|
+
|
|
95
|
+
To retrieve details about a package version create request, including status and package version ID (04t), run "sf
|
|
96
|
+
package version create report -i 08c...".
|
|
97
|
+
|
|
98
|
+
We recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized
|
|
99
|
+
installation of your package.
|
|
100
|
+
|
|
101
|
+
To list package version creation requests in the org, run "sf package version create list".
|
|
102
|
+
|
|
103
|
+
ALIASES
|
|
104
|
+
$ sf force package convert
|
|
105
|
+
|
|
106
|
+
EXAMPLES
|
|
107
|
+
Create a second-generation package version from the first-generation package with the specified ID and give it the
|
|
108
|
+
installation key "password123"; uses your default Dev Hub org:
|
|
109
|
+
|
|
110
|
+
$ sf package convert --package 033... --installation-key password123
|
|
111
|
+
|
|
112
|
+
Similar to previous example, but uses the specified Dev Hub org:
|
|
113
|
+
|
|
114
|
+
$ sf package convert --package 033... --installation-key password123 --target-dev-hub devhuborg@example.com
|
|
115
|
+
|
|
116
|
+
FLAG DESCRIPTIONS
|
|
117
|
+
-a, --patch-version=<value> Specific released patch version to convert
|
|
118
|
+
|
|
119
|
+
Specify a released patch version as major.minor.patch.build to convert to second generation package version
|
|
120
|
+
|
|
121
|
+
-f, --definition-file=<value>
|
|
122
|
+
|
|
123
|
+
Path to a definition file that contains features and org preferences that the metadata of the package version
|
|
124
|
+
depends on.
|
|
125
|
+
|
|
126
|
+
This definition file is similar to the scratch org definition file.
|
|
127
|
+
|
|
128
|
+
-k, --installation-key=<value> Installation key for key-protected package.
|
|
129
|
+
|
|
130
|
+
Either an --installation-key value or the --installation-key-bypass flag is required.
|
|
131
|
+
|
|
132
|
+
-m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
|
|
133
|
+
|
|
134
|
+
The directory containing metadata that will be deployed on the build org prior to attempting conversion.
|
|
135
|
+
|
|
136
|
+
-x, --installation-key-bypass Bypass the installation key requirement.
|
|
137
|
+
|
|
138
|
+
If you bypass this requirement, anyone can install your package. Either an --installation-key value or the
|
|
139
|
+
--installation-key-bypass flag is required.
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
_See code: [src/commands/package/convert.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/convert.ts)_
|
|
143
|
+
|
|
56
144
|
## `sf package create`
|
|
57
145
|
|
|
58
146
|
Create a package.
|
|
@@ -130,7 +218,7 @@ FLAG DESCRIPTIONS
|
|
|
130
218
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
131
219
|
```
|
|
132
220
|
|
|
133
|
-
_See code: [src/commands/package/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
221
|
+
_See code: [src/commands/package/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/create.ts)_
|
|
134
222
|
|
|
135
223
|
## `sf package delete`
|
|
136
224
|
|
|
@@ -172,7 +260,7 @@ EXAMPLES
|
|
|
172
260
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
173
261
|
```
|
|
174
262
|
|
|
175
|
-
_See code: [src/commands/package/delete.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
263
|
+
_See code: [src/commands/package/delete.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/delete.ts)_
|
|
176
264
|
|
|
177
265
|
## `sf package install`
|
|
178
266
|
|
|
@@ -271,7 +359,7 @@ FLAG DESCRIPTIONS
|
|
|
271
359
|
- Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
|
|
272
360
|
```
|
|
273
361
|
|
|
274
|
-
_See code: [src/commands/package/install.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
362
|
+
_See code: [src/commands/package/install.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/install.ts)_
|
|
275
363
|
|
|
276
364
|
## `sf package install report`
|
|
277
365
|
|
|
@@ -304,7 +392,7 @@ EXAMPLES
|
|
|
304
392
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
305
393
|
```
|
|
306
394
|
|
|
307
|
-
_See code: [src/commands/package/install/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
395
|
+
_See code: [src/commands/package/install/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/install/report.ts)_
|
|
308
396
|
|
|
309
397
|
## `sf package installed list`
|
|
310
398
|
|
|
@@ -336,7 +424,7 @@ EXAMPLES
|
|
|
336
424
|
$ sf package installed list --target-org me@example.com
|
|
337
425
|
```
|
|
338
426
|
|
|
339
|
-
_See code: [src/commands/package/installed/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
427
|
+
_See code: [src/commands/package/installed/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/installed/list.ts)_
|
|
340
428
|
|
|
341
429
|
## `sf package list`
|
|
342
430
|
|
|
@@ -374,7 +462,7 @@ EXAMPLES
|
|
|
374
462
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
375
463
|
```
|
|
376
464
|
|
|
377
|
-
_See code: [src/commands/package/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
465
|
+
_See code: [src/commands/package/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/list.ts)_
|
|
378
466
|
|
|
379
467
|
## `sf package uninstall`
|
|
380
468
|
|
|
@@ -422,7 +510,7 @@ EXAMPLES
|
|
|
422
510
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
423
511
|
```
|
|
424
512
|
|
|
425
|
-
_See code: [src/commands/package/uninstall.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
513
|
+
_See code: [src/commands/package/uninstall.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/uninstall.ts)_
|
|
426
514
|
|
|
427
515
|
## `sf package uninstall report`
|
|
428
516
|
|
|
@@ -455,7 +543,7 @@ EXAMPLES
|
|
|
455
543
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
456
544
|
```
|
|
457
545
|
|
|
458
|
-
_See code: [src/commands/package/uninstall/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
546
|
+
_See code: [src/commands/package/uninstall/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/uninstall/report.ts)_
|
|
459
547
|
|
|
460
548
|
## `sf package update`
|
|
461
549
|
|
|
@@ -510,7 +598,7 @@ FLAG DESCRIPTIONS
|
|
|
510
598
|
associated with your package.
|
|
511
599
|
```
|
|
512
600
|
|
|
513
|
-
_See code: [src/commands/package/update.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
601
|
+
_See code: [src/commands/package/update.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/update.ts)_
|
|
514
602
|
|
|
515
603
|
## `sf package version create`
|
|
516
604
|
|
|
@@ -685,7 +773,7 @@ FLAG DESCRIPTIONS
|
|
|
685
773
|
periods of no output from commands.
|
|
686
774
|
```
|
|
687
775
|
|
|
688
|
-
_See code: [src/commands/package/version/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
776
|
+
_See code: [src/commands/package/version/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/create.ts)_
|
|
689
777
|
|
|
690
778
|
## `sf package version create list`
|
|
691
779
|
|
|
@@ -746,7 +834,7 @@ EXAMPLES
|
|
|
746
834
|
$ sf package version create list --created-last-days 0 --status Success
|
|
747
835
|
```
|
|
748
836
|
|
|
749
|
-
_See code: [src/commands/package/version/create/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
837
|
+
_See code: [src/commands/package/version/create/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/create/list.ts)_
|
|
750
838
|
|
|
751
839
|
## `sf package version create report`
|
|
752
840
|
|
|
@@ -789,7 +877,7 @@ EXAMPLES
|
|
|
789
877
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
790
878
|
```
|
|
791
879
|
|
|
792
|
-
_See code: [src/commands/package/version/create/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
880
|
+
_See code: [src/commands/package/version/create/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/create/report.ts)_
|
|
793
881
|
|
|
794
882
|
## `sf package version delete`
|
|
795
883
|
|
|
@@ -830,7 +918,7 @@ EXAMPLES
|
|
|
830
918
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
831
919
|
```
|
|
832
920
|
|
|
833
|
-
_See code: [src/commands/package/version/delete.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
921
|
+
_See code: [src/commands/package/version/delete.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/delete.ts)_
|
|
834
922
|
|
|
835
923
|
## `sf package version displayancestry`
|
|
836
924
|
|
|
@@ -890,7 +978,7 @@ FLAG DESCRIPTIONS
|
|
|
890
978
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
891
979
|
```
|
|
892
980
|
|
|
893
|
-
_See code: [src/commands/package/version/displayancestry.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
981
|
+
_See code: [src/commands/package/version/displayancestry.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/displayancestry.ts)_
|
|
894
982
|
|
|
895
983
|
## `sf package version list`
|
|
896
984
|
|
|
@@ -966,7 +1054,7 @@ EXAMPLES
|
|
|
966
1054
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
967
1055
|
```
|
|
968
1056
|
|
|
969
|
-
_See code: [src/commands/package/version/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1057
|
+
_See code: [src/commands/package/version/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/list.ts)_
|
|
970
1058
|
|
|
971
1059
|
## `sf package version promote`
|
|
972
1060
|
|
|
@@ -1010,7 +1098,7 @@ EXAMPLES
|
|
|
1010
1098
|
$ sf package version promote --package "Awesome Package Alias"
|
|
1011
1099
|
```
|
|
1012
1100
|
|
|
1013
|
-
_See code: [src/commands/package/version/promote.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1101
|
+
_See code: [src/commands/package/version/promote.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/promote.ts)_
|
|
1014
1102
|
|
|
1015
1103
|
## `sf package version report`
|
|
1016
1104
|
|
|
@@ -1050,7 +1138,7 @@ EXAMPLES
|
|
|
1050
1138
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
1051
1139
|
```
|
|
1052
1140
|
|
|
1053
|
-
_See code: [src/commands/package/version/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1141
|
+
_See code: [src/commands/package/version/report.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/report.ts)_
|
|
1054
1142
|
|
|
1055
1143
|
## `sf package version update`
|
|
1056
1144
|
|
|
@@ -1103,7 +1191,7 @@ EXAMPLES
|
|
|
1103
1191
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
1104
1192
|
```
|
|
1105
1193
|
|
|
1106
|
-
_See code: [src/commands/package/version/update.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1194
|
+
_See code: [src/commands/package/version/update.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package/version/update.ts)_
|
|
1107
1195
|
|
|
1108
1196
|
## `sf package1 version create`
|
|
1109
1197
|
|
|
@@ -1170,7 +1258,7 @@ FLAG DESCRIPTIONS
|
|
|
1170
1258
|
subscribers.
|
|
1171
1259
|
```
|
|
1172
1260
|
|
|
1173
|
-
_See code: [src/commands/package1/version/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1261
|
+
_See code: [src/commands/package1/version/create.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package1/version/create.ts)_
|
|
1174
1262
|
|
|
1175
1263
|
## `sf package1 version create get`
|
|
1176
1264
|
|
|
@@ -1203,7 +1291,7 @@ EXAMPLES
|
|
|
1203
1291
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
1204
1292
|
```
|
|
1205
1293
|
|
|
1206
|
-
_See code: [src/commands/package1/version/create/get.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1294
|
+
_See code: [src/commands/package1/version/create/get.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package1/version/create/get.ts)_
|
|
1207
1295
|
|
|
1208
1296
|
## `sf package1 version display`
|
|
1209
1297
|
|
|
@@ -1237,7 +1325,7 @@ EXAMPLES
|
|
|
1237
1325
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
1238
1326
|
```
|
|
1239
1327
|
|
|
1240
|
-
_See code: [src/commands/package1/version/display.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1328
|
+
_See code: [src/commands/package1/version/display.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package1/version/display.ts)_
|
|
1241
1329
|
|
|
1242
1330
|
## `sf package1 version list`
|
|
1243
1331
|
|
|
@@ -1275,6 +1363,6 @@ FLAG DESCRIPTIONS
|
|
|
1275
1363
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
1276
1364
|
```
|
|
1277
1365
|
|
|
1278
|
-
_See code: [src/commands/package1/version/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
1366
|
+
_See code: [src/commands/package1/version/list.ts](https://github.com/salesforcecli/plugin-packaging/blob/2.14.0/src/commands/package1/version/list.ts)_
|
|
1279
1367
|
|
|
1280
1368
|
<!-- commandsstop -->
|
|
@@ -7,7 +7,6 @@ export declare class PackageConvert extends SfCommand<PackageVersionCreateReques
|
|
|
7
7
|
static readonly examples: string[];
|
|
8
8
|
static readonly deprecateAliases = true;
|
|
9
9
|
static readonly aliases: string[];
|
|
10
|
-
static readonly hidden = true;
|
|
11
10
|
static readonly flags: {
|
|
12
11
|
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
13
12
|
'target-dev-hub': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
@@ -18,7 +18,6 @@ export class PackageConvert extends SfCommand {
|
|
|
18
18
|
static examples = messages.getMessages('examples');
|
|
19
19
|
static deprecateAliases = true;
|
|
20
20
|
static aliases = ['force:package:convert'];
|
|
21
|
-
static hidden = true;
|
|
22
21
|
static flags = {
|
|
23
22
|
loglevel,
|
|
24
23
|
'target-dev-hub': requiredHubFlag,
|
|
@@ -80,7 +79,6 @@ export class PackageConvert extends SfCommand {
|
|
|
80
79
|
char: 'a',
|
|
81
80
|
deprecateAliases: true,
|
|
82
81
|
aliases: ['patchversion'],
|
|
83
|
-
hidden: true,
|
|
84
82
|
}),
|
|
85
83
|
};
|
|
86
84
|
async run() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"convert.js","sourceRoot":"","sources":["../../../src/commands/package/convert.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,iCAAiC,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAC5G,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC3E,OAAO,EACL,gBAAgB,EAChB,OAAO,EACP,aAAa,EAGb,iBAAiB,GAClB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,8BAA8B,EAAE,iBAAiB,CAAC,CAAC;AAC1F,MAAM,WAAW,GAAG,QAAQ,CAAC,YAAY,CAAC,8BAA8B,EAAE,wBAAwB,CAAC,CAAC;AAEpG,MAAM,OAAO,cAAe,SAAQ,SAA4C;IACvE,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,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,OAAO,GAAG,CAAC,uBAAuB,CAAC,CAAC;IACpD,MAAM,CAAU,
|
|
1
|
+
{"version":3,"file":"convert.js","sourceRoot":"","sources":["../../../src/commands/package/convert.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,iCAAiC,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAC5G,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC3E,OAAO,EACL,gBAAgB,EAChB,OAAO,EACP,aAAa,EAGb,iBAAiB,GAClB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,8BAA8B,EAAE,iBAAiB,CAAC,CAAC;AAC1F,MAAM,WAAW,GAAG,QAAQ,CAAC,YAAY,CAAC,8BAA8B,EAAE,wBAAwB,CAAC,CAAC;AAEpG,MAAM,OAAO,cAAe,SAAQ,SAA4C;IACvE,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,gBAAgB,GAAG,IAAI,CAAC;IACxC,MAAM,CAAU,OAAO,GAAG,CAAC,uBAAuB,CAAC,CAAC;IACpD,MAAM,CAAU,KAAK,GAAG;QAC7B,QAAQ;QACR,gBAAgB,EAAE,eAAe;QACjC,aAAa,EAAE,iCAAiC;QAChD,OAAO,EAAE,KAAK,CAAC,YAAY,CAAC;YAC1B,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,uBAAuB,CAAC;YACrD,QAAQ,EAAE,IAAI;YACd,UAAU,EAAE,KAAK;SAClB,CAAC;QACF,kBAAkB,EAAE,KAAK,CAAC,MAAM,CAAC;YAC/B,IAAI,EAAE,GAAG;YACT,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,iBAAiB,CAAC;YAC5B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,gCAAgC,CAAC;YAC9D,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,oCAAoC,CAAC;YACtE,UAAU,EAAE,CAAC,kBAAkB,EAAE,yBAAyB,CAAC;SAC5D,CAAC;QACF,iBAAiB,EAAE,KAAK,CAAC,IAAI,CAAC;YAC5B,IAAI,EAAE,GAAG;YACT,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,gBAAgB,CAAC;YAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,+BAA+B,CAAC;YAC7D,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,mCAAmC,CAAC;SACtE,CAAC;QACF,yBAAyB,EAAE,KAAK,CAAC,OAAO,CAAC;YACvC,IAAI,EAAE,GAAG;YACT,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,uBAAuB,CAAC;YAClC,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,uCAAuC,CAAC;YACrE,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,2CAA2C,CAAC;YAC7E,UAAU,EAAE,CAAC,kBAAkB,EAAE,yBAAyB,CAAC;SAC5D,CAAC;QACF,IAAI,EAAE,KAAK,CAAC,QAAQ,CAAC;YACnB,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,oBAAoB,CAAC;YAClD,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;SAC7B,CAAC;QACF,gBAAgB,EAAE,KAAK,CAAC,MAAM,CAAC;YAC7B,IAAI,EAAE,GAAG;YACT,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,eAAe,CAAC;YAC1B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,8BAA8B,CAAC;YAC5D,MAAM,EAAE,IAAI;SACb,CAAC;QACF,eAAe,EAAE,KAAK,CAAC,SAAS,CAAC;YAC/B,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,6BAA6B,CAAC;YAC3D,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,iCAAiC,CAAC;SACpE,CAAC;QACF,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC;YACrB,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,uBAAuB,CAAC;SACtD,CAAC;QACF,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC;YAC5B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,6BAA6B,CAAC;YAC3D,WAAW,EAAE,QAAQ,CAAC,UAAU,CAAC,iCAAiC,CAAC;YACnE,IAAI,EAAE,GAAG;YACT,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,cAAc,CAAC;SAC1B,CAAC;KACH,CAAC;IAEK,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;QACnD,4DAA4D;QAC5D,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAmC,EAAE,EAAE;YACvG,MAAM,iBAAiB,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,EAAE;gBAC3D,IAAI,CAAC,aAAa,EAAE,OAAO;gBAC3B,oBAAoB,CAAC,IAAI,CAAC,iCAAiC,CAAC,MAAM,CAAC;aACpE,CAAC,CAAC;YACH,IAAI,CAAC,OAAO,CAAC,iBAAiB,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;QACjD,CAAC,CAAC,CAAC;QAEH,4DAA4D;QAC5D,SAAS,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,OAAO,EAAE,KAAK,IAAI,EAAE;YACnE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;QACzC,CAAC,CAAC,CAAC;QAEH,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;YAClB,IAAI,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;QACjC,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,oBAAoB,EAAE,cAAc,CAAC,CAAC;QAC3D,CAAC;QACD,kDAAkD;QAClD,IAAI,OAA8B,CAAC;QACnC,IAAI,CAAC;YACH,OAAO,GAAG,MAAM,SAAS,CAAC,OAAO,EAAE,CAAC;QACtC,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,6BAA6B;QAC/B,CAAC;QACD,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,OAAO,CAClC,KAAK,CAAC,OAAO,EACb,KAAK,CAAC,gBAAgB,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,EAC3D;YACE,IAAI,EAAE,KAAK,CAAC,IAAI;YAChB,eAAe,EAAE,KAAK,CAAC,kBAAkB,CAAW;YACpD,cAAc,EAAE,KAAK,CAAC,iBAAiB,CAAW;YAClD,qBAAqB,EAAE,KAAK,CAAC,yBAAyB,CAAC;YACvD,aAAa,EAAE,KAAK,CAAC,gBAAgB,CAAW;YAChD,YAAY,EAAE,KAAK,CAAC,eAAe,CAAW;YAC9C,YAAY,EAAE,KAAK,CAAC,eAAe,CAAW;SAC/C,EACD,OAAO,CACR,CAAC;QAEF,QAAQ,MAAM,CAAC,MAAM,EAAE,CAAC;YACtB,KAAK,iBAAiB,CAAC,uBAAuB,CAAC,CAAC,KAAK;gBACnD,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC;gBACpB,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,CAAC;YACxF,KAAK,iBAAiB,CAAC,uBAAuB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC;gBACxD,MAAM,cAAc,GAAG,WAAW,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE;oBAC3D,MAAM,CAAC,EAAE;oBACT,MAAM,CAAC,0BAA0B;oBACjC,gBAAgB,CAAC,QAAQ,EAAE;oBAC3B,MAAM,CAAC,0BAA0B;oBACjC,IAAI,CAAC,MAAM,CAAC,GAAG;iBAChB,CAAC,CAAC;gBACH,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;oBAClB,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;gBAC3B,CAAC;qBAAM,CAAC;oBACN,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;gBACpC,CAAC;gBACD,MAAM;YACR,CAAC;YACD,OAAO,CAAC,CAAC,CAAC;gBACR,MAAM,iBAAiB,GAAG,WAAW,CAAC,UAAU,CAAC,YAAY,EAAE;oBAC7D,IAAI,CAAC,MAAM,CAAC,GAAG;oBACf,oBAAoB,CAAC,MAAM,CAAC,MAAM,CAAC;oBACnC,MAAM,CAAC,EAAE;iBACV,CAAC,CAAC;gBACH,IAAI,CAAC,OAAO,CAAC,iBAAiB,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;YACjD,CAAC;QACH,CAAC;QAED,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC;QACpB,OAAO,MAAM,CAAC;IAChB,CAAC;IAEO,OAAO,CAAC,OAAe,EAAE,OAAgB;QAC/C,IAAI,OAAO,EAAE,CAAC;YACZ,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;QACpB,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC;QAChC,CAAC;IACH,CAAC"}
|
package/oclif.manifest.json
CHANGED
|
@@ -153,7 +153,6 @@
|
|
|
153
153
|
"char": "a",
|
|
154
154
|
"deprecateAliases": true,
|
|
155
155
|
"description": "Specify a released patch version as major.minor.patch.build to convert to second generation package version",
|
|
156
|
-
"hidden": true,
|
|
157
156
|
"name": "patch-version",
|
|
158
157
|
"summary": "Specific released patch version to convert",
|
|
159
158
|
"hasDynamicHelp": false,
|
|
@@ -162,7 +161,6 @@
|
|
|
162
161
|
}
|
|
163
162
|
},
|
|
164
163
|
"hasDynamicHelp": true,
|
|
165
|
-
"hidden": true,
|
|
166
164
|
"hiddenAliases": [],
|
|
167
165
|
"id": "package:convert",
|
|
168
166
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
@@ -1047,15 +1045,15 @@
|
|
|
1047
1045
|
"update:package"
|
|
1048
1046
|
]
|
|
1049
1047
|
},
|
|
1050
|
-
"package:
|
|
1048
|
+
"package:installed:list": {
|
|
1051
1049
|
"aliases": [
|
|
1052
|
-
"force:package:
|
|
1050
|
+
"force:package:installed:list"
|
|
1053
1051
|
],
|
|
1054
1052
|
"args": {},
|
|
1055
1053
|
"deprecateAliases": true,
|
|
1056
1054
|
"examples": [
|
|
1057
|
-
"
|
|
1058
|
-
"
|
|
1055
|
+
"List the installed packages in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
1056
|
+
"List the installed packages in the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --target-org me@example.com"
|
|
1059
1057
|
],
|
|
1060
1058
|
"flags": {
|
|
1061
1059
|
"json": {
|
|
@@ -1073,6 +1071,16 @@
|
|
|
1073
1071
|
"multiple": false,
|
|
1074
1072
|
"type": "option"
|
|
1075
1073
|
},
|
|
1074
|
+
"loglevel": {
|
|
1075
|
+
"deprecated": {
|
|
1076
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1077
|
+
},
|
|
1078
|
+
"hidden": true,
|
|
1079
|
+
"name": "loglevel",
|
|
1080
|
+
"hasDynamicHelp": false,
|
|
1081
|
+
"multiple": false,
|
|
1082
|
+
"type": "option"
|
|
1083
|
+
},
|
|
1076
1084
|
"target-org": {
|
|
1077
1085
|
"aliases": [
|
|
1078
1086
|
"targetusername",
|
|
@@ -1098,92 +1106,69 @@
|
|
|
1098
1106
|
"hasDynamicHelp": false,
|
|
1099
1107
|
"multiple": false,
|
|
1100
1108
|
"type": "option"
|
|
1101
|
-
},
|
|
1102
|
-
"loglevel": {
|
|
1103
|
-
"deprecated": {
|
|
1104
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1105
|
-
},
|
|
1106
|
-
"hidden": true,
|
|
1107
|
-
"name": "loglevel",
|
|
1108
|
-
"hasDynamicHelp": false,
|
|
1109
|
-
"multiple": false,
|
|
1110
|
-
"type": "option"
|
|
1111
|
-
},
|
|
1112
|
-
"request-id": {
|
|
1113
|
-
"aliases": [
|
|
1114
|
-
"requestid"
|
|
1115
|
-
],
|
|
1116
|
-
"char": "i",
|
|
1117
|
-
"deprecateAliases": true,
|
|
1118
|
-
"name": "request-id",
|
|
1119
|
-
"required": true,
|
|
1120
|
-
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
1121
|
-
"hasDynamicHelp": false,
|
|
1122
|
-
"multiple": false,
|
|
1123
|
-
"type": "option"
|
|
1124
1109
|
}
|
|
1125
1110
|
},
|
|
1126
1111
|
"hasDynamicHelp": true,
|
|
1127
1112
|
"hiddenAliases": [],
|
|
1128
|
-
"id": "package:
|
|
1113
|
+
"id": "package:installed:list",
|
|
1129
1114
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1130
1115
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1131
1116
|
"pluginType": "core",
|
|
1132
1117
|
"strict": true,
|
|
1133
|
-
"summary": "
|
|
1118
|
+
"summary": "List the org’s installed packages.",
|
|
1134
1119
|
"enableJsonFlag": true,
|
|
1135
1120
|
"isESM": true,
|
|
1136
1121
|
"relativePath": [
|
|
1137
1122
|
"lib",
|
|
1138
1123
|
"commands",
|
|
1139
1124
|
"package",
|
|
1140
|
-
"
|
|
1141
|
-
"
|
|
1125
|
+
"installed",
|
|
1126
|
+
"list.js"
|
|
1142
1127
|
],
|
|
1143
1128
|
"aliasPermutations": [
|
|
1144
|
-
"force:package:
|
|
1145
|
-
"package:force:
|
|
1146
|
-
"package:
|
|
1147
|
-
"package:
|
|
1148
|
-
"force:
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1151
|
-
"
|
|
1152
|
-
"force:
|
|
1153
|
-
"
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
1156
|
-
"force:package:
|
|
1157
|
-
"package:force:
|
|
1158
|
-
"package:
|
|
1159
|
-
"package:
|
|
1160
|
-
"force:
|
|
1161
|
-
"
|
|
1162
|
-
"
|
|
1163
|
-
"
|
|
1164
|
-
"force:
|
|
1165
|
-
"
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1129
|
+
"force:package:installed:list",
|
|
1130
|
+
"package:force:installed:list",
|
|
1131
|
+
"package:installed:force:list",
|
|
1132
|
+
"package:installed:list:force",
|
|
1133
|
+
"force:installed:package:list",
|
|
1134
|
+
"installed:force:package:list",
|
|
1135
|
+
"installed:package:force:list",
|
|
1136
|
+
"installed:package:list:force",
|
|
1137
|
+
"force:installed:list:package",
|
|
1138
|
+
"installed:force:list:package",
|
|
1139
|
+
"installed:list:force:package",
|
|
1140
|
+
"installed:list:package:force",
|
|
1141
|
+
"force:package:list:installed",
|
|
1142
|
+
"package:force:list:installed",
|
|
1143
|
+
"package:list:force:installed",
|
|
1144
|
+
"package:list:installed:force",
|
|
1145
|
+
"force:list:package:installed",
|
|
1146
|
+
"list:force:package:installed",
|
|
1147
|
+
"list:package:force:installed",
|
|
1148
|
+
"list:package:installed:force",
|
|
1149
|
+
"force:list:installed:package",
|
|
1150
|
+
"list:force:installed:package",
|
|
1151
|
+
"list:installed:force:package",
|
|
1152
|
+
"list:installed:package:force"
|
|
1168
1153
|
],
|
|
1169
1154
|
"permutations": [
|
|
1170
|
-
"package:
|
|
1171
|
-
"
|
|
1172
|
-
"
|
|
1173
|
-
"package:
|
|
1174
|
-
"
|
|
1175
|
-
"
|
|
1155
|
+
"package:installed:list",
|
|
1156
|
+
"installed:package:list",
|
|
1157
|
+
"installed:list:package",
|
|
1158
|
+
"package:list:installed",
|
|
1159
|
+
"list:package:installed",
|
|
1160
|
+
"list:installed:package"
|
|
1176
1161
|
]
|
|
1177
1162
|
},
|
|
1178
|
-
"package:
|
|
1163
|
+
"package:install:report": {
|
|
1179
1164
|
"aliases": [
|
|
1180
|
-
"force:package:
|
|
1165
|
+
"force:package:install:report"
|
|
1181
1166
|
],
|
|
1182
1167
|
"args": {},
|
|
1183
1168
|
"deprecateAliases": true,
|
|
1184
1169
|
"examples": [
|
|
1185
|
-
"
|
|
1186
|
-
"
|
|
1170
|
+
"Retrieve the status of a package installation request with the specified ID on your default org:\n<%= config.bin %> <%= command.id %> --request-id 0Hf...",
|
|
1171
|
+
"Similar to previous example, except use the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --request-id 0Hf... --target-org me@example.com"
|
|
1187
1172
|
],
|
|
1188
1173
|
"flags": {
|
|
1189
1174
|
"json": {
|
|
@@ -1201,16 +1186,6 @@
|
|
|
1201
1186
|
"multiple": false,
|
|
1202
1187
|
"type": "option"
|
|
1203
1188
|
},
|
|
1204
|
-
"loglevel": {
|
|
1205
|
-
"deprecated": {
|
|
1206
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1207
|
-
},
|
|
1208
|
-
"hidden": true,
|
|
1209
|
-
"name": "loglevel",
|
|
1210
|
-
"hasDynamicHelp": false,
|
|
1211
|
-
"multiple": false,
|
|
1212
|
-
"type": "option"
|
|
1213
|
-
},
|
|
1214
1189
|
"target-org": {
|
|
1215
1190
|
"aliases": [
|
|
1216
1191
|
"targetusername",
|
|
@@ -1236,58 +1211,81 @@
|
|
|
1236
1211
|
"hasDynamicHelp": false,
|
|
1237
1212
|
"multiple": false,
|
|
1238
1213
|
"type": "option"
|
|
1214
|
+
},
|
|
1215
|
+
"loglevel": {
|
|
1216
|
+
"deprecated": {
|
|
1217
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1218
|
+
},
|
|
1219
|
+
"hidden": true,
|
|
1220
|
+
"name": "loglevel",
|
|
1221
|
+
"hasDynamicHelp": false,
|
|
1222
|
+
"multiple": false,
|
|
1223
|
+
"type": "option"
|
|
1224
|
+
},
|
|
1225
|
+
"request-id": {
|
|
1226
|
+
"aliases": [
|
|
1227
|
+
"requestid"
|
|
1228
|
+
],
|
|
1229
|
+
"char": "i",
|
|
1230
|
+
"deprecateAliases": true,
|
|
1231
|
+
"name": "request-id",
|
|
1232
|
+
"required": true,
|
|
1233
|
+
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
1234
|
+
"hasDynamicHelp": false,
|
|
1235
|
+
"multiple": false,
|
|
1236
|
+
"type": "option"
|
|
1239
1237
|
}
|
|
1240
1238
|
},
|
|
1241
1239
|
"hasDynamicHelp": true,
|
|
1242
1240
|
"hiddenAliases": [],
|
|
1243
|
-
"id": "package:
|
|
1241
|
+
"id": "package:install:report",
|
|
1244
1242
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1245
1243
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1246
1244
|
"pluginType": "core",
|
|
1247
1245
|
"strict": true,
|
|
1248
|
-
"summary": "
|
|
1246
|
+
"summary": "Retrieve the status of a package installation request.",
|
|
1249
1247
|
"enableJsonFlag": true,
|
|
1250
1248
|
"isESM": true,
|
|
1251
1249
|
"relativePath": [
|
|
1252
1250
|
"lib",
|
|
1253
1251
|
"commands",
|
|
1254
1252
|
"package",
|
|
1255
|
-
"
|
|
1256
|
-
"
|
|
1253
|
+
"install",
|
|
1254
|
+
"report.js"
|
|
1257
1255
|
],
|
|
1258
1256
|
"aliasPermutations": [
|
|
1259
|
-
"force:package:
|
|
1260
|
-
"package:force:
|
|
1261
|
-
"package:
|
|
1262
|
-
"package:
|
|
1263
|
-
"force:
|
|
1264
|
-
"
|
|
1265
|
-
"
|
|
1266
|
-
"
|
|
1267
|
-
"force:
|
|
1268
|
-
"
|
|
1269
|
-
"
|
|
1270
|
-
"
|
|
1271
|
-
"force:package:
|
|
1272
|
-
"package:force:
|
|
1273
|
-
"package:
|
|
1274
|
-
"package:
|
|
1275
|
-
"force:
|
|
1276
|
-
"
|
|
1277
|
-
"
|
|
1278
|
-
"
|
|
1279
|
-
"force:
|
|
1280
|
-
"
|
|
1281
|
-
"
|
|
1282
|
-
"
|
|
1257
|
+
"force:package:install:report",
|
|
1258
|
+
"package:force:install:report",
|
|
1259
|
+
"package:install:force:report",
|
|
1260
|
+
"package:install:report:force",
|
|
1261
|
+
"force:install:package:report",
|
|
1262
|
+
"install:force:package:report",
|
|
1263
|
+
"install:package:force:report",
|
|
1264
|
+
"install:package:report:force",
|
|
1265
|
+
"force:install:report:package",
|
|
1266
|
+
"install:force:report:package",
|
|
1267
|
+
"install:report:force:package",
|
|
1268
|
+
"install:report:package:force",
|
|
1269
|
+
"force:package:report:install",
|
|
1270
|
+
"package:force:report:install",
|
|
1271
|
+
"package:report:force:install",
|
|
1272
|
+
"package:report:install:force",
|
|
1273
|
+
"force:report:package:install",
|
|
1274
|
+
"report:force:package:install",
|
|
1275
|
+
"report:package:force:install",
|
|
1276
|
+
"report:package:install:force",
|
|
1277
|
+
"force:report:install:package",
|
|
1278
|
+
"report:force:install:package",
|
|
1279
|
+
"report:install:force:package",
|
|
1280
|
+
"report:install:package:force"
|
|
1283
1281
|
],
|
|
1284
1282
|
"permutations": [
|
|
1285
|
-
"package:
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1288
|
-
"package:
|
|
1289
|
-
"
|
|
1290
|
-
"
|
|
1283
|
+
"package:install:report",
|
|
1284
|
+
"install:package:report",
|
|
1285
|
+
"install:report:package",
|
|
1286
|
+
"package:report:install",
|
|
1287
|
+
"report:package:install",
|
|
1288
|
+
"report:install:package"
|
|
1291
1289
|
]
|
|
1292
1290
|
},
|
|
1293
1291
|
"package:uninstall:report": {
|
|
@@ -4065,5 +4063,5 @@
|
|
|
4065
4063
|
]
|
|
4066
4064
|
}
|
|
4067
4065
|
},
|
|
4068
|
-
"version": "2.
|
|
4066
|
+
"version": "2.14.0"
|
|
4069
4067
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-packaging",
|
|
3
3
|
"description": "SF plugin that support Salesforce Packaging Platform",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.14.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"chalk": "^5.4.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@oclif/plugin-command-snapshot": "^5.2.
|
|
16
|
+
"@oclif/plugin-command-snapshot": "^5.2.40",
|
|
17
17
|
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
18
18
|
"@salesforce/dev-scripts": "^11.0.2",
|
|
19
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
19
|
+
"@salesforce/plugin-command-reference": "^3.1.54",
|
|
20
20
|
"eslint-plugin-sf-plugin": "^1.20.23",
|
|
21
21
|
"oclif": "^4.17.46",
|
|
22
22
|
"ts-node": "^10.9.2",
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"exports": "./lib/index.js",
|
|
248
248
|
"type": "module",
|
|
249
249
|
"sfdx": {
|
|
250
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.
|
|
251
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.
|
|
250
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.14.0.crt",
|
|
251
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/2.14.0.sig"
|
|
252
252
|
}
|
|
253
253
|
}
|