@salesforce/plugin-limits 3.1.14 → 3.2.0
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 +8 -6
- package/npm-shrinkwrap.json +1712 -4951
- package/oclif.lock +1127 -3182
- package/oclif.manifest.json +17 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Display information about limits in your org.
|
|
|
79
79
|
|
|
80
80
|
```
|
|
81
81
|
USAGE
|
|
82
|
-
$ sf org list limits -o <value> [--json] [--api-version <value>]
|
|
82
|
+
$ sf org list limits -o <value> [--json] [--flags-dir <value>] [--api-version <value>]
|
|
83
83
|
|
|
84
84
|
FLAGS
|
|
85
85
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
@@ -87,7 +87,8 @@ FLAGS
|
|
|
87
87
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
88
88
|
|
|
89
89
|
GLOBAL FLAGS
|
|
90
|
-
--
|
|
90
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
91
|
+
--json Format output as json.
|
|
91
92
|
|
|
92
93
|
DESCRIPTION
|
|
93
94
|
Display information about limits in your org.
|
|
@@ -110,7 +111,7 @@ EXAMPLES
|
|
|
110
111
|
$ sf org list limits --target-org my-scratch-org
|
|
111
112
|
```
|
|
112
113
|
|
|
113
|
-
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/3.
|
|
114
|
+
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/3.2.0/src/commands/org/list/limits.ts)_
|
|
114
115
|
|
|
115
116
|
## `sf org list sobject record-counts`
|
|
116
117
|
|
|
@@ -118,7 +119,7 @@ Display record counts for the specified standard or custom objects.
|
|
|
118
119
|
|
|
119
120
|
```
|
|
120
121
|
USAGE
|
|
121
|
-
$ sf org list sobject record-counts -o <value> [--json] [-s <value>] [--api-version <value>]
|
|
122
|
+
$ sf org list sobject record-counts -o <value> [--json] [--flags-dir <value>] [-s <value>] [--api-version <value>]
|
|
122
123
|
|
|
123
124
|
FLAGS
|
|
124
125
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
@@ -127,7 +128,8 @@ FLAGS
|
|
|
127
128
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
128
129
|
|
|
129
130
|
GLOBAL FLAGS
|
|
130
|
-
--
|
|
131
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
132
|
+
--json Format output as json.
|
|
131
133
|
|
|
132
134
|
DESCRIPTION
|
|
133
135
|
Display record counts for the specified standard or custom objects.
|
|
@@ -155,6 +157,6 @@ EXAMPLES
|
|
|
155
157
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
156
158
|
```
|
|
157
159
|
|
|
158
|
-
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/3.
|
|
160
|
+
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/3.2.0/src/commands/org/list/sobject/record-counts.ts)_
|
|
159
161
|
|
|
160
162
|
<!-- commandsstop -->
|