@salesforce/plugin-trust 3.5.3 → 3.5.4
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 +1 -1
- package/lib/commands/plugins/trust/verify.d.ts +2 -2
- package/lib/shared/installationVerification.d.ts +4 -4
- package/npm-shrinkwrap.json +168 -161
- package/oclif.lock +83 -78
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -120,6 +120,6 @@ EXAMPLES
|
|
|
120
120
|
$ @salesforce/plugin-trust plugins trust verify --npm @scope/npmName
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
_See code: [src/commands/plugins/trust/verify.ts](https://github.com/salesforcecli/plugin-trust/blob/3.5.
|
|
123
|
+
_See code: [src/commands/plugins/trust/verify.ts](https://github.com/salesforcecli/plugin-trust/blob/3.5.4/src/commands/plugins/trust/verify.ts)_
|
|
124
124
|
|
|
125
125
|
<!-- commandsstop -->
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
|
2
|
-
export
|
|
2
|
+
export type VerifyResponse = {
|
|
3
3
|
message: string;
|
|
4
4
|
verified: boolean;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
6
|
export declare class Verify extends SfCommand<VerifyResponse> {
|
|
7
7
|
static readonly summary: string;
|
|
8
8
|
static readonly description: string;
|
|
@@ -6,16 +6,16 @@ import { Logger } from '@salesforce/core';
|
|
|
6
6
|
import { NpmMeta } from './npmCommand.js';
|
|
7
7
|
import { type NpmName } from './npmName.js';
|
|
8
8
|
export declare const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
9
|
-
export
|
|
9
|
+
export type ConfigContext = {
|
|
10
10
|
configDir?: string;
|
|
11
11
|
cacheDir?: string;
|
|
12
12
|
dataDir?: string;
|
|
13
13
|
cliRoot?: string;
|
|
14
|
-
}
|
|
15
|
-
export
|
|
14
|
+
};
|
|
15
|
+
export type Verifier = {
|
|
16
16
|
verify(): Promise<NpmMeta>;
|
|
17
17
|
isAllowListed(): Promise<boolean>;
|
|
18
|
-
}
|
|
18
|
+
};
|
|
19
19
|
declare class CodeVerifierInfo {
|
|
20
20
|
private signature?;
|
|
21
21
|
private publicKey?;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-trust",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-trust",
|
|
9
|
-
"version": "3.5.
|
|
9
|
+
"version": "3.5.4",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^3.26.0",
|
|
13
13
|
"@salesforce/core": "^6.7.6",
|
|
14
14
|
"@salesforce/kit": "^3.1.0",
|
|
15
|
-
"@salesforce/sf-plugins-core": "^8.0.
|
|
15
|
+
"@salesforce/sf-plugins-core": "^8.0.3",
|
|
16
16
|
"got": "^13.0.0",
|
|
17
17
|
"npm": "10.2.3",
|
|
18
18
|
"npm-run-path": "^4.0.1",
|
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@oclif/plugin-command-snapshot": "^5.1.4",
|
|
28
28
|
"@salesforce/cli-plugins-testkit": "^5.1.13",
|
|
29
|
-
"@salesforce/dev-scripts": "^8.
|
|
30
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
29
|
+
"@salesforce/dev-scripts": "^8.5.0",
|
|
30
|
+
"@salesforce/plugin-command-reference": "^3.0.74",
|
|
31
31
|
"@salesforce/plugin-telemetry": "^2.3.8",
|
|
32
32
|
"@salesforce/ts-sinon": "^1.4.18",
|
|
33
33
|
"@types/shelljs": "^0.8.15",
|
|
34
34
|
"@types/sinon-chai": "^3.2.12",
|
|
35
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
36
|
-
"oclif": "^4.7.
|
|
35
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
36
|
+
"oclif": "^4.7.6",
|
|
37
37
|
"sinon-chai": "^3.7.0",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"typescript": "^5.4.
|
|
39
|
+
"typescript": "^5.4.4"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=18.0.0"
|
|
@@ -2426,7 +2426,7 @@
|
|
|
2426
2426
|
"node": ">=14.18.0"
|
|
2427
2427
|
}
|
|
2428
2428
|
},
|
|
2429
|
-
"node_modules/@inquirer/
|
|
2429
|
+
"node_modules/@inquirer/core": {
|
|
2430
2430
|
"version": "6.0.0",
|
|
2431
2431
|
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-6.0.0.tgz",
|
|
2432
2432
|
"integrity": "sha512-fKi63Khkisgda3ohnskNf5uZJj+zXOaBvOllHsOkdsXRA/ubQLJQrZchFFi57NKbZzkTunXiBMdvWOv71alonw==",
|
|
@@ -2451,16 +2451,7 @@
|
|
|
2451
2451
|
"node": ">=14.18.0"
|
|
2452
2452
|
}
|
|
2453
2453
|
},
|
|
2454
|
-
"node_modules/@inquirer/
|
|
2455
|
-
"version": "4.1.0",
|
|
2456
|
-
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
2457
|
-
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
2458
|
-
"license": "ISC",
|
|
2459
|
-
"engines": {
|
|
2460
|
-
"node": ">= 12"
|
|
2461
|
-
}
|
|
2462
|
-
},
|
|
2463
|
-
"node_modules/@inquirer/confirm/node_modules/run-async": {
|
|
2454
|
+
"node_modules/@inquirer/core/node_modules/run-async": {
|
|
2464
2455
|
"version": "3.0.0",
|
|
2465
2456
|
"resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz",
|
|
2466
2457
|
"integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==",
|
|
@@ -2469,7 +2460,7 @@
|
|
|
2469
2460
|
"node": ">=0.12.0"
|
|
2470
2461
|
}
|
|
2471
2462
|
},
|
|
2472
|
-
"node_modules/@inquirer/
|
|
2463
|
+
"node_modules/@inquirer/core/node_modules/signal-exit": {
|
|
2473
2464
|
"version": "4.1.0",
|
|
2474
2465
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2475
2466
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
@@ -2481,16 +2472,30 @@
|
|
|
2481
2472
|
"url": "https://github.com/sponsors/isaacs"
|
|
2482
2473
|
}
|
|
2483
2474
|
},
|
|
2484
|
-
"node_modules/@inquirer/
|
|
2485
|
-
"version": "
|
|
2486
|
-
"resolved": "https://registry.npmjs.org/@inquirer/
|
|
2487
|
-
"integrity": "sha512-
|
|
2475
|
+
"node_modules/@inquirer/input": {
|
|
2476
|
+
"version": "2.1.2",
|
|
2477
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.2.tgz",
|
|
2478
|
+
"integrity": "sha512-Szr9POj/NxbKSmbOx81ZD76b6xmvXXUY56QLWBXRv8zIGTIKtj03V4zAsw3MTiL6Qoo+IaRLwTLr3bI+qIblzA==",
|
|
2479
|
+
"dev": true,
|
|
2480
|
+
"license": "MIT",
|
|
2481
|
+
"dependencies": {
|
|
2482
|
+
"@inquirer/core": "^7.1.2",
|
|
2483
|
+
"@inquirer/type": "^1.2.1"
|
|
2484
|
+
},
|
|
2485
|
+
"engines": {
|
|
2486
|
+
"node": ">=18"
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
"node_modules/@inquirer/input/node_modules/@inquirer/core": {
|
|
2490
|
+
"version": "7.1.2",
|
|
2491
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.2.tgz",
|
|
2492
|
+
"integrity": "sha512-ne5VhDqruYYzx8mmjDZ9F58ymrLJGxmSHJUcJGiW3tifzvl3goAm6gNX11w6+zUnGE54vgQ6ALDXL3IOSezMRw==",
|
|
2488
2493
|
"dev": true,
|
|
2489
2494
|
"license": "MIT",
|
|
2490
2495
|
"dependencies": {
|
|
2491
2496
|
"@inquirer/type": "^1.2.1",
|
|
2492
2497
|
"@types/mute-stream": "^0.0.4",
|
|
2493
|
-
"@types/node": "^20.
|
|
2498
|
+
"@types/node": "^20.12.4",
|
|
2494
2499
|
"@types/wrap-ansi": "^3.0.0",
|
|
2495
2500
|
"ansi-escapes": "^4.3.2",
|
|
2496
2501
|
"chalk": "^4.1.2",
|
|
@@ -2506,17 +2511,17 @@
|
|
|
2506
2511
|
"node": ">=18"
|
|
2507
2512
|
}
|
|
2508
2513
|
},
|
|
2509
|
-
"node_modules/@inquirer/
|
|
2510
|
-
"version": "
|
|
2511
|
-
"resolved": "https://registry.npmjs.org/
|
|
2512
|
-
"integrity": "sha512-
|
|
2514
|
+
"node_modules/@inquirer/input/node_modules/@types/node": {
|
|
2515
|
+
"version": "20.12.5",
|
|
2516
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz",
|
|
2517
|
+
"integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==",
|
|
2513
2518
|
"dev": true,
|
|
2514
|
-
"license": "
|
|
2515
|
-
"
|
|
2516
|
-
"
|
|
2519
|
+
"license": "MIT",
|
|
2520
|
+
"dependencies": {
|
|
2521
|
+
"undici-types": "~5.26.4"
|
|
2517
2522
|
}
|
|
2518
2523
|
},
|
|
2519
|
-
"node_modules/@inquirer/
|
|
2524
|
+
"node_modules/@inquirer/input/node_modules/signal-exit": {
|
|
2520
2525
|
"version": "4.1.0",
|
|
2521
2526
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2522
2527
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
@@ -2529,20 +2534,6 @@
|
|
|
2529
2534
|
"url": "https://github.com/sponsors/isaacs"
|
|
2530
2535
|
}
|
|
2531
2536
|
},
|
|
2532
|
-
"node_modules/@inquirer/input": {
|
|
2533
|
-
"version": "2.1.1",
|
|
2534
|
-
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.1.1.tgz",
|
|
2535
|
-
"integrity": "sha512-Ag5PDh3/V3B68WGD/5LKXDqbdWKlF7zyfPAlstzu0NoZcZGBbZFjfgXlZIcb6Gs+AfdSi7wNf7soVAaMGH7moQ==",
|
|
2536
|
-
"dev": true,
|
|
2537
|
-
"license": "MIT",
|
|
2538
|
-
"dependencies": {
|
|
2539
|
-
"@inquirer/core": "^7.1.1",
|
|
2540
|
-
"@inquirer/type": "^1.2.1"
|
|
2541
|
-
},
|
|
2542
|
-
"engines": {
|
|
2543
|
-
"node": ">=18"
|
|
2544
|
-
}
|
|
2545
|
-
},
|
|
2546
2537
|
"node_modules/@inquirer/password": {
|
|
2547
2538
|
"version": "1.1.16",
|
|
2548
2539
|
"resolved": "https://registry.npmjs.org/@inquirer/password/-/password-1.1.16.tgz",
|
|
@@ -2558,15 +2549,33 @@
|
|
|
2558
2549
|
"node": ">=14.18.0"
|
|
2559
2550
|
}
|
|
2560
2551
|
},
|
|
2561
|
-
"node_modules/@inquirer/
|
|
2562
|
-
"version": "
|
|
2563
|
-
"resolved": "https://registry.npmjs.org/@inquirer/
|
|
2564
|
-
"integrity": "sha512-
|
|
2552
|
+
"node_modules/@inquirer/select": {
|
|
2553
|
+
"version": "2.2.2",
|
|
2554
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.2.2.tgz",
|
|
2555
|
+
"integrity": "sha512-WaoleV3O/7iDAHFC0GArOkl7Yg/7wQ/UptxEkfM+bG67h65v0troAjkNASBbNiz9vvoNZxOGhVrug0LNDftCoQ==",
|
|
2556
|
+
"dev": true,
|
|
2565
2557
|
"license": "MIT",
|
|
2566
2558
|
"dependencies": {
|
|
2567
|
-
"@inquirer/
|
|
2559
|
+
"@inquirer/core": "^7.1.2",
|
|
2560
|
+
"@inquirer/type": "^1.2.1",
|
|
2561
|
+
"ansi-escapes": "^4.3.2",
|
|
2562
|
+
"chalk": "^4.1.2",
|
|
2563
|
+
"figures": "^3.2.0"
|
|
2564
|
+
},
|
|
2565
|
+
"engines": {
|
|
2566
|
+
"node": ">=18"
|
|
2567
|
+
}
|
|
2568
|
+
},
|
|
2569
|
+
"node_modules/@inquirer/select/node_modules/@inquirer/core": {
|
|
2570
|
+
"version": "7.1.2",
|
|
2571
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.2.tgz",
|
|
2572
|
+
"integrity": "sha512-ne5VhDqruYYzx8mmjDZ9F58ymrLJGxmSHJUcJGiW3tifzvl3goAm6gNX11w6+zUnGE54vgQ6ALDXL3IOSezMRw==",
|
|
2573
|
+
"dev": true,
|
|
2574
|
+
"license": "MIT",
|
|
2575
|
+
"dependencies": {
|
|
2576
|
+
"@inquirer/type": "^1.2.1",
|
|
2568
2577
|
"@types/mute-stream": "^0.0.4",
|
|
2569
|
-
"@types/node": "^20.
|
|
2578
|
+
"@types/node": "^20.12.4",
|
|
2570
2579
|
"@types/wrap-ansi": "^3.0.0",
|
|
2571
2580
|
"ansi-escapes": "^4.3.2",
|
|
2572
2581
|
"chalk": "^4.1.2",
|
|
@@ -2574,37 +2583,29 @@
|
|
|
2574
2583
|
"cli-width": "^4.1.0",
|
|
2575
2584
|
"figures": "^3.2.0",
|
|
2576
2585
|
"mute-stream": "^1.0.0",
|
|
2577
|
-
"run-async": "^3.0.0",
|
|
2578
2586
|
"signal-exit": "^4.1.0",
|
|
2579
2587
|
"strip-ansi": "^6.0.1",
|
|
2580
2588
|
"wrap-ansi": "^6.2.0"
|
|
2581
2589
|
},
|
|
2582
2590
|
"engines": {
|
|
2583
|
-
"node": ">=
|
|
2584
|
-
}
|
|
2585
|
-
},
|
|
2586
|
-
"node_modules/@inquirer/password/node_modules/cli-width": {
|
|
2587
|
-
"version": "4.1.0",
|
|
2588
|
-
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
2589
|
-
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
2590
|
-
"license": "ISC",
|
|
2591
|
-
"engines": {
|
|
2592
|
-
"node": ">= 12"
|
|
2591
|
+
"node": ">=18"
|
|
2593
2592
|
}
|
|
2594
2593
|
},
|
|
2595
|
-
"node_modules/@inquirer/
|
|
2596
|
-
"version": "
|
|
2597
|
-
"resolved": "https://registry.npmjs.org/
|
|
2598
|
-
"integrity": "sha512-
|
|
2594
|
+
"node_modules/@inquirer/select/node_modules/@types/node": {
|
|
2595
|
+
"version": "20.12.5",
|
|
2596
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz",
|
|
2597
|
+
"integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==",
|
|
2598
|
+
"dev": true,
|
|
2599
2599
|
"license": "MIT",
|
|
2600
|
-
"
|
|
2601
|
-
"
|
|
2600
|
+
"dependencies": {
|
|
2601
|
+
"undici-types": "~5.26.4"
|
|
2602
2602
|
}
|
|
2603
2603
|
},
|
|
2604
|
-
"node_modules/@inquirer/
|
|
2604
|
+
"node_modules/@inquirer/select/node_modules/signal-exit": {
|
|
2605
2605
|
"version": "4.1.0",
|
|
2606
2606
|
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2607
2607
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2608
|
+
"dev": true,
|
|
2608
2609
|
"license": "ISC",
|
|
2609
2610
|
"engines": {
|
|
2610
2611
|
"node": ">=14"
|
|
@@ -2613,23 +2614,6 @@
|
|
|
2613
2614
|
"url": "https://github.com/sponsors/isaacs"
|
|
2614
2615
|
}
|
|
2615
2616
|
},
|
|
2616
|
-
"node_modules/@inquirer/select": {
|
|
2617
|
-
"version": "2.2.0",
|
|
2618
|
-
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-2.2.0.tgz",
|
|
2619
|
-
"integrity": "sha512-Pml3DhVM1LnfqasUMIzaBtw+s5UjM5k0bzDeWrWOgqAMWe16AOg0DcAhXHf+SYbnj2CFBeP/TvkvedL4aAEWww==",
|
|
2620
|
-
"dev": true,
|
|
2621
|
-
"license": "MIT",
|
|
2622
|
-
"dependencies": {
|
|
2623
|
-
"@inquirer/core": "^7.1.0",
|
|
2624
|
-
"@inquirer/type": "^1.2.1",
|
|
2625
|
-
"ansi-escapes": "^4.3.2",
|
|
2626
|
-
"chalk": "^4.1.2",
|
|
2627
|
-
"figures": "^3.2.0"
|
|
2628
|
-
},
|
|
2629
|
-
"engines": {
|
|
2630
|
-
"node": ">=18"
|
|
2631
|
-
}
|
|
2632
|
-
},
|
|
2633
2617
|
"node_modules/@inquirer/type": {
|
|
2634
2618
|
"version": "1.2.1",
|
|
2635
2619
|
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.2.1.tgz",
|
|
@@ -3662,9 +3646,9 @@
|
|
|
3662
3646
|
"license": "BSD-3-Clause"
|
|
3663
3647
|
},
|
|
3664
3648
|
"node_modules/@salesforce/dev-scripts": {
|
|
3665
|
-
"version": "8.
|
|
3666
|
-
"resolved": "https://registry.npmjs.org/@salesforce/dev-scripts/-/dev-scripts-8.
|
|
3667
|
-
"integrity": "sha512-
|
|
3649
|
+
"version": "8.5.0",
|
|
3650
|
+
"resolved": "https://registry.npmjs.org/@salesforce/dev-scripts/-/dev-scripts-8.5.0.tgz",
|
|
3651
|
+
"integrity": "sha512-vR+CB5VoQrNAqNTcu5GZ/l4I4Rxd5HkIj/qTxEzP1EYnIlgjrbcsQgaunSnTrttIEy/BD8epd6UWAT8yAItufg==",
|
|
3668
3652
|
"dev": true,
|
|
3669
3653
|
"license": "BSD-3-Clause",
|
|
3670
3654
|
"dependencies": {
|
|
@@ -3672,14 +3656,14 @@
|
|
|
3672
3656
|
"@commitlint/config-conventional": "^17.8.1",
|
|
3673
3657
|
"@salesforce/dev-config": "^4.1.0",
|
|
3674
3658
|
"@salesforce/prettier-config": "^0.0.3",
|
|
3675
|
-
"@types/chai": "^4.3.
|
|
3659
|
+
"@types/chai": "^4.3.14",
|
|
3676
3660
|
"@types/mocha": "^10.0.6",
|
|
3677
3661
|
"@types/node": "^18.19.28",
|
|
3678
3662
|
"@types/sinon": "^10.0.20",
|
|
3679
3663
|
"chai": "^4.3.10",
|
|
3680
3664
|
"chalk": "^4.0.0",
|
|
3681
|
-
"cosmiconfig": "^
|
|
3682
|
-
"eslint-config-salesforce-typescript": "^3.
|
|
3665
|
+
"cosmiconfig": "^8.3.6",
|
|
3666
|
+
"eslint-config-salesforce-typescript": "^3.3.0",
|
|
3683
3667
|
"husky": "^7.0.4",
|
|
3684
3668
|
"linkinator": "^6.0.4",
|
|
3685
3669
|
"mocha": "^10.4.0",
|
|
@@ -3712,23 +3696,6 @@
|
|
|
3712
3696
|
"undici-types": "~5.26.4"
|
|
3713
3697
|
}
|
|
3714
3698
|
},
|
|
3715
|
-
"node_modules/@salesforce/dev-scripts/node_modules/cosmiconfig": {
|
|
3716
|
-
"version": "7.1.0",
|
|
3717
|
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
|
|
3718
|
-
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
|
|
3719
|
-
"dev": true,
|
|
3720
|
-
"license": "MIT",
|
|
3721
|
-
"dependencies": {
|
|
3722
|
-
"@types/parse-json": "^4.0.0",
|
|
3723
|
-
"import-fresh": "^3.2.1",
|
|
3724
|
-
"parse-json": "^5.0.0",
|
|
3725
|
-
"path-type": "^4.0.0",
|
|
3726
|
-
"yaml": "^1.10.0"
|
|
3727
|
-
},
|
|
3728
|
-
"engines": {
|
|
3729
|
-
"node": ">=10"
|
|
3730
|
-
}
|
|
3731
|
-
},
|
|
3732
3699
|
"node_modules/@salesforce/kit": {
|
|
3733
3700
|
"version": "3.1.0",
|
|
3734
3701
|
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.1.0.tgz",
|
|
@@ -3740,15 +3707,15 @@
|
|
|
3740
3707
|
}
|
|
3741
3708
|
},
|
|
3742
3709
|
"node_modules/@salesforce/plugin-command-reference": {
|
|
3743
|
-
"version": "3.0.
|
|
3744
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
3745
|
-
"integrity": "sha512-
|
|
3710
|
+
"version": "3.0.74",
|
|
3711
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.74.tgz",
|
|
3712
|
+
"integrity": "sha512-YJR4kUes+wCBshCDEL3gooxwXmsJrH08ITZfwn4VvpM/KLQtiZAzMQXarvqge9Gp8rcxAv7HREsulT7SCffafg==",
|
|
3746
3713
|
"dev": true,
|
|
3747
3714
|
"license": "BSD-3-Clause",
|
|
3748
3715
|
"dependencies": {
|
|
3749
|
-
"@oclif/core": "^3.
|
|
3750
|
-
"@salesforce/core": "^6.7.
|
|
3751
|
-
"@salesforce/kit": "^3.0
|
|
3716
|
+
"@oclif/core": "^3.26.0",
|
|
3717
|
+
"@salesforce/core": "^6.7.3",
|
|
3718
|
+
"@salesforce/kit": "^3.1.0",
|
|
3752
3719
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
3753
3720
|
"@salesforce/ts-types": "^2.0.9",
|
|
3754
3721
|
"chalk": "^4",
|
|
@@ -3956,16 +3923,16 @@
|
|
|
3956
3923
|
"license": "ISC"
|
|
3957
3924
|
},
|
|
3958
3925
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
3959
|
-
"version": "8.0.
|
|
3960
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.
|
|
3961
|
-
"integrity": "sha512
|
|
3926
|
+
"version": "8.0.3",
|
|
3927
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.3.tgz",
|
|
3928
|
+
"integrity": "sha512-RJIi0lbpOg6ZflRDCTi/8E3QBhOHfvA5F3xlvThuQo9Yw2SvOjti+s/+Z2RCpvWdy4aaleeGqqgn7AwDi/ISDQ==",
|
|
3962
3929
|
"license": "BSD-3-Clause",
|
|
3963
3930
|
"dependencies": {
|
|
3964
3931
|
"@inquirer/confirm": "^2.0.17",
|
|
3965
3932
|
"@inquirer/password": "^1.1.16",
|
|
3966
3933
|
"@oclif/core": "^3.26.0",
|
|
3967
3934
|
"@salesforce/core": "^6.7.3",
|
|
3968
|
-
"@salesforce/kit": "^3.0
|
|
3935
|
+
"@salesforce/kit": "^3.1.0",
|
|
3969
3936
|
"@salesforce/ts-types": "^2.0.9",
|
|
3970
3937
|
"chalk": "^5.3.0"
|
|
3971
3938
|
},
|
|
@@ -5207,9 +5174,9 @@
|
|
|
5207
5174
|
}
|
|
5208
5175
|
},
|
|
5209
5176
|
"node_modules/@types/chai": {
|
|
5210
|
-
"version": "4.3.
|
|
5211
|
-
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.
|
|
5212
|
-
"integrity": "sha512-
|
|
5177
|
+
"version": "4.3.14",
|
|
5178
|
+
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.14.tgz",
|
|
5179
|
+
"integrity": "sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==",
|
|
5213
5180
|
"dev": true,
|
|
5214
5181
|
"license": "MIT"
|
|
5215
5182
|
},
|
|
@@ -5337,13 +5304,6 @@
|
|
|
5337
5304
|
"dev": true,
|
|
5338
5305
|
"license": "MIT"
|
|
5339
5306
|
},
|
|
5340
|
-
"node_modules/@types/parse-json": {
|
|
5341
|
-
"version": "4.0.1",
|
|
5342
|
-
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.1.tgz",
|
|
5343
|
-
"integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==",
|
|
5344
|
-
"dev": true,
|
|
5345
|
-
"license": "MIT"
|
|
5346
|
-
},
|
|
5347
5307
|
"node_modules/@types/responselike": {
|
|
5348
5308
|
"version": "1.0.3",
|
|
5349
5309
|
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz",
|
|
@@ -6992,12 +6952,12 @@
|
|
|
6992
6952
|
}
|
|
6993
6953
|
},
|
|
6994
6954
|
"node_modules/cli-width": {
|
|
6995
|
-
"version": "
|
|
6996
|
-
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-
|
|
6997
|
-
"integrity": "sha512-
|
|
6955
|
+
"version": "4.1.0",
|
|
6956
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
6957
|
+
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
6998
6958
|
"license": "ISC",
|
|
6999
6959
|
"engines": {
|
|
7000
|
-
"node": ">=
|
|
6960
|
+
"node": ">= 12"
|
|
7001
6961
|
}
|
|
7002
6962
|
},
|
|
7003
6963
|
"node_modules/cliui": {
|
|
@@ -8203,9 +8163,9 @@
|
|
|
8203
8163
|
"license": "BSD-3-Clause"
|
|
8204
8164
|
},
|
|
8205
8165
|
"node_modules/eslint-config-salesforce-typescript": {
|
|
8206
|
-
"version": "3.
|
|
8207
|
-
"resolved": "https://registry.npmjs.org/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.
|
|
8208
|
-
"integrity": "sha512-
|
|
8166
|
+
"version": "3.3.0",
|
|
8167
|
+
"resolved": "https://registry.npmjs.org/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.3.0.tgz",
|
|
8168
|
+
"integrity": "sha512-83+zp2Y2h9oz9D3UksjNGCw+xWD7ylIiAJZ58vUbBD10l8FRUMNyn+RDCKn0xCQz7xed5/LcmgUE4T7roe+HBw==",
|
|
8209
8169
|
"dev": true,
|
|
8210
8170
|
"license": "BSD-3-Clause",
|
|
8211
8171
|
"dependencies": {
|
|
@@ -8393,13 +8353,13 @@
|
|
|
8393
8353
|
}
|
|
8394
8354
|
},
|
|
8395
8355
|
"node_modules/eslint-plugin-sf-plugin": {
|
|
8396
|
-
"version": "1.17.
|
|
8397
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
8398
|
-
"integrity": "sha512-
|
|
8356
|
+
"version": "1.17.5",
|
|
8357
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz",
|
|
8358
|
+
"integrity": "sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==",
|
|
8399
8359
|
"dev": true,
|
|
8400
8360
|
"license": "BSD-3-Clause",
|
|
8401
8361
|
"dependencies": {
|
|
8402
|
-
"@salesforce/core": "^6.7.
|
|
8362
|
+
"@salesforce/core": "^6.7.3",
|
|
8403
8363
|
"@typescript-eslint/utils": "^6.17.0"
|
|
8404
8364
|
},
|
|
8405
8365
|
"engines": {
|
|
@@ -10111,6 +10071,16 @@
|
|
|
10111
10071
|
"node": ">=12.0.0"
|
|
10112
10072
|
}
|
|
10113
10073
|
},
|
|
10074
|
+
"node_modules/inquirer/node_modules/cli-width": {
|
|
10075
|
+
"version": "3.0.0",
|
|
10076
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
|
|
10077
|
+
"integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
|
|
10078
|
+
"dev": true,
|
|
10079
|
+
"license": "ISC",
|
|
10080
|
+
"engines": {
|
|
10081
|
+
"node": ">= 10"
|
|
10082
|
+
}
|
|
10083
|
+
},
|
|
10114
10084
|
"node_modules/inquirer/node_modules/mute-stream": {
|
|
10115
10085
|
"version": "0.0.8",
|
|
10116
10086
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
|
@@ -10928,6 +10898,15 @@
|
|
|
10928
10898
|
"node": ">= 6.0.0"
|
|
10929
10899
|
}
|
|
10930
10900
|
},
|
|
10901
|
+
"node_modules/jsforce/node_modules/cli-width": {
|
|
10902
|
+
"version": "3.0.0",
|
|
10903
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
|
|
10904
|
+
"integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
|
|
10905
|
+
"license": "ISC",
|
|
10906
|
+
"engines": {
|
|
10907
|
+
"node": ">= 10"
|
|
10908
|
+
}
|
|
10909
|
+
},
|
|
10931
10910
|
"node_modules/jsforce/node_modules/commander": {
|
|
10932
10911
|
"version": "4.1.1",
|
|
10933
10912
|
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
|
|
@@ -16167,18 +16146,18 @@
|
|
|
16167
16146
|
}
|
|
16168
16147
|
},
|
|
16169
16148
|
"node_modules/oclif": {
|
|
16170
|
-
"version": "4.7.
|
|
16171
|
-
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.7.
|
|
16172
|
-
"integrity": "sha512-
|
|
16149
|
+
"version": "4.7.6",
|
|
16150
|
+
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.7.6.tgz",
|
|
16151
|
+
"integrity": "sha512-R2Fdef6R8n1UIVAJTCP0oEIRkExMniei4QqmK7ue9iN8PTf+6q5ROrl7/pxMH/DzDCKnkTsi5mBhyT3HqFAZ1w==",
|
|
16173
16152
|
"dev": true,
|
|
16174
16153
|
"license": "MIT",
|
|
16175
16154
|
"dependencies": {
|
|
16176
16155
|
"@aws-sdk/client-cloudfront": "^3.535.0",
|
|
16177
16156
|
"@aws-sdk/client-s3": "^3.535.0",
|
|
16178
16157
|
"@inquirer/confirm": "^3.0.0",
|
|
16179
|
-
"@inquirer/input": "^2.1.
|
|
16180
|
-
"@inquirer/select": "^2.
|
|
16181
|
-
"@oclif/core": "^3.
|
|
16158
|
+
"@inquirer/input": "^2.1.1",
|
|
16159
|
+
"@inquirer/select": "^2.2.1",
|
|
16160
|
+
"@oclif/core": "^3.26.0",
|
|
16182
16161
|
"@oclif/plugin-help": "^6.0.18",
|
|
16183
16162
|
"@oclif/plugin-not-found": "^3.0.14",
|
|
16184
16163
|
"@oclif/plugin-warn-if-update-available": "^3.0.14",
|
|
@@ -16218,6 +16197,31 @@
|
|
|
16218
16197
|
"node": ">=18"
|
|
16219
16198
|
}
|
|
16220
16199
|
},
|
|
16200
|
+
"node_modules/oclif/node_modules/@inquirer/core": {
|
|
16201
|
+
"version": "7.1.1",
|
|
16202
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.1.tgz",
|
|
16203
|
+
"integrity": "sha512-rD1UI3eARN9qJBcLRXPOaZu++Bg+xsk0Tuz1EUOXEW+UbYif1sGjr0Tw7lKejHzKD9IbXE1CEtZ+xR/DrNlQGQ==",
|
|
16204
|
+
"dev": true,
|
|
16205
|
+
"license": "MIT",
|
|
16206
|
+
"dependencies": {
|
|
16207
|
+
"@inquirer/type": "^1.2.1",
|
|
16208
|
+
"@types/mute-stream": "^0.0.4",
|
|
16209
|
+
"@types/node": "^20.11.30",
|
|
16210
|
+
"@types/wrap-ansi": "^3.0.0",
|
|
16211
|
+
"ansi-escapes": "^4.3.2",
|
|
16212
|
+
"chalk": "^4.1.2",
|
|
16213
|
+
"cli-spinners": "^2.9.2",
|
|
16214
|
+
"cli-width": "^4.1.0",
|
|
16215
|
+
"figures": "^3.2.0",
|
|
16216
|
+
"mute-stream": "^1.0.0",
|
|
16217
|
+
"signal-exit": "^4.1.0",
|
|
16218
|
+
"strip-ansi": "^6.0.1",
|
|
16219
|
+
"wrap-ansi": "^6.2.0"
|
|
16220
|
+
},
|
|
16221
|
+
"engines": {
|
|
16222
|
+
"node": ">=18"
|
|
16223
|
+
}
|
|
16224
|
+
},
|
|
16221
16225
|
"node_modules/oclif/node_modules/fs-extra": {
|
|
16222
16226
|
"version": "8.1.0",
|
|
16223
16227
|
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
@@ -16285,6 +16289,19 @@
|
|
|
16285
16289
|
"node": ">=10"
|
|
16286
16290
|
}
|
|
16287
16291
|
},
|
|
16292
|
+
"node_modules/oclif/node_modules/signal-exit": {
|
|
16293
|
+
"version": "4.1.0",
|
|
16294
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
16295
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
16296
|
+
"dev": true,
|
|
16297
|
+
"license": "ISC",
|
|
16298
|
+
"engines": {
|
|
16299
|
+
"node": ">=14"
|
|
16300
|
+
},
|
|
16301
|
+
"funding": {
|
|
16302
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
16303
|
+
}
|
|
16304
|
+
},
|
|
16288
16305
|
"node_modules/oclif/node_modules/universalify": {
|
|
16289
16306
|
"version": "0.1.2",
|
|
16290
16307
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
@@ -19304,9 +19321,9 @@
|
|
|
19304
19321
|
}
|
|
19305
19322
|
},
|
|
19306
19323
|
"node_modules/typescript": {
|
|
19307
|
-
"version": "5.4.
|
|
19308
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.
|
|
19309
|
-
"integrity": "sha512-
|
|
19324
|
+
"version": "5.4.4",
|
|
19325
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz",
|
|
19326
|
+
"integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==",
|
|
19310
19327
|
"dev": true,
|
|
19311
19328
|
"license": "Apache-2.0",
|
|
19312
19329
|
"bin": {
|
|
@@ -19815,16 +19832,6 @@
|
|
|
19815
19832
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
19816
19833
|
"license": "ISC"
|
|
19817
19834
|
},
|
|
19818
|
-
"node_modules/yaml": {
|
|
19819
|
-
"version": "1.10.2",
|
|
19820
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
|
19821
|
-
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
|
|
19822
|
-
"dev": true,
|
|
19823
|
-
"license": "ISC",
|
|
19824
|
-
"engines": {
|
|
19825
|
-
"node": ">= 6"
|
|
19826
|
-
}
|
|
19827
|
-
},
|
|
19828
19835
|
"node_modules/yargs": {
|
|
19829
19836
|
"version": "16.2.0",
|
|
19830
19837
|
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
|
package/oclif.lock
CHANGED
|
@@ -1216,7 +1216,7 @@
|
|
|
1216
1216
|
strip-ansi "^6.0.1"
|
|
1217
1217
|
wrap-ansi "^6.2.0"
|
|
1218
1218
|
|
|
1219
|
-
"@inquirer/core@^7.1.0"
|
|
1219
|
+
"@inquirer/core@^7.1.0":
|
|
1220
1220
|
version "7.1.1"
|
|
1221
1221
|
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-7.1.1.tgz#9339095720c00cfd1f85943977ae15d2f66f336a"
|
|
1222
1222
|
integrity sha512-rD1UI3eARN9qJBcLRXPOaZu++Bg+xsk0Tuz1EUOXEW+UbYif1sGjr0Tw7lKejHzKD9IbXE1CEtZ+xR/DrNlQGQ==
|
|
@@ -1235,12 +1235,31 @@
|
|
|
1235
1235
|
strip-ansi "^6.0.1"
|
|
1236
1236
|
wrap-ansi "^6.2.0"
|
|
1237
1237
|
|
|
1238
|
-
"@inquirer/
|
|
1239
|
-
version "
|
|
1240
|
-
resolved "https://registry.yarnpkg.com/@inquirer/
|
|
1241
|
-
integrity sha512-
|
|
1238
|
+
"@inquirer/core@^7.1.2":
|
|
1239
|
+
version "7.1.2"
|
|
1240
|
+
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-7.1.2.tgz#f16222e8838193c29a868d9d6d5ae3b79313342f"
|
|
1241
|
+
integrity sha512-ne5VhDqruYYzx8mmjDZ9F58ymrLJGxmSHJUcJGiW3tifzvl3goAm6gNX11w6+zUnGE54vgQ6ALDXL3IOSezMRw==
|
|
1242
|
+
dependencies:
|
|
1243
|
+
"@inquirer/type" "^1.2.1"
|
|
1244
|
+
"@types/mute-stream" "^0.0.4"
|
|
1245
|
+
"@types/node" "^20.12.4"
|
|
1246
|
+
"@types/wrap-ansi" "^3.0.0"
|
|
1247
|
+
ansi-escapes "^4.3.2"
|
|
1248
|
+
chalk "^4.1.2"
|
|
1249
|
+
cli-spinners "^2.9.2"
|
|
1250
|
+
cli-width "^4.1.0"
|
|
1251
|
+
figures "^3.2.0"
|
|
1252
|
+
mute-stream "^1.0.0"
|
|
1253
|
+
signal-exit "^4.1.0"
|
|
1254
|
+
strip-ansi "^6.0.1"
|
|
1255
|
+
wrap-ansi "^6.2.0"
|
|
1256
|
+
|
|
1257
|
+
"@inquirer/input@^2.1.1":
|
|
1258
|
+
version "2.1.2"
|
|
1259
|
+
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.1.2.tgz#cc0b0688c6ef7e58661e3d451dabcccbb0801e1a"
|
|
1260
|
+
integrity sha512-Szr9POj/NxbKSmbOx81ZD76b6xmvXXUY56QLWBXRv8zIGTIKtj03V4zAsw3MTiL6Qoo+IaRLwTLr3bI+qIblzA==
|
|
1242
1261
|
dependencies:
|
|
1243
|
-
"@inquirer/core" "^7.1.
|
|
1262
|
+
"@inquirer/core" "^7.1.2"
|
|
1244
1263
|
"@inquirer/type" "^1.2.1"
|
|
1245
1264
|
|
|
1246
1265
|
"@inquirer/password@^1.1.16":
|
|
@@ -1253,12 +1272,12 @@
|
|
|
1253
1272
|
ansi-escapes "^4.3.2"
|
|
1254
1273
|
chalk "^4.1.2"
|
|
1255
1274
|
|
|
1256
|
-
"@inquirer/select@^2.
|
|
1257
|
-
version "2.2.
|
|
1258
|
-
resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.2.
|
|
1259
|
-
integrity sha512-
|
|
1275
|
+
"@inquirer/select@^2.2.1":
|
|
1276
|
+
version "2.2.2"
|
|
1277
|
+
resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.2.2.tgz#6a81ce041745725343afacaf38e1b03ff9adee3a"
|
|
1278
|
+
integrity sha512-WaoleV3O/7iDAHFC0GArOkl7Yg/7wQ/UptxEkfM+bG67h65v0troAjkNASBbNiz9vvoNZxOGhVrug0LNDftCoQ==
|
|
1260
1279
|
dependencies:
|
|
1261
|
-
"@inquirer/core" "^7.1.
|
|
1280
|
+
"@inquirer/core" "^7.1.2"
|
|
1262
1281
|
"@inquirer/type" "^1.2.1"
|
|
1263
1282
|
ansi-escapes "^4.3.2"
|
|
1264
1283
|
chalk "^4.1.2"
|
|
@@ -1536,7 +1555,7 @@
|
|
|
1536
1555
|
read-package-json-fast "^3.0.0"
|
|
1537
1556
|
which "^4.0.0"
|
|
1538
1557
|
|
|
1539
|
-
"@oclif/core@3.26.0", "@oclif/core@^3.15.1", "@oclif/core@^3.
|
|
1558
|
+
"@oclif/core@3.26.0", "@oclif/core@^3.15.1", "@oclif/core@^3.21.0", "@oclif/core@^3.23.0", "@oclif/core@^3.26.0":
|
|
1540
1559
|
version "3.26.0"
|
|
1541
1560
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.0.tgz#959d5e9f13f4ad6a4e98235ad125189df9ee4279"
|
|
1542
1561
|
integrity sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==
|
|
@@ -1737,7 +1756,7 @@
|
|
|
1737
1756
|
semver "^7.5.4"
|
|
1738
1757
|
ts-retry-promise "^0.7.1"
|
|
1739
1758
|
|
|
1740
|
-
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.
|
|
1759
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.3", "@salesforce/core@^6.7.6":
|
|
1741
1760
|
version "6.7.6"
|
|
1742
1761
|
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.6.tgz#6a73c6a4e615ce837be5b5c142cfc63a6c8db3bd"
|
|
1743
1762
|
integrity sha512-0ZZ1GgUQTwTs8/xa+hmZd+wwKXkK8MNcI2Kn20HmHShsweA2Jp3Yaxx0+EbRPqhSBARXso+TADSnsOjlZvQ3tg==
|
|
@@ -1765,23 +1784,23 @@
|
|
|
1765
1784
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
|
|
1766
1785
|
integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
|
|
1767
1786
|
|
|
1768
|
-
"@salesforce/dev-scripts@^8.
|
|
1769
|
-
version "8.
|
|
1770
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.
|
|
1771
|
-
integrity sha512-
|
|
1787
|
+
"@salesforce/dev-scripts@^8.5.0":
|
|
1788
|
+
version "8.5.0"
|
|
1789
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.5.0.tgz#b0b44ca595450328c6186968528d9c0ef06cd27e"
|
|
1790
|
+
integrity sha512-vR+CB5VoQrNAqNTcu5GZ/l4I4Rxd5HkIj/qTxEzP1EYnIlgjrbcsQgaunSnTrttIEy/BD8epd6UWAT8yAItufg==
|
|
1772
1791
|
dependencies:
|
|
1773
1792
|
"@commitlint/cli" "^17.1.2"
|
|
1774
1793
|
"@commitlint/config-conventional" "^17.8.1"
|
|
1775
1794
|
"@salesforce/dev-config" "^4.1.0"
|
|
1776
1795
|
"@salesforce/prettier-config" "^0.0.3"
|
|
1777
|
-
"@types/chai" "^4.3.
|
|
1796
|
+
"@types/chai" "^4.3.14"
|
|
1778
1797
|
"@types/mocha" "^10.0.6"
|
|
1779
1798
|
"@types/node" "^18.19.28"
|
|
1780
1799
|
"@types/sinon" "^10.0.20"
|
|
1781
1800
|
chai "^4.3.10"
|
|
1782
1801
|
chalk "^4.0.0"
|
|
1783
|
-
cosmiconfig "^
|
|
1784
|
-
eslint-config-salesforce-typescript "^3.
|
|
1802
|
+
cosmiconfig "^8.3.6"
|
|
1803
|
+
eslint-config-salesforce-typescript "^3.3.0"
|
|
1785
1804
|
husky "^7.0.4"
|
|
1786
1805
|
linkinator "^6.0.4"
|
|
1787
1806
|
mocha "^10.4.0"
|
|
@@ -1805,14 +1824,14 @@
|
|
|
1805
1824
|
"@salesforce/ts-types" "^2.0.9"
|
|
1806
1825
|
tslib "^2.6.2"
|
|
1807
1826
|
|
|
1808
|
-
"@salesforce/plugin-command-reference@^3.0.
|
|
1809
|
-
version "3.0.
|
|
1810
|
-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
1811
|
-
integrity sha512-
|
|
1827
|
+
"@salesforce/plugin-command-reference@^3.0.74":
|
|
1828
|
+
version "3.0.74"
|
|
1829
|
+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.74.tgz#910277267b31f97b94b49d6f22b5ad046a729011"
|
|
1830
|
+
integrity sha512-YJR4kUes+wCBshCDEL3gooxwXmsJrH08ITZfwn4VvpM/KLQtiZAzMQXarvqge9Gp8rcxAv7HREsulT7SCffafg==
|
|
1812
1831
|
dependencies:
|
|
1813
|
-
"@oclif/core" "^3.
|
|
1814
|
-
"@salesforce/core" "^6.7.
|
|
1815
|
-
"@salesforce/kit" "^3.0
|
|
1832
|
+
"@oclif/core" "^3.26.0"
|
|
1833
|
+
"@salesforce/core" "^6.7.3"
|
|
1834
|
+
"@salesforce/kit" "^3.1.0"
|
|
1816
1835
|
"@salesforce/sf-plugins-core" "^5.0.13"
|
|
1817
1836
|
"@salesforce/ts-types" "^2.0.9"
|
|
1818
1837
|
chalk "^4"
|
|
@@ -1866,16 +1885,16 @@
|
|
|
1866
1885
|
chalk "^4"
|
|
1867
1886
|
inquirer "^8.2.5"
|
|
1868
1887
|
|
|
1869
|
-
"@salesforce/sf-plugins-core@^8.0.
|
|
1870
|
-
version "8.0.
|
|
1871
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.
|
|
1872
|
-
integrity sha512
|
|
1888
|
+
"@salesforce/sf-plugins-core@^8.0.3":
|
|
1889
|
+
version "8.0.3"
|
|
1890
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.3.tgz#df8840419031b8d3ec2db171246757a9bfb38655"
|
|
1891
|
+
integrity sha512-RJIi0lbpOg6ZflRDCTi/8E3QBhOHfvA5F3xlvThuQo9Yw2SvOjti+s/+Z2RCpvWdy4aaleeGqqgn7AwDi/ISDQ==
|
|
1873
1892
|
dependencies:
|
|
1874
1893
|
"@inquirer/confirm" "^2.0.17"
|
|
1875
1894
|
"@inquirer/password" "^1.1.16"
|
|
1876
1895
|
"@oclif/core" "^3.26.0"
|
|
1877
1896
|
"@salesforce/core" "^6.7.3"
|
|
1878
|
-
"@salesforce/kit" "^3.0
|
|
1897
|
+
"@salesforce/kit" "^3.1.0"
|
|
1879
1898
|
"@salesforce/ts-types" "^2.0.9"
|
|
1880
1899
|
chalk "^5.3.0"
|
|
1881
1900
|
|
|
@@ -2564,10 +2583,10 @@
|
|
|
2564
2583
|
"@types/node" "*"
|
|
2565
2584
|
"@types/responselike" "^1.0.0"
|
|
2566
2585
|
|
|
2567
|
-
"@types/chai@*", "@types/chai@^4.3.
|
|
2568
|
-
version "4.3.
|
|
2569
|
-
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.
|
|
2570
|
-
integrity sha512-
|
|
2586
|
+
"@types/chai@*", "@types/chai@^4.3.14":
|
|
2587
|
+
version "4.3.14"
|
|
2588
|
+
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.14.tgz#ae3055ea2be43c91c9fd700a36d67820026d96e6"
|
|
2589
|
+
integrity sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==
|
|
2571
2590
|
|
|
2572
2591
|
"@types/cli-progress@^3.11.0", "@types/cli-progress@^3.11.5":
|
|
2573
2592
|
version "3.11.5"
|
|
@@ -2672,16 +2691,18 @@
|
|
|
2672
2691
|
dependencies:
|
|
2673
2692
|
undici-types "~5.26.4"
|
|
2674
2693
|
|
|
2694
|
+
"@types/node@^20.12.4":
|
|
2695
|
+
version "20.12.5"
|
|
2696
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.5.tgz#74c4f31ab17955d0b5808cdc8fd2839526ad00b3"
|
|
2697
|
+
integrity sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==
|
|
2698
|
+
dependencies:
|
|
2699
|
+
undici-types "~5.26.4"
|
|
2700
|
+
|
|
2675
2701
|
"@types/normalize-package-data@^2.4.0":
|
|
2676
2702
|
version "2.4.3"
|
|
2677
2703
|
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz#291c243e4b94dbfbc0c0ee26b7666f1d5c030e2c"
|
|
2678
2704
|
integrity sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==
|
|
2679
2705
|
|
|
2680
|
-
"@types/parse-json@^4.0.0":
|
|
2681
|
-
version "4.0.1"
|
|
2682
|
-
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.1.tgz#27f7559836ad796cea31acb63163b203756a5b4e"
|
|
2683
|
-
integrity sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==
|
|
2684
|
-
|
|
2685
2706
|
"@types/responselike@^1.0.0":
|
|
2686
2707
|
version "1.0.3"
|
|
2687
2708
|
resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.3.tgz#cc29706f0a397cfe6df89debfe4bf5cea159db50"
|
|
@@ -3851,18 +3872,7 @@ cosmiconfig-typescript-loader@^4.0.0:
|
|
|
3851
3872
|
resolved "https://registry.yarnpkg.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz#f3feae459ea090f131df5474ce4b1222912319f9"
|
|
3852
3873
|
integrity sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==
|
|
3853
3874
|
|
|
3854
|
-
cosmiconfig@^
|
|
3855
|
-
version "7.1.0"
|
|
3856
|
-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
|
|
3857
|
-
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
|
|
3858
|
-
dependencies:
|
|
3859
|
-
"@types/parse-json" "^4.0.0"
|
|
3860
|
-
import-fresh "^3.2.1"
|
|
3861
|
-
parse-json "^5.0.0"
|
|
3862
|
-
path-type "^4.0.0"
|
|
3863
|
-
yaml "^1.10.0"
|
|
3864
|
-
|
|
3865
|
-
cosmiconfig@^8.0.0:
|
|
3875
|
+
cosmiconfig@^8.0.0, cosmiconfig@^8.3.6:
|
|
3866
3876
|
version "8.3.6"
|
|
3867
3877
|
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3"
|
|
3868
3878
|
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
|
|
@@ -4331,10 +4341,10 @@ eslint-config-salesforce-license@^0.2.0:
|
|
|
4331
4341
|
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-license/-/eslint-config-salesforce-license-0.2.0.tgz#323193f1aa15dd33fbf108d25fc1210afc11065e"
|
|
4332
4342
|
integrity sha512-DJdBvgj82Erum82YMe+YvG/o6ukna3UA++lRl0HSTldj0VlBl3Q8hzCp97nRXZHra6JH1I912yievZzklXDw6w==
|
|
4333
4343
|
|
|
4334
|
-
eslint-config-salesforce-typescript@^3.
|
|
4335
|
-
version "3.
|
|
4336
|
-
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.
|
|
4337
|
-
integrity sha512-
|
|
4344
|
+
eslint-config-salesforce-typescript@^3.3.0:
|
|
4345
|
+
version "3.3.0"
|
|
4346
|
+
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.3.0.tgz#308acead1909665a92e9d32895c592ec4c9ee87a"
|
|
4347
|
+
integrity sha512-83+zp2Y2h9oz9D3UksjNGCw+xWD7ylIiAJZ58vUbBD10l8FRUMNyn+RDCKn0xCQz7xed5/LcmgUE4T7roe+HBw==
|
|
4338
4348
|
dependencies:
|
|
4339
4349
|
"@typescript-eslint/eslint-plugin" "^6.21.0"
|
|
4340
4350
|
"@typescript-eslint/parser" "^6.21.0"
|
|
@@ -4411,12 +4421,12 @@ eslint-plugin-jsdoc@^46.10.1:
|
|
|
4411
4421
|
semver "^7.5.4"
|
|
4412
4422
|
spdx-expression-parse "^4.0.0"
|
|
4413
4423
|
|
|
4414
|
-
eslint-plugin-sf-plugin@^1.17.
|
|
4415
|
-
version "1.17.
|
|
4416
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
4417
|
-
integrity sha512-
|
|
4424
|
+
eslint-plugin-sf-plugin@^1.17.5:
|
|
4425
|
+
version "1.17.5"
|
|
4426
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz#3ce0e7033eaf50675c962e7d2def3bb2cad15018"
|
|
4427
|
+
integrity sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==
|
|
4418
4428
|
dependencies:
|
|
4419
|
-
"@salesforce/core" "^6.7.
|
|
4429
|
+
"@salesforce/core" "^6.7.3"
|
|
4420
4430
|
"@typescript-eslint/utils" "^6.17.0"
|
|
4421
4431
|
|
|
4422
4432
|
eslint-plugin-unicorn@^50.0.1:
|
|
@@ -7187,17 +7197,17 @@ object.values@^1.1.7:
|
|
|
7187
7197
|
define-properties "^1.2.0"
|
|
7188
7198
|
es-abstract "^1.22.1"
|
|
7189
7199
|
|
|
7190
|
-
oclif@^4.7.
|
|
7191
|
-
version "4.7.
|
|
7192
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.7.
|
|
7193
|
-
integrity sha512-
|
|
7200
|
+
oclif@^4.7.6:
|
|
7201
|
+
version "4.7.6"
|
|
7202
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.7.6.tgz#2cb7ecfdaa0db9bc2131fa56abff28ba7c88c073"
|
|
7203
|
+
integrity sha512-R2Fdef6R8n1UIVAJTCP0oEIRkExMniei4QqmK7ue9iN8PTf+6q5ROrl7/pxMH/DzDCKnkTsi5mBhyT3HqFAZ1w==
|
|
7194
7204
|
dependencies:
|
|
7195
7205
|
"@aws-sdk/client-cloudfront" "^3.535.0"
|
|
7196
7206
|
"@aws-sdk/client-s3" "^3.535.0"
|
|
7197
7207
|
"@inquirer/confirm" "^3.0.0"
|
|
7198
|
-
"@inquirer/input" "^2.1.
|
|
7199
|
-
"@inquirer/select" "^2.
|
|
7200
|
-
"@oclif/core" "^3.
|
|
7208
|
+
"@inquirer/input" "^2.1.1"
|
|
7209
|
+
"@inquirer/select" "^2.2.1"
|
|
7210
|
+
"@oclif/core" "^3.26.0"
|
|
7201
7211
|
"@oclif/plugin-help" "^6.0.18"
|
|
7202
7212
|
"@oclif/plugin-not-found" "^3.0.14"
|
|
7203
7213
|
"@oclif/plugin-warn-if-update-available" "^3.0.14"
|
|
@@ -8900,10 +8910,10 @@ typedoc@^0.25.12:
|
|
|
8900
8910
|
minimatch "^9.0.3"
|
|
8901
8911
|
shiki "^0.14.7"
|
|
8902
8912
|
|
|
8903
|
-
"typescript@^4.6.4 || ^5.2.2", typescript@^5.4.3:
|
|
8904
|
-
version "5.4.
|
|
8905
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.
|
|
8906
|
-
integrity sha512-
|
|
8913
|
+
"typescript@^4.6.4 || ^5.2.2", typescript@^5.4.3, typescript@^5.4.4:
|
|
8914
|
+
version "5.4.4"
|
|
8915
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.4.tgz#eb2471e7b0a5f1377523700a21669dce30c2d952"
|
|
8916
|
+
integrity sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==
|
|
8907
8917
|
|
|
8908
8918
|
typescript@~5.3.2:
|
|
8909
8919
|
version "5.3.3"
|
|
@@ -9244,11 +9254,6 @@ yallist@^4.0.0:
|
|
|
9244
9254
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
|
9245
9255
|
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
|
9246
9256
|
|
|
9247
|
-
yaml@^1.10.0:
|
|
9248
|
-
version "1.10.2"
|
|
9249
|
-
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
|
9250
|
-
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|
|
9251
|
-
|
|
9252
9257
|
yargs-parser@20.2.4:
|
|
9253
9258
|
version "20.2.4"
|
|
9254
9259
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-trust",
|
|
3
3
|
"description": "validate a digital signature for a npm package",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf-trust": "bin/dev"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@oclif/core": "^3.26.0",
|
|
12
12
|
"@salesforce/core": "^6.7.6",
|
|
13
13
|
"@salesforce/kit": "^3.1.0",
|
|
14
|
-
"@salesforce/sf-plugins-core": "^8.0.
|
|
14
|
+
"@salesforce/sf-plugins-core": "^8.0.3",
|
|
15
15
|
"got": "^13.0.0",
|
|
16
16
|
"npm": "10.2.3",
|
|
17
17
|
"npm-run-path": "^4.0.1",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@oclif/plugin-command-snapshot": "^5.1.4",
|
|
24
24
|
"@salesforce/cli-plugins-testkit": "^5.1.13",
|
|
25
|
-
"@salesforce/dev-scripts": "^8.
|
|
26
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
25
|
+
"@salesforce/dev-scripts": "^8.5.0",
|
|
26
|
+
"@salesforce/plugin-command-reference": "^3.0.74",
|
|
27
27
|
"@salesforce/plugin-telemetry": "^2.3.8",
|
|
28
28
|
"@salesforce/ts-sinon": "^1.4.18",
|
|
29
29
|
"@types/shelljs": "^0.8.15",
|
|
30
30
|
"@types/sinon-chai": "^3.2.12",
|
|
31
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
32
|
-
"oclif": "^4.7.
|
|
31
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
32
|
+
"oclif": "^4.7.6",
|
|
33
33
|
"sinon-chai": "^3.7.0",
|
|
34
34
|
"ts-node": "^10.9.2",
|
|
35
|
-
"typescript": "^5.4.
|
|
35
|
+
"typescript": "^5.4.4"
|
|
36
36
|
},
|
|
37
37
|
"config": {},
|
|
38
38
|
"engines": {
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
},
|
|
226
226
|
"type": "module",
|
|
227
227
|
"sfdx": {
|
|
228
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.5.
|
|
229
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.5.
|
|
228
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.5.4.crt",
|
|
229
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-trust/3.5.4.sig"
|
|
230
230
|
}
|
|
231
231
|
}
|