@salesforce/plugin-schema 3.0.5 → 3.0.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 CHANGED
@@ -82,7 +82,8 @@ USAGE
82
82
  $ sf sobject describe -o <value> -s <value> [--json] [--api-version <value>] [-t]
83
83
 
84
84
  FLAGS
85
- -o, --target-org=<value> (required) Username or alias of the target org.
85
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
86
+ configuration variable is already set.
86
87
  -s, --sobject=<value> (required) API name of the object to describe.
87
88
  -t, --use-tooling-api Use Tooling API to display metadata for Tooling API objects.
88
89
  --api-version=<value> Override the api version used for api requests made by this command
@@ -116,7 +117,7 @@ EXAMPLES
116
117
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
117
118
  ```
118
119
 
119
- _See code: [src/commands/sobject/describe.ts](https://github.com/salesforcecli/plugin-schema/blob/3.0.5/src/commands/sobject/describe.ts)_
120
+ _See code: [src/commands/sobject/describe.ts](https://github.com/salesforcecli/plugin-schema/blob/3.0.6/src/commands/sobject/describe.ts)_
120
121
 
121
122
  ## `sf sobject list`
122
123
 
@@ -127,7 +128,8 @@ USAGE
127
128
  $ sf sobject list -o <value> [--json] [--api-version <value>] [-s <value>]
128
129
 
129
130
  FLAGS
130
- -o, --target-org=<value> (required) Username or alias of the target org.
131
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
132
+ configuration variable is already set.
131
133
  -s, --sobject=<value> [default: ALL] Category of objects to list.
132
134
  --api-version=<value> Override the api version used for api requests made by this command
133
135
 
@@ -153,6 +155,6 @@ EXAMPLES
153
155
  $ sf sobject list --sobject custom --target-org my-scratch-org
154
156
  ```
155
157
 
156
- _See code: [src/commands/sobject/list.ts](https://github.com/salesforcecli/plugin-schema/blob/3.0.5/src/commands/sobject/list.ts)_
158
+ _See code: [src/commands/sobject/list.ts](https://github.com/salesforcecli/plugin-schema/blob/3.0.6/src/commands/sobject/list.ts)_
157
159
 
158
160
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -938,7 +938,7 @@
938
938
  semver "^7.5.4"
939
939
  ts-retry-promise "^0.7.1"
940
940
 
941
- "@salesforce/core@^6.1.0", "@salesforce/core@^6.1.3", "@salesforce/core@^6.2.0":
941
+ "@salesforce/core@^6.1.3", "@salesforce/core@^6.2.0":
942
942
  version "6.2.0"
943
943
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.2.0.tgz#9bac72c0b48c733cf1d32d19f9775c34d895f207"
944
944
  integrity sha512-HuggjBCLA18yXYHChnsrPDGbM+fAPx+9NeS7Dkx3/o1VhJ2hok5BUkvdaeoAVex/0Oc2J+KcvX/gqrjY51iOhQ==
@@ -1042,13 +1042,13 @@
1042
1042
  chalk "^4"
1043
1043
  inquirer "^8.2.5"
1044
1044
 
1045
- "@salesforce/sf-plugins-core@^5.0.1":
1046
- version "5.0.1"
1047
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
1048
- integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
1045
+ "@salesforce/sf-plugins-core@^5.0.4":
1046
+ version "5.0.4"
1047
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.4.tgz#dbb8bb8a44bb334080430d8fb3982688bad45321"
1048
+ integrity sha512-OnUF6eF3ncajmh3hj+jmTyaSUIaQk4BdkW+NMzdSOsgJED6GK6vbd1XfG3wHbhdCqxBXC02v2qe6VrbMj9AyzQ==
1049
1049
  dependencies:
1050
1050
  "@oclif/core" "^3.11.0"
1051
- "@salesforce/core" "^6.1.0"
1051
+ "@salesforce/core" "^6.2.0"
1052
1052
  "@salesforce/kit" "^3.0.15"
1053
1053
  "@salesforce/ts-types" "^2.0.9"
1054
1054
  "@types/inquirer" "^8.2.3"
@@ -29,7 +29,7 @@
29
29
  "name": "target-org",
30
30
  "noCacheDefault": true,
31
31
  "required": true,
32
- "summary": "Username or alias of the target org.",
32
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
33
33
  "hasDynamicHelp": true,
34
34
  "multiple": false,
35
35
  "type": "option"
@@ -154,7 +154,7 @@
154
154
  "name": "target-org",
155
155
  "noCacheDefault": true,
156
156
  "required": true,
157
- "summary": "Username or alias of the target org.",
157
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
158
158
  "hasDynamicHelp": true,
159
159
  "multiple": false,
160
160
  "type": "option"
@@ -243,5 +243,5 @@
243
243
  ]
244
244
  }
245
245
  },
246
- "version": "3.0.5"
246
+ "version": "3.0.6"
247
247
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-schema",
3
3
  "description": "Commands to interact with salesforce sobject schemas",
4
- "version": "3.0.5",
4
+ "version": "3.0.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^3.12.0",
9
9
  "@salesforce/core": "^6.1.3",
10
- "@salesforce/sf-plugins-core": "^5.0.1"
10
+ "@salesforce/sf-plugins-core": "^5.0.4"
11
11
  },
12
12
  "devDependencies": {
13
13
  "@oclif/plugin-command-snapshot": "^5.0.2",
@@ -196,7 +196,7 @@
196
196
  "exports": "./lib/index.js",
197
197
  "type": "module",
198
198
  "sfdx": {
199
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/3.0.5.crt",
200
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/3.0.5.sig"
199
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/3.0.6.crt",
200
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-schema/3.0.6.sig"
201
201
  }
202
202
  }