@salesforce/plugin-agent 1.23.2 → 1.23.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 +17 -51
- package/messages/agent.preview.md +3 -25
- package/npm-shrinkwrap.json +56 -222
- package/oclif.lock +7 -52
- package/oclif.manifest.json +4 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -130,7 +130,7 @@ EXAMPLES
|
|
|
130
130
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
133
|
+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/create.ts)_
|
|
134
134
|
|
|
135
135
|
## `sf agent generate agent-spec`
|
|
136
136
|
|
|
@@ -235,7 +235,7 @@ EXAMPLES
|
|
|
235
235
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
238
|
+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/generate/agent-spec.ts)_
|
|
239
239
|
|
|
240
240
|
## `sf agent generate template`
|
|
241
241
|
|
|
@@ -283,7 +283,7 @@ EXAMPLES
|
|
|
283
283
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
286
|
+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/generate/template.ts)_
|
|
287
287
|
|
|
288
288
|
## `sf agent generate test-spec`
|
|
289
289
|
|
|
@@ -341,7 +341,7 @@ EXAMPLES
|
|
|
341
341
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
344
|
+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/generate/test-spec.ts)_
|
|
345
345
|
|
|
346
346
|
## `sf agent preview`
|
|
347
347
|
|
|
@@ -386,59 +386,25 @@ DESCRIPTION
|
|
|
386
386
|
|
|
387
387
|
Find the agent's API name in its main details page in your org's Agent page in Setup.
|
|
388
388
|
|
|
389
|
-
Before you use this command, you must complete
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
these additional steps:
|
|
394
|
-
|
|
395
|
-
a. When specifying the connected app's Callback URL, add this second callback URL on a new line:
|
|
396
|
-
"http://localhost:1717/OauthRedirect".
|
|
397
|
-
|
|
398
|
-
b. When adding the scopes to the connected app, add "Manage user data via Web browsers (web)".
|
|
399
|
-
|
|
400
|
-
2. Add the connected app to your agent as described in the "Add Connected App to Agent" section here:
|
|
401
|
-
https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#add-connected-app-to-agent.
|
|
402
|
-
|
|
403
|
-
3. Copy the consumer key from your connected app as described in the "Obtain Credentials" section here:
|
|
404
|
-
https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#obtain-credentials.
|
|
405
|
-
|
|
406
|
-
4. If you haven't already, run the "org login web" CLI command as usual to authorize the development org that contains
|
|
407
|
-
the agent you want to preview.
|
|
408
|
-
|
|
409
|
-
5. Re-run the "org web login" command to link the new connected app to your already-authenticated user. Use the
|
|
410
|
-
--client-app flag to give the link a name; you can specify any string, but make a note of it because you'll need it
|
|
411
|
-
later. Use --username to specify the username that you used to log into the org in the previous step. Use --client-id
|
|
412
|
-
to specify the consumer key you previously copied. Finally, use --scopes as indicated to specify the required API
|
|
413
|
-
scopes. Here's an example:
|
|
414
|
-
|
|
415
|
-
sf org login web --client-app agent-app --username <username> --client-id <consumer-key> --scopes "sfap_api
|
|
416
|
-
chatbot_api refresh_token api web"
|
|
417
|
-
|
|
418
|
-
IMPORTANT: You must use the "--client-id <CONNECTED-APP-CONSUMER-KEY>" flag of "org login web", where
|
|
419
|
-
CONNECTED-APP-CONSUMER-KEY is the consumer key you previously copied. This step ensures that the "org login web"
|
|
420
|
-
command uses your custom connected app, and not the default CLI connected app.
|
|
421
|
-
|
|
422
|
-
6. Press Enter to skip sharing the client secret, then log in with your org username as usual and click Accept.
|
|
423
|
-
|
|
424
|
-
7. Run this command ("agent preview") to interact with an agent by using the --target-org flag to specify the org
|
|
425
|
-
username or alias as usual and --client-app to specify the linked connected app ("agent-app" in the previous example).
|
|
426
|
-
Use the "org display" command to get the list of client apps associated with an org.
|
|
389
|
+
IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX
|
|
390
|
+
project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce
|
|
391
|
+
Developer Guide" for complete documentation:
|
|
392
|
+
https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
|
|
427
393
|
|
|
428
394
|
EXAMPLES
|
|
429
395
|
Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app"
|
|
430
396
|
connected app:
|
|
431
397
|
|
|
432
|
-
$ sf agent preview --api-name
|
|
398
|
+
$ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app
|
|
433
399
|
|
|
434
400
|
Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview"
|
|
435
401
|
directory rather than the default "./temp/agent-preview":
|
|
436
402
|
|
|
437
|
-
$ sf agent preview --api-name
|
|
438
|
-
|
|
403
|
+
$ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir \
|
|
404
|
+
transcripts/my-preview
|
|
439
405
|
```
|
|
440
406
|
|
|
441
|
-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
407
|
+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/preview.ts)_
|
|
442
408
|
|
|
443
409
|
## `sf agent test create`
|
|
444
410
|
|
|
@@ -493,7 +459,7 @@ EXAMPLES
|
|
|
493
459
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
494
460
|
```
|
|
495
461
|
|
|
496
|
-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
462
|
+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/test/create.ts)_
|
|
497
463
|
|
|
498
464
|
## `sf agent test list`
|
|
499
465
|
|
|
@@ -528,7 +494,7 @@ EXAMPLES
|
|
|
528
494
|
$ sf agent test list --target-org my-org
|
|
529
495
|
```
|
|
530
496
|
|
|
531
|
-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
497
|
+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/test/list.ts)_
|
|
532
498
|
|
|
533
499
|
## `sf agent test results`
|
|
534
500
|
|
|
@@ -584,7 +550,7 @@ FLAG DESCRIPTIONS
|
|
|
584
550
|
test results aren't written.
|
|
585
551
|
```
|
|
586
552
|
|
|
587
|
-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
553
|
+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/test/results.ts)_
|
|
588
554
|
|
|
589
555
|
## `sf agent test resume`
|
|
590
556
|
|
|
@@ -647,7 +613,7 @@ FLAG DESCRIPTIONS
|
|
|
647
613
|
test results aren't written.
|
|
648
614
|
```
|
|
649
615
|
|
|
650
|
-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
616
|
+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/test/resume.ts)_
|
|
651
617
|
|
|
652
618
|
## `sf agent test run`
|
|
653
619
|
|
|
@@ -711,6 +677,6 @@ FLAG DESCRIPTIONS
|
|
|
711
677
|
test results aren't written.
|
|
712
678
|
```
|
|
713
679
|
|
|
714
|
-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.
|
|
680
|
+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.4/src/commands/agent/test/run.ts)_
|
|
715
681
|
|
|
716
682
|
<!-- commandsstop -->
|
|
@@ -12,29 +12,7 @@ When the session concludes, the command asks if you want to save the API respons
|
|
|
12
12
|
|
|
13
13
|
Find the agent's API name in its main details page in your org's Agent page in Setup.
|
|
14
14
|
|
|
15
|
-
Before you use this command, you must complete
|
|
16
|
-
|
|
17
|
-
1. Using your org's Setup UI, create a connected app in your org as described in the "Create a Connected App" section here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#create-a-connected-app. Do these additional steps:
|
|
18
|
-
|
|
19
|
-
a. When specifying the connected app's Callback URL, add this second callback URL on a new line: "http://localhost:1717/OauthRedirect".
|
|
20
|
-
|
|
21
|
-
b. When adding the scopes to the connected app, add "Manage user data via Web browsers (web)".
|
|
22
|
-
|
|
23
|
-
2. Add the connected app to your agent as described in the "Add Connected App to Agent" section here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#add-connected-app-to-agent.
|
|
24
|
-
|
|
25
|
-
3. Copy the consumer key from your connected app as described in the "Obtain Credentials" section here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#obtain-credentials.
|
|
26
|
-
|
|
27
|
-
4. If you haven't already, run the "org login web" CLI command as usual to authorize the development org that contains the agent you want to preview.
|
|
28
|
-
|
|
29
|
-
5. Re-run the "org web login" command to link the new connected app to your already-authenticated user. Use the --client-app flag to give the link a name; you can specify any string, but make a note of it because you'll need it later. Use --username to specify the username that you used to log into the org in the previous step. Use --client-id to specify the consumer key you previously copied. Finally, use --scopes as indicated to specify the required API scopes. Here's an example:
|
|
30
|
-
|
|
31
|
-
sf org login web --client-app agent-app --username <username> --client-id <consumer-key> --scopes "sfap_api chatbot_api refresh_token api web"
|
|
32
|
-
|
|
33
|
-
IMPORTANT: You must use the "--client-id <CONNECTED-APP-CONSUMER-KEY>" flag of "org login web", where CONNECTED-APP-CONSUMER-KEY is the consumer key you previously copied. This step ensures that the "org login web" command uses your custom connected app, and not the default CLI connected app.
|
|
34
|
-
|
|
35
|
-
6. Press Enter to skip sharing the client secret, then log in with your org username as usual and click Accept.
|
|
36
|
-
|
|
37
|
-
7. Run this command ("agent preview") to interact with an agent by using the --target-org flag to specify the org username or alias as usual and --client-app to specify the linked connected app ("agent-app" in the previous example). Use the "org display" command to get the list of client apps associated with an org.
|
|
15
|
+
IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce Developer Guide" for complete documentation: https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
|
|
38
16
|
|
|
39
17
|
# flags.api-name.summary
|
|
40
18
|
|
|
@@ -56,8 +34,8 @@ Enable Apex debug logging during the agent preview conversation.
|
|
|
56
34
|
|
|
57
35
|
- Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app" connected app:
|
|
58
36
|
|
|
59
|
-
<%= config.bin %> <%= command.id %> --api-name
|
|
37
|
+
<%= config.bin %> <%= command.id %> --api-name Resort_Manager --target-org my-org --client-app agent-app
|
|
60
38
|
|
|
61
39
|
- Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview" directory rather than the default "./temp/agent-preview":
|
|
62
40
|
|
|
63
|
-
<%= config.bin %> <%= command.id %> --api-name
|
|
41
|
+
<%= config.bin %> <%= command.id %> --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir transcripts/my-preview
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-agent",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-agent",
|
|
9
|
-
"version": "1.23.
|
|
9
|
+
"version": "1.23.4",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@inquirer/core": "^10.1.6",
|
|
13
13
|
"@inquirer/prompts": "^7.2.0",
|
|
14
14
|
"@oclif/core": "^4",
|
|
15
|
-
"@oclif/multi-stage-output": "^0.
|
|
15
|
+
"@oclif/multi-stage-output": "^0.8.17",
|
|
16
16
|
"@salesforce/agents": "0.15.3",
|
|
17
17
|
"@salesforce/core": "^8.13.0",
|
|
18
18
|
"@salesforce/kit": "^3.2.3",
|
|
@@ -3014,18 +3014,6 @@
|
|
|
3014
3014
|
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
3015
3015
|
}
|
|
3016
3016
|
},
|
|
3017
|
-
"node_modules/@oclif/core/node_modules/widest-line": {
|
|
3018
|
-
"version": "3.1.0",
|
|
3019
|
-
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
|
|
3020
|
-
"integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
|
|
3021
|
-
"license": "MIT",
|
|
3022
|
-
"dependencies": {
|
|
3023
|
-
"string-width": "^4.0.0"
|
|
3024
|
-
},
|
|
3025
|
-
"engines": {
|
|
3026
|
-
"node": ">=8"
|
|
3027
|
-
}
|
|
3028
|
-
},
|
|
3029
3017
|
"node_modules/@oclif/core/node_modules/wrap-ansi": {
|
|
3030
3018
|
"version": "7.0.0",
|
|
3031
3019
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
@@ -3044,16 +3032,16 @@
|
|
|
3044
3032
|
}
|
|
3045
3033
|
},
|
|
3046
3034
|
"node_modules/@oclif/multi-stage-output": {
|
|
3047
|
-
"version": "0.
|
|
3048
|
-
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.
|
|
3049
|
-
"integrity": "sha512-
|
|
3035
|
+
"version": "0.8.17",
|
|
3036
|
+
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.8.17.tgz",
|
|
3037
|
+
"integrity": "sha512-mnemcZQfznoJB5JF0esLDMsUGCUP/hMRmi2et1PmMYIBGuOZUAJrlXtiPNi/ye8Uw60BR7k4Vr2GklNtSRawSg==",
|
|
3050
3038
|
"license": "MIT",
|
|
3051
3039
|
"dependencies": {
|
|
3052
3040
|
"@oclif/core": "^4",
|
|
3053
3041
|
"@types/react": "^18.3.12",
|
|
3054
3042
|
"cli-spinners": "^2",
|
|
3055
3043
|
"figures": "^6.1.0",
|
|
3056
|
-
"ink": "
|
|
3044
|
+
"ink": "5.0.1",
|
|
3057
3045
|
"react": "^18.3.1",
|
|
3058
3046
|
"wrap-ansi": "^9.0.0"
|
|
3059
3047
|
},
|
|
@@ -3061,21 +3049,6 @@
|
|
|
3061
3049
|
"node": ">=18.0.0"
|
|
3062
3050
|
}
|
|
3063
3051
|
},
|
|
3064
|
-
"node_modules/@oclif/multi-stage-output/node_modules/ansi-escapes": {
|
|
3065
|
-
"version": "7.0.0",
|
|
3066
|
-
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
|
|
3067
|
-
"integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==",
|
|
3068
|
-
"license": "MIT",
|
|
3069
|
-
"dependencies": {
|
|
3070
|
-
"environment": "^1.0.0"
|
|
3071
|
-
},
|
|
3072
|
-
"engines": {
|
|
3073
|
-
"node": ">=18"
|
|
3074
|
-
},
|
|
3075
|
-
"funding": {
|
|
3076
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3077
|
-
}
|
|
3078
|
-
},
|
|
3079
3052
|
"node_modules/@oclif/multi-stage-output/node_modules/ansi-regex": {
|
|
3080
3053
|
"version": "6.1.0",
|
|
3081
3054
|
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
@@ -3088,18 +3061,6 @@
|
|
|
3088
3061
|
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
3089
3062
|
}
|
|
3090
3063
|
},
|
|
3091
|
-
"node_modules/@oclif/multi-stage-output/node_modules/chalk": {
|
|
3092
|
-
"version": "5.4.1",
|
|
3093
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
|
|
3094
|
-
"integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
|
|
3095
|
-
"license": "MIT",
|
|
3096
|
-
"engines": {
|
|
3097
|
-
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
3098
|
-
},
|
|
3099
|
-
"funding": {
|
|
3100
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3101
|
-
}
|
|
3102
|
-
},
|
|
3103
3064
|
"node_modules/@oclif/multi-stage-output/node_modules/emoji-regex": {
|
|
3104
3065
|
"version": "10.4.0",
|
|
3105
3066
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
|
|
@@ -3121,81 +3082,6 @@
|
|
|
3121
3082
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
3122
3083
|
}
|
|
3123
3084
|
},
|
|
3124
|
-
"node_modules/@oclif/multi-stage-output/node_modules/indent-string": {
|
|
3125
|
-
"version": "5.0.0",
|
|
3126
|
-
"resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz",
|
|
3127
|
-
"integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==",
|
|
3128
|
-
"license": "MIT",
|
|
3129
|
-
"engines": {
|
|
3130
|
-
"node": ">=12"
|
|
3131
|
-
},
|
|
3132
|
-
"funding": {
|
|
3133
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3134
|
-
}
|
|
3135
|
-
},
|
|
3136
|
-
"node_modules/@oclif/multi-stage-output/node_modules/ink": {
|
|
3137
|
-
"version": "5.2.1",
|
|
3138
|
-
"resolved": "https://registry.npmjs.org/ink/-/ink-5.2.1.tgz",
|
|
3139
|
-
"integrity": "sha512-BqcUyWrG9zq5HIwW6JcfFHsIYebJkWWb4fczNah1goUO0vv5vneIlfwuS85twyJ5hYR/y18FlAYUxrO9ChIWVg==",
|
|
3140
|
-
"license": "MIT",
|
|
3141
|
-
"dependencies": {
|
|
3142
|
-
"@alcalzone/ansi-tokenize": "^0.1.3",
|
|
3143
|
-
"ansi-escapes": "^7.0.0",
|
|
3144
|
-
"ansi-styles": "^6.2.1",
|
|
3145
|
-
"auto-bind": "^5.0.1",
|
|
3146
|
-
"chalk": "^5.3.0",
|
|
3147
|
-
"cli-boxes": "^3.0.0",
|
|
3148
|
-
"cli-cursor": "^4.0.0",
|
|
3149
|
-
"cli-truncate": "^4.0.0",
|
|
3150
|
-
"code-excerpt": "^4.0.0",
|
|
3151
|
-
"es-toolkit": "^1.22.0",
|
|
3152
|
-
"indent-string": "^5.0.0",
|
|
3153
|
-
"is-in-ci": "^1.0.0",
|
|
3154
|
-
"patch-console": "^2.0.0",
|
|
3155
|
-
"react-reconciler": "^0.29.0",
|
|
3156
|
-
"scheduler": "^0.23.0",
|
|
3157
|
-
"signal-exit": "^3.0.7",
|
|
3158
|
-
"slice-ansi": "^7.1.0",
|
|
3159
|
-
"stack-utils": "^2.0.6",
|
|
3160
|
-
"string-width": "^7.2.0",
|
|
3161
|
-
"type-fest": "^4.27.0",
|
|
3162
|
-
"widest-line": "^5.0.0",
|
|
3163
|
-
"wrap-ansi": "^9.0.0",
|
|
3164
|
-
"ws": "^8.18.0",
|
|
3165
|
-
"yoga-layout": "~3.2.1"
|
|
3166
|
-
},
|
|
3167
|
-
"engines": {
|
|
3168
|
-
"node": ">=18"
|
|
3169
|
-
},
|
|
3170
|
-
"peerDependencies": {
|
|
3171
|
-
"@types/react": ">=18.0.0",
|
|
3172
|
-
"react": ">=18.0.0",
|
|
3173
|
-
"react-devtools-core": "^4.19.1"
|
|
3174
|
-
},
|
|
3175
|
-
"peerDependenciesMeta": {
|
|
3176
|
-
"@types/react": {
|
|
3177
|
-
"optional": true
|
|
3178
|
-
},
|
|
3179
|
-
"react-devtools-core": {
|
|
3180
|
-
"optional": true
|
|
3181
|
-
}
|
|
3182
|
-
}
|
|
3183
|
-
},
|
|
3184
|
-
"node_modules/@oclif/multi-stage-output/node_modules/is-in-ci": {
|
|
3185
|
-
"version": "1.0.0",
|
|
3186
|
-
"resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-1.0.0.tgz",
|
|
3187
|
-
"integrity": "sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==",
|
|
3188
|
-
"license": "MIT",
|
|
3189
|
-
"bin": {
|
|
3190
|
-
"is-in-ci": "cli.js"
|
|
3191
|
-
},
|
|
3192
|
-
"engines": {
|
|
3193
|
-
"node": ">=18"
|
|
3194
|
-
},
|
|
3195
|
-
"funding": {
|
|
3196
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3197
|
-
}
|
|
3198
|
-
},
|
|
3199
3085
|
"node_modules/@oclif/multi-stage-output/node_modules/is-unicode-supported": {
|
|
3200
3086
|
"version": "2.1.0",
|
|
3201
3087
|
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
|
|
@@ -7799,16 +7685,6 @@
|
|
|
7799
7685
|
"url": "https://github.com/sponsors/ljharb"
|
|
7800
7686
|
}
|
|
7801
7687
|
},
|
|
7802
|
-
"node_modules/es-toolkit": {
|
|
7803
|
-
"version": "1.36.0",
|
|
7804
|
-
"resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.36.0.tgz",
|
|
7805
|
-
"integrity": "sha512-5lpkRpDELuTSeAL//Rcg5urg+K/yOD1BobJSiNeCc89snMqgrhckmj8jdljqraDbpREiXTNW311RN518eVHBng==",
|
|
7806
|
-
"license": "MIT",
|
|
7807
|
-
"workspaces": [
|
|
7808
|
-
"docs",
|
|
7809
|
-
"benchmarks"
|
|
7810
|
-
]
|
|
7811
|
-
},
|
|
7812
7688
|
"node_modules/es6-error": {
|
|
7813
7689
|
"version": "4.1.1",
|
|
7814
7690
|
"resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
|
|
@@ -9627,16 +9503,6 @@
|
|
|
9627
9503
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
9628
9504
|
}
|
|
9629
9505
|
},
|
|
9630
|
-
"node_modules/hasha/node_modules/type-fest": {
|
|
9631
|
-
"version": "0.8.1",
|
|
9632
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
|
9633
|
-
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
|
9634
|
-
"dev": true,
|
|
9635
|
-
"license": "(MIT OR CC0-1.0)",
|
|
9636
|
-
"engines": {
|
|
9637
|
-
"node": ">=8"
|
|
9638
|
-
}
|
|
9639
|
-
},
|
|
9640
9506
|
"node_modules/hasown": {
|
|
9641
9507
|
"version": "2.0.2",
|
|
9642
9508
|
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
@@ -10080,6 +9946,18 @@
|
|
|
10080
9946
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
10081
9947
|
}
|
|
10082
9948
|
},
|
|
9949
|
+
"node_modules/ink-text-input/node_modules/type-fest": {
|
|
9950
|
+
"version": "4.40.1",
|
|
9951
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.1.tgz",
|
|
9952
|
+
"integrity": "sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==",
|
|
9953
|
+
"license": "(MIT OR CC0-1.0)",
|
|
9954
|
+
"engines": {
|
|
9955
|
+
"node": ">=16"
|
|
9956
|
+
},
|
|
9957
|
+
"funding": {
|
|
9958
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
9959
|
+
}
|
|
9960
|
+
},
|
|
10083
9961
|
"node_modules/ink/node_modules/ansi-escapes": {
|
|
10084
9962
|
"version": "7.0.0",
|
|
10085
9963
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
|
|
@@ -10169,6 +10047,33 @@
|
|
|
10169
10047
|
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
10170
10048
|
}
|
|
10171
10049
|
},
|
|
10050
|
+
"node_modules/ink/node_modules/type-fest": {
|
|
10051
|
+
"version": "4.40.1",
|
|
10052
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.1.tgz",
|
|
10053
|
+
"integrity": "sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==",
|
|
10054
|
+
"license": "(MIT OR CC0-1.0)",
|
|
10055
|
+
"engines": {
|
|
10056
|
+
"node": ">=16"
|
|
10057
|
+
},
|
|
10058
|
+
"funding": {
|
|
10059
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10060
|
+
}
|
|
10061
|
+
},
|
|
10062
|
+
"node_modules/ink/node_modules/widest-line": {
|
|
10063
|
+
"version": "5.0.0",
|
|
10064
|
+
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz",
|
|
10065
|
+
"integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==",
|
|
10066
|
+
"license": "MIT",
|
|
10067
|
+
"dependencies": {
|
|
10068
|
+
"string-width": "^7.0.0"
|
|
10069
|
+
},
|
|
10070
|
+
"engines": {
|
|
10071
|
+
"node": ">=18"
|
|
10072
|
+
},
|
|
10073
|
+
"funding": {
|
|
10074
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10075
|
+
}
|
|
10076
|
+
},
|
|
10172
10077
|
"node_modules/ink/node_modules/wrap-ansi": {
|
|
10173
10078
|
"version": "9.0.0",
|
|
10174
10079
|
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
|
|
@@ -13869,16 +13774,6 @@
|
|
|
13869
13774
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
13870
13775
|
}
|
|
13871
13776
|
},
|
|
13872
|
-
"node_modules/read-pkg-up/node_modules/type-fest": {
|
|
13873
|
-
"version": "0.8.1",
|
|
13874
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
|
13875
|
-
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
|
13876
|
-
"dev": true,
|
|
13877
|
-
"license": "(MIT OR CC0-1.0)",
|
|
13878
|
-
"engines": {
|
|
13879
|
-
"node": ">=8"
|
|
13880
|
-
}
|
|
13881
|
-
},
|
|
13882
13777
|
"node_modules/read-pkg/node_modules/hosted-git-info": {
|
|
13883
13778
|
"version": "2.8.9",
|
|
13884
13779
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
|
|
@@ -15681,15 +15576,13 @@
|
|
|
15681
15576
|
}
|
|
15682
15577
|
},
|
|
15683
15578
|
"node_modules/type-fest": {
|
|
15684
|
-
"version": "
|
|
15685
|
-
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-
|
|
15686
|
-
"integrity": "sha512-
|
|
15579
|
+
"version": "0.8.1",
|
|
15580
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
|
15581
|
+
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
|
15582
|
+
"dev": true,
|
|
15687
15583
|
"license": "(MIT OR CC0-1.0)",
|
|
15688
15584
|
"engines": {
|
|
15689
|
-
"node": ">=
|
|
15690
|
-
},
|
|
15691
|
-
"funding": {
|
|
15692
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
15585
|
+
"node": ">=8"
|
|
15693
15586
|
}
|
|
15694
15587
|
},
|
|
15695
15588
|
"node_modules/typed-array-buffer": {
|
|
@@ -16274,68 +16167,15 @@
|
|
|
16274
16167
|
}
|
|
16275
16168
|
},
|
|
16276
16169
|
"node_modules/widest-line": {
|
|
16277
|
-
"version": "
|
|
16278
|
-
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-
|
|
16279
|
-
"integrity": "sha512-
|
|
16280
|
-
"license": "MIT",
|
|
16281
|
-
"dependencies": {
|
|
16282
|
-
"string-width": "^7.0.0"
|
|
16283
|
-
},
|
|
16284
|
-
"engines": {
|
|
16285
|
-
"node": ">=18"
|
|
16286
|
-
},
|
|
16287
|
-
"funding": {
|
|
16288
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16289
|
-
}
|
|
16290
|
-
},
|
|
16291
|
-
"node_modules/widest-line/node_modules/ansi-regex": {
|
|
16292
|
-
"version": "6.1.0",
|
|
16293
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
|
|
16294
|
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
|
|
16295
|
-
"license": "MIT",
|
|
16296
|
-
"engines": {
|
|
16297
|
-
"node": ">=12"
|
|
16298
|
-
},
|
|
16299
|
-
"funding": {
|
|
16300
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
16301
|
-
}
|
|
16302
|
-
},
|
|
16303
|
-
"node_modules/widest-line/node_modules/emoji-regex": {
|
|
16304
|
-
"version": "10.4.0",
|
|
16305
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
|
|
16306
|
-
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
|
|
16307
|
-
"license": "MIT"
|
|
16308
|
-
},
|
|
16309
|
-
"node_modules/widest-line/node_modules/string-width": {
|
|
16310
|
-
"version": "7.2.0",
|
|
16311
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
16312
|
-
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
|
|
16313
|
-
"license": "MIT",
|
|
16314
|
-
"dependencies": {
|
|
16315
|
-
"emoji-regex": "^10.3.0",
|
|
16316
|
-
"get-east-asian-width": "^1.0.0",
|
|
16317
|
-
"strip-ansi": "^7.1.0"
|
|
16318
|
-
},
|
|
16319
|
-
"engines": {
|
|
16320
|
-
"node": ">=18"
|
|
16321
|
-
},
|
|
16322
|
-
"funding": {
|
|
16323
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
16324
|
-
}
|
|
16325
|
-
},
|
|
16326
|
-
"node_modules/widest-line/node_modules/strip-ansi": {
|
|
16327
|
-
"version": "7.1.0",
|
|
16328
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
16329
|
-
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
16170
|
+
"version": "3.1.0",
|
|
16171
|
+
"resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
|
|
16172
|
+
"integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
|
|
16330
16173
|
"license": "MIT",
|
|
16331
16174
|
"dependencies": {
|
|
16332
|
-
"
|
|
16175
|
+
"string-width": "^4.0.0"
|
|
16333
16176
|
},
|
|
16334
16177
|
"engines": {
|
|
16335
|
-
"node": ">=
|
|
16336
|
-
},
|
|
16337
|
-
"funding": {
|
|
16338
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
16178
|
+
"node": ">=8"
|
|
16339
16179
|
}
|
|
16340
16180
|
},
|
|
16341
16181
|
"node_modules/wireit": {
|
|
@@ -16710,12 +16550,6 @@
|
|
|
16710
16550
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
16711
16551
|
}
|
|
16712
16552
|
},
|
|
16713
|
-
"node_modules/yoga-layout": {
|
|
16714
|
-
"version": "3.2.1",
|
|
16715
|
-
"resolved": "https://registry.npmjs.org/yoga-layout/-/yoga-layout-3.2.1.tgz",
|
|
16716
|
-
"integrity": "sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==",
|
|
16717
|
-
"license": "MIT"
|
|
16718
|
-
},
|
|
16719
16553
|
"node_modules/yoga-wasm-web": {
|
|
16720
16554
|
"version": "0.3.3",
|
|
16721
16555
|
"resolved": "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz",
|
package/oclif.lock
CHANGED
|
@@ -1332,16 +1332,16 @@
|
|
|
1332
1332
|
wordwrap "^1.0.0"
|
|
1333
1333
|
wrap-ansi "^7.0.0"
|
|
1334
1334
|
|
|
1335
|
-
"@oclif/multi-stage-output@^0.
|
|
1336
|
-
version "0.
|
|
1337
|
-
resolved "https://registry.yarnpkg.com/@oclif/multi-stage-output/-/multi-stage-output-0.
|
|
1338
|
-
integrity sha512-
|
|
1335
|
+
"@oclif/multi-stage-output@^0.8.17":
|
|
1336
|
+
version "0.8.17"
|
|
1337
|
+
resolved "https://registry.yarnpkg.com/@oclif/multi-stage-output/-/multi-stage-output-0.8.17.tgz#92ec74abf58554da95f062a570bb99cff3546b25"
|
|
1338
|
+
integrity sha512-mnemcZQfznoJB5JF0esLDMsUGCUP/hMRmi2et1PmMYIBGuOZUAJrlXtiPNi/ye8Uw60BR7k4Vr2GklNtSRawSg==
|
|
1339
1339
|
dependencies:
|
|
1340
1340
|
"@oclif/core" "^4"
|
|
1341
1341
|
"@types/react" "^18.3.12"
|
|
1342
1342
|
cli-spinners "^2"
|
|
1343
1343
|
figures "^6.1.0"
|
|
1344
|
-
ink "
|
|
1344
|
+
ink "5.0.1"
|
|
1345
1345
|
react "^18.3.1"
|
|
1346
1346
|
wrap-ansi "^9.0.0"
|
|
1347
1347
|
|
|
@@ -3965,11 +3965,6 @@ es-to-primitive@^1.3.0:
|
|
|
3965
3965
|
is-date-object "^1.0.5"
|
|
3966
3966
|
is-symbol "^1.0.4"
|
|
3967
3967
|
|
|
3968
|
-
es-toolkit@^1.22.0:
|
|
3969
|
-
version "1.36.0"
|
|
3970
|
-
resolved "https://registry.yarnpkg.com/es-toolkit/-/es-toolkit-1.36.0.tgz#98a9ddba346cde1aeca099f9bc27c05838c68b9a"
|
|
3971
|
-
integrity sha512-5lpkRpDELuTSeAL//Rcg5urg+K/yOD1BobJSiNeCc89snMqgrhckmj8jdljqraDbpREiXTNW311RN518eVHBng==
|
|
3972
|
-
|
|
3973
3968
|
es6-error@^4.0.1:
|
|
3974
3969
|
version "4.1.1"
|
|
3975
3970
|
resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d"
|
|
@@ -5220,36 +5215,6 @@ ink@5.0.1:
|
|
|
5220
5215
|
ws "^8.15.0"
|
|
5221
5216
|
yoga-wasm-web "~0.3.3"
|
|
5222
5217
|
|
|
5223
|
-
ink@^5.1.0:
|
|
5224
|
-
version "5.2.1"
|
|
5225
|
-
resolved "https://registry.yarnpkg.com/ink/-/ink-5.2.1.tgz#b9ea59f0d1eab2b4566903b35b54fd34323d1694"
|
|
5226
|
-
integrity sha512-BqcUyWrG9zq5HIwW6JcfFHsIYebJkWWb4fczNah1goUO0vv5vneIlfwuS85twyJ5hYR/y18FlAYUxrO9ChIWVg==
|
|
5227
|
-
dependencies:
|
|
5228
|
-
"@alcalzone/ansi-tokenize" "^0.1.3"
|
|
5229
|
-
ansi-escapes "^7.0.0"
|
|
5230
|
-
ansi-styles "^6.2.1"
|
|
5231
|
-
auto-bind "^5.0.1"
|
|
5232
|
-
chalk "^5.3.0"
|
|
5233
|
-
cli-boxes "^3.0.0"
|
|
5234
|
-
cli-cursor "^4.0.0"
|
|
5235
|
-
cli-truncate "^4.0.0"
|
|
5236
|
-
code-excerpt "^4.0.0"
|
|
5237
|
-
es-toolkit "^1.22.0"
|
|
5238
|
-
indent-string "^5.0.0"
|
|
5239
|
-
is-in-ci "^1.0.0"
|
|
5240
|
-
patch-console "^2.0.0"
|
|
5241
|
-
react-reconciler "^0.29.0"
|
|
5242
|
-
scheduler "^0.23.0"
|
|
5243
|
-
signal-exit "^3.0.7"
|
|
5244
|
-
slice-ansi "^7.1.0"
|
|
5245
|
-
stack-utils "^2.0.6"
|
|
5246
|
-
string-width "^7.2.0"
|
|
5247
|
-
type-fest "^4.27.0"
|
|
5248
|
-
widest-line "^5.0.0"
|
|
5249
|
-
wrap-ansi "^9.0.0"
|
|
5250
|
-
ws "^8.18.0"
|
|
5251
|
-
yoga-layout "~3.2.1"
|
|
5252
|
-
|
|
5253
5218
|
inquirer-autocomplete-standalone@^0.8.1:
|
|
5254
5219
|
version "0.8.1"
|
|
5255
5220
|
resolved "https://registry.yarnpkg.com/inquirer-autocomplete-standalone/-/inquirer-autocomplete-standalone-0.8.1.tgz#540ac162d5dd01f83d0f4016b76bf0bb64e2fff8"
|
|
@@ -5421,11 +5386,6 @@ is-in-ci@^0.1.0:
|
|
|
5421
5386
|
resolved "https://registry.yarnpkg.com/is-in-ci/-/is-in-ci-0.1.0.tgz#5e07d6a02ec3a8292d3f590973357efa3fceb0d3"
|
|
5422
5387
|
integrity sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==
|
|
5423
5388
|
|
|
5424
|
-
is-in-ci@^1.0.0:
|
|
5425
|
-
version "1.0.0"
|
|
5426
|
-
resolved "https://registry.yarnpkg.com/is-in-ci/-/is-in-ci-1.0.0.tgz#9a86bbda7e42c6129902e0574c54b018fbb6ab88"
|
|
5427
|
-
integrity sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==
|
|
5428
|
-
|
|
5429
5389
|
is-map@^2.0.3:
|
|
5430
5390
|
version "2.0.3"
|
|
5431
5391
|
resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
|
|
@@ -8333,7 +8293,7 @@ type-fest@^1.0.2:
|
|
|
8333
8293
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
|
|
8334
8294
|
integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
|
|
8335
8295
|
|
|
8336
|
-
type-fest@^4.18.2, type-fest@^4.
|
|
8296
|
+
type-fest@^4.18.2, type-fest@^4.8.3:
|
|
8337
8297
|
version "4.40.1"
|
|
8338
8298
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.40.1.tgz#d78a09f08dd1081a434dd377967650cfd565401d"
|
|
8339
8299
|
integrity sha512-9YvLNnORDpI+vghLU/Nf+zSv0kL47KbVJ1o3sKgoTefl6i+zebxbiDQWoe/oWWqPhIgQdRZRT1KA9sCPL810SA==
|
|
@@ -8774,7 +8734,7 @@ write-file-atomic@^3.0.0:
|
|
|
8774
8734
|
signal-exit "^3.0.2"
|
|
8775
8735
|
typedarray-to-buffer "^3.1.5"
|
|
8776
8736
|
|
|
8777
|
-
ws@^8.15.0
|
|
8737
|
+
ws@^8.15.0:
|
|
8778
8738
|
version "8.18.1"
|
|
8779
8739
|
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.1.tgz#ea131d3784e1dfdff91adb0a4a116b127515e3cb"
|
|
8780
8740
|
integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==
|
|
@@ -8908,11 +8868,6 @@ yoctocolors-cjs@^2.1.2:
|
|
|
8908
8868
|
resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242"
|
|
8909
8869
|
integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
|
|
8910
8870
|
|
|
8911
|
-
yoga-layout@~3.2.1:
|
|
8912
|
-
version "3.2.1"
|
|
8913
|
-
resolved "https://registry.yarnpkg.com/yoga-layout/-/yoga-layout-3.2.1.tgz#d2d1ba06f0e81c2eb650c3e5ad8b0b4adde1e843"
|
|
8914
|
-
integrity sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==
|
|
8915
|
-
|
|
8916
8871
|
yoga-wasm-web@~0.3.3:
|
|
8917
8872
|
version "0.3.3"
|
|
8918
8873
|
resolved "https://registry.yarnpkg.com/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz#eb8e9fcb18e5e651994732f19a220cb885d932ba"
|
package/oclif.manifest.json
CHANGED
|
@@ -104,10 +104,10 @@
|
|
|
104
104
|
"agent:preview": {
|
|
105
105
|
"aliases": [],
|
|
106
106
|
"args": {},
|
|
107
|
-
"description": "Use this command to have a natural language conversation with an active agent in your org, as if you were an actual user. The interface is simple: in the \"Start typing...\" prompt, enter a statement, question, or command; when you're done, enter Return. Your utterance is posted on the right along with a timestamp. The agent then responds on the left. To exit the conversation, hit ESC or Control+C.\n\nThis command is useful to test if the agent responds to your utterances as you expect. For example, you can test that the agent uses a particular topic when asked a question, and then whether it invokes the correct action associated with that topic. This command is the CLI-equivalent of the Conversation Preview panel in your org's Agent Builder UI.\n\nWhen the session concludes, the command asks if you want to save the API responses and chat transcripts. By default, the files are saved to the \"./temp/agent-preview\" directory. Specify a new default directory by setting the environment variable \"SF_AGENT_PREVIEW_OUTPUT_DIR\" to the directory. Or you can pass the directory to the --output-dir flag.\n\nFind the agent's API name in its main details page in your org's Agent page in Setup.\n\
|
|
107
|
+
"description": "Use this command to have a natural language conversation with an active agent in your org, as if you were an actual user. The interface is simple: in the \"Start typing...\" prompt, enter a statement, question, or command; when you're done, enter Return. Your utterance is posted on the right along with a timestamp. The agent then responds on the left. To exit the conversation, hit ESC or Control+C.\n\nThis command is useful to test if the agent responds to your utterances as you expect. For example, you can test that the agent uses a particular topic when asked a question, and then whether it invokes the correct action associated with that topic. This command is the CLI-equivalent of the Conversation Preview panel in your org's Agent Builder UI.\n\nWhen the session concludes, the command asks if you want to save the API responses and chat transcripts. By default, the files are saved to the \"./temp/agent-preview\" directory. Specify a new default directory by setting the environment variable \"SF_AGENT_PREVIEW_OUTPUT_DIR\" to the directory. Or you can pass the directory to the --output-dir flag.\n\nFind the agent's API name in its main details page in your org's Agent page in Setup.\n\nIMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX project. The examples in this help assume you've completed the steps. See \"Preview an Agent\" in the \"Agentforce Developer Guide\" for complete documentation: https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.",
|
|
108
108
|
"examples": [
|
|
109
|
-
"Interact with an agent with API name \"Resort_Manager\" in the org with alias \"my-org\" and the linked \"agent-app\" connected app:\n<%= config.bin %> <%= command.id %> --api-name
|
|
110
|
-
"Same as the preceding example, but this time save the conversation transcripts to the \"./transcripts/my-preview\" directory rather than the default \"./temp/agent-preview\":\n<%= config.bin %> <%= command.id %> --api-name
|
|
109
|
+
"Interact with an agent with API name \"Resort_Manager\" in the org with alias \"my-org\" and the linked \"agent-app\" connected app:\n<%= config.bin %> <%= command.id %> --api-name Resort_Manager --target-org my-org --client-app agent-app",
|
|
110
|
+
"Same as the preceding example, but this time save the conversation transcripts to the \"./transcripts/my-preview\" directory rather than the default \"./temp/agent-preview\":\n<%= config.bin %> <%= command.id %> --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir transcripts/my-preview"
|
|
111
111
|
],
|
|
112
112
|
"flags": {
|
|
113
113
|
"flags-dir": {
|
|
@@ -1112,5 +1112,5 @@
|
|
|
1112
1112
|
]
|
|
1113
1113
|
}
|
|
1114
1114
|
},
|
|
1115
|
-
"version": "1.23.
|
|
1115
|
+
"version": "1.23.4"
|
|
1116
1116
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-agent",
|
|
3
3
|
"description": "Commands to interact with Salesforce agents",
|
|
4
|
-
"version": "1.23.
|
|
4
|
+
"version": "1.23.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@inquirer/core": "^10.1.6",
|
|
9
9
|
"@inquirer/prompts": "^7.2.0",
|
|
10
10
|
"@oclif/core": "^4",
|
|
11
|
-
"@oclif/multi-stage-output": "^0.
|
|
11
|
+
"@oclif/multi-stage-output": "^0.8.17",
|
|
12
12
|
"@salesforce/agents": "0.15.3",
|
|
13
13
|
"@salesforce/core": "^8.13.0",
|
|
14
14
|
"@salesforce/kit": "^3.2.3",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"exports": "./lib/index.js",
|
|
230
230
|
"type": "module",
|
|
231
231
|
"sfdx": {
|
|
232
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.23.
|
|
233
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.23.
|
|
232
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.23.4.crt",
|
|
233
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.23.4.sig"
|
|
234
234
|
}
|
|
235
235
|
}
|