@salesforce/plugin-custom-metadata 3.0.1 → 3.0.3
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 +5 -5
- package/lib/commands/cmdt/generate/records.js +21 -2
- package/lib/commands/cmdt/generate/records.js.map +1 -1
- package/oclif.lock +141 -158
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ FLAG DESCRIPTIONS
|
|
|
148
148
|
The value must be greater than or equal to zero. Default value is 0.
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
_See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/
|
|
151
|
+
_See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.0.3/src/commands/cmdt/generate/field.ts)_
|
|
152
152
|
|
|
153
153
|
## `sf cmdt generate fromorg`
|
|
154
154
|
|
|
@@ -235,7 +235,7 @@ FLAG DESCRIPTIONS
|
|
|
235
235
|
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
_See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/
|
|
238
|
+
_See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.0.3/src/commands/cmdt/generate/fromorg.ts)_
|
|
239
239
|
|
|
240
240
|
## `sf cmdt generate object`
|
|
241
241
|
|
|
@@ -296,7 +296,7 @@ FLAG DESCRIPTIONS
|
|
|
296
296
|
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
297
297
|
```
|
|
298
298
|
|
|
299
|
-
_See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/
|
|
299
|
+
_See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.0.3/src/commands/cmdt/generate/object.ts)_
|
|
300
300
|
|
|
301
301
|
## `sf cmdt generate record`
|
|
302
302
|
|
|
@@ -349,7 +349,7 @@ FLAG DESCRIPTIONS
|
|
|
349
349
|
Protected records can only be accessed by code in the same managed package namespace.
|
|
350
350
|
```
|
|
351
351
|
|
|
352
|
-
_See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/
|
|
352
|
+
_See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.0.3/src/commands/cmdt/generate/record.ts)_
|
|
353
353
|
|
|
354
354
|
## `sf cmdt generate records`
|
|
355
355
|
|
|
@@ -399,7 +399,7 @@ FLAG DESCRIPTIONS
|
|
|
399
399
|
The '__mdt' suffix is appended to the end of the name if it's omitted.
|
|
400
400
|
```
|
|
401
401
|
|
|
402
|
-
_See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/
|
|
402
|
+
_See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.0.3/src/commands/cmdt/generate/records.ts)_
|
|
403
403
|
|
|
404
404
|
<!-- commandsstop -->
|
|
405
405
|
|
|
@@ -68,7 +68,7 @@ export default class Insert extends SfCommand {
|
|
|
68
68
|
columns: (header) => columnValidation(metadataTypeFields, header, flags['type-name']),
|
|
69
69
|
});
|
|
70
70
|
// Transforms on the recordname are to match the behavior of adding a new Custom Metadata Type record in the UI
|
|
71
|
-
const recordConfigs = parsedRecords.map((record) => ({
|
|
71
|
+
const recordConfigs = validateUniqueNames(parsedRecords.map((record) => ({
|
|
72
72
|
typename: flags['type-name'],
|
|
73
73
|
recordname: record[flags['name-column']]
|
|
74
74
|
.replace(/[^a-zA-Z0-9]/g, '_') // replace all non-alphanumeric characters with _
|
|
@@ -91,7 +91,7 @@ export default class Insert extends SfCommand {
|
|
|
91
91
|
}
|
|
92
92
|
})),
|
|
93
93
|
fileData,
|
|
94
|
-
}));
|
|
94
|
+
})));
|
|
95
95
|
// find the cmdt in the inputdir.
|
|
96
96
|
// loop through files and create records that match fields
|
|
97
97
|
await Promise.all(recordConfigs.map((r) => createRecord(r)));
|
|
@@ -99,6 +99,25 @@ export default class Insert extends SfCommand {
|
|
|
99
99
|
return recordConfigs;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
+
/** validate name fields are unique, otherwise they'll be trying to write to the same file */
|
|
103
|
+
const validateUniqueNames = (recordConfigs) => {
|
|
104
|
+
const recordNameSet = new Set();
|
|
105
|
+
const dupes = recordConfigs
|
|
106
|
+
.map((rc) => {
|
|
107
|
+
if (recordNameSet.has(rc.recordname)) {
|
|
108
|
+
return rc.recordname;
|
|
109
|
+
}
|
|
110
|
+
else {
|
|
111
|
+
recordNameSet.add(rc.recordname);
|
|
112
|
+
return undefined;
|
|
113
|
+
}
|
|
114
|
+
})
|
|
115
|
+
.filter((rc) => rc !== undefined);
|
|
116
|
+
if (dupes.length > 0) {
|
|
117
|
+
throw new SfError(`Your CSV has duplicate values: ${[...new Set(dupes)].join(', ')}. CMDT require unique names in the name field.`);
|
|
118
|
+
}
|
|
119
|
+
return recordConfigs;
|
|
120
|
+
};
|
|
102
121
|
/** Validate that every column in the CSV has known metadata */
|
|
103
122
|
const columnValidation = (requiredFields, columnList, typeNameFlag) => {
|
|
104
123
|
columnList.forEach((column) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"records.js","sourceRoot":"","sources":["../../../../src/commands/cmdt/generate/records.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"records.js","sourceRoot":"","sources":["../../../../src/commands/cmdt/generate/records.ts"],"names":[],"mappings":"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"}
|
package/oclif.lock
CHANGED
|
@@ -380,12 +380,12 @@
|
|
|
380
380
|
dependencies:
|
|
381
381
|
"@jridgewell/trace-mapping" "0.3.9"
|
|
382
382
|
|
|
383
|
-
"@es-joy/jsdoccomment@~0.
|
|
384
|
-
version "0.
|
|
385
|
-
resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.
|
|
386
|
-
integrity sha512-
|
|
383
|
+
"@es-joy/jsdoccomment@~0.41.0":
|
|
384
|
+
version "0.41.0"
|
|
385
|
+
resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz#4a2f7db42209c0425c71a1476ef1bdb6dcd836f6"
|
|
386
|
+
integrity sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==
|
|
387
387
|
dependencies:
|
|
388
|
-
comment-parser "1.4.
|
|
388
|
+
comment-parser "1.4.1"
|
|
389
389
|
esquery "^1.5.0"
|
|
390
390
|
jsdoc-type-pratt-parser "~4.0.0"
|
|
391
391
|
|
|
@@ -715,7 +715,7 @@
|
|
|
715
715
|
wordwrap "^1.0.0"
|
|
716
716
|
wrap-ansi "^7.0.0"
|
|
717
717
|
|
|
718
|
-
"@oclif/core@^3.0.
|
|
718
|
+
"@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
|
|
719
719
|
version "3.11.0"
|
|
720
720
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
|
|
721
721
|
integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
|
|
@@ -929,38 +929,62 @@
|
|
|
929
929
|
semver "^7.5.4"
|
|
930
930
|
ts-retry-promise "^0.7.1"
|
|
931
931
|
|
|
932
|
+
"@salesforce/core@^6.1.0", "@salesforce/core@^6.1.3":
|
|
933
|
+
version "6.1.3"
|
|
934
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.1.3.tgz#32e71846cad033e0d2b369ecf0fafb4f76d63ad7"
|
|
935
|
+
integrity sha512-M7EQ4+LSXU4ZqD4R5ttY4RqSaYNaNBGDG0KC51IdDfpGtL4kJXeQHdr5HfMfgyCyYNM9LqqfBS7zQTBY1rf+Yg==
|
|
936
|
+
dependencies:
|
|
937
|
+
"@salesforce/kit" "^3.0.15"
|
|
938
|
+
"@salesforce/schemas" "^1.6.1"
|
|
939
|
+
"@salesforce/ts-types" "^2.0.9"
|
|
940
|
+
"@types/semver" "^7.5.4"
|
|
941
|
+
ajv "^8.12.0"
|
|
942
|
+
change-case "^4.1.2"
|
|
943
|
+
faye "^1.4.0"
|
|
944
|
+
form-data "^4.0.0"
|
|
945
|
+
js2xmlparser "^4.0.1"
|
|
946
|
+
jsforce "^2.0.0-beta.28"
|
|
947
|
+
jsonwebtoken "9.0.2"
|
|
948
|
+
jszip "3.10.1"
|
|
949
|
+
pino "^8.16.1"
|
|
950
|
+
pino-abstract-transport "^1.1.0"
|
|
951
|
+
pino-pretty "^10.2.3"
|
|
952
|
+
proper-lockfile "^4.1.2"
|
|
953
|
+
semver "^7.5.4"
|
|
954
|
+
ts-retry-promise "^0.7.1"
|
|
955
|
+
|
|
932
956
|
"@salesforce/dev-config@^4.1.0":
|
|
933
957
|
version "4.1.0"
|
|
934
958
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
|
|
935
959
|
integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
|
|
936
960
|
|
|
937
|
-
"@salesforce/dev-scripts@^
|
|
938
|
-
version "
|
|
939
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-
|
|
940
|
-
integrity sha512
|
|
961
|
+
"@salesforce/dev-scripts@^7.1.1":
|
|
962
|
+
version "7.1.1"
|
|
963
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-7.1.1.tgz#549b58fb7e8c2410ce594c46f780a0907618f19f"
|
|
964
|
+
integrity sha512-6SL+QDOMZCnmU4Lu2ZCjqsMRcHw96mnjUOPE7b2HcfmfPo2a/hAYUtv8v7UsZ/+3UPbSf+XsLJfUsF15QIUWrg==
|
|
941
965
|
dependencies:
|
|
942
966
|
"@commitlint/cli" "^17.1.2"
|
|
943
967
|
"@commitlint/config-conventional" "^17.1.0"
|
|
944
968
|
"@salesforce/dev-config" "^4.1.0"
|
|
945
969
|
"@salesforce/prettier-config" "^0.0.3"
|
|
946
|
-
"@types/chai" "^4.3.
|
|
947
|
-
"@types/mocha" "^10.0.
|
|
970
|
+
"@types/chai" "^4.3.10"
|
|
971
|
+
"@types/mocha" "^10.0.4"
|
|
948
972
|
"@types/node" "^18"
|
|
949
973
|
"@types/sinon" "^10.0.20"
|
|
950
974
|
chai "^4.3.10"
|
|
951
975
|
chalk "^4.0.0"
|
|
952
976
|
cosmiconfig "^7.0.0"
|
|
953
|
-
eslint-config-salesforce-typescript "^3.0.
|
|
977
|
+
eslint-config-salesforce-typescript "^3.0.5"
|
|
954
978
|
husky "^7.0.4"
|
|
955
979
|
mocha "^10.2.0"
|
|
956
980
|
nyc "^15.1.0"
|
|
957
981
|
prettier "^2.8.8"
|
|
958
|
-
pretty-quick "^3.1.
|
|
959
|
-
shelljs "
|
|
982
|
+
pretty-quick "^3.1.3"
|
|
983
|
+
shelljs "^0.8.5"
|
|
960
984
|
sinon "10.0.0"
|
|
961
|
-
source-map-support "
|
|
985
|
+
source-map-support "^0.5.21"
|
|
962
986
|
ts-node "^10.9.1"
|
|
963
|
-
typedoc "0.
|
|
987
|
+
typedoc "^0.25.3"
|
|
964
988
|
typedoc-plugin-missing-exports "0.23.0"
|
|
965
989
|
typescript "^4.9.5"
|
|
966
990
|
wireit "^0.14.1"
|
|
@@ -1009,15 +1033,15 @@
|
|
|
1009
1033
|
chalk "^4"
|
|
1010
1034
|
inquirer "^8.2.5"
|
|
1011
1035
|
|
|
1012
|
-
"@salesforce/sf-plugins-core@^
|
|
1013
|
-
version "
|
|
1014
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-
|
|
1015
|
-
integrity sha512-
|
|
1036
|
+
"@salesforce/sf-plugins-core@^5.0.1":
|
|
1037
|
+
version "5.0.1"
|
|
1038
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
|
|
1039
|
+
integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
|
|
1016
1040
|
dependencies:
|
|
1017
|
-
"@oclif/core" "^3.
|
|
1018
|
-
"@salesforce/core" "^
|
|
1019
|
-
"@salesforce/kit" "^3.0.
|
|
1020
|
-
"@salesforce/ts-types" "^2.0.
|
|
1041
|
+
"@oclif/core" "^3.11.0"
|
|
1042
|
+
"@salesforce/core" "^6.1.0"
|
|
1043
|
+
"@salesforce/kit" "^3.0.15"
|
|
1044
|
+
"@salesforce/ts-types" "^2.0.9"
|
|
1021
1045
|
"@types/inquirer" "^8.2.3"
|
|
1022
1046
|
chalk "^4"
|
|
1023
1047
|
inquirer "^8.2.5"
|
|
@@ -1109,7 +1133,7 @@
|
|
|
1109
1133
|
"@types/node" "*"
|
|
1110
1134
|
"@types/responselike" "^1.0.0"
|
|
1111
1135
|
|
|
1112
|
-
"@types/chai@^4.3.
|
|
1136
|
+
"@types/chai@^4.3.10":
|
|
1113
1137
|
version "4.3.10"
|
|
1114
1138
|
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.10.tgz#2ad2959d1767edee5b0e4efb1a0cd2b500747317"
|
|
1115
1139
|
integrity sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg==
|
|
@@ -1191,10 +1215,10 @@
|
|
|
1191
1215
|
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c"
|
|
1192
1216
|
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
|
|
1193
1217
|
|
|
1194
|
-
"@types/mocha@^10.0.
|
|
1195
|
-
version "10.0.
|
|
1196
|
-
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.
|
|
1197
|
-
integrity sha512-
|
|
1218
|
+
"@types/mocha@^10.0.4":
|
|
1219
|
+
version "10.0.4"
|
|
1220
|
+
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.4.tgz#b5331955ebca216604691fd4fcd2dbdc2bd559a4"
|
|
1221
|
+
integrity sha512-xKU7bUjiFTIttpWaIZ9qvgg+22O1nmbA+HRxdlR+u6TWsGfmFdXrheJoK4fFxrHNVIOBDvDNKZG+LYBpMHpX3w==
|
|
1198
1222
|
|
|
1199
1223
|
"@types/node@*", "@types/node@^18":
|
|
1200
1224
|
version "18.18.8"
|
|
@@ -1270,16 +1294,16 @@
|
|
|
1270
1294
|
"@types/expect" "^1.20.4"
|
|
1271
1295
|
"@types/node" "*"
|
|
1272
1296
|
|
|
1273
|
-
"@typescript-eslint/eslint-plugin@^6.
|
|
1274
|
-
version "6.
|
|
1275
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.
|
|
1276
|
-
integrity sha512-
|
|
1297
|
+
"@typescript-eslint/eslint-plugin@^6.10.0":
|
|
1298
|
+
version "6.11.0"
|
|
1299
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.11.0.tgz#52aae65174ff526576351f9ccd41cea01001463f"
|
|
1300
|
+
integrity sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==
|
|
1277
1301
|
dependencies:
|
|
1278
1302
|
"@eslint-community/regexpp" "^4.5.1"
|
|
1279
|
-
"@typescript-eslint/scope-manager" "6.
|
|
1280
|
-
"@typescript-eslint/type-utils" "6.
|
|
1281
|
-
"@typescript-eslint/utils" "6.
|
|
1282
|
-
"@typescript-eslint/visitor-keys" "6.
|
|
1303
|
+
"@typescript-eslint/scope-manager" "6.11.0"
|
|
1304
|
+
"@typescript-eslint/type-utils" "6.11.0"
|
|
1305
|
+
"@typescript-eslint/utils" "6.11.0"
|
|
1306
|
+
"@typescript-eslint/visitor-keys" "6.11.0"
|
|
1283
1307
|
debug "^4.3.4"
|
|
1284
1308
|
graphemer "^1.4.0"
|
|
1285
1309
|
ignore "^5.2.4"
|
|
@@ -1287,15 +1311,15 @@
|
|
|
1287
1311
|
semver "^7.5.4"
|
|
1288
1312
|
ts-api-utils "^1.0.1"
|
|
1289
1313
|
|
|
1290
|
-
"@typescript-eslint/parser@^6.
|
|
1291
|
-
version "6.
|
|
1292
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.
|
|
1293
|
-
integrity sha512
|
|
1314
|
+
"@typescript-eslint/parser@^6.10.0":
|
|
1315
|
+
version "6.11.0"
|
|
1316
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.11.0.tgz#9640d9595d905f3be4f278bf515130e6129b202e"
|
|
1317
|
+
integrity sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==
|
|
1294
1318
|
dependencies:
|
|
1295
|
-
"@typescript-eslint/scope-manager" "6.
|
|
1296
|
-
"@typescript-eslint/types" "6.
|
|
1297
|
-
"@typescript-eslint/typescript-estree" "6.
|
|
1298
|
-
"@typescript-eslint/visitor-keys" "6.
|
|
1319
|
+
"@typescript-eslint/scope-manager" "6.11.0"
|
|
1320
|
+
"@typescript-eslint/types" "6.11.0"
|
|
1321
|
+
"@typescript-eslint/typescript-estree" "6.11.0"
|
|
1322
|
+
"@typescript-eslint/visitor-keys" "6.11.0"
|
|
1299
1323
|
debug "^4.3.4"
|
|
1300
1324
|
|
|
1301
1325
|
"@typescript-eslint/scope-manager@5.62.0":
|
|
@@ -1314,21 +1338,13 @@
|
|
|
1314
1338
|
"@typescript-eslint/types" "6.11.0"
|
|
1315
1339
|
"@typescript-eslint/visitor-keys" "6.11.0"
|
|
1316
1340
|
|
|
1317
|
-
"@typescript-eslint/
|
|
1318
|
-
version "6.
|
|
1319
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/
|
|
1320
|
-
integrity sha512-
|
|
1321
|
-
dependencies:
|
|
1322
|
-
"@typescript-eslint/types" "6.9.1"
|
|
1323
|
-
"@typescript-eslint/visitor-keys" "6.9.1"
|
|
1324
|
-
|
|
1325
|
-
"@typescript-eslint/type-utils@6.9.1":
|
|
1326
|
-
version "6.9.1"
|
|
1327
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.9.1.tgz#efd5db20ed35a74d3c7d8fba51b830ecba09ce32"
|
|
1328
|
-
integrity sha512-eh2oHaUKCK58qIeYp19F5V5TbpM52680sB4zNSz29VBQPTWIlE/hCj5P5B1AChxECe/fmZlspAWFuRniep1Skg==
|
|
1341
|
+
"@typescript-eslint/type-utils@6.11.0":
|
|
1342
|
+
version "6.11.0"
|
|
1343
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.11.0.tgz#d0b8b1ab6c26b974dbf91de1ebc5b11fea24e0d1"
|
|
1344
|
+
integrity sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==
|
|
1329
1345
|
dependencies:
|
|
1330
|
-
"@typescript-eslint/typescript-estree" "6.
|
|
1331
|
-
"@typescript-eslint/utils" "6.
|
|
1346
|
+
"@typescript-eslint/typescript-estree" "6.11.0"
|
|
1347
|
+
"@typescript-eslint/utils" "6.11.0"
|
|
1332
1348
|
debug "^4.3.4"
|
|
1333
1349
|
ts-api-utils "^1.0.1"
|
|
1334
1350
|
|
|
@@ -1342,11 +1358,6 @@
|
|
|
1342
1358
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.11.0.tgz#8ad3aa000cbf4bdc4dcceed96e9b577f15e0bf53"
|
|
1343
1359
|
integrity sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==
|
|
1344
1360
|
|
|
1345
|
-
"@typescript-eslint/types@6.9.1":
|
|
1346
|
-
version "6.9.1"
|
|
1347
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.9.1.tgz#a6cfc20db0fcedcb2f397ea728ef583e0ee72459"
|
|
1348
|
-
integrity sha512-BUGslGOb14zUHOUmDB2FfT6SI1CcZEJYfF3qFwBeUrU6srJfzANonwRYHDpLBuzbq3HaoF2XL2hcr01c8f8OaQ==
|
|
1349
|
-
|
|
1350
1361
|
"@typescript-eslint/typescript-estree@5.62.0":
|
|
1351
1362
|
version "5.62.0"
|
|
1352
1363
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
|
|
@@ -1373,30 +1384,17 @@
|
|
|
1373
1384
|
semver "^7.5.4"
|
|
1374
1385
|
ts-api-utils "^1.0.1"
|
|
1375
1386
|
|
|
1376
|
-
"@typescript-eslint/typescript-
|
|
1377
|
-
version "6.
|
|
1378
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/
|
|
1379
|
-
integrity sha512-
|
|
1380
|
-
dependencies:
|
|
1381
|
-
"@typescript-eslint/types" "6.9.1"
|
|
1382
|
-
"@typescript-eslint/visitor-keys" "6.9.1"
|
|
1383
|
-
debug "^4.3.4"
|
|
1384
|
-
globby "^11.1.0"
|
|
1385
|
-
is-glob "^4.0.3"
|
|
1386
|
-
semver "^7.5.4"
|
|
1387
|
-
ts-api-utils "^1.0.1"
|
|
1388
|
-
|
|
1389
|
-
"@typescript-eslint/utils@6.9.1":
|
|
1390
|
-
version "6.9.1"
|
|
1391
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.9.1.tgz#763da41281ef0d16974517b5f0d02d85897a1c1e"
|
|
1392
|
-
integrity sha512-L1T0A5nFdQrMVunpZgzqPL6y2wVreSyHhKGZryS6jrEN7bD9NplVAyMryUhXsQ4TWLnZmxc2ekar/lSGIlprCA==
|
|
1387
|
+
"@typescript-eslint/utils@6.11.0", "@typescript-eslint/utils@^6.10.0":
|
|
1388
|
+
version "6.11.0"
|
|
1389
|
+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.11.0.tgz#11374f59ef4cea50857b1303477c08aafa2ca604"
|
|
1390
|
+
integrity sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==
|
|
1393
1391
|
dependencies:
|
|
1394
1392
|
"@eslint-community/eslint-utils" "^4.4.0"
|
|
1395
1393
|
"@types/json-schema" "^7.0.12"
|
|
1396
1394
|
"@types/semver" "^7.5.0"
|
|
1397
|
-
"@typescript-eslint/scope-manager" "6.
|
|
1398
|
-
"@typescript-eslint/types" "6.
|
|
1399
|
-
"@typescript-eslint/typescript-estree" "6.
|
|
1395
|
+
"@typescript-eslint/scope-manager" "6.11.0"
|
|
1396
|
+
"@typescript-eslint/types" "6.11.0"
|
|
1397
|
+
"@typescript-eslint/typescript-estree" "6.11.0"
|
|
1400
1398
|
semver "^7.5.4"
|
|
1401
1399
|
|
|
1402
1400
|
"@typescript-eslint/utils@^5.59.11":
|
|
@@ -1413,19 +1411,6 @@
|
|
|
1413
1411
|
eslint-scope "^5.1.1"
|
|
1414
1412
|
semver "^7.3.7"
|
|
1415
1413
|
|
|
1416
|
-
"@typescript-eslint/utils@^6.10.0":
|
|
1417
|
-
version "6.11.0"
|
|
1418
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.11.0.tgz#11374f59ef4cea50857b1303477c08aafa2ca604"
|
|
1419
|
-
integrity sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==
|
|
1420
|
-
dependencies:
|
|
1421
|
-
"@eslint-community/eslint-utils" "^4.4.0"
|
|
1422
|
-
"@types/json-schema" "^7.0.12"
|
|
1423
|
-
"@types/semver" "^7.5.0"
|
|
1424
|
-
"@typescript-eslint/scope-manager" "6.11.0"
|
|
1425
|
-
"@typescript-eslint/types" "6.11.0"
|
|
1426
|
-
"@typescript-eslint/typescript-estree" "6.11.0"
|
|
1427
|
-
semver "^7.5.4"
|
|
1428
|
-
|
|
1429
1414
|
"@typescript-eslint/visitor-keys@5.62.0":
|
|
1430
1415
|
version "5.62.0"
|
|
1431
1416
|
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
|
|
@@ -1442,14 +1427,6 @@
|
|
|
1442
1427
|
"@typescript-eslint/types" "6.11.0"
|
|
1443
1428
|
eslint-visitor-keys "^3.4.1"
|
|
1444
1429
|
|
|
1445
|
-
"@typescript-eslint/visitor-keys@6.9.1":
|
|
1446
|
-
version "6.9.1"
|
|
1447
|
-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.9.1.tgz#6753a9225a0ba00459b15d6456b9c2780b66707d"
|
|
1448
|
-
integrity sha512-MUaPUe/QRLEffARsmNfmpghuQkW436DvESW+h+M52w0coICHRfD6Np9/K6PdACwnrq1HmuLl+cSPZaJmeVPkSw==
|
|
1449
|
-
dependencies:
|
|
1450
|
-
"@typescript-eslint/types" "6.9.1"
|
|
1451
|
-
eslint-visitor-keys "^3.4.1"
|
|
1452
|
-
|
|
1453
1430
|
"@ungap/structured-clone@^1.2.0":
|
|
1454
1431
|
version "1.2.0"
|
|
1455
1432
|
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
|
|
@@ -1556,6 +1533,11 @@ ansi-regex@^5.0.1:
|
|
|
1556
1533
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
|
|
1557
1534
|
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
|
|
1558
1535
|
|
|
1536
|
+
ansi-sequence-parser@^1.1.0:
|
|
1537
|
+
version "1.1.1"
|
|
1538
|
+
resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
|
|
1539
|
+
integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
|
|
1540
|
+
|
|
1559
1541
|
ansi-styles@^3.2.1:
|
|
1560
1542
|
version "3.2.1"
|
|
1561
1543
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
@@ -2335,10 +2317,10 @@ commander@^4.0.1:
|
|
|
2335
2317
|
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
|
|
2336
2318
|
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
|
|
2337
2319
|
|
|
2338
|
-
comment-parser@1.4.
|
|
2339
|
-
version "1.4.
|
|
2340
|
-
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.
|
|
2341
|
-
integrity sha512-
|
|
2320
|
+
comment-parser@1.4.1:
|
|
2321
|
+
version "1.4.1"
|
|
2322
|
+
resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.1.tgz#bdafead37961ac079be11eb7ec65c4d021eaf9cc"
|
|
2323
|
+
integrity sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==
|
|
2342
2324
|
|
|
2343
2325
|
common-ancestor-path@^1.0.1:
|
|
2344
2326
|
version "1.0.1"
|
|
@@ -2855,20 +2837,20 @@ eslint-config-salesforce-license@^0.2.0:
|
|
|
2855
2837
|
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-license/-/eslint-config-salesforce-license-0.2.0.tgz#323193f1aa15dd33fbf108d25fc1210afc11065e"
|
|
2856
2838
|
integrity sha512-DJdBvgj82Erum82YMe+YvG/o6ukna3UA++lRl0HSTldj0VlBl3Q8hzCp97nRXZHra6JH1I912yievZzklXDw6w==
|
|
2857
2839
|
|
|
2858
|
-
eslint-config-salesforce-typescript@^3.0.
|
|
2859
|
-
version "3.0.
|
|
2860
|
-
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.0.
|
|
2861
|
-
integrity sha512-
|
|
2840
|
+
eslint-config-salesforce-typescript@^3.0.5:
|
|
2841
|
+
version "3.0.5"
|
|
2842
|
+
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.0.5.tgz#1fa7b224551255b520f19d208be5d1bb2410c2b4"
|
|
2843
|
+
integrity sha512-p+Do1i8Al1HANKubYV9WnJl9P/ChP/gvM+1tjtYiGqVjaO2Gf6V1ejM51r//uw4OoiFEldqKJK/gyMzSvRHkaw==
|
|
2862
2844
|
dependencies:
|
|
2863
|
-
"@typescript-eslint/eslint-plugin" "^6.
|
|
2864
|
-
"@typescript-eslint/parser" "^6.
|
|
2865
|
-
eslint "^8.
|
|
2845
|
+
"@typescript-eslint/eslint-plugin" "^6.10.0"
|
|
2846
|
+
"@typescript-eslint/parser" "^6.10.0"
|
|
2847
|
+
eslint "^8.53.0"
|
|
2866
2848
|
eslint-config-prettier "^9.0.0"
|
|
2867
2849
|
eslint-config-salesforce "^2.0.2"
|
|
2868
2850
|
eslint-config-salesforce-license "^0.2.0"
|
|
2869
2851
|
eslint-plugin-header "^3.1.1"
|
|
2870
2852
|
eslint-plugin-import "^2.29.0"
|
|
2871
|
-
eslint-plugin-jsdoc "^46.
|
|
2853
|
+
eslint-plugin-jsdoc "^46.9.0"
|
|
2872
2854
|
eslint-plugin-unicorn "^49.0.0"
|
|
2873
2855
|
|
|
2874
2856
|
eslint-config-salesforce@^2.0.2:
|
|
@@ -2920,14 +2902,14 @@ eslint-plugin-import@^2.29.0:
|
|
|
2920
2902
|
semver "^6.3.1"
|
|
2921
2903
|
tsconfig-paths "^3.14.2"
|
|
2922
2904
|
|
|
2923
|
-
eslint-plugin-jsdoc@^46.
|
|
2924
|
-
version "46.
|
|
2925
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.
|
|
2926
|
-
integrity sha512-
|
|
2905
|
+
eslint-plugin-jsdoc@^46.9.0:
|
|
2906
|
+
version "46.9.0"
|
|
2907
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.9.0.tgz#9887569dbeef0a008a2770bfc5d0f7fc39f21f2b"
|
|
2908
|
+
integrity sha512-UQuEtbqLNkPf5Nr/6PPRCtr9xypXY+g8y/Q7gPa0YK7eDhh0y2lWprXRnaYbW7ACgIUvpDKy9X2bZqxtGzBG9Q==
|
|
2927
2909
|
dependencies:
|
|
2928
|
-
"@es-joy/jsdoccomment" "~0.
|
|
2910
|
+
"@es-joy/jsdoccomment" "~0.41.0"
|
|
2929
2911
|
are-docs-informative "^0.0.2"
|
|
2930
|
-
comment-parser "1.4.
|
|
2912
|
+
comment-parser "1.4.1"
|
|
2931
2913
|
debug "^4.3.4"
|
|
2932
2914
|
escape-string-regexp "^4.0.0"
|
|
2933
2915
|
esquery "^1.5.0"
|
|
@@ -2993,7 +2975,7 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4
|
|
|
2993
2975
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
|
|
2994
2976
|
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
|
|
2995
2977
|
|
|
2996
|
-
eslint@^8.
|
|
2978
|
+
eslint@^8.53.0:
|
|
2997
2979
|
version "8.53.0"
|
|
2998
2980
|
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce"
|
|
2999
2981
|
integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==
|
|
@@ -4450,7 +4432,7 @@ json5@^2.2.2, json5@^2.2.3:
|
|
|
4450
4432
|
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
|
|
4451
4433
|
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
|
|
4452
4434
|
|
|
4453
|
-
jsonc-parser@^3.0.0:
|
|
4435
|
+
jsonc-parser@^3.0.0, jsonc-parser@^3.2.0:
|
|
4454
4436
|
version "3.2.0"
|
|
4455
4437
|
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
|
|
4456
4438
|
integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
|
|
@@ -4839,10 +4821,10 @@ map-obj@^4.0.0:
|
|
|
4839
4821
|
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
|
|
4840
4822
|
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
|
|
4841
4823
|
|
|
4842
|
-
marked@^4.0
|
|
4843
|
-
version "4.
|
|
4844
|
-
resolved "https://registry.yarnpkg.com/marked/-/marked-4.
|
|
4845
|
-
integrity sha512-
|
|
4824
|
+
marked@^4.3.0:
|
|
4825
|
+
version "4.3.0"
|
|
4826
|
+
resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
|
|
4827
|
+
integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==
|
|
4846
4828
|
|
|
4847
4829
|
"mem-fs-editor@^8.1.2 || ^9.0.0", mem-fs-editor@^9.0.0:
|
|
4848
4830
|
version "9.7.0"
|
|
@@ -4951,7 +4933,7 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
|
|
|
4951
4933
|
dependencies:
|
|
4952
4934
|
brace-expansion "^1.1.7"
|
|
4953
4935
|
|
|
4954
|
-
minimatch@^5.0.1
|
|
4936
|
+
minimatch@^5.0.1:
|
|
4955
4937
|
version "5.1.6"
|
|
4956
4938
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
|
|
4957
4939
|
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
|
|
@@ -5795,7 +5777,7 @@ pify@^4.0.1:
|
|
|
5795
5777
|
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
|
|
5796
5778
|
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
|
|
5797
5779
|
|
|
5798
|
-
pino-abstract-transport@^1.0.0, pino-abstract-transport@v1.1.0:
|
|
5780
|
+
pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0, pino-abstract-transport@v1.1.0:
|
|
5799
5781
|
version "1.1.0"
|
|
5800
5782
|
resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.1.0.tgz#083d98f966262164504afb989bccd05f665937a8"
|
|
5801
5783
|
integrity sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==
|
|
@@ -5828,10 +5810,10 @@ pino-std-serializers@^6.0.0:
|
|
|
5828
5810
|
resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
|
|
5829
5811
|
integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
|
|
5830
5812
|
|
|
5831
|
-
pino@^8.16.0:
|
|
5832
|
-
version "8.16.
|
|
5833
|
-
resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.
|
|
5834
|
-
integrity sha512-
|
|
5813
|
+
pino@^8.16.0, pino@^8.16.1:
|
|
5814
|
+
version "8.16.2"
|
|
5815
|
+
resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.2.tgz#7a906f2d9a8c5b4c57412c9ca95d6820bd2090cd"
|
|
5816
|
+
integrity sha512-2advCDGVEvkKu9TTVSa/kWW7Z3htI/sBKEZpqiHk6ive0i/7f5b1rsU8jn0aimxqfnSz5bj/nOYkwhBUn5xxvg==
|
|
5835
5817
|
dependencies:
|
|
5836
5818
|
atomic-sleep "^1.0.0"
|
|
5837
5819
|
fast-redact "^3.1.1"
|
|
@@ -5882,7 +5864,7 @@ pretty-bytes@^5.3.0:
|
|
|
5882
5864
|
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
|
|
5883
5865
|
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
|
|
5884
5866
|
|
|
5885
|
-
pretty-quick@^3.1.
|
|
5867
|
+
pretty-quick@^3.1.3:
|
|
5886
5868
|
version "3.1.3"
|
|
5887
5869
|
resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-3.1.3.tgz#15281108c0ddf446675157ca40240099157b638e"
|
|
5888
5870
|
integrity sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==
|
|
@@ -6450,7 +6432,7 @@ shelljs@^0.7.3:
|
|
|
6450
6432
|
interpret "^1.0.0"
|
|
6451
6433
|
rechoir "^0.6.2"
|
|
6452
6434
|
|
|
6453
|
-
shelljs@^0.8.4, shelljs@^0.8.5
|
|
6435
|
+
shelljs@^0.8.4, shelljs@^0.8.5:
|
|
6454
6436
|
version "0.8.5"
|
|
6455
6437
|
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
|
|
6456
6438
|
integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
|
|
@@ -6459,14 +6441,15 @@ shelljs@^0.8.4, shelljs@^0.8.5, shelljs@~0.8.4:
|
|
|
6459
6441
|
interpret "^1.0.0"
|
|
6460
6442
|
rechoir "^0.6.2"
|
|
6461
6443
|
|
|
6462
|
-
shiki@^0.
|
|
6463
|
-
version "0.
|
|
6464
|
-
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.
|
|
6465
|
-
integrity sha512-
|
|
6444
|
+
shiki@^0.14.1:
|
|
6445
|
+
version "0.14.5"
|
|
6446
|
+
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.5.tgz#375dd214e57eccb04f0daf35a32aa615861deb93"
|
|
6447
|
+
integrity sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==
|
|
6466
6448
|
dependencies:
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
vscode-
|
|
6449
|
+
ansi-sequence-parser "^1.1.0"
|
|
6450
|
+
jsonc-parser "^3.2.0"
|
|
6451
|
+
vscode-oniguruma "^1.7.0"
|
|
6452
|
+
vscode-textmate "^8.0.0"
|
|
6470
6453
|
|
|
6471
6454
|
shx@0.2.2:
|
|
6472
6455
|
version "0.2.2"
|
|
@@ -6570,7 +6553,7 @@ sort-keys@^4.2.0:
|
|
|
6570
6553
|
dependencies:
|
|
6571
6554
|
is-plain-obj "^2.0.0"
|
|
6572
6555
|
|
|
6573
|
-
source-map-support
|
|
6556
|
+
source-map-support@^0.5.21:
|
|
6574
6557
|
version "0.5.21"
|
|
6575
6558
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
|
|
6576
6559
|
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
|
|
@@ -7065,15 +7048,15 @@ typedoc-plugin-missing-exports@0.23.0:
|
|
|
7065
7048
|
resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-0.23.0.tgz#076df6ffce4d84e8097be009b7c62a17d58477a5"
|
|
7066
7049
|
integrity sha512-9smahDSsFRno9ZwoEshQDuIYMHWGB1E6LUud5qMxR2wNZ0T4DlZz0QjoK3HzXtX34mUpTH0dYtt7NQUK4D6B6Q==
|
|
7067
7050
|
|
|
7068
|
-
typedoc
|
|
7069
|
-
version "0.
|
|
7070
|
-
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.
|
|
7071
|
-
integrity sha512-
|
|
7051
|
+
typedoc@^0.25.3:
|
|
7052
|
+
version "0.25.3"
|
|
7053
|
+
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.3.tgz#53c6d668e1001b3d488e9a750fcdfb05433554c0"
|
|
7054
|
+
integrity sha512-Ow8Bo7uY1Lwy7GTmphRIMEo6IOZ+yYUyrc8n5KXIZg1svpqhZSWgni2ZrDhe+wLosFS8yswowUzljTAV/3jmWw==
|
|
7072
7055
|
dependencies:
|
|
7073
7056
|
lunr "^2.3.9"
|
|
7074
|
-
marked "^4.0
|
|
7075
|
-
minimatch "^
|
|
7076
|
-
shiki "^0.
|
|
7057
|
+
marked "^4.3.0"
|
|
7058
|
+
minimatch "^9.0.3"
|
|
7059
|
+
shiki "^0.14.1"
|
|
7077
7060
|
|
|
7078
7061
|
"typescript@^4.6.4 || ^5.0.0", typescript@^5.2.2, typescript@~5.2.2:
|
|
7079
7062
|
version "5.2.2"
|
|
@@ -7272,15 +7255,15 @@ vinyl@^2.0.1:
|
|
|
7272
7255
|
remove-trailing-separator "^1.0.1"
|
|
7273
7256
|
replace-ext "^1.0.0"
|
|
7274
7257
|
|
|
7275
|
-
vscode-oniguruma@^1.
|
|
7258
|
+
vscode-oniguruma@^1.7.0:
|
|
7276
7259
|
version "1.7.0"
|
|
7277
7260
|
resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
|
|
7278
7261
|
integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
|
|
7279
7262
|
|
|
7280
|
-
vscode-textmate@^
|
|
7281
|
-
version "
|
|
7282
|
-
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-
|
|
7283
|
-
integrity sha512-
|
|
7263
|
+
vscode-textmate@^8.0.0:
|
|
7264
|
+
version "8.0.0"
|
|
7265
|
+
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
|
|
7266
|
+
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
|
|
7284
7267
|
|
|
7285
7268
|
walk-up-path@^1.0.0:
|
|
7286
7269
|
version "1.0.0"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
3
|
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.3",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Carolyn Grabill",
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
"bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@oclif/core": "^3.11.0",
|
|
46
|
-
"@salesforce/core": "^
|
|
47
|
-
"@salesforce/sf-plugins-core": "^
|
|
46
|
+
"@salesforce/core": "^6.1.3",
|
|
47
|
+
"@salesforce/sf-plugins-core": "^5.0.1",
|
|
48
48
|
"csv-parse": "^5.5.2",
|
|
49
49
|
"fast-xml-parser": "^4.3.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@oclif/plugin-command-snapshot": "^5.0.2",
|
|
53
53
|
"@salesforce/cli-plugins-testkit": "^5.0.4",
|
|
54
|
-
"@salesforce/dev-scripts": "^
|
|
54
|
+
"@salesforce/dev-scripts": "^7.1.1",
|
|
55
55
|
"@salesforce/plugin-command-reference": "^3.0.46",
|
|
56
56
|
"eslint-plugin-sf-plugin": "^1.16.15",
|
|
57
57
|
"jsforce": "^2.0.0-beta.28",
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
"type": "module",
|
|
233
233
|
"author": "Salesforce",
|
|
234
234
|
"sfdx": {
|
|
235
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.0.
|
|
236
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.0.
|
|
235
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.0.3.crt",
|
|
236
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.0.3.sig"
|
|
237
237
|
}
|
|
238
238
|
}
|