@salesforce/plugin-packaging 2.13.5 → 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 +1387 -1389
- package/package.json +6 -6
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":"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"}
|