@salesforce/cli 2.35.1 → 2.35.2
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 +188 -149
- package/dist/hooks/preparse.js +81 -0
- package/npm-shrinkwrap.json +319 -47
- package/oclif.manifest.json +1 -1
- package/package.json +11 -9
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const hook = async function ({ argv, options, context }) {
|
|
2
|
+
// Skip this hook if command does not have a --flags-dir flag or if it is not present in argv
|
|
3
|
+
if (!argv.includes('--flags-dir') || !options.flags?.['flags-dir'])
|
|
4
|
+
return argv;
|
|
5
|
+
const flagsDir = argv[argv.indexOf('--flags-dir') + 1];
|
|
6
|
+
if (!flagsDir) {
|
|
7
|
+
context.debug('No flags dir provided');
|
|
8
|
+
return argv;
|
|
9
|
+
}
|
|
10
|
+
if (flagsDir.startsWith('-')) {
|
|
11
|
+
context.debug(`No flags dir provided, got ${flagsDir}`);
|
|
12
|
+
return argv;
|
|
13
|
+
}
|
|
14
|
+
const { default: fs } = await import('node:fs/promises');
|
|
15
|
+
const { default: path } = await import('node:path');
|
|
16
|
+
context.debug('Initial argv', argv.join(' '));
|
|
17
|
+
const flagsToIgnore = new Set(Object.entries(options.flags ?? {})
|
|
18
|
+
.filter(([, flagOptions]) =>
|
|
19
|
+
// don't ignore if flag can take multiple values
|
|
20
|
+
(flagOptions.type === 'option' && flagOptions.multiple !== true) || flagOptions.type === 'boolean')
|
|
21
|
+
.filter(([flagName, flagOptions]) =>
|
|
22
|
+
// ignore if short char flag is present
|
|
23
|
+
argv.includes(`-${flagOptions.char}`) ||
|
|
24
|
+
// ignore if long flag is present
|
|
25
|
+
argv.includes(`--${flagName}`) ||
|
|
26
|
+
// ignore if --no- flag is present
|
|
27
|
+
(flagOptions.type === 'boolean' && flagOptions.allowNo && argv.includes(`--no-${flagName}`)))
|
|
28
|
+
.flatMap(([flagName, flagOptions]) => {
|
|
29
|
+
// Also ignore the --no- flag if boolean flag allows it
|
|
30
|
+
if (flagOptions.type === 'boolean' && flagOptions.allowNo) {
|
|
31
|
+
return [flagName, `no-${flagName}`];
|
|
32
|
+
}
|
|
33
|
+
return [flagName];
|
|
34
|
+
}));
|
|
35
|
+
context.debug('Flags to ignore', flagsToIgnore);
|
|
36
|
+
async function safeReadDir(filePath) {
|
|
37
|
+
try {
|
|
38
|
+
return await fs.readdir(filePath);
|
|
39
|
+
}
|
|
40
|
+
catch (err) {
|
|
41
|
+
context.debug('No flags dir found');
|
|
42
|
+
context.debug(err);
|
|
43
|
+
return [];
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
async function safeReadFile(filePath) {
|
|
47
|
+
try {
|
|
48
|
+
return await fs.readFile(filePath, 'utf8');
|
|
49
|
+
}
|
|
50
|
+
catch (err) {
|
|
51
|
+
context.debug(filePath, err);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
const filesInDir = await safeReadDir(flagsDir);
|
|
55
|
+
context.debug('Files in dir', filesInDir);
|
|
56
|
+
const flagsToInsert = await Promise.all(filesInDir
|
|
57
|
+
// ignore files that were provided as flags
|
|
58
|
+
.filter((f) => !flagsToIgnore.has(f))
|
|
59
|
+
.map(async (file) => {
|
|
60
|
+
const { name, ext } = path.parse(file);
|
|
61
|
+
const contents = await safeReadFile(path.join(flagsDir, file));
|
|
62
|
+
if (contents === undefined) {
|
|
63
|
+
return [name, undefined];
|
|
64
|
+
}
|
|
65
|
+
const values = ext === '.json' ? [JSON.stringify(JSON.parse(contents))] : contents?.trim().split('\n');
|
|
66
|
+
return [name, values];
|
|
67
|
+
}));
|
|
68
|
+
const newArgv = [...argv];
|
|
69
|
+
context.debug('Flags to insert', flagsToInsert);
|
|
70
|
+
for (const [flag, values] of flagsToInsert) {
|
|
71
|
+
for (const value of values ?? []) {
|
|
72
|
+
newArgv.push(flag.length === 1 ? `-${flag}` : `--${flag}`);
|
|
73
|
+
if (value)
|
|
74
|
+
newArgv.push(value);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
context.debug(`Returning argv: ${newArgv.join(' ')}`);
|
|
78
|
+
return newArgv;
|
|
79
|
+
};
|
|
80
|
+
export default hook;
|
|
81
|
+
//# sourceMappingURL=preparse.js.map
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.35.
|
|
9
|
+
"version": "2.35.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@inquirer/select": "^1.3.1",
|
|
14
|
-
"@oclif/core": "3.
|
|
14
|
+
"@oclif/core": "3.26.0",
|
|
15
15
|
"@oclif/plugin-autocomplete": "3.0.13",
|
|
16
16
|
"@oclif/plugin-commands": "3.2.0",
|
|
17
17
|
"@oclif/plugin-help": "6.0.18",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.1.5",
|
|
25
25
|
"@salesforce/core": "^6.1.4",
|
|
26
26
|
"@salesforce/plugin-apex": "3.0.31",
|
|
27
|
-
"@salesforce/plugin-auth": "3.3.
|
|
28
|
-
"@salesforce/plugin-data": "3.2.
|
|
29
|
-
"@salesforce/plugin-deploy-retrieve": "3.
|
|
27
|
+
"@salesforce/plugin-auth": "3.3.27",
|
|
28
|
+
"@salesforce/plugin-data": "3.2.1",
|
|
29
|
+
"@salesforce/plugin-deploy-retrieve": "3.3.0",
|
|
30
30
|
"@salesforce/plugin-info": "3.0.33",
|
|
31
31
|
"@salesforce/plugin-limits": "3.1.14",
|
|
32
32
|
"@salesforce/plugin-marketplace": "1.0.29",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@salesforce/plugin-templates": "56.0.24",
|
|
41
41
|
"@salesforce/plugin-trust": "3.3.17",
|
|
42
42
|
"@salesforce/plugin-user": "3.3.4",
|
|
43
|
-
"@salesforce/sf-plugins-core": "
|
|
43
|
+
"@salesforce/sf-plugins-core": "8.0.0",
|
|
44
44
|
"chalk": "^5.3.0",
|
|
45
45
|
"debug": "^4.3.4",
|
|
46
46
|
"strip-ansi": "^7.1.0"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"@salesforce/dev-scripts": "^8.1.0",
|
|
55
55
|
"@salesforce/plugin-release-management": "^4.7.7",
|
|
56
56
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
57
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
57
58
|
"@types/debug": "^4.1.12",
|
|
58
59
|
"aws-sdk": "^2.1580.0",
|
|
59
60
|
"oclif": "^4.5.7",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"typescript": "^5"
|
|
62
63
|
},
|
|
63
64
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
65
|
+
"node": ">=18.0.0"
|
|
65
66
|
}
|
|
66
67
|
},
|
|
67
68
|
"node_modules/@aashutoshrathi/word-wrap": {
|
|
@@ -3310,9 +3311,9 @@
|
|
|
3310
3311
|
}
|
|
3311
3312
|
},
|
|
3312
3313
|
"node_modules/@oclif/core": {
|
|
3313
|
-
"version": "3.
|
|
3314
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
3315
|
-
"integrity": "sha512-
|
|
3314
|
+
"version": "3.26.0",
|
|
3315
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.0.tgz",
|
|
3316
|
+
"integrity": "sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==",
|
|
3316
3317
|
"license": "MIT",
|
|
3317
3318
|
"dependencies": {
|
|
3318
3319
|
"@types/cli-progress": "^3.11.5",
|
|
@@ -7336,9 +7337,9 @@
|
|
|
7336
7337
|
}
|
|
7337
7338
|
},
|
|
7338
7339
|
"node_modules/@salesforce/core": {
|
|
7339
|
-
"version": "6.7.
|
|
7340
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.
|
|
7341
|
-
"integrity": "sha512-
|
|
7340
|
+
"version": "6.7.3",
|
|
7341
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.3.tgz",
|
|
7342
|
+
"integrity": "sha512-uU+PuZZGXxByhvnXLH1V3eY5P1caw401dIZ/QvhzYxoP/alPLk7dpChnZNJYH5Rw3dc/AhSPw+eg0cvUyjhP1Q==",
|
|
7342
7343
|
"license": "BSD-3-Clause",
|
|
7343
7344
|
"dependencies": {
|
|
7344
7345
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -7561,6 +7562,24 @@
|
|
|
7561
7562
|
"node": ">=18.0.0"
|
|
7562
7563
|
}
|
|
7563
7564
|
},
|
|
7565
|
+
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/sf-plugins-core": {
|
|
7566
|
+
"version": "7.1.16",
|
|
7567
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7568
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7569
|
+
"license": "BSD-3-Clause",
|
|
7570
|
+
"dependencies": {
|
|
7571
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7572
|
+
"@inquirer/password": "^1.1.16",
|
|
7573
|
+
"@oclif/core": "^3.23.0",
|
|
7574
|
+
"@salesforce/core": "^6.6.0",
|
|
7575
|
+
"@salesforce/kit": "^3.0.15",
|
|
7576
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7577
|
+
"chalk": "^5.3.0"
|
|
7578
|
+
},
|
|
7579
|
+
"engines": {
|
|
7580
|
+
"node": ">=18.0.0"
|
|
7581
|
+
}
|
|
7582
|
+
},
|
|
7564
7583
|
"node_modules/@salesforce/plugin-apex/node_modules/color-name": {
|
|
7565
7584
|
"version": "2.0.0",
|
|
7566
7585
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.0.tgz",
|
|
@@ -7571,15 +7590,15 @@
|
|
|
7571
7590
|
}
|
|
7572
7591
|
},
|
|
7573
7592
|
"node_modules/@salesforce/plugin-auth": {
|
|
7574
|
-
"version": "3.3.
|
|
7575
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.3.
|
|
7576
|
-
"integrity": "sha512-
|
|
7593
|
+
"version": "3.3.27",
|
|
7594
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.3.27.tgz",
|
|
7595
|
+
"integrity": "sha512-wmeeBNvuaopneVy2t63T5IbRLq2BYdmMA+RtRCorH6+nLfXDF7i3IcTkfeQAKv+LrNmj1NJXM4qfuOFfLCz1Zw==",
|
|
7577
7596
|
"license": "BSD-3-Clause",
|
|
7578
7597
|
"dependencies": {
|
|
7579
7598
|
"@inquirer/checkbox": "^1.5.2",
|
|
7580
7599
|
"@inquirer/select": "^1.3.3",
|
|
7581
7600
|
"@oclif/core": "^3.25.2",
|
|
7582
|
-
"@salesforce/core": "^6.7.
|
|
7601
|
+
"@salesforce/core": "^6.7.3",
|
|
7583
7602
|
"@salesforce/kit": "^3.0.15",
|
|
7584
7603
|
"@salesforce/sf-plugins-core": "^7.1.15",
|
|
7585
7604
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -7590,6 +7609,24 @@
|
|
|
7590
7609
|
"node": ">=18.0.0"
|
|
7591
7610
|
}
|
|
7592
7611
|
},
|
|
7612
|
+
"node_modules/@salesforce/plugin-auth/node_modules/@salesforce/sf-plugins-core": {
|
|
7613
|
+
"version": "7.1.16",
|
|
7614
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7615
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7616
|
+
"license": "BSD-3-Clause",
|
|
7617
|
+
"dependencies": {
|
|
7618
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7619
|
+
"@inquirer/password": "^1.1.16",
|
|
7620
|
+
"@oclif/core": "^3.23.0",
|
|
7621
|
+
"@salesforce/core": "^6.6.0",
|
|
7622
|
+
"@salesforce/kit": "^3.0.15",
|
|
7623
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7624
|
+
"chalk": "^5.3.0"
|
|
7625
|
+
},
|
|
7626
|
+
"engines": {
|
|
7627
|
+
"node": ">=18.0.0"
|
|
7628
|
+
}
|
|
7629
|
+
},
|
|
7593
7630
|
"node_modules/@salesforce/plugin-command-reference": {
|
|
7594
7631
|
"version": "3.0.69",
|
|
7595
7632
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.69.tgz",
|
|
@@ -7647,16 +7684,16 @@
|
|
|
7647
7684
|
}
|
|
7648
7685
|
},
|
|
7649
7686
|
"node_modules/@salesforce/plugin-data": {
|
|
7650
|
-
"version": "3.2.
|
|
7651
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.2.
|
|
7652
|
-
"integrity": "sha512-
|
|
7687
|
+
"version": "3.2.1",
|
|
7688
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.2.1.tgz",
|
|
7689
|
+
"integrity": "sha512-ypzRiMt14iob3kNlk6EDjYnHz68LosPaNjqv3sVD2dTi40dUl3vBuiqf5InO5sGX9aI+JfI42LvvC9+69mfdbw==",
|
|
7653
7690
|
"license": "BSD-3-Clause",
|
|
7654
7691
|
"dependencies": {
|
|
7655
7692
|
"@jsforce/jsforce-node": "^3.0.0-next.2",
|
|
7656
|
-
"@oclif/core": "^3.
|
|
7693
|
+
"@oclif/core": "^3.26.0",
|
|
7657
7694
|
"@salesforce/core": "^6.7.1",
|
|
7658
7695
|
"@salesforce/kit": "^3.0.15",
|
|
7659
|
-
"@salesforce/sf-plugins-core": "^
|
|
7696
|
+
"@salesforce/sf-plugins-core": "^8.0.0",
|
|
7660
7697
|
"@salesforce/ts-types": "^2.0.9",
|
|
7661
7698
|
"chalk": "^5.3.0",
|
|
7662
7699
|
"change-case": "^5.4.3",
|
|
@@ -7674,18 +7711,18 @@
|
|
|
7674
7711
|
"license": "MIT"
|
|
7675
7712
|
},
|
|
7676
7713
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
7677
|
-
"version": "3.
|
|
7678
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.
|
|
7679
|
-
"integrity": "sha512-
|
|
7714
|
+
"version": "3.3.0",
|
|
7715
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.3.0.tgz",
|
|
7716
|
+
"integrity": "sha512-b8TJvbA7YI7Csn4Hg1LlpkOEcIT8zGUZfnDfoENvDS8UnTNvdzuQCbkL6IegNE5ejMiRhMjPDVlK7pq93VXYGA==",
|
|
7680
7717
|
"license": "BSD-3-Clause",
|
|
7681
7718
|
"dependencies": {
|
|
7682
|
-
"@oclif/core": "^3.
|
|
7719
|
+
"@oclif/core": "^3.26.0",
|
|
7683
7720
|
"@salesforce/apex-node": "^3.1.0",
|
|
7684
|
-
"@salesforce/core": "^6.7.
|
|
7721
|
+
"@salesforce/core": "^6.7.3",
|
|
7685
7722
|
"@salesforce/kit": "^3.0.15",
|
|
7686
7723
|
"@salesforce/plugin-info": "^3.0.28",
|
|
7687
|
-
"@salesforce/sf-plugins-core": "^
|
|
7688
|
-
"@salesforce/source-deploy-retrieve": "^10.5.
|
|
7724
|
+
"@salesforce/sf-plugins-core": "^8.0.0",
|
|
7725
|
+
"@salesforce/source-deploy-retrieve": "^10.5.5",
|
|
7689
7726
|
"@salesforce/source-tracking": "^5.1.18",
|
|
7690
7727
|
"@salesforce/ts-types": "^2.0.9",
|
|
7691
7728
|
"chalk": "^5.3.0"
|
|
@@ -7741,6 +7778,22 @@
|
|
|
7741
7778
|
"node": ">=18"
|
|
7742
7779
|
}
|
|
7743
7780
|
},
|
|
7781
|
+
"node_modules/@salesforce/plugin-info/node_modules/@inquirer/core/node_modules/chalk": {
|
|
7782
|
+
"version": "4.1.2",
|
|
7783
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
7784
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
7785
|
+
"license": "MIT",
|
|
7786
|
+
"dependencies": {
|
|
7787
|
+
"ansi-styles": "^4.1.0",
|
|
7788
|
+
"supports-color": "^7.1.0"
|
|
7789
|
+
},
|
|
7790
|
+
"engines": {
|
|
7791
|
+
"node": ">=10"
|
|
7792
|
+
},
|
|
7793
|
+
"funding": {
|
|
7794
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
7795
|
+
}
|
|
7796
|
+
},
|
|
7744
7797
|
"node_modules/@salesforce/plugin-info/node_modules/@inquirer/input": {
|
|
7745
7798
|
"version": "2.1.0",
|
|
7746
7799
|
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.0.tgz",
|
|
@@ -7754,20 +7807,22 @@
|
|
|
7754
7807
|
"node": ">=18"
|
|
7755
7808
|
}
|
|
7756
7809
|
},
|
|
7757
|
-
"node_modules/@salesforce/plugin-info/node_modules/
|
|
7758
|
-
"version": "
|
|
7759
|
-
"resolved": "https://registry.npmjs.org/
|
|
7760
|
-
"integrity": "sha512-
|
|
7761
|
-
"license": "
|
|
7810
|
+
"node_modules/@salesforce/plugin-info/node_modules/@salesforce/sf-plugins-core": {
|
|
7811
|
+
"version": "7.1.16",
|
|
7812
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7813
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7814
|
+
"license": "BSD-3-Clause",
|
|
7762
7815
|
"dependencies": {
|
|
7763
|
-
"
|
|
7764
|
-
"
|
|
7816
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7817
|
+
"@inquirer/password": "^1.1.16",
|
|
7818
|
+
"@oclif/core": "^3.23.0",
|
|
7819
|
+
"@salesforce/core": "^6.6.0",
|
|
7820
|
+
"@salesforce/kit": "^3.0.15",
|
|
7821
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7822
|
+
"chalk": "^5.3.0"
|
|
7765
7823
|
},
|
|
7766
7824
|
"engines": {
|
|
7767
|
-
"node": ">=
|
|
7768
|
-
},
|
|
7769
|
-
"funding": {
|
|
7770
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
7825
|
+
"node": ">=18.0.0"
|
|
7771
7826
|
}
|
|
7772
7827
|
},
|
|
7773
7828
|
"node_modules/@salesforce/plugin-info/node_modules/signal-exit": {
|
|
@@ -7809,6 +7864,24 @@
|
|
|
7809
7864
|
"node": ">=18.0.0"
|
|
7810
7865
|
}
|
|
7811
7866
|
},
|
|
7867
|
+
"node_modules/@salesforce/plugin-limits/node_modules/@salesforce/sf-plugins-core": {
|
|
7868
|
+
"version": "7.1.16",
|
|
7869
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7870
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7871
|
+
"license": "BSD-3-Clause",
|
|
7872
|
+
"dependencies": {
|
|
7873
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7874
|
+
"@inquirer/password": "^1.1.16",
|
|
7875
|
+
"@oclif/core": "^3.23.0",
|
|
7876
|
+
"@salesforce/core": "^6.6.0",
|
|
7877
|
+
"@salesforce/kit": "^3.0.15",
|
|
7878
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7879
|
+
"chalk": "^5.3.0"
|
|
7880
|
+
},
|
|
7881
|
+
"engines": {
|
|
7882
|
+
"node": ">=18.0.0"
|
|
7883
|
+
}
|
|
7884
|
+
},
|
|
7812
7885
|
"node_modules/@salesforce/plugin-marketplace": {
|
|
7813
7886
|
"version": "1.0.29",
|
|
7814
7887
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.0.29.tgz",
|
|
@@ -7826,6 +7899,24 @@
|
|
|
7826
7899
|
"node": ">=18.0.0"
|
|
7827
7900
|
}
|
|
7828
7901
|
},
|
|
7902
|
+
"node_modules/@salesforce/plugin-marketplace/node_modules/@salesforce/sf-plugins-core": {
|
|
7903
|
+
"version": "7.1.16",
|
|
7904
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7905
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7906
|
+
"license": "BSD-3-Clause",
|
|
7907
|
+
"dependencies": {
|
|
7908
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7909
|
+
"@inquirer/password": "^1.1.16",
|
|
7910
|
+
"@oclif/core": "^3.23.0",
|
|
7911
|
+
"@salesforce/core": "^6.6.0",
|
|
7912
|
+
"@salesforce/kit": "^3.0.15",
|
|
7913
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7914
|
+
"chalk": "^5.3.0"
|
|
7915
|
+
},
|
|
7916
|
+
"engines": {
|
|
7917
|
+
"node": ">=18.0.0"
|
|
7918
|
+
}
|
|
7919
|
+
},
|
|
7829
7920
|
"node_modules/@salesforce/plugin-org": {
|
|
7830
7921
|
"version": "3.5.0",
|
|
7831
7922
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.5.0.tgz",
|
|
@@ -7846,6 +7937,24 @@
|
|
|
7846
7937
|
"node": ">=18.0.0"
|
|
7847
7938
|
}
|
|
7848
7939
|
},
|
|
7940
|
+
"node_modules/@salesforce/plugin-org/node_modules/@salesforce/sf-plugins-core": {
|
|
7941
|
+
"version": "7.1.16",
|
|
7942
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7943
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
7944
|
+
"license": "BSD-3-Clause",
|
|
7945
|
+
"dependencies": {
|
|
7946
|
+
"@inquirer/confirm": "^2.0.17",
|
|
7947
|
+
"@inquirer/password": "^1.1.16",
|
|
7948
|
+
"@oclif/core": "^3.23.0",
|
|
7949
|
+
"@salesforce/core": "^6.6.0",
|
|
7950
|
+
"@salesforce/kit": "^3.0.15",
|
|
7951
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
7952
|
+
"chalk": "^5.3.0"
|
|
7953
|
+
},
|
|
7954
|
+
"engines": {
|
|
7955
|
+
"node": ">=18.0.0"
|
|
7956
|
+
}
|
|
7957
|
+
},
|
|
7849
7958
|
"node_modules/@salesforce/plugin-org/node_modules/change-case": {
|
|
7850
7959
|
"version": "5.4.3",
|
|
7851
7960
|
"resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.3.tgz",
|
|
@@ -7884,6 +7993,24 @@
|
|
|
7884
7993
|
"node": ">=18.0.0"
|
|
7885
7994
|
}
|
|
7886
7995
|
},
|
|
7996
|
+
"node_modules/@salesforce/plugin-packaging/node_modules/@salesforce/sf-plugins-core": {
|
|
7997
|
+
"version": "7.1.16",
|
|
7998
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
7999
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8000
|
+
"license": "BSD-3-Clause",
|
|
8001
|
+
"dependencies": {
|
|
8002
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8003
|
+
"@inquirer/password": "^1.1.16",
|
|
8004
|
+
"@oclif/core": "^3.23.0",
|
|
8005
|
+
"@salesforce/core": "^6.6.0",
|
|
8006
|
+
"@salesforce/kit": "^3.0.15",
|
|
8007
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8008
|
+
"chalk": "^5.3.0"
|
|
8009
|
+
},
|
|
8010
|
+
"engines": {
|
|
8011
|
+
"node": ">=18.0.0"
|
|
8012
|
+
}
|
|
8013
|
+
},
|
|
7887
8014
|
"node_modules/@salesforce/plugin-release-management": {
|
|
7888
8015
|
"version": "4.7.20",
|
|
7889
8016
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-release-management/-/plugin-release-management-4.7.20.tgz",
|
|
@@ -8064,6 +8191,25 @@
|
|
|
8064
8191
|
"@octokit/openapi-types": "^18.0.0"
|
|
8065
8192
|
}
|
|
8066
8193
|
},
|
|
8194
|
+
"node_modules/@salesforce/plugin-release-management/node_modules/@salesforce/sf-plugins-core": {
|
|
8195
|
+
"version": "7.1.16",
|
|
8196
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8197
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8198
|
+
"dev": true,
|
|
8199
|
+
"license": "BSD-3-Clause",
|
|
8200
|
+
"dependencies": {
|
|
8201
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8202
|
+
"@inquirer/password": "^1.1.16",
|
|
8203
|
+
"@oclif/core": "^3.23.0",
|
|
8204
|
+
"@salesforce/core": "^6.6.0",
|
|
8205
|
+
"@salesforce/kit": "^3.0.15",
|
|
8206
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8207
|
+
"chalk": "^5.3.0"
|
|
8208
|
+
},
|
|
8209
|
+
"engines": {
|
|
8210
|
+
"node": ">=18.0.0"
|
|
8211
|
+
}
|
|
8212
|
+
},
|
|
8067
8213
|
"node_modules/@salesforce/plugin-release-management/node_modules/strip-ansi": {
|
|
8068
8214
|
"version": "6.0.1",
|
|
8069
8215
|
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
@@ -8140,6 +8286,24 @@
|
|
|
8140
8286
|
"node": ">=18.0.0"
|
|
8141
8287
|
}
|
|
8142
8288
|
},
|
|
8289
|
+
"node_modules/@salesforce/plugin-settings/node_modules/@salesforce/sf-plugins-core": {
|
|
8290
|
+
"version": "7.1.16",
|
|
8291
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8292
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8293
|
+
"license": "BSD-3-Clause",
|
|
8294
|
+
"dependencies": {
|
|
8295
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8296
|
+
"@inquirer/password": "^1.1.16",
|
|
8297
|
+
"@oclif/core": "^3.23.0",
|
|
8298
|
+
"@salesforce/core": "^6.6.0",
|
|
8299
|
+
"@salesforce/kit": "^3.0.15",
|
|
8300
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8301
|
+
"chalk": "^5.3.0"
|
|
8302
|
+
},
|
|
8303
|
+
"engines": {
|
|
8304
|
+
"node": ">=18.0.0"
|
|
8305
|
+
}
|
|
8306
|
+
},
|
|
8143
8307
|
"node_modules/@salesforce/plugin-sobject": {
|
|
8144
8308
|
"version": "1.1.20",
|
|
8145
8309
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.1.20.tgz",
|
|
@@ -8161,6 +8325,24 @@
|
|
|
8161
8325
|
"node": ">=18.0.0"
|
|
8162
8326
|
}
|
|
8163
8327
|
},
|
|
8328
|
+
"node_modules/@salesforce/plugin-sobject/node_modules/@salesforce/sf-plugins-core": {
|
|
8329
|
+
"version": "7.1.16",
|
|
8330
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8331
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8332
|
+
"license": "BSD-3-Clause",
|
|
8333
|
+
"dependencies": {
|
|
8334
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8335
|
+
"@inquirer/password": "^1.1.16",
|
|
8336
|
+
"@oclif/core": "^3.23.0",
|
|
8337
|
+
"@salesforce/core": "^6.6.0",
|
|
8338
|
+
"@salesforce/kit": "^3.0.15",
|
|
8339
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8340
|
+
"chalk": "^5.3.0"
|
|
8341
|
+
},
|
|
8342
|
+
"engines": {
|
|
8343
|
+
"node": ">=18.0.0"
|
|
8344
|
+
}
|
|
8345
|
+
},
|
|
8164
8346
|
"node_modules/@salesforce/plugin-source": {
|
|
8165
8347
|
"version": "3.1.22",
|
|
8166
8348
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-source/-/plugin-source-3.1.22.tgz",
|
|
@@ -8182,6 +8364,24 @@
|
|
|
8182
8364
|
"node": ">=18.0.0"
|
|
8183
8365
|
}
|
|
8184
8366
|
},
|
|
8367
|
+
"node_modules/@salesforce/plugin-source/node_modules/@salesforce/sf-plugins-core": {
|
|
8368
|
+
"version": "7.1.16",
|
|
8369
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8370
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8371
|
+
"license": "BSD-3-Clause",
|
|
8372
|
+
"dependencies": {
|
|
8373
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8374
|
+
"@inquirer/password": "^1.1.16",
|
|
8375
|
+
"@oclif/core": "^3.23.0",
|
|
8376
|
+
"@salesforce/core": "^6.6.0",
|
|
8377
|
+
"@salesforce/kit": "^3.0.15",
|
|
8378
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8379
|
+
"chalk": "^5.3.0"
|
|
8380
|
+
},
|
|
8381
|
+
"engines": {
|
|
8382
|
+
"node": ">=18.0.0"
|
|
8383
|
+
}
|
|
8384
|
+
},
|
|
8185
8385
|
"node_modules/@salesforce/plugin-telemetry": {
|
|
8186
8386
|
"version": "3.1.17",
|
|
8187
8387
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.1.17.tgz",
|
|
@@ -8198,6 +8398,24 @@
|
|
|
8198
8398
|
"node": ">=18.0.0"
|
|
8199
8399
|
}
|
|
8200
8400
|
},
|
|
8401
|
+
"node_modules/@salesforce/plugin-telemetry/node_modules/@salesforce/sf-plugins-core": {
|
|
8402
|
+
"version": "7.1.16",
|
|
8403
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8404
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8405
|
+
"license": "BSD-3-Clause",
|
|
8406
|
+
"dependencies": {
|
|
8407
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8408
|
+
"@inquirer/password": "^1.1.16",
|
|
8409
|
+
"@oclif/core": "^3.23.0",
|
|
8410
|
+
"@salesforce/core": "^6.6.0",
|
|
8411
|
+
"@salesforce/kit": "^3.0.15",
|
|
8412
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8413
|
+
"chalk": "^5.3.0"
|
|
8414
|
+
},
|
|
8415
|
+
"engines": {
|
|
8416
|
+
"node": ">=18.0.0"
|
|
8417
|
+
}
|
|
8418
|
+
},
|
|
8201
8419
|
"node_modules/@salesforce/plugin-templates": {
|
|
8202
8420
|
"version": "56.0.24",
|
|
8203
8421
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.0.24.tgz",
|
|
@@ -8215,6 +8433,24 @@
|
|
|
8215
8433
|
"node": ">=18.0.0"
|
|
8216
8434
|
}
|
|
8217
8435
|
},
|
|
8436
|
+
"node_modules/@salesforce/plugin-templates/node_modules/@salesforce/sf-plugins-core": {
|
|
8437
|
+
"version": "7.1.16",
|
|
8438
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8439
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8440
|
+
"license": "BSD-3-Clause",
|
|
8441
|
+
"dependencies": {
|
|
8442
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8443
|
+
"@inquirer/password": "^1.1.16",
|
|
8444
|
+
"@oclif/core": "^3.23.0",
|
|
8445
|
+
"@salesforce/core": "^6.6.0",
|
|
8446
|
+
"@salesforce/kit": "^3.0.15",
|
|
8447
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8448
|
+
"chalk": "^5.3.0"
|
|
8449
|
+
},
|
|
8450
|
+
"engines": {
|
|
8451
|
+
"node": ">=18.0.0"
|
|
8452
|
+
}
|
|
8453
|
+
},
|
|
8218
8454
|
"node_modules/@salesforce/plugin-trust": {
|
|
8219
8455
|
"version": "3.3.17",
|
|
8220
8456
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.3.17.tgz",
|
|
@@ -8238,6 +8474,24 @@
|
|
|
8238
8474
|
"node": ">=18.0.0"
|
|
8239
8475
|
}
|
|
8240
8476
|
},
|
|
8477
|
+
"node_modules/@salesforce/plugin-trust/node_modules/@salesforce/sf-plugins-core": {
|
|
8478
|
+
"version": "7.1.16",
|
|
8479
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8480
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8481
|
+
"license": "BSD-3-Clause",
|
|
8482
|
+
"dependencies": {
|
|
8483
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8484
|
+
"@inquirer/password": "^1.1.16",
|
|
8485
|
+
"@oclif/core": "^3.23.0",
|
|
8486
|
+
"@salesforce/core": "^6.6.0",
|
|
8487
|
+
"@salesforce/kit": "^3.0.15",
|
|
8488
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8489
|
+
"chalk": "^5.3.0"
|
|
8490
|
+
},
|
|
8491
|
+
"engines": {
|
|
8492
|
+
"node": ">=18.0.0"
|
|
8493
|
+
}
|
|
8494
|
+
},
|
|
8241
8495
|
"node_modules/@salesforce/plugin-user": {
|
|
8242
8496
|
"version": "3.3.4",
|
|
8243
8497
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.3.4.tgz",
|
|
@@ -8254,6 +8508,24 @@
|
|
|
8254
8508
|
"node": ">=18.0.0"
|
|
8255
8509
|
}
|
|
8256
8510
|
},
|
|
8511
|
+
"node_modules/@salesforce/plugin-user/node_modules/@salesforce/sf-plugins-core": {
|
|
8512
|
+
"version": "7.1.16",
|
|
8513
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
8514
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
8515
|
+
"license": "BSD-3-Clause",
|
|
8516
|
+
"dependencies": {
|
|
8517
|
+
"@inquirer/confirm": "^2.0.17",
|
|
8518
|
+
"@inquirer/password": "^1.1.16",
|
|
8519
|
+
"@oclif/core": "^3.23.0",
|
|
8520
|
+
"@salesforce/core": "^6.6.0",
|
|
8521
|
+
"@salesforce/kit": "^3.0.15",
|
|
8522
|
+
"@salesforce/ts-types": "^2.0.9",
|
|
8523
|
+
"chalk": "^5.3.0"
|
|
8524
|
+
},
|
|
8525
|
+
"engines": {
|
|
8526
|
+
"node": ">=18.0.0"
|
|
8527
|
+
}
|
|
8528
|
+
},
|
|
8257
8529
|
"node_modules/@salesforce/prettier-config": {
|
|
8258
8530
|
"version": "0.0.3",
|
|
8259
8531
|
"resolved": "https://registry.npmjs.org/@salesforce/prettier-config/-/prettier-config-0.0.3.tgz",
|
|
@@ -8268,9 +8540,9 @@
|
|
|
8268
8540
|
"license": "ISC"
|
|
8269
8541
|
},
|
|
8270
8542
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
8271
|
-
"version": "
|
|
8272
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-
|
|
8273
|
-
"integrity": "sha512-
|
|
8543
|
+
"version": "8.0.0",
|
|
8544
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.0.tgz",
|
|
8545
|
+
"integrity": "sha512-S1ZAIn2aIi0qR7NBGVTmL8V1I62lDTEGWRlljNrdxx8qEFnz0Gt6LTdz0330FtVUIvJNPzvsAPOyjWjvlxDeow==",
|
|
8274
8546
|
"license": "BSD-3-Clause",
|
|
8275
8547
|
"dependencies": {
|
|
8276
8548
|
"@inquirer/confirm": "^2.0.17",
|
|
@@ -8286,9 +8558,9 @@
|
|
|
8286
8558
|
}
|
|
8287
8559
|
},
|
|
8288
8560
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
8289
|
-
"version": "10.5.
|
|
8290
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.5.
|
|
8291
|
-
"integrity": "sha512-
|
|
8561
|
+
"version": "10.5.5",
|
|
8562
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.5.5.tgz",
|
|
8563
|
+
"integrity": "sha512-o+c/qD9QojXIPMOuteUSdrbx/GI9HS0jFv49NcVrZX1Rzm/ZUk5JHkLzJtiUVQOEnBg4VVnFh2rBarPh0x6dWg==",
|
|
8292
8564
|
"license": "BSD-3-Clause",
|
|
8293
8565
|
"dependencies": {
|
|
8294
8566
|
"@salesforce/core": "^6.7.0",
|