@salesforce/plugin-agent 1.24.14-demo.8 → 1.24.14
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/LICENSE.txt +6 -200
- package/README.md +24 -132
- package/lib/agentActivation.js +4 -13
- package/lib/agentActivation.js.map +1 -1
- package/lib/agentTestCache.js +4 -13
- package/lib/agentTestCache.js.map +1 -1
- package/lib/commands/agent/activate.js +4 -13
- package/lib/commands/agent/activate.js.map +1 -1
- package/lib/commands/agent/create.js +4 -13
- package/lib/commands/agent/create.js.map +1 -1
- package/lib/commands/agent/deactivate.js +4 -13
- package/lib/commands/agent/deactivate.js.map +1 -1
- package/lib/commands/agent/generate/agent-spec.js +4 -13
- package/lib/commands/agent/generate/agent-spec.js.map +1 -1
- package/lib/commands/agent/generate/template.js +4 -13
- package/lib/commands/agent/generate/template.js.map +1 -1
- package/lib/commands/agent/generate/test-spec.js +4 -13
- package/lib/commands/agent/generate/test-spec.js.map +1 -1
- package/lib/commands/agent/preview.d.ts +2 -2
- package/lib/commands/agent/preview.js +8 -30
- package/lib/commands/agent/preview.js.map +1 -1
- package/lib/commands/agent/test/create.js +4 -13
- package/lib/commands/agent/test/create.js.map +1 -1
- package/lib/commands/agent/test/list.js +4 -13
- package/lib/commands/agent/test/list.js.map +1 -1
- package/lib/commands/agent/test/results.js +4 -13
- package/lib/commands/agent/test/results.js.map +1 -1
- package/lib/commands/agent/test/resume.js +4 -13
- package/lib/commands/agent/test/resume.js.map +1 -1
- package/lib/commands/agent/test/run.js +4 -14
- package/lib/commands/agent/test/run.js.map +1 -1
- package/lib/components/agent-preview-react.js +37 -72
- package/lib/components/agent-preview-react.js.map +1 -1
- package/lib/flags.d.ts +2 -6
- package/lib/flags.js +20 -55
- package/lib/flags.js.map +1 -1
- package/lib/handleTestResults.js +4 -13
- package/lib/handleTestResults.js.map +1 -1
- package/lib/index.js +4 -13
- package/lib/index.js.map +1 -1
- package/lib/inquirer-theme.js +4 -13
- package/lib/inquirer-theme.js.map +1 -1
- package/lib/testStages.js +4 -13
- package/lib/testStages.js.map +1 -1
- package/lib/yes-no-cancel.js +4 -13
- package/lib/yes-no-cancel.js.map +1 -1
- package/messages/agent.preview.md +0 -4
- package/messages/agent.test.run.md +0 -4
- package/npm-shrinkwrap.json +17924 -0
- package/oclif.lock +9492 -0
- package/oclif.manifest.json +3 -289
- package/package.json +12 -11
- package/lib/commands/agent/generate/authoring-bundle.d.ts +0 -22
- package/lib/commands/agent/generate/authoring-bundle.js +0 -146
- package/lib/commands/agent/generate/authoring-bundle.js.map +0 -1
- package/lib/commands/agent/publish/authoring-bundle.d.ts +0 -19
- package/lib/commands/agent/publish/authoring-bundle.js +0 -131
- package/lib/commands/agent/publish/authoring-bundle.js.map +0 -1
- package/lib/commands/agent/validate/authoring-bundle.d.ts +0 -18
- package/lib/commands/agent/validate/authoring-bundle.js +0 -123
- package/lib/commands/agent/validate/authoring-bundle.js.map +0 -1
- package/messages/agent.generate.authoring-bundle.md +0 -47
- package/messages/agent.publish.authoring-bundle.md +0 -45
- package/messages/agent.validate.authoring-bundle.md +0 -41
- package/schemas/agent-generate-authoring__bundle.json +0 -22
- package/schemas/agent-publish-authoring__bundle.json +0 -25
- package/schemas/agent-validate-authoring__bundle.json +0 -22
|
@@ -18,10 +18,6 @@ IMPORTANT: Before you use this command, you must complete a number of configurat
|
|
|
18
18
|
|
|
19
19
|
API name of the agent you want to interact with.
|
|
20
20
|
|
|
21
|
-
# flags.authoring-bundle.summary
|
|
22
|
-
|
|
23
|
-
Preview an ephemeral agent by specifying the API name of the Authoring Bundle metadata
|
|
24
|
-
|
|
25
21
|
# flags.client-app.summary
|
|
26
22
|
|
|
27
23
|
Name of the linked client app to use for the agent connection. You must have previously created this link with "org login web --client-app". Run "org display" to see the available linked client apps.
|
|
@@ -14,10 +14,6 @@ By default, this command outputs test results in human-readable tables for each
|
|
|
14
14
|
|
|
15
15
|
API name of the agent test to run; corresponds to the name of the AiEvaluationDefinition metadata component that implements the agent test.
|
|
16
16
|
|
|
17
|
-
# flags.api-name.prompt
|
|
18
|
-
|
|
19
|
-
API name of the agent test to run
|
|
20
|
-
|
|
21
17
|
# flags.wait.summary
|
|
22
18
|
|
|
23
19
|
Number of minutes to wait for the command to complete and display results to the terminal window.
|