@salesforce/plugin-agent 1.29.0 → 1.29.2

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.
Files changed (3) hide show
  1. package/README.md +19 -19
  2. package/oclif.manifest.json +356 -356
  3. package/package.json +6 -6
package/README.md CHANGED
@@ -116,7 +116,7 @@ EXAMPLES
116
116
  $ sf agent activate --api-name Resort_Manager --target-org my-org
117
117
  ```
118
118
 
119
- _See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/activate.ts)_
119
+ _See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/activate.ts)_
120
120
 
121
121
  ## `sf agent create`
122
122
 
@@ -183,7 +183,7 @@ EXAMPLES
183
183
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
184
184
  ```
185
185
 
186
- _See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/create.ts)_
186
+ _See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/create.ts)_
187
187
 
188
188
  ## `sf agent deactivate`
189
189
 
@@ -223,7 +223,7 @@ EXAMPLES
223
223
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
224
224
  ```
225
225
 
226
- _See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/deactivate.ts)_
226
+ _See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/deactivate.ts)_
227
227
 
228
228
  ## `sf agent generate agent-spec`
229
229
 
@@ -330,7 +330,7 @@ EXAMPLES
330
330
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
331
331
  ```
332
332
 
333
- _See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/generate/agent-spec.ts)_
333
+ _See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/generate/agent-spec.ts)_
334
334
 
335
335
  ## `sf agent generate authoring-bundle`
336
336
 
@@ -405,7 +405,7 @@ EXAMPLES
405
405
  other-package-dir/main/default --target-org my-dev-org
406
406
  ```
407
407
 
408
- _See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/generate/authoring-bundle.ts)_
408
+ _See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/generate/authoring-bundle.ts)_
409
409
 
410
410
  ## `sf agent generate template`
411
411
 
@@ -453,7 +453,7 @@ EXAMPLES
453
453
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
454
454
  ```
455
455
 
456
- _See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/generate/template.ts)_
456
+ _See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/generate/template.ts)_
457
457
 
458
458
  ## `sf agent generate test-spec`
459
459
 
@@ -514,7 +514,7 @@ EXAMPLES
514
514
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
515
515
  ```
516
516
 
517
- _See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/generate/test-spec.ts)_
517
+ _See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/generate/test-spec.ts)_
518
518
 
519
519
  ## `sf agent preview`
520
520
 
@@ -587,7 +587,7 @@ EXAMPLES
587
587
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
588
588
  ```
589
589
 
590
- _See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/preview.ts)_
590
+ _See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/preview.ts)_
591
591
 
592
592
  ## `sf agent preview end`
593
593
 
@@ -642,7 +642,7 @@ EXAMPLES
642
642
  $ sf agent preview end --authoring-bundle My_Local_Agent
643
643
  ```
644
644
 
645
- _See code: [src/commands/agent/preview/end.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/preview/end.ts)_
645
+ _See code: [src/commands/agent/preview/end.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/preview/end.ts)_
646
646
 
647
647
  ## `sf agent preview send`
648
648
 
@@ -700,7 +700,7 @@ EXAMPLES
700
700
  $ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
701
701
  ```
702
702
 
703
- _See code: [src/commands/agent/preview/send.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/preview/send.ts)_
703
+ _See code: [src/commands/agent/preview/send.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/preview/send.ts)_
704
704
 
705
705
  ## `sf agent preview sessions`
706
706
 
@@ -733,7 +733,7 @@ EXAMPLES
733
733
  $ sf agent preview sessions
734
734
  ```
735
735
 
736
- _See code: [src/commands/agent/preview/sessions.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/preview/sessions.ts)_
736
+ _See code: [src/commands/agent/preview/sessions.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/preview/sessions.ts)_
737
737
 
738
738
  ## `sf agent preview start`
739
739
 
@@ -790,7 +790,7 @@ EXAMPLES
790
790
  $ sf agent preview start --api-name My_Published_Agent
791
791
  ```
792
792
 
793
- _See code: [src/commands/agent/preview/start.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/preview/start.ts)_
793
+ _See code: [src/commands/agent/preview/start.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/preview/start.ts)_
794
794
 
795
795
  ## `sf agent publish authoring-bundle`
796
796
 
@@ -839,7 +839,7 @@ EXAMPLES
839
839
  $ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
840
840
  ```
841
841
 
842
- _See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/publish/authoring-bundle.ts)_
842
+ _See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/publish/authoring-bundle.ts)_
843
843
 
844
844
  ## `sf agent test create`
845
845
 
@@ -894,7 +894,7 @@ EXAMPLES
894
894
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
895
895
  ```
896
896
 
897
- _See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/test/create.ts)_
897
+ _See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/test/create.ts)_
898
898
 
899
899
  ## `sf agent test list`
900
900
 
@@ -929,7 +929,7 @@ EXAMPLES
929
929
  $ sf agent test list --target-org my-org
930
930
  ```
931
931
 
932
- _See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/test/list.ts)_
932
+ _See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/test/list.ts)_
933
933
 
934
934
  ## `sf agent test results`
935
935
 
@@ -995,7 +995,7 @@ FLAG DESCRIPTIONS
995
995
  expression when using custom evaluations.
996
996
  ```
997
997
 
998
- _See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/test/results.ts)_
998
+ _See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/test/results.ts)_
999
999
 
1000
1000
  ## `sf agent test resume`
1001
1001
 
@@ -1068,7 +1068,7 @@ FLAG DESCRIPTIONS
1068
1068
  expression when using custom evaluations.
1069
1069
  ```
1070
1070
 
1071
- _See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/test/resume.ts)_
1071
+ _See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/test/resume.ts)_
1072
1072
 
1073
1073
  ## `sf agent test run`
1074
1074
 
@@ -1142,7 +1142,7 @@ FLAG DESCRIPTIONS
1142
1142
  expression when using custom evaluations.
1143
1143
  ```
1144
1144
 
1145
- _See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/test/run.ts)_
1145
+ _See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/test/run.ts)_
1146
1146
 
1147
1147
  ## `sf agent validate authoring-bundle`
1148
1148
 
@@ -1189,6 +1189,6 @@ EXAMPLES
1189
1189
  $ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
1190
1190
  ```
1191
1191
 
1192
- _See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.0/src/commands/agent/validate/authoring-bundle.ts)_
1192
+ _See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.29.2/src/commands/agent/validate/authoring-bundle.ts)_
1193
1193
 
1194
1194
  <!-- commandsstop -->