@salesforce/cli 2.101.3 → 2.101.5

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 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.101.3 linux-x64 node-v22.17.1
28
+ @salesforce/cli/2.101.5 linux-x64 node-v22.17.1
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.0/src/commands/agent/activate.ts)_
245
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/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.0/src/commands/agent/create.ts)_
307
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/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.0/src/commands/agent/deactivate.ts)_
347
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/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.0/src/commands/agent/generate/agent-spec.ts)_
452
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/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.0/src/commands/agent/generate/template.ts)_
500
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/generate/template.ts)_
501
501
 
502
502
  ## `sf agent generate test-spec`
503
503
 
@@ -532,6 +532,9 @@ DESCRIPTION
532
532
  - Expected topic: API name of the topic you expect the agent to use when responding to the utterance.
533
533
  - Expected actions: One or more API names of the expection actions the agent takes.
534
534
  - Expected outcome: Natural language description of the outcome you expect.
535
+ - (Optional) Custom evaluation: Test an agent's response for specific strings or numbers.
536
+ - (Optional) Conversation history: Boilerplate for additional context you can add to the test in the form of a
537
+ conversation history.
535
538
 
536
539
  When your test spec is ready, you then run the "agent test create" command to actually create the test in your org and
537
540
  synchronize the metadata with your DX project. The metadata type for an agent test is AiEvaluationDefinition.
@@ -555,7 +558,7 @@ EXAMPLES
555
558
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
556
559
  ```
557
560
 
558
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/test-spec.ts)_
561
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/generate/test-spec.ts)_
559
562
 
560
563
  ## `sf agent preview`
561
564
 
@@ -619,7 +622,7 @@ EXAMPLES
619
622
  transcripts/my-preview
620
623
  ```
621
624
 
622
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/preview.ts)_
625
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/preview.ts)_
623
626
 
624
627
  ## `sf agent test create`
625
628
 
@@ -674,7 +677,7 @@ EXAMPLES
674
677
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
675
678
  ```
676
679
 
677
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/create.ts)_
680
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/create.ts)_
678
681
 
679
682
  ## `sf agent test list`
680
683
 
@@ -709,7 +712,7 @@ EXAMPLES
709
712
  $ sf agent test list --target-org my-org
710
713
  ```
711
714
 
712
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/list.ts)_
715
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/list.ts)_
713
716
 
714
717
  ## `sf agent test results`
715
718
 
@@ -765,7 +768,7 @@ FLAG DESCRIPTIONS
765
768
  test results aren't written.
766
769
  ```
767
770
 
768
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/results.ts)_
771
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/results.ts)_
769
772
 
770
773
  ## `sf agent test resume`
771
774
 
@@ -828,7 +831,7 @@ FLAG DESCRIPTIONS
828
831
  test results aren't written.
829
832
  ```
830
833
 
831
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/resume.ts)_
834
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/resume.ts)_
832
835
 
833
836
  ## `sf agent test run`
834
837
 
@@ -892,7 +895,7 @@ FLAG DESCRIPTIONS
892
895
  test results aren't written.
893
896
  ```
894
897
 
895
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/run.ts)_
898
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/run.ts)_
896
899
 
897
900
  ## `sf alias list`
898
901
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.101.3",
3
+ "version": "2.101.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.101.3",
9
+ "version": "2.101.5",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -22,9 +22,9 @@
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
- "@salesforce/core": "^8.9.1",
25
+ "@salesforce/core": "8.19.1",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.24.0",
27
+ "@salesforce/plugin-agent": "1.24.1",
28
28
  "@salesforce/plugin-apex": "3.6.19",
29
29
  "@salesforce/plugin-api": "1.3.3",
30
30
  "@salesforce/plugin-auth": "3.7.16",
@@ -3145,9 +3145,9 @@
3145
3145
  }
3146
3146
  },
3147
3147
  "node_modules/@jsforce/jsforce-node": {
3148
- "version": "3.10.0",
3149
- "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.0.tgz",
3150
- "integrity": "sha512-hNExEqzvJ/ixnsfZlrYh/FqEOYfn4vKmeBMqIdrEjeYciIsSaOeggghFl+1w0m2u7TNGr1+8jPUBvki3nebPSw==",
3148
+ "version": "3.10.1",
3149
+ "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.1.tgz",
3150
+ "integrity": "sha512-HZcekfFFGOIIqdkCVI5wmP+Nxpmbhwj8CJH5fAii6dcdMhFgTp0sMGwWZe2Br74Nmp7GEESFVuTcIjk+NX5ajA==",
3151
3151
  "license": "MIT",
3152
3152
  "dependencies": {
3153
3153
  "@sindresorhus/is": "^4",
@@ -3190,6 +3190,116 @@
3190
3190
  "node": ">= 6"
3191
3191
  }
3192
3192
  },
3193
+ "node_modules/@jsonjoy.com/base64": {
3194
+ "version": "1.1.2",
3195
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz",
3196
+ "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==",
3197
+ "license": "Apache-2.0",
3198
+ "engines": {
3199
+ "node": ">=10.0"
3200
+ },
3201
+ "funding": {
3202
+ "type": "github",
3203
+ "url": "https://github.com/sponsors/streamich"
3204
+ },
3205
+ "peerDependencies": {
3206
+ "tslib": "2"
3207
+ }
3208
+ },
3209
+ "node_modules/@jsonjoy.com/buffers": {
3210
+ "version": "1.0.0",
3211
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.0.0.tgz",
3212
+ "integrity": "sha512-NDigYR3PHqCnQLXYyoLbnEdzMMvzeiCWo1KOut7Q0CoIqg9tUAPKJ1iq/2nFhc5kZtexzutNY0LFjdwWL3Dw3Q==",
3213
+ "license": "Apache-2.0",
3214
+ "engines": {
3215
+ "node": ">=10.0"
3216
+ },
3217
+ "funding": {
3218
+ "type": "github",
3219
+ "url": "https://github.com/sponsors/streamich"
3220
+ },
3221
+ "peerDependencies": {
3222
+ "tslib": "2"
3223
+ }
3224
+ },
3225
+ "node_modules/@jsonjoy.com/codegen": {
3226
+ "version": "1.0.0",
3227
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz",
3228
+ "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==",
3229
+ "license": "Apache-2.0",
3230
+ "engines": {
3231
+ "node": ">=10.0"
3232
+ },
3233
+ "funding": {
3234
+ "type": "github",
3235
+ "url": "https://github.com/sponsors/streamich"
3236
+ },
3237
+ "peerDependencies": {
3238
+ "tslib": "2"
3239
+ }
3240
+ },
3241
+ "node_modules/@jsonjoy.com/json-pack": {
3242
+ "version": "1.8.0",
3243
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.8.0.tgz",
3244
+ "integrity": "sha512-paJGjyBTRzfgkqhIyer992g21aSKuu9h//zGS7aqm795roD6VYFf6iU9NYua1Bndmh/NRPkjtm9+hEPkK0yZSw==",
3245
+ "license": "Apache-2.0",
3246
+ "dependencies": {
3247
+ "@jsonjoy.com/base64": "^1.1.1",
3248
+ "@jsonjoy.com/json-pointer": "^1.0.1",
3249
+ "@jsonjoy.com/util": "^1.1.2",
3250
+ "hyperdyperid": "^1.2.0",
3251
+ "thingies": "^1.20.0"
3252
+ },
3253
+ "engines": {
3254
+ "node": ">=10.0"
3255
+ },
3256
+ "funding": {
3257
+ "type": "github",
3258
+ "url": "https://github.com/sponsors/streamich"
3259
+ },
3260
+ "peerDependencies": {
3261
+ "tslib": "2"
3262
+ }
3263
+ },
3264
+ "node_modules/@jsonjoy.com/json-pointer": {
3265
+ "version": "1.0.1",
3266
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.1.tgz",
3267
+ "integrity": "sha512-tJpwQfuBuxqZlyoJOSZcqf7OUmiYQ6MiPNmOv4KbZdXE/DdvBSSAwhos0zIlJU/AXxC8XpuO8p08bh2fIl+RKA==",
3268
+ "license": "Apache-2.0",
3269
+ "dependencies": {
3270
+ "@jsonjoy.com/util": "^1.3.0"
3271
+ },
3272
+ "engines": {
3273
+ "node": ">=10.0"
3274
+ },
3275
+ "funding": {
3276
+ "type": "github",
3277
+ "url": "https://github.com/sponsors/streamich"
3278
+ },
3279
+ "peerDependencies": {
3280
+ "tslib": "2"
3281
+ }
3282
+ },
3283
+ "node_modules/@jsonjoy.com/util": {
3284
+ "version": "1.9.0",
3285
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz",
3286
+ "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==",
3287
+ "license": "Apache-2.0",
3288
+ "dependencies": {
3289
+ "@jsonjoy.com/buffers": "^1.0.0",
3290
+ "@jsonjoy.com/codegen": "^1.0.0"
3291
+ },
3292
+ "engines": {
3293
+ "node": ">=10.0"
3294
+ },
3295
+ "funding": {
3296
+ "type": "github",
3297
+ "url": "https://github.com/sponsors/streamich"
3298
+ },
3299
+ "peerDependencies": {
3300
+ "tslib": "2"
3301
+ }
3302
+ },
3193
3303
  "node_modules/@microsoft/applicationinsights-web-snippet": {
3194
3304
  "version": "1.0.1",
3195
3305
  "resolved": "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz",
@@ -4616,15 +4726,15 @@
4616
4726
  }
4617
4727
  },
4618
4728
  "node_modules/@salesforce/core": {
4619
- "version": "8.18.7",
4620
- "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.18.7.tgz",
4621
- "integrity": "sha512-TP0AwS52+4ijIqVkNrKesVtK/osGsW7KvHrUiPcARI73ZKnW5z/CCpGdDH8nwGHSxj9rYlWC//g3EkTZJkparw==",
4729
+ "version": "8.19.1",
4730
+ "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.19.1.tgz",
4731
+ "integrity": "sha512-HPJxus0W4S1aoT4Qn6mG2s9Ik/mZ59rXNUFc2c+BgEAs28khbZOLR2uiZYexNpXIIZnCrSbb+v1t8IW/idIyCA==",
4622
4732
  "license": "BSD-3-Clause",
4623
4733
  "dependencies": {
4624
- "@jsforce/jsforce-node": "^3.10.0",
4734
+ "@jsforce/jsforce-node": "^3.10.1",
4625
4735
  "@salesforce/kit": "^3.2.2",
4626
4736
  "@salesforce/schemas": "^1.9.1",
4627
- "@salesforce/ts-types": "^2.0.10",
4737
+ "@salesforce/ts-types": "^2.0.11",
4628
4738
  "ajv": "^8.17.1",
4629
4739
  "change-case": "^4.1.2",
4630
4740
  "fast-levenshtein": "^3.0.0",
@@ -4633,6 +4743,7 @@
4633
4743
  "js2xmlparser": "^4.0.1",
4634
4744
  "jsonwebtoken": "9.0.2",
4635
4745
  "jszip": "3.10.1",
4746
+ "memfs": "^4.30.1",
4636
4747
  "pino": "^9.7.0",
4637
4748
  "pino-abstract-transport": "^1.2.0",
4638
4749
  "pino-pretty": "^11.3.0",
@@ -4860,9 +4971,9 @@
4860
4971
  }
4861
4972
  },
4862
4973
  "node_modules/@salesforce/plugin-agent": {
4863
- "version": "1.24.0",
4864
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz",
4865
- "integrity": "sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw==",
4974
+ "version": "1.24.1",
4975
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.1.tgz",
4976
+ "integrity": "sha512-YyEsfrYmNJl+gky724/anwdp8R7pXWoKq002oXcFLeWTdeUW/on0+MB4NSn191Fo9OLb/EsNiM+EMMAlR7FWdA==",
4866
4977
  "license": "BSD-3-Clause",
4867
4978
  "dependencies": {
4868
4979
  "@inquirer/core": "^10.1.6",
@@ -13119,6 +13230,15 @@
13119
13230
  "url": "https://github.com/sponsors/typicode"
13120
13231
  }
13121
13232
  },
13233
+ "node_modules/hyperdyperid": {
13234
+ "version": "1.2.0",
13235
+ "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz",
13236
+ "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==",
13237
+ "license": "MIT",
13238
+ "engines": {
13239
+ "node": ">=10.18"
13240
+ }
13241
+ },
13122
13242
  "node_modules/iconv-lite": {
13123
13243
  "version": "0.4.24",
13124
13244
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
@@ -15566,6 +15686,25 @@
15566
15686
  "dev": true,
15567
15687
  "license": "MIT"
15568
15688
  },
15689
+ "node_modules/memfs": {
15690
+ "version": "4.36.0",
15691
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.36.0.tgz",
15692
+ "integrity": "sha512-mfBfzGUdoEw5AZwG8E965ej3BbvW2F9LxEWj4uLxF6BEh1dO2N9eS3AGu9S6vfenuQYrVjsbUOOZK7y3vz4vyQ==",
15693
+ "license": "Apache-2.0",
15694
+ "dependencies": {
15695
+ "@jsonjoy.com/json-pack": "^1.0.3",
15696
+ "@jsonjoy.com/util": "^1.3.0",
15697
+ "tree-dump": "^1.0.1",
15698
+ "tslib": "^2.0.0"
15699
+ },
15700
+ "engines": {
15701
+ "node": ">= 4.0.0"
15702
+ },
15703
+ "funding": {
15704
+ "type": "github",
15705
+ "url": "https://github.com/sponsors/streamich"
15706
+ }
15707
+ },
15569
15708
  "node_modules/meow": {
15570
15709
  "version": "8.1.2",
15571
15710
  "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz",
@@ -23145,6 +23284,18 @@
23145
23284
  "dev": true,
23146
23285
  "license": "MIT"
23147
23286
  },
23287
+ "node_modules/thingies": {
23288
+ "version": "1.21.0",
23289
+ "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz",
23290
+ "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==",
23291
+ "license": "Unlicense",
23292
+ "engines": {
23293
+ "node": ">=10.18"
23294
+ },
23295
+ "peerDependencies": {
23296
+ "tslib": "^2"
23297
+ }
23298
+ },
23148
23299
  "node_modules/thread-stream": {
23149
23300
  "version": "3.1.0",
23150
23301
  "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz",
@@ -23280,6 +23431,22 @@
23280
23431
  "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
23281
23432
  "license": "MIT"
23282
23433
  },
23434
+ "node_modules/tree-dump": {
23435
+ "version": "1.0.3",
23436
+ "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.3.tgz",
23437
+ "integrity": "sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg==",
23438
+ "license": "Apache-2.0",
23439
+ "engines": {
23440
+ "node": ">=10.0"
23441
+ },
23442
+ "funding": {
23443
+ "type": "github",
23444
+ "url": "https://github.com/sponsors/streamich"
23445
+ },
23446
+ "peerDependencies": {
23447
+ "tslib": "2"
23448
+ }
23449
+ },
23283
23450
  "node_modules/treeverse": {
23284
23451
  "version": "3.0.0",
23285
23452
  "resolved": "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz",
package/oclif.lock CHANGED
@@ -1374,10 +1374,10 @@
1374
1374
  "@jridgewell/resolve-uri" "^3.0.3"
1375
1375
  "@jridgewell/sourcemap-codec" "^1.4.10"
1376
1376
 
1377
- "@jsforce/jsforce-node@^3.10.0", "@jsforce/jsforce-node@^3.6.5", "@jsforce/jsforce-node@^3.9.4":
1378
- version "3.10.0"
1379
- resolved "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.0.tgz"
1380
- integrity sha512-hNExEqzvJ/ixnsfZlrYh/FqEOYfn4vKmeBMqIdrEjeYciIsSaOeggghFl+1w0m2u7TNGr1+8jPUBvki3nebPSw==
1377
+ "@jsforce/jsforce-node@^3.10.1", "@jsforce/jsforce-node@^3.6.5", "@jsforce/jsforce-node@^3.9.4":
1378
+ version "3.10.1"
1379
+ resolved "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.1.tgz"
1380
+ integrity sha512-HZcekfFFGOIIqdkCVI5wmP+Nxpmbhwj8CJH5fAii6dcdMhFgTp0sMGwWZe2Br74Nmp7GEESFVuTcIjk+NX5ajA==
1381
1381
  dependencies:
1382
1382
  "@sindresorhus/is" "^4"
1383
1383
  base64url "^3.0.1"
@@ -1390,6 +1390,47 @@
1390
1390
  node-fetch "^2.6.1"
1391
1391
  xml2js "^0.6.2"
1392
1392
 
1393
+ "@jsonjoy.com/base64@^1.1.1":
1394
+ version "1.1.2"
1395
+ resolved "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz"
1396
+ integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==
1397
+
1398
+ "@jsonjoy.com/buffers@^1.0.0":
1399
+ version "1.0.0"
1400
+ resolved "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.0.0.tgz"
1401
+ integrity sha512-NDigYR3PHqCnQLXYyoLbnEdzMMvzeiCWo1KOut7Q0CoIqg9tUAPKJ1iq/2nFhc5kZtexzutNY0LFjdwWL3Dw3Q==
1402
+
1403
+ "@jsonjoy.com/codegen@^1.0.0":
1404
+ version "1.0.0"
1405
+ resolved "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz"
1406
+ integrity sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==
1407
+
1408
+ "@jsonjoy.com/json-pack@^1.0.3":
1409
+ version "1.8.0"
1410
+ resolved "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.8.0.tgz"
1411
+ integrity sha512-paJGjyBTRzfgkqhIyer992g21aSKuu9h//zGS7aqm795roD6VYFf6iU9NYua1Bndmh/NRPkjtm9+hEPkK0yZSw==
1412
+ dependencies:
1413
+ "@jsonjoy.com/base64" "^1.1.1"
1414
+ "@jsonjoy.com/json-pointer" "^1.0.1"
1415
+ "@jsonjoy.com/util" "^1.1.2"
1416
+ hyperdyperid "^1.2.0"
1417
+ thingies "^1.20.0"
1418
+
1419
+ "@jsonjoy.com/json-pointer@^1.0.1":
1420
+ version "1.0.1"
1421
+ resolved "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.1.tgz"
1422
+ integrity sha512-tJpwQfuBuxqZlyoJOSZcqf7OUmiYQ6MiPNmOv4KbZdXE/DdvBSSAwhos0zIlJU/AXxC8XpuO8p08bh2fIl+RKA==
1423
+ dependencies:
1424
+ "@jsonjoy.com/util" "^1.3.0"
1425
+
1426
+ "@jsonjoy.com/util@^1.1.2", "@jsonjoy.com/util@^1.3.0":
1427
+ version "1.9.0"
1428
+ resolved "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz"
1429
+ integrity sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==
1430
+ dependencies:
1431
+ "@jsonjoy.com/buffers" "^1.0.0"
1432
+ "@jsonjoy.com/codegen" "^1.0.0"
1433
+
1393
1434
  "@microsoft/applicationinsights-web-snippet@1.0.1":
1394
1435
  version "1.0.1"
1395
1436
  resolved "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz"
@@ -2017,15 +2058,15 @@
2017
2058
  strip-ansi "6.0.1"
2018
2059
  ts-retry-promise "^0.8.1"
2019
2060
 
2020
- "@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.5", "@salesforce/core@^8.18.7", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@^8.9.1":
2021
- version "8.18.7"
2022
- resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.18.7.tgz"
2023
- integrity sha512-TP0AwS52+4ijIqVkNrKesVtK/osGsW7KvHrUiPcARI73ZKnW5z/CCpGdDH8nwGHSxj9rYlWC//g3EkTZJkparw==
2061
+ "@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.5", "@salesforce/core@^8.18.7", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@8.19.1":
2062
+ version "8.19.1"
2063
+ resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.19.1.tgz"
2064
+ integrity sha512-HPJxus0W4S1aoT4Qn6mG2s9Ik/mZ59rXNUFc2c+BgEAs28khbZOLR2uiZYexNpXIIZnCrSbb+v1t8IW/idIyCA==
2024
2065
  dependencies:
2025
- "@jsforce/jsforce-node" "^3.10.0"
2066
+ "@jsforce/jsforce-node" "^3.10.1"
2026
2067
  "@salesforce/kit" "^3.2.2"
2027
2068
  "@salesforce/schemas" "^1.9.1"
2028
- "@salesforce/ts-types" "^2.0.10"
2069
+ "@salesforce/ts-types" "^2.0.11"
2029
2070
  ajv "^8.17.1"
2030
2071
  change-case "^4.1.2"
2031
2072
  fast-levenshtein "^3.0.0"
@@ -2034,6 +2075,7 @@
2034
2075
  js2xmlparser "^4.0.1"
2035
2076
  jsonwebtoken "9.0.2"
2036
2077
  jszip "3.10.1"
2078
+ memfs "^4.30.1"
2037
2079
  pino "^9.7.0"
2038
2080
  pino-abstract-transport "^1.2.0"
2039
2081
  pino-pretty "^11.3.0"
@@ -2113,10 +2155,10 @@
2113
2155
  jszip "^3.10.1"
2114
2156
  object-treeify "^2"
2115
2157
 
2116
- "@salesforce/plugin-agent@1.24.0":
2117
- version "1.24.0"
2118
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz"
2119
- integrity sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw==
2158
+ "@salesforce/plugin-agent@1.24.1":
2159
+ version "1.24.1"
2160
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.1.tgz"
2161
+ integrity sha512-YyEsfrYmNJl+gky724/anwdp8R7pXWoKq002oXcFLeWTdeUW/on0+MB4NSn191Fo9OLb/EsNiM+EMMAlR7FWdA==
2120
2162
  dependencies:
2121
2163
  "@inquirer/core" "^10.1.6"
2122
2164
  "@inquirer/prompts" "^7.2.0"
@@ -6877,6 +6919,11 @@ husky@^7.0.4:
6877
6919
  resolved "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz"
6878
6920
  integrity sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==
6879
6921
 
6922
+ hyperdyperid@^1.2.0:
6923
+ version "1.2.0"
6924
+ resolved "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz"
6925
+ integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==
6926
+
6880
6927
  iconv-lite@^0.4.24:
6881
6928
  version "0.4.24"
6882
6929
  resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
@@ -8216,6 +8263,16 @@ mdurl@^2.0.0:
8216
8263
  resolved "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz"
8217
8264
  integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==
8218
8265
 
8266
+ memfs@^4.30.1:
8267
+ version "4.36.0"
8268
+ resolved "https://registry.npmjs.org/memfs/-/memfs-4.36.0.tgz"
8269
+ integrity sha512-mfBfzGUdoEw5AZwG8E965ej3BbvW2F9LxEWj4uLxF6BEh1dO2N9eS3AGu9S6vfenuQYrVjsbUOOZK7y3vz4vyQ==
8270
+ dependencies:
8271
+ "@jsonjoy.com/json-pack" "^1.0.3"
8272
+ "@jsonjoy.com/util" "^1.3.0"
8273
+ tree-dump "^1.0.1"
8274
+ tslib "^2.0.0"
8275
+
8219
8276
  meow@^13.0.0:
8220
8277
  version "13.2.0"
8221
8278
  resolved "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz"
@@ -10932,6 +10989,11 @@ text-table@~0.2.0:
10932
10989
  resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
10933
10990
  integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
10934
10991
 
10992
+ thingies@^1.20.0:
10993
+ version "1.21.0"
10994
+ resolved "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz"
10995
+ integrity sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==
10996
+
10935
10997
  thread-stream@^3.0.0:
10936
10998
  version "3.1.0"
10937
10999
  resolved "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz"
@@ -11006,6 +11068,11 @@ tr46@~0.0.3:
11006
11068
  resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
11007
11069
  integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
11008
11070
 
11071
+ tree-dump@^1.0.1:
11072
+ version "1.0.3"
11073
+ resolved "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.3.tgz"
11074
+ integrity sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg==
11075
+
11009
11076
  treeverse@^3.0.0:
11010
11077
  version "3.0.0"
11011
11078
  resolved "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz"
@@ -11078,7 +11145,7 @@ tsconfig-paths@^3.15.0:
11078
11145
  minimist "^1.2.6"
11079
11146
  strip-bom "^3.0.0"
11080
11147
 
11081
- tslib@^2.0.1, tslib@^2.0.3, tslib@^2.2.0, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.8.1:
11148
+ tslib@^2, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.2.0, tslib@^2.5.0, tslib@^2.6.2, tslib@^2.8.1, tslib@2:
11082
11149
  version "2.8.1"
11083
11150
  resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
11084
11151
  integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
@@ -4158,5 +4158,5 @@
4158
4158
  "requiresProject": true
4159
4159
  }
4160
4160
  },
4161
- "version": "2.101.3"
4161
+ "version": "2.101.5"
4162
4162
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.101.3",
4
+ "version": "2.101.5",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -155,9 +155,9 @@
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
- "@salesforce/core": "^8.9.1",
158
+ "@salesforce/core": "8.19.1",
159
159
  "@salesforce/kit": "^3.1.6",
160
- "@salesforce/plugin-agent": "1.24.0",
160
+ "@salesforce/plugin-agent": "1.24.1",
161
161
  "@salesforce/plugin-apex": "3.6.19",
162
162
  "@salesforce/plugin-api": "1.3.3",
163
163
  "@salesforce/plugin-auth": "3.7.16",