@salesforce/plugin-schema 2.1.13 → 2.1.15
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/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.1.
|
|
1
|
+
{"version":"2.1.15","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,25 +1,25 @@
|
|
|
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.15",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^1.20.
|
|
9
|
+
"@oclif/core": "^1.20.4",
|
|
10
10
|
"@salesforce/command": "^5.2.20",
|
|
11
|
-
"@salesforce/core": "^3.
|
|
11
|
+
"@salesforce/core": "^3.31.19",
|
|
12
12
|
"tslib": "^2"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@oclif/plugin-command-snapshot": "^3",
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^3.2.
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^3.2.6",
|
|
17
17
|
"@salesforce/dev-config": "^3.0.1",
|
|
18
18
|
"@salesforce/dev-scripts": "^3.1.0",
|
|
19
19
|
"@salesforce/plugin-command-reference": "^1.4.7",
|
|
20
20
|
"@salesforce/prettier-config": "^0.0.2",
|
|
21
|
-
"@salesforce/ts-sinon": "1.4.
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
21
|
+
"@salesforce/ts-sinon": "1.4.1",
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
23
23
|
"@typescript-eslint/parser": "^5.41.0",
|
|
24
24
|
"chai": "^4.2.0",
|
|
25
25
|
"eslint": "^8.26.0",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
30
30
|
"eslint-plugin-header": "^3.0.0",
|
|
31
31
|
"eslint-plugin-import": "2.26.0",
|
|
32
|
-
"eslint-plugin-jsdoc": "^39.
|
|
32
|
+
"eslint-plugin-jsdoc": "^39.6.2",
|
|
33
33
|
"husky": "^7.0.4",
|
|
34
34
|
"mocha": "^9.1.3",
|
|
35
35
|
"nyc": "^15.1.0",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
111
111
|
"sfdx": {
|
|
112
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.
|
|
113
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.
|
|
112
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.15.crt",
|
|
113
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/2.1.15.sig"
|
|
114
114
|
}
|
|
115
115
|
}
|