@salesforce/plugin-agent 1.5.0 → 1.5.1
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 +7 -7
- package/lib/commands/agent/create.d.ts +1 -0
- package/lib/commands/agent/create.js +28 -19
- package/lib/commands/agent/create.js.map +1 -1
- package/lib/commands/agent/generate/spec.js +1 -1
- package/lib/commands/agent/generate/spec.js.map +1 -1
- package/npm-shrinkwrap.json +612 -73
- package/oclif.lock +354 -18
- package/oclif.manifest.json +2 -1
- package/package.json +4 -4
package/oclif.manifest.json
CHANGED
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"strict": true,
|
|
71
71
|
"summary": "Create an Agent from an agent spec.",
|
|
72
72
|
"enableJsonFlag": true,
|
|
73
|
+
"requiresProject": true,
|
|
73
74
|
"isESM": true,
|
|
74
75
|
"relativePath": [
|
|
75
76
|
"lib",
|
|
@@ -690,5 +691,5 @@
|
|
|
690
691
|
]
|
|
691
692
|
}
|
|
692
693
|
},
|
|
693
|
-
"version": "1.5.
|
|
694
|
+
"version": "1.5.1"
|
|
694
695
|
}
|
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.5.
|
|
4
|
+
"version": "1.5.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@inquirer/select": "^4.0.1",
|
|
11
11
|
"@oclif/core": "^4",
|
|
12
12
|
"@oclif/multi-stage-output": "^0.7.12",
|
|
13
|
-
"@salesforce/agents": "^0.4.
|
|
13
|
+
"@salesforce/agents": "^0.4.2",
|
|
14
14
|
"@salesforce/core": "^8.8.0",
|
|
15
15
|
"@salesforce/kit": "^3.2.1",
|
|
16
16
|
"@salesforce/sf-plugins-core": "^12.1.0",
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"exports": "./lib/index.js",
|
|
222
222
|
"type": "module",
|
|
223
223
|
"sfdx": {
|
|
224
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.5.
|
|
225
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.5.
|
|
224
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.5.1.crt",
|
|
225
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-agent/1.5.1.sig"
|
|
226
226
|
}
|
|
227
227
|
}
|