@salesforce/plugin-limits 3.0.1 → 3.0.3
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 +9 -7
- package/oclif.lock +361 -297
- package/oclif.manifest.json +3 -3
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -82,8 +82,9 @@ USAGE
|
|
|
82
82
|
$ sf org list limits -o <value> [--json] [--api-version <value>]
|
|
83
83
|
|
|
84
84
|
FLAGS
|
|
85
|
-
-o, --target-org=<value>
|
|
86
|
-
|
|
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.
|
|
87
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
87
88
|
|
|
88
89
|
GLOBAL FLAGS
|
|
89
90
|
--json Format output as json.
|
|
@@ -109,7 +110,7 @@ EXAMPLES
|
|
|
109
110
|
$ sf org list limits --target-org my-scratch-org
|
|
110
111
|
```
|
|
111
112
|
|
|
112
|
-
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/
|
|
113
|
+
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/3.0.3/src/commands/org/list/limits.ts)_
|
|
113
114
|
|
|
114
115
|
## `sf org list sobject record-counts`
|
|
115
116
|
|
|
@@ -120,9 +121,10 @@ USAGE
|
|
|
120
121
|
$ sf org list sobject record-counts -o <value> [--json] [-s <value>] [--api-version <value>]
|
|
121
122
|
|
|
122
123
|
FLAGS
|
|
123
|
-
-o, --target-org=<value>
|
|
124
|
-
|
|
125
|
-
--
|
|
124
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
125
|
+
configuration variable is already set.
|
|
126
|
+
-s, --sobject=<value>... [default: ] API name of the standard or custom object for which to display record counts.
|
|
127
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
126
128
|
|
|
127
129
|
GLOBAL FLAGS
|
|
128
130
|
--json Format output as json.
|
|
@@ -153,6 +155,6 @@ EXAMPLES
|
|
|
153
155
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
154
156
|
```
|
|
155
157
|
|
|
156
|
-
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/
|
|
158
|
+
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/3.0.3/src/commands/org/list/sobject/record-counts.ts)_
|
|
157
159
|
|
|
158
160
|
<!-- commandsstop -->
|