@salesforce/plugin-agent 1.24.14-demo.2 → 1.24.14-demo.6
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 +30 -29
- package/lib/commands/agent/generate/authoring-bundle.d.ts +2 -2
- package/lib/commands/agent/generate/authoring-bundle.js +60 -21
- package/lib/commands/agent/generate/authoring-bundle.js.map +1 -1
- package/lib/commands/agent/preview.d.ts +1 -2
- package/lib/commands/agent/preview.js +4 -3
- package/lib/commands/agent/preview.js.map +1 -1
- package/lib/commands/agent/publish/authoring-bundle.d.ts +2 -2
- package/lib/commands/agent/publish/authoring-bundle.js +25 -7
- package/lib/commands/agent/publish/authoring-bundle.js.map +1 -1
- package/lib/commands/agent/validate/authoring-bundle.d.ts +2 -2
- package/lib/commands/agent/validate/authoring-bundle.js +61 -11
- package/lib/commands/agent/validate/authoring-bundle.js.map +1 -1
- package/lib/flags.d.ts +2 -0
- package/lib/flags.js +23 -5
- package/lib/flags.js.map +1 -1
- package/messages/agent.generate.authoring-bundle.md +12 -4
- package/messages/agent.preview.md +1 -1
- package/messages/agent.publish.authoring-bundle.md +8 -4
- package/messages/agent.validate.authoring-bundle.md +8 -4
- package/oclif.manifest.json +105 -89
- package/package.json +7 -7
- package/schemas/agent-generate-authoring__bundle.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-agent",
|
|
3
3
|
"description": "Commands to interact with Salesforce agents",
|
|
4
|
-
"version": "1.24.14-demo.
|
|
4
|
+
"version": "1.24.14-demo.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@inquirer/prompts": "^7.8.6",
|
|
10
10
|
"@oclif/core": "^4",
|
|
11
11
|
"@oclif/multi-stage-output": "^0.8.23",
|
|
12
|
-
"@salesforce/agents": "^0.17.
|
|
12
|
+
"@salesforce/agents": "^0.17.11",
|
|
13
13
|
"@salesforce/core": "^8.23.1",
|
|
14
14
|
"@salesforce/kit": "^3.2.3",
|
|
15
15
|
"@salesforce/sf-plugins-core": "^12.2.4",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@oclif/plugin-command-snapshot": "^5.2.19",
|
|
28
|
-
"@oclif/test": "^4.1.
|
|
28
|
+
"@oclif/test": "^4.1.14",
|
|
29
29
|
"@salesforce/cli-plugins-testkit": "^5.3.41",
|
|
30
30
|
"@salesforce/dev-scripts": "^11.0.4",
|
|
31
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
31
|
+
"@salesforce/plugin-command-reference": "^3.1.72",
|
|
32
32
|
"@types/inquirer": "^9.0.9",
|
|
33
33
|
"@types/react": "^18.3.3",
|
|
34
34
|
"eslint-config-xo": "^0.49.0",
|
|
35
35
|
"eslint-config-xo-react": "^0.27.0",
|
|
36
36
|
"eslint-plugin-react": "^7.34.3",
|
|
37
37
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
38
|
-
"eslint-plugin-sf-plugin": "^1.20.
|
|
38
|
+
"eslint-plugin-sf-plugin": "^1.20.33",
|
|
39
39
|
"esmock": "^2.7.1",
|
|
40
40
|
"oclif": "^4.22.14",
|
|
41
41
|
"ts-node": "^10.9.2",
|
|
@@ -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.24.14-demo.
|
|
233
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.24.14-demo.
|
|
232
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.24.14-demo.6.crt",
|
|
233
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.24.14-demo.6.sig"
|
|
234
234
|
}
|
|
235
235
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"AgentGenerateAuthoringBundleResult": {
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
|
-
"
|
|
8
|
+
"agentPath": {
|
|
9
9
|
"type": "string"
|
|
10
10
|
},
|
|
11
11
|
"metaXmlPath": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"type": "string"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"required": ["
|
|
18
|
+
"required": ["agentPath", "metaXmlPath", "outputDir"],
|
|
19
19
|
"additionalProperties": false
|
|
20
20
|
}
|
|
21
21
|
}
|