@salesforce/cli 2.103.3 → 2.103.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 +62 -62
- package/npm-shrinkwrap.json +49 -62
- package/oclif.lock +54 -60
- package/oclif.manifest.json +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.103.
|
|
28
|
+
@salesforce/cli/2.103.4 linux-x64 node-v22.18.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -242,7 +242,7 @@ EXAMPLES
|
|
|
242
242
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
243
243
|
```
|
|
244
244
|
|
|
245
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
245
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/activate.ts)_
|
|
246
246
|
|
|
247
247
|
## `sf agent create`
|
|
248
248
|
|
|
@@ -304,7 +304,7 @@ EXAMPLES
|
|
|
304
304
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
305
305
|
```
|
|
306
306
|
|
|
307
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
307
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/create.ts)_
|
|
308
308
|
|
|
309
309
|
## `sf agent deactivate`
|
|
310
310
|
|
|
@@ -344,7 +344,7 @@ EXAMPLES
|
|
|
344
344
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
347
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/deactivate.ts)_
|
|
348
348
|
|
|
349
349
|
## `sf agent generate agent-spec`
|
|
350
350
|
|
|
@@ -449,7 +449,7 @@ EXAMPLES
|
|
|
449
449
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
450
450
|
```
|
|
451
451
|
|
|
452
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
452
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/agent-spec.ts)_
|
|
453
453
|
|
|
454
454
|
## `sf agent generate template`
|
|
455
455
|
|
|
@@ -497,7 +497,7 @@ EXAMPLES
|
|
|
497
497
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
498
498
|
```
|
|
499
499
|
|
|
500
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
500
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/template.ts)_
|
|
501
501
|
|
|
502
502
|
## `sf agent generate test-spec`
|
|
503
503
|
|
|
@@ -558,7 +558,7 @@ EXAMPLES
|
|
|
558
558
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
559
559
|
```
|
|
560
560
|
|
|
561
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
561
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/generate/test-spec.ts)_
|
|
562
562
|
|
|
563
563
|
## `sf agent preview`
|
|
564
564
|
|
|
@@ -622,7 +622,7 @@ EXAMPLES
|
|
|
622
622
|
transcripts/my-preview
|
|
623
623
|
```
|
|
624
624
|
|
|
625
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
625
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/preview.ts)_
|
|
626
626
|
|
|
627
627
|
## `sf agent test create`
|
|
628
628
|
|
|
@@ -677,7 +677,7 @@ EXAMPLES
|
|
|
677
677
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
678
678
|
```
|
|
679
679
|
|
|
680
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
680
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/create.ts)_
|
|
681
681
|
|
|
682
682
|
## `sf agent test list`
|
|
683
683
|
|
|
@@ -712,7 +712,7 @@ EXAMPLES
|
|
|
712
712
|
$ sf agent test list --target-org my-org
|
|
713
713
|
```
|
|
714
714
|
|
|
715
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
715
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/list.ts)_
|
|
716
716
|
|
|
717
717
|
## `sf agent test results`
|
|
718
718
|
|
|
@@ -768,7 +768,7 @@ FLAG DESCRIPTIONS
|
|
|
768
768
|
test results aren't written.
|
|
769
769
|
```
|
|
770
770
|
|
|
771
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
771
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/results.ts)_
|
|
772
772
|
|
|
773
773
|
## `sf agent test resume`
|
|
774
774
|
|
|
@@ -831,7 +831,7 @@ FLAG DESCRIPTIONS
|
|
|
831
831
|
test results aren't written.
|
|
832
832
|
```
|
|
833
833
|
|
|
834
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
834
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/resume.ts)_
|
|
835
835
|
|
|
836
836
|
## `sf agent test run`
|
|
837
837
|
|
|
@@ -895,7 +895,7 @@ FLAG DESCRIPTIONS
|
|
|
895
895
|
test results aren't written.
|
|
896
896
|
```
|
|
897
897
|
|
|
898
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
898
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.3/src/commands/agent/test/run.ts)_
|
|
899
899
|
|
|
900
900
|
## `sf alias list`
|
|
901
901
|
|
|
@@ -2046,7 +2046,7 @@ EXAMPLES
|
|
|
2046
2046
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2047
2047
|
```
|
|
2048
2048
|
|
|
2049
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2049
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/bulk/results.ts)_
|
|
2050
2050
|
|
|
2051
2051
|
## `sf data create file`
|
|
2052
2052
|
|
|
@@ -2095,7 +2095,7 @@ EXAMPLES
|
|
|
2095
2095
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2096
2096
|
```
|
|
2097
2097
|
|
|
2098
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2098
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/file.ts)_
|
|
2099
2099
|
|
|
2100
2100
|
## `sf data create record`
|
|
2101
2101
|
|
|
@@ -2151,7 +2151,7 @@ EXAMPLES
|
|
|
2151
2151
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2152
2152
|
```
|
|
2153
2153
|
|
|
2154
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2154
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/create/record.ts)_
|
|
2155
2155
|
|
|
2156
2156
|
## `sf data delete bulk`
|
|
2157
2157
|
|
|
@@ -2211,7 +2211,7 @@ FLAG DESCRIPTIONS
|
|
|
2211
2211
|
and can be enabled only by a system administrator.
|
|
2212
2212
|
```
|
|
2213
2213
|
|
|
2214
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2214
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/bulk.ts)_
|
|
2215
2215
|
|
|
2216
2216
|
## `sf data delete record`
|
|
2217
2217
|
|
|
@@ -2272,7 +2272,7 @@ EXAMPLES
|
|
|
2272
2272
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2273
2273
|
```
|
|
2274
2274
|
|
|
2275
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2275
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/record.ts)_
|
|
2276
2276
|
|
|
2277
2277
|
## `sf data delete resume`
|
|
2278
2278
|
|
|
@@ -2311,7 +2311,7 @@ EXAMPLES
|
|
|
2311
2311
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2312
2312
|
```
|
|
2313
2313
|
|
|
2314
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2314
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/delete/resume.ts)_
|
|
2315
2315
|
|
|
2316
2316
|
## `sf data export bulk`
|
|
2317
2317
|
|
|
@@ -2385,7 +2385,7 @@ EXAMPLES
|
|
|
2385
2385
|
--result-format json --async
|
|
2386
2386
|
```
|
|
2387
2387
|
|
|
2388
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2388
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/bulk.ts)_
|
|
2389
2389
|
|
|
2390
2390
|
## `sf data export resume`
|
|
2391
2391
|
|
|
@@ -2424,7 +2424,7 @@ EXAMPLES
|
|
|
2424
2424
|
$ sf data export resume --use-most-recent
|
|
2425
2425
|
```
|
|
2426
2426
|
|
|
2427
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2427
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/resume.ts)_
|
|
2428
2428
|
|
|
2429
2429
|
## `sf data export tree`
|
|
2430
2430
|
|
|
@@ -2484,7 +2484,7 @@ EXAMPLES
|
|
|
2484
2484
|
my-scratch
|
|
2485
2485
|
```
|
|
2486
2486
|
|
|
2487
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2487
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/export/tree.ts)_
|
|
2488
2488
|
|
|
2489
2489
|
## `sf data get record`
|
|
2490
2490
|
|
|
@@ -2548,7 +2548,7 @@ EXAMPLES
|
|
|
2548
2548
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2549
2549
|
```
|
|
2550
2550
|
|
|
2551
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2551
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/get/record.ts)_
|
|
2552
2552
|
|
|
2553
2553
|
## `sf data import bulk`
|
|
2554
2554
|
|
|
@@ -2606,7 +2606,7 @@ EXAMPLES
|
|
|
2606
2606
|
$ sf data import bulk --file accounts.csv --sobject Account --async
|
|
2607
2607
|
```
|
|
2608
2608
|
|
|
2609
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2609
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/bulk.ts)_
|
|
2610
2610
|
|
|
2611
2611
|
## `sf data import resume`
|
|
2612
2612
|
|
|
@@ -2642,7 +2642,7 @@ EXAMPLES
|
|
|
2642
2642
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
2643
2643
|
```
|
|
2644
2644
|
|
|
2645
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2645
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/resume.ts)_
|
|
2646
2646
|
|
|
2647
2647
|
## `sf data import tree`
|
|
2648
2648
|
|
|
@@ -2706,7 +2706,7 @@ FLAG DESCRIPTIONS
|
|
|
2706
2706
|
- files(array) - Files: An array of files paths to load
|
|
2707
2707
|
```
|
|
2708
2708
|
|
|
2709
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2709
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/import/tree.ts)_
|
|
2710
2710
|
|
|
2711
2711
|
## `sf data query`
|
|
2712
2712
|
|
|
@@ -2759,7 +2759,7 @@ EXAMPLES
|
|
|
2759
2759
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
2760
2760
|
```
|
|
2761
2761
|
|
|
2762
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2762
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/query.ts)_
|
|
2763
2763
|
|
|
2764
2764
|
## `sf data resume`
|
|
2765
2765
|
|
|
@@ -2796,7 +2796,7 @@ EXAMPLES
|
|
|
2796
2796
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
2797
2797
|
```
|
|
2798
2798
|
|
|
2799
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2799
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/resume.ts)_
|
|
2800
2800
|
|
|
2801
2801
|
## `sf data search`
|
|
2802
2802
|
|
|
@@ -2846,7 +2846,7 @@ EXAMPLES
|
|
|
2846
2846
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
2847
2847
|
```
|
|
2848
2848
|
|
|
2849
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2849
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/search.ts)_
|
|
2850
2850
|
|
|
2851
2851
|
## `sf data update bulk`
|
|
2852
2852
|
|
|
@@ -2907,7 +2907,7 @@ EXAMPLES
|
|
|
2907
2907
|
$ sf data update bulk --file accounts.csv --sobject Account --async
|
|
2908
2908
|
```
|
|
2909
2909
|
|
|
2910
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2910
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/bulk.ts)_
|
|
2911
2911
|
|
|
2912
2912
|
## `sf data update record`
|
|
2913
2913
|
|
|
@@ -2969,7 +2969,7 @@ EXAMPLES
|
|
|
2969
2969
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
2970
2970
|
```
|
|
2971
2971
|
|
|
2972
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2972
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/record.ts)_
|
|
2973
2973
|
|
|
2974
2974
|
## `sf data update resume`
|
|
2975
2975
|
|
|
@@ -3008,7 +3008,7 @@ EXAMPLES
|
|
|
3008
3008
|
$ sf data update resume --use-most-recent
|
|
3009
3009
|
```
|
|
3010
3010
|
|
|
3011
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3011
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/update/resume.ts)_
|
|
3012
3012
|
|
|
3013
3013
|
## `sf data upsert bulk`
|
|
3014
3014
|
|
|
@@ -3065,7 +3065,7 @@ EXAMPLES
|
|
|
3065
3065
|
my-scratch
|
|
3066
3066
|
```
|
|
3067
3067
|
|
|
3068
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3068
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/bulk.ts)_
|
|
3069
3069
|
|
|
3070
3070
|
## `sf data upsert resume`
|
|
3071
3071
|
|
|
@@ -3104,7 +3104,7 @@ EXAMPLES
|
|
|
3104
3104
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3105
3105
|
```
|
|
3106
3106
|
|
|
3107
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3107
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/data/upsert/resume.ts)_
|
|
3108
3108
|
|
|
3109
3109
|
## `sf doctor`
|
|
3110
3110
|
|
|
@@ -3152,7 +3152,7 @@ EXAMPLES
|
|
|
3152
3152
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3153
3153
|
```
|
|
3154
3154
|
|
|
3155
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3155
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.81/src/commands/doctor.ts)_
|
|
3156
3156
|
|
|
3157
3157
|
## `sf force data bulk delete`
|
|
3158
3158
|
|
|
@@ -3199,7 +3199,7 @@ EXAMPLES
|
|
|
3199
3199
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3200
3200
|
```
|
|
3201
3201
|
|
|
3202
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3202
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/delete.ts)_
|
|
3203
3203
|
|
|
3204
3204
|
## `sf force data bulk status`
|
|
3205
3205
|
|
|
@@ -3236,7 +3236,7 @@ EXAMPLES
|
|
|
3236
3236
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3237
3237
|
```
|
|
3238
3238
|
|
|
3239
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3239
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/status.ts)_
|
|
3240
3240
|
|
|
3241
3241
|
## `sf force data bulk upsert`
|
|
3242
3242
|
|
|
@@ -3294,7 +3294,7 @@ EXAMPLES
|
|
|
3294
3294
|
--target-org my-scratch
|
|
3295
3295
|
```
|
|
3296
3296
|
|
|
3297
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3297
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.52/src/commands/force/data/bulk/upsert.ts)_
|
|
3298
3298
|
|
|
3299
3299
|
## `sf help [COMMAND]`
|
|
3300
3300
|
|
|
@@ -3354,7 +3354,7 @@ EXAMPLES
|
|
|
3354
3354
|
$ sf info releasenotes display --version latest
|
|
3355
3355
|
```
|
|
3356
3356
|
|
|
3357
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3357
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.81/src/commands/info/releasenotes/display.ts)_
|
|
3358
3358
|
|
|
3359
3359
|
## `sf lightning generate app`
|
|
3360
3360
|
|
|
@@ -3870,7 +3870,7 @@ FLAG DESCRIPTIONS
|
|
|
3870
3870
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3871
3871
|
```
|
|
3872
3872
|
|
|
3873
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
3873
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/create/sandbox.ts)_
|
|
3874
3874
|
|
|
3875
3875
|
## `sf org create scratch`
|
|
3876
3876
|
|
|
@@ -4052,7 +4052,7 @@ FLAG DESCRIPTIONS
|
|
|
4052
4052
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4053
4053
|
```
|
|
4054
4054
|
|
|
4055
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4055
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/create/scratch.ts)_
|
|
4056
4056
|
|
|
4057
4057
|
## `sf org create user`
|
|
4058
4058
|
|
|
@@ -4206,7 +4206,7 @@ EXAMPLES
|
|
|
4206
4206
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4207
4207
|
```
|
|
4208
4208
|
|
|
4209
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4209
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/delete/sandbox.ts)_
|
|
4210
4210
|
|
|
4211
4211
|
## `sf org delete scratch`
|
|
4212
4212
|
|
|
@@ -4250,7 +4250,7 @@ EXAMPLES
|
|
|
4250
4250
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4251
4251
|
```
|
|
4252
4252
|
|
|
4253
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4253
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/delete/scratch.ts)_
|
|
4254
4254
|
|
|
4255
4255
|
## `sf org disable tracking`
|
|
4256
4256
|
|
|
@@ -4289,7 +4289,7 @@ EXAMPLES
|
|
|
4289
4289
|
$ sf org disable tracking
|
|
4290
4290
|
```
|
|
4291
4291
|
|
|
4292
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4292
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/disable/tracking.ts)_
|
|
4293
4293
|
|
|
4294
4294
|
## `sf org display`
|
|
4295
4295
|
|
|
@@ -4334,7 +4334,7 @@ EXAMPLES
|
|
|
4334
4334
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4335
4335
|
```
|
|
4336
4336
|
|
|
4337
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4337
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/display.ts)_
|
|
4338
4338
|
|
|
4339
4339
|
## `sf org display user`
|
|
4340
4340
|
|
|
@@ -4415,7 +4415,7 @@ EXAMPLES
|
|
|
4415
4415
|
$ sf org enable tracking
|
|
4416
4416
|
```
|
|
4417
4417
|
|
|
4418
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4418
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/enable/tracking.ts)_
|
|
4419
4419
|
|
|
4420
4420
|
## `sf org generate password`
|
|
4421
4421
|
|
|
@@ -4521,7 +4521,7 @@ EXAMPLES
|
|
|
4521
4521
|
$ sf org list --clean
|
|
4522
4522
|
```
|
|
4523
4523
|
|
|
4524
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4524
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list.ts)_
|
|
4525
4525
|
|
|
4526
4526
|
## `sf org list auth`
|
|
4527
4527
|
|
|
@@ -4553,7 +4553,7 @@ EXAMPLES
|
|
|
4553
4553
|
$ sf org list auth
|
|
4554
4554
|
```
|
|
4555
4555
|
|
|
4556
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4556
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/list/auth.ts)_
|
|
4557
4557
|
|
|
4558
4558
|
## `sf org list limits`
|
|
4559
4559
|
|
|
@@ -4660,7 +4660,7 @@ FLAG DESCRIPTIONS
|
|
|
4660
4660
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4661
4661
|
```
|
|
4662
4662
|
|
|
4663
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4663
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list/metadata.ts)_
|
|
4664
4664
|
|
|
4665
4665
|
## `sf org list metadata-types`
|
|
4666
4666
|
|
|
@@ -4715,7 +4715,7 @@ FLAG DESCRIPTIONS
|
|
|
4715
4715
|
Override the api version used for api requests made by this command
|
|
4716
4716
|
```
|
|
4717
4717
|
|
|
4718
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4718
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/list/metadata-types.ts)_
|
|
4719
4719
|
|
|
4720
4720
|
## `sf org list sobject record-counts`
|
|
4721
4721
|
|
|
@@ -4853,7 +4853,7 @@ FLAG DESCRIPTIONS
|
|
|
4853
4853
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4854
4854
|
```
|
|
4855
4855
|
|
|
4856
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4856
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/access-token.ts)_
|
|
4857
4857
|
|
|
4858
4858
|
## `sf org login device`
|
|
4859
4859
|
|
|
@@ -4913,7 +4913,7 @@ FLAG DESCRIPTIONS
|
|
|
4913
4913
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4914
4914
|
```
|
|
4915
4915
|
|
|
4916
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
4916
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/device.ts)_
|
|
4917
4917
|
|
|
4918
4918
|
## `sf org login jwt`
|
|
4919
4919
|
|
|
@@ -5004,7 +5004,7 @@ FLAG DESCRIPTIONS
|
|
|
5004
5004
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5005
5005
|
```
|
|
5006
5006
|
|
|
5007
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5007
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/jwt.ts)_
|
|
5008
5008
|
|
|
5009
5009
|
## `sf org login sfdx-url`
|
|
5010
5010
|
|
|
@@ -5074,7 +5074,7 @@ EXAMPLES
|
|
|
5074
5074
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5075
5075
|
```
|
|
5076
5076
|
|
|
5077
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5077
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/sfdx-url.ts)_
|
|
5078
5078
|
|
|
5079
5079
|
## `sf org login web`
|
|
5080
5080
|
|
|
@@ -5179,7 +5179,7 @@ FLAG DESCRIPTIONS
|
|
|
5179
5179
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5180
5180
|
```
|
|
5181
5181
|
|
|
5182
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5182
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/login/web.ts)_
|
|
5183
5183
|
|
|
5184
5184
|
## `sf org logout`
|
|
5185
5185
|
|
|
@@ -5245,7 +5245,7 @@ FLAG DESCRIPTIONS
|
|
|
5245
5245
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5246
5246
|
```
|
|
5247
5247
|
|
|
5248
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.
|
|
5248
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.7.19/src/commands/org/logout.ts)_
|
|
5249
5249
|
|
|
5250
5250
|
## `sf org open`
|
|
5251
5251
|
|
|
@@ -5321,7 +5321,7 @@ EXAMPLES
|
|
|
5321
5321
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5322
5322
|
```
|
|
5323
5323
|
|
|
5324
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5324
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/open.ts)_
|
|
5325
5325
|
|
|
5326
5326
|
## `sf org open agent`
|
|
5327
5327
|
|
|
@@ -5372,7 +5372,7 @@ EXAMPLES
|
|
|
5372
5372
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5373
5373
|
```
|
|
5374
5374
|
|
|
5375
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5375
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/open/agent.ts)_
|
|
5376
5376
|
|
|
5377
5377
|
## `sf org refresh sandbox`
|
|
5378
5378
|
|
|
@@ -5475,7 +5475,7 @@ FLAG DESCRIPTIONS
|
|
|
5475
5475
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5476
5476
|
```
|
|
5477
5477
|
|
|
5478
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5478
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/refresh/sandbox.ts)_
|
|
5479
5479
|
|
|
5480
5480
|
## `sf org resume sandbox`
|
|
5481
5481
|
|
|
@@ -5538,7 +5538,7 @@ FLAG DESCRIPTIONS
|
|
|
5538
5538
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5539
5539
|
```
|
|
5540
5540
|
|
|
5541
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5541
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/resume/sandbox.ts)_
|
|
5542
5542
|
|
|
5543
5543
|
## `sf org resume scratch`
|
|
5544
5544
|
|
|
@@ -5591,7 +5591,7 @@ FLAG DESCRIPTIONS
|
|
|
5591
5591
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5592
5592
|
```
|
|
5593
5593
|
|
|
5594
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5594
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.23/src/commands/org/resume/scratch.ts)_
|
|
5595
5595
|
|
|
5596
5596
|
## `sf package convert`
|
|
5597
5597
|
|
|
@@ -9611,7 +9611,7 @@ EXAMPLES
|
|
|
9611
9611
|
$ sf update --available
|
|
9612
9612
|
```
|
|
9613
9613
|
|
|
9614
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9614
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.4/src/commands/update.ts)_
|
|
9615
9615
|
|
|
9616
9616
|
## `sf version`
|
|
9617
9617
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.103.
|
|
9
|
+
"version": "2.103.4",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -15,25 +15,25 @@
|
|
|
15
15
|
"@oclif/plugin-autocomplete": "3.2.34",
|
|
16
16
|
"@oclif/plugin-commands": "4.1.32",
|
|
17
17
|
"@oclif/plugin-help": "6.2.32",
|
|
18
|
-
"@oclif/plugin-not-found": "3.2.
|
|
18
|
+
"@oclif/plugin-not-found": "3.2.65",
|
|
19
19
|
"@oclif/plugin-plugins": "5.4.46",
|
|
20
20
|
"@oclif/plugin-search": "1.2.28",
|
|
21
|
-
"@oclif/plugin-update": "4.7.
|
|
21
|
+
"@oclif/plugin-update": "4.7.4",
|
|
22
22
|
"@oclif/plugin-version": "2.2.32",
|
|
23
23
|
"@oclif/plugin-warn-if-update-available": "3.1.46",
|
|
24
24
|
"@oclif/plugin-which": "3.2.39",
|
|
25
25
|
"@salesforce/core": "^8.9.1",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.24.
|
|
27
|
+
"@salesforce/plugin-agent": "1.24.3",
|
|
28
28
|
"@salesforce/plugin-apex": "3.6.19",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.3",
|
|
30
|
-
"@salesforce/plugin-auth": "3.7.
|
|
31
|
-
"@salesforce/plugin-data": "4.0.
|
|
30
|
+
"@salesforce/plugin-auth": "3.7.19",
|
|
31
|
+
"@salesforce/plugin-data": "4.0.52",
|
|
32
32
|
"@salesforce/plugin-deploy-retrieve": "3.22.41",
|
|
33
|
-
"@salesforce/plugin-info": "3.4.
|
|
33
|
+
"@salesforce/plugin-info": "3.4.81",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.64",
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.8",
|
|
36
|
-
"@salesforce/plugin-org": "5.9.
|
|
36
|
+
"@salesforce/plugin-org": "5.9.23",
|
|
37
37
|
"@salesforce/plugin-packaging": "2.19.5",
|
|
38
38
|
"@salesforce/plugin-schema": "3.3.78",
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.42",
|
|
@@ -3159,9 +3159,9 @@
|
|
|
3159
3159
|
}
|
|
3160
3160
|
},
|
|
3161
3161
|
"node_modules/@jsforce/jsforce-node": {
|
|
3162
|
-
"version": "3.10.
|
|
3163
|
-
"resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.
|
|
3164
|
-
"integrity": "sha512-
|
|
3162
|
+
"version": "3.10.3",
|
|
3163
|
+
"resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.3.tgz",
|
|
3164
|
+
"integrity": "sha512-Q6kgPNP/xiP8gzZLwquTLFKNUC9AbDIxrC9bhRsK1YgyDF4V64V/muxHVeCHR4rtXre658eLOgz6kRgoeBHTVg==",
|
|
3165
3165
|
"license": "MIT",
|
|
3166
3166
|
"dependencies": {
|
|
3167
3167
|
"@sindresorhus/is": "^4",
|
|
@@ -3952,12 +3952,12 @@
|
|
|
3952
3952
|
}
|
|
3953
3953
|
},
|
|
3954
3954
|
"node_modules/@oclif/plugin-not-found": {
|
|
3955
|
-
"version": "3.2.
|
|
3956
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.2.
|
|
3957
|
-
"integrity": "sha512-
|
|
3955
|
+
"version": "3.2.65",
|
|
3956
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.2.65.tgz",
|
|
3957
|
+
"integrity": "sha512-WgP78eBiRsQYxRIkEui/eyR0l3a2w6LdGMoZTg3DvFwKqZ2X542oUfUmTSqvb19LxdS4uaQ+Mwp4DTVHw5lk/A==",
|
|
3958
3958
|
"license": "MIT",
|
|
3959
3959
|
"dependencies": {
|
|
3960
|
-
"@inquirer/prompts": "^7.8.
|
|
3960
|
+
"@inquirer/prompts": "^7.8.2",
|
|
3961
3961
|
"@oclif/core": "^4.5.2",
|
|
3962
3962
|
"ansis": "^3.17.0",
|
|
3963
3963
|
"fast-levenshtein": "^3.0.0"
|
|
@@ -4096,14 +4096,14 @@
|
|
|
4096
4096
|
}
|
|
4097
4097
|
},
|
|
4098
4098
|
"node_modules/@oclif/plugin-update": {
|
|
4099
|
-
"version": "4.7.
|
|
4100
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
4101
|
-
"integrity": "sha512-
|
|
4099
|
+
"version": "4.7.4",
|
|
4100
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.4.tgz",
|
|
4101
|
+
"integrity": "sha512-7uETf2JdWXIdBnynORx4eXy7Wx73hlwHQ0vY6pTeaF49PJCGyCofuqhucA1S2Sx/+DQeJFsiNHHAmgrrPLUPiA==",
|
|
4102
4102
|
"license": "MIT",
|
|
4103
4103
|
"dependencies": {
|
|
4104
4104
|
"@inquirer/select": "^2.5.0",
|
|
4105
4105
|
"@oclif/core": "^4",
|
|
4106
|
-
"@oclif/table": "^0.4.
|
|
4106
|
+
"@oclif/table": "^0.4.12",
|
|
4107
4107
|
"ansis": "^3.17.0",
|
|
4108
4108
|
"debug": "^4.4.1",
|
|
4109
4109
|
"filesize": "^6.1.0",
|
|
@@ -4986,9 +4986,9 @@
|
|
|
4986
4986
|
}
|
|
4987
4987
|
},
|
|
4988
4988
|
"node_modules/@salesforce/plugin-agent": {
|
|
4989
|
-
"version": "1.24.
|
|
4990
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.
|
|
4991
|
-
"integrity": "sha512-
|
|
4989
|
+
"version": "1.24.3",
|
|
4990
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.3.tgz",
|
|
4991
|
+
"integrity": "sha512-ck2cOVvnaUuuukajUkBvxgAHy53lYbzCxMXr6m1L99ZRYO9l44tosvUfJMkBb4xKBgDrOWtLZtZd7ddwutDPfw==",
|
|
4992
4992
|
"license": "BSD-3-Clause",
|
|
4993
4993
|
"dependencies": {
|
|
4994
4994
|
"@inquirer/core": "^10.1.6",
|
|
@@ -5007,7 +5007,7 @@
|
|
|
5007
5007
|
"ink-text-input": "^6.0.0",
|
|
5008
5008
|
"inquirer-autocomplete-standalone": "^0.8.1",
|
|
5009
5009
|
"react": "^18.3.1",
|
|
5010
|
-
"yaml": "^2.8.
|
|
5010
|
+
"yaml": "^2.8.1"
|
|
5011
5011
|
},
|
|
5012
5012
|
"engines": {
|
|
5013
5013
|
"node": ">=18.0.0"
|
|
@@ -5050,9 +5050,9 @@
|
|
|
5050
5050
|
}
|
|
5051
5051
|
},
|
|
5052
5052
|
"node_modules/@salesforce/plugin-auth": {
|
|
5053
|
-
"version": "3.7.
|
|
5054
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.
|
|
5055
|
-
"integrity": "sha512-
|
|
5053
|
+
"version": "3.7.19",
|
|
5054
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.19.tgz",
|
|
5055
|
+
"integrity": "sha512-dqXyi8SyygnAHGaHtucx8D0rNlC3IMMtLai98qh6E0XQFPCvZEiYjpYAQlO206CvVgjQ6HGtymWsT4a52eoyVA==",
|
|
5056
5056
|
"license": "Apache-2.0",
|
|
5057
5057
|
"dependencies": {
|
|
5058
5058
|
"@inquirer/checkbox": "^2.5.0",
|
|
@@ -5060,7 +5060,7 @@
|
|
|
5060
5060
|
"@oclif/core": "^4",
|
|
5061
5061
|
"@salesforce/core": "^8.18.7",
|
|
5062
5062
|
"@salesforce/kit": "^3.2.3",
|
|
5063
|
-
"@salesforce/plugin-info": "^3.4.
|
|
5063
|
+
"@salesforce/plugin-info": "^3.4.80",
|
|
5064
5064
|
"@salesforce/sf-plugins-core": "^12.2.4",
|
|
5065
5065
|
"@salesforce/ts-types": "^2.0.11",
|
|
5066
5066
|
"open": "^10.2.0"
|
|
@@ -5181,16 +5181,16 @@
|
|
|
5181
5181
|
}
|
|
5182
5182
|
},
|
|
5183
5183
|
"node_modules/@salesforce/plugin-data": {
|
|
5184
|
-
"version": "4.0.
|
|
5185
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.
|
|
5186
|
-
"integrity": "sha512-
|
|
5184
|
+
"version": "4.0.52",
|
|
5185
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.52.tgz",
|
|
5186
|
+
"integrity": "sha512-ClcTYXITqksDhqHXuLrNa4uAPM5tV9KF2MDHyNaRvz9VaxFk+JZnUXhfsb1D2akzRMgWaKEv4rCSqNMKQOmT+Q==",
|
|
5187
5187
|
"license": "Apache-2.0",
|
|
5188
5188
|
"dependencies": {
|
|
5189
5189
|
"@jsforce/jsforce-node": "^3.9.4",
|
|
5190
5190
|
"@oclif/multi-stage-output": "^0.8.20",
|
|
5191
5191
|
"@salesforce/core": "^8.19.1",
|
|
5192
5192
|
"@salesforce/kit": "^3.2.2",
|
|
5193
|
-
"@salesforce/sf-plugins-core": "^12.2.
|
|
5193
|
+
"@salesforce/sf-plugins-core": "^12.2.4",
|
|
5194
5194
|
"@salesforce/ts-types": "^2.0.11",
|
|
5195
5195
|
"ansis": "^3.16.0",
|
|
5196
5196
|
"change-case": "^5.4.4",
|
|
@@ -5228,13 +5228,13 @@
|
|
|
5228
5228
|
}
|
|
5229
5229
|
},
|
|
5230
5230
|
"node_modules/@salesforce/plugin-info": {
|
|
5231
|
-
"version": "3.4.
|
|
5232
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.
|
|
5233
|
-
"integrity": "sha512-
|
|
5231
|
+
"version": "3.4.81",
|
|
5232
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.81.tgz",
|
|
5233
|
+
"integrity": "sha512-z1IKdX0IVlSb4sZznA+zfSLr3t5wfkJVEZ05utpF/o8s+dmuvfbDyUDxEehq4EkbmAKru36oU4pJuLov/psJPw==",
|
|
5234
5234
|
"license": "Apache-2.0",
|
|
5235
5235
|
"dependencies": {
|
|
5236
5236
|
"@inquirer/input": "^2.3.0",
|
|
5237
|
-
"@jsforce/jsforce-node": "^3.10.
|
|
5237
|
+
"@jsforce/jsforce-node": "^3.10.3",
|
|
5238
5238
|
"@oclif/core": "^4",
|
|
5239
5239
|
"@salesforce/core": "^8.19.1",
|
|
5240
5240
|
"@salesforce/kit": "^3.2.3",
|
|
@@ -5280,9 +5280,9 @@
|
|
|
5280
5280
|
}
|
|
5281
5281
|
},
|
|
5282
5282
|
"node_modules/@salesforce/plugin-org": {
|
|
5283
|
-
"version": "5.9.
|
|
5284
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.9.
|
|
5285
|
-
"integrity": "sha512-
|
|
5283
|
+
"version": "5.9.23",
|
|
5284
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.9.23.tgz",
|
|
5285
|
+
"integrity": "sha512-gcCfKJ6j1hVaPCAjI1RmPusmopFv5cdHgzEuZ8plSlqmpu+gPZwXRpIuuKsWFbZtw87myThbuB3g0XIEiXX8FA==",
|
|
5286
5286
|
"license": "Apache-2.0",
|
|
5287
5287
|
"dependencies": {
|
|
5288
5288
|
"@oclif/core": "^4.5.2",
|
|
@@ -5290,7 +5290,7 @@
|
|
|
5290
5290
|
"@salesforce/core": "^8.19.1",
|
|
5291
5291
|
"@salesforce/kit": "^3.2.3",
|
|
5292
5292
|
"@salesforce/sf-plugins-core": "^12.2.4",
|
|
5293
|
-
"@salesforce/source-deploy-retrieve": "^12.22.
|
|
5293
|
+
"@salesforce/source-deploy-retrieve": "^12.22.5",
|
|
5294
5294
|
"@salesforce/ts-types": "^2.0.12",
|
|
5295
5295
|
"ansis": "^3.16.0",
|
|
5296
5296
|
"change-case": "^5.4.4",
|
|
@@ -5684,26 +5684,25 @@
|
|
|
5684
5684
|
}
|
|
5685
5685
|
},
|
|
5686
5686
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5687
|
-
"version": "12.22.
|
|
5688
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.22.
|
|
5689
|
-
"integrity": "sha512-
|
|
5687
|
+
"version": "12.22.6",
|
|
5688
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.22.6.tgz",
|
|
5689
|
+
"integrity": "sha512-kVnHlLEdXubsc7lN0BJ9q0X3hO6xYJDTTn4aPx9SB1PQX4GE2zga2wkZEAFf033offRaK/y8sVXaWTBkWsLBig==",
|
|
5690
5690
|
"license": "Apache-2.0",
|
|
5691
5691
|
"dependencies": {
|
|
5692
|
-
"@salesforce/core": "^8.
|
|
5692
|
+
"@salesforce/core": "^8.19.1",
|
|
5693
5693
|
"@salesforce/kit": "^3.2.3",
|
|
5694
5694
|
"@salesforce/ts-types": "^2.0.12",
|
|
5695
|
-
"@salesforce/types": "^1.
|
|
5695
|
+
"@salesforce/types": "^1.4.0",
|
|
5696
5696
|
"fast-levenshtein": "^3.0.0",
|
|
5697
5697
|
"fast-xml-parser": "^4.5.3",
|
|
5698
5698
|
"got": "^11.8.6",
|
|
5699
5699
|
"graceful-fs": "^4.2.11",
|
|
5700
5700
|
"ignore": "^5.3.2",
|
|
5701
|
-
"isbinaryfile": "^5.0.2",
|
|
5702
5701
|
"jszip": "^3.10.1",
|
|
5703
5702
|
"mime": "2.6.0",
|
|
5704
5703
|
"minimatch": "^9.0.5",
|
|
5705
5704
|
"proxy-agent": "^6.4.0",
|
|
5706
|
-
"yaml": "^2.
|
|
5705
|
+
"yaml": "^2.8.1"
|
|
5707
5706
|
},
|
|
5708
5707
|
"engines": {
|
|
5709
5708
|
"node": ">=18.0.0"
|
|
@@ -14405,18 +14404,6 @@
|
|
|
14405
14404
|
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
14406
14405
|
"license": "MIT"
|
|
14407
14406
|
},
|
|
14408
|
-
"node_modules/isbinaryfile": {
|
|
14409
|
-
"version": "5.0.2",
|
|
14410
|
-
"resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.2.tgz",
|
|
14411
|
-
"integrity": "sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==",
|
|
14412
|
-
"license": "MIT",
|
|
14413
|
-
"engines": {
|
|
14414
|
-
"node": ">= 18.0.0"
|
|
14415
|
-
},
|
|
14416
|
-
"funding": {
|
|
14417
|
-
"url": "https://github.com/sponsors/gjtorikian/"
|
|
14418
|
-
}
|
|
14419
|
-
},
|
|
14420
14407
|
"node_modules/isexe": {
|
|
14421
14408
|
"version": "3.1.1",
|
|
14422
14409
|
"resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
|
|
@@ -24642,9 +24629,9 @@
|
|
|
24642
24629
|
"license": "ISC"
|
|
24643
24630
|
},
|
|
24644
24631
|
"node_modules/yaml": {
|
|
24645
|
-
"version": "2.8.
|
|
24646
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.
|
|
24647
|
-
"integrity": "sha512-
|
|
24632
|
+
"version": "2.8.1",
|
|
24633
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz",
|
|
24634
|
+
"integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==",
|
|
24648
24635
|
"license": "ISC",
|
|
24649
24636
|
"bin": {
|
|
24650
24637
|
"yaml": "bin.mjs"
|
package/oclif.lock
CHANGED
|
@@ -1226,7 +1226,7 @@
|
|
|
1226
1226
|
"@inquirer/type" "^3.0.8"
|
|
1227
1227
|
ansi-escapes "^4.3.2"
|
|
1228
1228
|
|
|
1229
|
-
"@inquirer/prompts@^7.2.0", "@inquirer/prompts@^7.8.
|
|
1229
|
+
"@inquirer/prompts@^7.2.0", "@inquirer/prompts@^7.8.2":
|
|
1230
1230
|
version "7.8.2"
|
|
1231
1231
|
resolved "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.8.2.tgz"
|
|
1232
1232
|
integrity sha512-nqhDw2ZcAUrKNPwhjinJny903bRhI0rQhiDz1LksjeRxqa36i3l75+4iXbOy0rlDpLJGxqtgoPavQjmmyS5UJw==
|
|
@@ -1382,10 +1382,10 @@
|
|
|
1382
1382
|
"@jridgewell/resolve-uri" "^3.0.3"
|
|
1383
1383
|
"@jridgewell/sourcemap-codec" "^1.4.10"
|
|
1384
1384
|
|
|
1385
|
-
"@jsforce/jsforce-node@^3.10.1", "@jsforce/jsforce-node@^3.6.5", "@jsforce/jsforce-node@^3.9.4":
|
|
1386
|
-
version "3.10.
|
|
1387
|
-
resolved "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.
|
|
1388
|
-
integrity sha512-
|
|
1385
|
+
"@jsforce/jsforce-node@^3.10.1", "@jsforce/jsforce-node@^3.10.3", "@jsforce/jsforce-node@^3.6.5", "@jsforce/jsforce-node@^3.9.4":
|
|
1386
|
+
version "3.10.3"
|
|
1387
|
+
resolved "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.3.tgz"
|
|
1388
|
+
integrity sha512-Q6kgPNP/xiP8gzZLwquTLFKNUC9AbDIxrC9bhRsK1YgyDF4V64V/muxHVeCHR4rtXre658eLOgz6kRgoeBHTVg==
|
|
1389
1389
|
dependencies:
|
|
1390
1390
|
"@sindresorhus/is" "^4"
|
|
1391
1391
|
base64url "^3.0.1"
|
|
@@ -1717,12 +1717,12 @@
|
|
|
1717
1717
|
dependencies:
|
|
1718
1718
|
"@oclif/core" "^4"
|
|
1719
1719
|
|
|
1720
|
-
"@oclif/plugin-not-found@^3.2.32", "@oclif/plugin-not-found@3.2.
|
|
1721
|
-
version "3.2.
|
|
1722
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.2.
|
|
1723
|
-
integrity sha512-
|
|
1720
|
+
"@oclif/plugin-not-found@^3.2.32", "@oclif/plugin-not-found@3.2.65":
|
|
1721
|
+
version "3.2.65"
|
|
1722
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.2.65.tgz"
|
|
1723
|
+
integrity sha512-WgP78eBiRsQYxRIkEui/eyR0l3a2w6LdGMoZTg3DvFwKqZ2X542oUfUmTSqvb19LxdS4uaQ+Mwp4DTVHw5lk/A==
|
|
1724
1724
|
dependencies:
|
|
1725
|
-
"@inquirer/prompts" "^7.8.
|
|
1725
|
+
"@inquirer/prompts" "^7.8.2"
|
|
1726
1726
|
"@oclif/core" "^4.5.2"
|
|
1727
1727
|
ansis "^3.17.0"
|
|
1728
1728
|
fast-levenshtein "^3.0.0"
|
|
@@ -1753,14 +1753,14 @@
|
|
|
1753
1753
|
ansi-escapes "^7.0.0"
|
|
1754
1754
|
inquirer-autocomplete-standalone "^0.8.1"
|
|
1755
1755
|
|
|
1756
|
-
"@oclif/plugin-update@4.7.
|
|
1757
|
-
version "4.7.
|
|
1758
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
1759
|
-
integrity sha512-
|
|
1756
|
+
"@oclif/plugin-update@4.7.4":
|
|
1757
|
+
version "4.7.4"
|
|
1758
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.4.tgz"
|
|
1759
|
+
integrity sha512-7uETf2JdWXIdBnynORx4eXy7Wx73hlwHQ0vY6pTeaF49PJCGyCofuqhucA1S2Sx/+DQeJFsiNHHAmgrrPLUPiA==
|
|
1760
1760
|
dependencies:
|
|
1761
1761
|
"@inquirer/select" "^2.5.0"
|
|
1762
1762
|
"@oclif/core" "^4"
|
|
1763
|
-
"@oclif/table" "^0.4.
|
|
1763
|
+
"@oclif/table" "^0.4.12"
|
|
1764
1764
|
ansis "^3.17.0"
|
|
1765
1765
|
debug "^4.4.1"
|
|
1766
1766
|
filesize "^6.1.0"
|
|
@@ -1797,7 +1797,7 @@
|
|
|
1797
1797
|
"@oclif/core" "^4"
|
|
1798
1798
|
ansis "^3.17.0"
|
|
1799
1799
|
|
|
1800
|
-
"@oclif/table@^0.4.
|
|
1800
|
+
"@oclif/table@^0.4.12":
|
|
1801
1801
|
version "0.4.12"
|
|
1802
1802
|
resolved "https://registry.npmjs.org/@oclif/table/-/table-0.4.12.tgz"
|
|
1803
1803
|
integrity sha512-CrdJBBmil38o6K5QY+vuOovfG3A6q9nFIAISpNOoOnSSiA81s/xfZ/T4E0z7coDvYnz6wJCTMc2ObqaxBZfbHg==
|
|
@@ -2165,10 +2165,10 @@
|
|
|
2165
2165
|
jszip "^3.10.1"
|
|
2166
2166
|
object-treeify "^2"
|
|
2167
2167
|
|
|
2168
|
-
"@salesforce/plugin-agent@1.24.
|
|
2169
|
-
version "1.24.
|
|
2170
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.
|
|
2171
|
-
integrity sha512-
|
|
2168
|
+
"@salesforce/plugin-agent@1.24.3":
|
|
2169
|
+
version "1.24.3"
|
|
2170
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.3.tgz"
|
|
2171
|
+
integrity sha512-ck2cOVvnaUuuukajUkBvxgAHy53lYbzCxMXr6m1L99ZRYO9l44tosvUfJMkBb4xKBgDrOWtLZtZd7ddwutDPfw==
|
|
2172
2172
|
dependencies:
|
|
2173
2173
|
"@inquirer/core" "^10.1.6"
|
|
2174
2174
|
"@inquirer/prompts" "^7.2.0"
|
|
@@ -2186,7 +2186,7 @@
|
|
|
2186
2186
|
ink-text-input "^6.0.0"
|
|
2187
2187
|
inquirer-autocomplete-standalone "^0.8.1"
|
|
2188
2188
|
react "^18.3.1"
|
|
2189
|
-
yaml "^2.8.
|
|
2189
|
+
yaml "^2.8.1"
|
|
2190
2190
|
|
|
2191
2191
|
"@salesforce/plugin-apex@3.6.19":
|
|
2192
2192
|
version "3.6.19"
|
|
@@ -2214,17 +2214,17 @@
|
|
|
2214
2214
|
got "^13.0.0"
|
|
2215
2215
|
proxy-agent "^6.4.0"
|
|
2216
2216
|
|
|
2217
|
-
"@salesforce/plugin-auth@3.7.
|
|
2218
|
-
version "3.7.
|
|
2219
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.
|
|
2220
|
-
integrity sha512-
|
|
2217
|
+
"@salesforce/plugin-auth@3.7.19":
|
|
2218
|
+
version "3.7.19"
|
|
2219
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.7.19.tgz"
|
|
2220
|
+
integrity sha512-dqXyi8SyygnAHGaHtucx8D0rNlC3IMMtLai98qh6E0XQFPCvZEiYjpYAQlO206CvVgjQ6HGtymWsT4a52eoyVA==
|
|
2221
2221
|
dependencies:
|
|
2222
2222
|
"@inquirer/checkbox" "^2.5.0"
|
|
2223
2223
|
"@inquirer/select" "^2.5.0"
|
|
2224
2224
|
"@oclif/core" "^4"
|
|
2225
2225
|
"@salesforce/core" "^8.18.7"
|
|
2226
2226
|
"@salesforce/kit" "^3.2.3"
|
|
2227
|
-
"@salesforce/plugin-info" "^3.4.
|
|
2227
|
+
"@salesforce/plugin-info" "^3.4.80"
|
|
2228
2228
|
"@salesforce/sf-plugins-core" "^12.2.4"
|
|
2229
2229
|
"@salesforce/ts-types" "^2.0.11"
|
|
2230
2230
|
open "^10.2.0"
|
|
@@ -2243,16 +2243,16 @@
|
|
|
2243
2243
|
debug "^4.4.0"
|
|
2244
2244
|
handlebars "^4.7.8"
|
|
2245
2245
|
|
|
2246
|
-
"@salesforce/plugin-data@4.0.
|
|
2247
|
-
version "4.0.
|
|
2248
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.
|
|
2249
|
-
integrity sha512-
|
|
2246
|
+
"@salesforce/plugin-data@4.0.52":
|
|
2247
|
+
version "4.0.52"
|
|
2248
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.52.tgz"
|
|
2249
|
+
integrity sha512-ClcTYXITqksDhqHXuLrNa4uAPM5tV9KF2MDHyNaRvz9VaxFk+JZnUXhfsb1D2akzRMgWaKEv4rCSqNMKQOmT+Q==
|
|
2250
2250
|
dependencies:
|
|
2251
2251
|
"@jsforce/jsforce-node" "^3.9.4"
|
|
2252
2252
|
"@oclif/multi-stage-output" "^0.8.20"
|
|
2253
2253
|
"@salesforce/core" "^8.19.1"
|
|
2254
2254
|
"@salesforce/kit" "^3.2.2"
|
|
2255
|
-
"@salesforce/sf-plugins-core" "^12.2.
|
|
2255
|
+
"@salesforce/sf-plugins-core" "^12.2.4"
|
|
2256
2256
|
"@salesforce/ts-types" "^2.0.11"
|
|
2257
2257
|
ansis "^3.16.0"
|
|
2258
2258
|
change-case "^5.4.4"
|
|
@@ -2280,13 +2280,13 @@
|
|
|
2280
2280
|
ansis "^3.17.0"
|
|
2281
2281
|
terminal-link "^3.0.0"
|
|
2282
2282
|
|
|
2283
|
-
"@salesforce/plugin-info@^3.4.67", "@salesforce/plugin-info@^3.4.74", "@salesforce/plugin-info@^3.4.
|
|
2284
|
-
version "3.4.
|
|
2285
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.
|
|
2286
|
-
integrity sha512-
|
|
2283
|
+
"@salesforce/plugin-info@^3.4.67", "@salesforce/plugin-info@^3.4.74", "@salesforce/plugin-info@^3.4.80", "@salesforce/plugin-info@3.4.81":
|
|
2284
|
+
version "3.4.81"
|
|
2285
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.81.tgz"
|
|
2286
|
+
integrity sha512-z1IKdX0IVlSb4sZznA+zfSLr3t5wfkJVEZ05utpF/o8s+dmuvfbDyUDxEehq4EkbmAKru36oU4pJuLov/psJPw==
|
|
2287
2287
|
dependencies:
|
|
2288
2288
|
"@inquirer/input" "^2.3.0"
|
|
2289
|
-
"@jsforce/jsforce-node" "^3.10.
|
|
2289
|
+
"@jsforce/jsforce-node" "^3.10.3"
|
|
2290
2290
|
"@oclif/core" "^4"
|
|
2291
2291
|
"@salesforce/core" "^8.19.1"
|
|
2292
2292
|
"@salesforce/kit" "^3.2.3"
|
|
@@ -2317,17 +2317,17 @@
|
|
|
2317
2317
|
got "^13.0.0"
|
|
2318
2318
|
proxy-agent "^6.4.0"
|
|
2319
2319
|
|
|
2320
|
-
"@salesforce/plugin-org@5.9.
|
|
2321
|
-
version "5.9.
|
|
2322
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.9.
|
|
2323
|
-
integrity sha512-
|
|
2320
|
+
"@salesforce/plugin-org@5.9.23":
|
|
2321
|
+
version "5.9.23"
|
|
2322
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-5.9.23.tgz"
|
|
2323
|
+
integrity sha512-gcCfKJ6j1hVaPCAjI1RmPusmopFv5cdHgzEuZ8plSlqmpu+gPZwXRpIuuKsWFbZtw87myThbuB3g0XIEiXX8FA==
|
|
2324
2324
|
dependencies:
|
|
2325
2325
|
"@oclif/core" "^4.5.2"
|
|
2326
2326
|
"@oclif/multi-stage-output" "^0.8.20"
|
|
2327
2327
|
"@salesforce/core" "^8.19.1"
|
|
2328
2328
|
"@salesforce/kit" "^3.2.3"
|
|
2329
2329
|
"@salesforce/sf-plugins-core" "^12.2.4"
|
|
2330
|
-
"@salesforce/source-deploy-retrieve" "^12.22.
|
|
2330
|
+
"@salesforce/source-deploy-retrieve" "^12.22.5"
|
|
2331
2331
|
"@salesforce/ts-types" "^2.0.12"
|
|
2332
2332
|
ansis "^3.16.0"
|
|
2333
2333
|
change-case "^5.4.4"
|
|
@@ -2487,7 +2487,7 @@
|
|
|
2487
2487
|
string-width "^7.2.0"
|
|
2488
2488
|
terminal-link "^3.0.0"
|
|
2489
2489
|
|
|
2490
|
-
"@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.0.13", "@salesforce/sf-plugins-core@^12.2.0", "@salesforce/sf-plugins-core@^12.2.1", "@salesforce/sf-plugins-core@^12.2.2", "@salesforce/sf-plugins-core@^12.2.
|
|
2490
|
+
"@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.0.13", "@salesforce/sf-plugins-core@^12.2.0", "@salesforce/sf-plugins-core@^12.2.1", "@salesforce/sf-plugins-core@^12.2.2", "@salesforce/sf-plugins-core@^12.2.4", "@salesforce/sf-plugins-core@12.2.4":
|
|
2491
2491
|
version "12.2.4"
|
|
2492
2492
|
resolved "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-12.2.4.tgz"
|
|
2493
2493
|
integrity sha512-AwfhPxIJfzQUSZH8kiQOjRPOsfhO3CL+PKq0lfX+chdqwLOnXWviYCA1Z815MGG0ot/XMlsyj7CS+JxQ19Tn4A==
|
|
@@ -2503,26 +2503,25 @@
|
|
|
2503
2503
|
cli-progress "^3.12.0"
|
|
2504
2504
|
terminal-link "^3.0.0"
|
|
2505
2505
|
|
|
2506
|
-
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.9", "@salesforce/source-deploy-retrieve@^12.22.0", "@salesforce/source-deploy-retrieve@^12.22.1", "@salesforce/source-deploy-retrieve@^12.22.
|
|
2507
|
-
version "12.22.
|
|
2508
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.22.
|
|
2509
|
-
integrity sha512-
|
|
2506
|
+
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.9", "@salesforce/source-deploy-retrieve@^12.22.0", "@salesforce/source-deploy-retrieve@^12.22.1", "@salesforce/source-deploy-retrieve@^12.22.5":
|
|
2507
|
+
version "12.22.6"
|
|
2508
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.22.6.tgz"
|
|
2509
|
+
integrity sha512-kVnHlLEdXubsc7lN0BJ9q0X3hO6xYJDTTn4aPx9SB1PQX4GE2zga2wkZEAFf033offRaK/y8sVXaWTBkWsLBig==
|
|
2510
2510
|
dependencies:
|
|
2511
|
-
"@salesforce/core" "^8.
|
|
2511
|
+
"@salesforce/core" "^8.19.1"
|
|
2512
2512
|
"@salesforce/kit" "^3.2.3"
|
|
2513
2513
|
"@salesforce/ts-types" "^2.0.12"
|
|
2514
|
-
"@salesforce/types" "^1.
|
|
2514
|
+
"@salesforce/types" "^1.4.0"
|
|
2515
2515
|
fast-levenshtein "^3.0.0"
|
|
2516
2516
|
fast-xml-parser "^4.5.3"
|
|
2517
2517
|
got "^11.8.6"
|
|
2518
2518
|
graceful-fs "^4.2.11"
|
|
2519
2519
|
ignore "^5.3.2"
|
|
2520
|
-
isbinaryfile "^5.0.2"
|
|
2521
2520
|
jszip "^3.10.1"
|
|
2522
2521
|
mime "2.6.0"
|
|
2523
2522
|
minimatch "^9.0.5"
|
|
2524
2523
|
proxy-agent "^6.4.0"
|
|
2525
|
-
yaml "^2.
|
|
2524
|
+
yaml "^2.8.1"
|
|
2526
2525
|
|
|
2527
2526
|
"@salesforce/source-tracking@^7.4.1":
|
|
2528
2527
|
version "7.4.1"
|
|
@@ -2579,7 +2578,7 @@
|
|
|
2579
2578
|
resolved "https://registry.npmjs.org/@salesforce/ts-types/-/ts-types-2.0.12.tgz"
|
|
2580
2579
|
integrity sha512-BIJyduJC18Kc8z+arUm5AZ9VkPRyw1KKAm+Tk+9LT99eOzhNilyfKzhZ4t+tG2lIGgnJpmytZfVDZ0e2kFul8g==
|
|
2581
2580
|
|
|
2582
|
-
"@salesforce/types@^1.2.0", "@salesforce/types@^1.
|
|
2581
|
+
"@salesforce/types@^1.2.0", "@salesforce/types@^1.4.0":
|
|
2583
2582
|
version "1.4.0"
|
|
2584
2583
|
resolved "https://registry.npmjs.org/@salesforce/types/-/types-1.4.0.tgz"
|
|
2585
2584
|
integrity sha512-WpXzQd+JglQrwUs05ePGa1/vFFn1s7rymw2ltBbFj2Z0p/ez1ft6J39ILVlteS/mGca47Ce8JN+u3USVxfxkKA==
|
|
@@ -7388,11 +7387,6 @@ isarray@0.0.1:
|
|
|
7388
7387
|
resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
|
|
7389
7388
|
integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
|
|
7390
7389
|
|
|
7391
|
-
isbinaryfile@^5.0.2:
|
|
7392
|
-
version "5.0.2"
|
|
7393
|
-
resolved "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.2.tgz"
|
|
7394
|
-
integrity sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==
|
|
7395
|
-
|
|
7396
7390
|
isexe@^2.0.0:
|
|
7397
7391
|
version "2.0.0"
|
|
7398
7392
|
resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
|
|
@@ -11781,10 +11775,10 @@ yallist@^5.0.0:
|
|
|
11781
11775
|
resolved "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz"
|
|
11782
11776
|
integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
|
|
11783
11777
|
|
|
11784
|
-
yaml@^2.5.1, yaml@^2.
|
|
11785
|
-
version "2.8.
|
|
11786
|
-
resolved "https://registry.npmjs.org/yaml/-/yaml-2.8.
|
|
11787
|
-
integrity sha512-
|
|
11778
|
+
yaml@^2.5.1, yaml@^2.8.0, yaml@^2.8.1:
|
|
11779
|
+
version "2.8.1"
|
|
11780
|
+
resolved "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz"
|
|
11781
|
+
integrity sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
|
|
11788
11782
|
|
|
11789
11783
|
yargs-parser@^18.1.2:
|
|
11790
11784
|
version "18.1.3"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.103.
|
|
4
|
+
"version": "2.103.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -148,25 +148,25 @@
|
|
|
148
148
|
"@oclif/plugin-autocomplete": "3.2.34",
|
|
149
149
|
"@oclif/plugin-commands": "4.1.32",
|
|
150
150
|
"@oclif/plugin-help": "6.2.32",
|
|
151
|
-
"@oclif/plugin-not-found": "3.2.
|
|
151
|
+
"@oclif/plugin-not-found": "3.2.65",
|
|
152
152
|
"@oclif/plugin-plugins": "5.4.46",
|
|
153
153
|
"@oclif/plugin-search": "1.2.28",
|
|
154
|
-
"@oclif/plugin-update": "4.7.
|
|
154
|
+
"@oclif/plugin-update": "4.7.4",
|
|
155
155
|
"@oclif/plugin-version": "2.2.32",
|
|
156
156
|
"@oclif/plugin-warn-if-update-available": "3.1.46",
|
|
157
157
|
"@oclif/plugin-which": "3.2.39",
|
|
158
158
|
"@salesforce/core": "^8.9.1",
|
|
159
159
|
"@salesforce/kit": "^3.1.6",
|
|
160
|
-
"@salesforce/plugin-agent": "1.24.
|
|
160
|
+
"@salesforce/plugin-agent": "1.24.3",
|
|
161
161
|
"@salesforce/plugin-apex": "3.6.19",
|
|
162
162
|
"@salesforce/plugin-api": "1.3.3",
|
|
163
|
-
"@salesforce/plugin-auth": "3.7.
|
|
164
|
-
"@salesforce/plugin-data": "4.0.
|
|
163
|
+
"@salesforce/plugin-auth": "3.7.19",
|
|
164
|
+
"@salesforce/plugin-data": "4.0.52",
|
|
165
165
|
"@salesforce/plugin-deploy-retrieve": "3.22.41",
|
|
166
|
-
"@salesforce/plugin-info": "3.4.
|
|
166
|
+
"@salesforce/plugin-info": "3.4.81",
|
|
167
167
|
"@salesforce/plugin-limits": "3.3.64",
|
|
168
168
|
"@salesforce/plugin-marketplace": "1.3.8",
|
|
169
|
-
"@salesforce/plugin-org": "5.9.
|
|
169
|
+
"@salesforce/plugin-org": "5.9.23",
|
|
170
170
|
"@salesforce/plugin-packaging": "2.19.5",
|
|
171
171
|
"@salesforce/plugin-schema": "3.3.78",
|
|
172
172
|
"@salesforce/plugin-settings": "2.4.42",
|