@salesforce/plugin-schema 2.1.16 → 2.1.18
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 +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -50,11 +50,11 @@ yarn install
|
|
|
50
50
|
yarn build
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
To use your plugin, run using the local `./bin/
|
|
53
|
+
To use your plugin, run using the local `./bin/dev` or `./bin/dev.cmd` file.
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
56
|
# Run using local run file.
|
|
57
|
-
./bin/
|
|
57
|
+
./bin/dev schema
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.1.
|
|
1
|
+
{"version":"2.1.18","commands":{"force:schema:sobject:describe":{"id":"force:schema:sobject:describe","description":"displays the metadata for a standard or custom object","strict":true,"usage":"<%= command.id %> -s <string> [-t] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-schema","pluginAlias":"@salesforce/plugin-schema","pluginType":"core","aliases":[],"examples":["$ sfdx force:schema:sobject:describe -s Account","$ sfdx force:schema:sobject:describe -s MyObject__c","$ sfdx force:schema:sobject:describe -s ApexClass -t"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"sobjecttype":{"name":"sobjecttype","type":"option","char":"s","description":"the API name of the object to describe","required":true,"multiple":false},"usetoolingapi":{"name":"usetoolingapi","type":"boolean","char":"t","description":"execute with Tooling API","allowNo":false}},"args":[],"flagsConfig":{"sobjecttype":{"kind":"string","char":"s","required":true,"description":"the API name of the object to describe","input":[],"multiple":false,"type":"option"},"usetoolingapi":{"kind":"boolean","char":"t","description":"execute with Tooling API","allowNo":false,"type":"boolean"}},"requiresUsername":true},"force:schema:sobject:list":{"id":"force:schema:sobject:list","description":"list all objects of a specified category","strict":true,"usage":"<%= command.id %> [-c <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-schema","pluginAlias":"@salesforce/plugin-schema","pluginType":"core","aliases":[],"examples":["$ sfdx force:schema:sobject:list -c all","$ sfdx force:schema:sobject:list -c custom","$ sfdx force:schema:sobject:list -c standard"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org","multiple":false},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command","multiple":false},"sobjecttypecategory":{"name":"sobjecttypecategory","type":"option","char":"c","description":"the type of objects to list (all|custom|standard)","multiple":false,"default":"ALL"}},"args":[],"flagsConfig":{"sobjecttypecategory":{"kind":"string","char":"c","default":"ALL","description":"the type of objects to list (all|custom|standard)","input":[],"multiple":false,"type":"option"}},"requiresUsername":true}}}
|
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-schema",
|
|
3
3
|
"description": "Commands to interact with salesforce sobject schemas",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.18",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@oclif/core": "^1.20.4",
|
|
10
10
|
"@salesforce/command": "^5.2.25",
|
|
11
|
-
"@salesforce/core": "^3.
|
|
11
|
+
"@salesforce/core": "^3.32.6",
|
|
12
12
|
"tslib": "^2"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@oclif/plugin-command-snapshot": "^3",
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^3.2.
|
|
15
|
+
"@oclif/plugin-command-snapshot": "^3.2.11",
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^3.2.9",
|
|
17
17
|
"@salesforce/dev-config": "^3.0.1",
|
|
18
18
|
"@salesforce/dev-scripts": "^3.1.0",
|
|
19
|
-
"@salesforce/plugin-command-reference": "^1.
|
|
19
|
+
"@salesforce/plugin-command-reference": "^1.5.3",
|
|
20
20
|
"@salesforce/prettier-config": "^0.0.2",
|
|
21
21
|
"@salesforce/ts-sinon": "1.4.2",
|
|
22
|
-
"@swc/core": "^1.3.
|
|
22
|
+
"@swc/core": "^1.3.20",
|
|
23
23
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
24
|
-
"@typescript-eslint/parser": "^5.
|
|
24
|
+
"@typescript-eslint/parser": "^5.45.0",
|
|
25
25
|
"chai": "^4.3.7",
|
|
26
|
-
"eslint": "^8.
|
|
26
|
+
"eslint": "^8.29.0",
|
|
27
27
|
"eslint-config-prettier": "^8.5.0",
|
|
28
28
|
"eslint-config-salesforce": "^1.1.0",
|
|
29
29
|
"eslint-config-salesforce-license": "^0.1.6",
|
|
30
30
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
31
31
|
"eslint-plugin-header": "^3.0.0",
|
|
32
32
|
"eslint-plugin-import": "2.26.0",
|
|
33
|
-
"eslint-plugin-jsdoc": "^39.6.
|
|
33
|
+
"eslint-plugin-jsdoc": "^39.6.4",
|
|
34
34
|
"husky": "^7.0.4",
|
|
35
35
|
"mocha": "^9.1.3",
|
|
36
36
|
"nyc": "^15.1.0",
|
|
37
|
-
"oclif": "^
|
|
38
|
-
"prettier": "^2.
|
|
37
|
+
"oclif": "^3.3.0",
|
|
38
|
+
"prettier": "^2.8.0",
|
|
39
39
|
"pretty-quick": "^3.1.0",
|
|
40
40
|
"shx": "0.3.4",
|
|
41
41
|
"sinon": "10.0.0",
|
|
42
42
|
"ts-node": "^10.0.0",
|
|
43
|
-
"typescript": "^4.
|
|
43
|
+
"typescript": "^4.9.3"
|
|
44
44
|
},
|
|
45
45
|
"config": {},
|
|
46
46
|
"engines": {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"access": "public"
|
|
111
111
|
},
|
|
112
112
|
"sfdx": {
|
|
113
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.
|
|
114
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.
|
|
113
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.18.crt",
|
|
114
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.18.sig"
|
|
115
115
|
}
|
|
116
116
|
}
|