@salesforce/plugin-limits 3.3.10 → 3.3.11
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
|
@@ -111,7 +111,7 @@ EXAMPLES
|
|
|
111
111
|
$ sf org list limits --target-org my-scratch-org
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
114
|
+
_See code: [src/commands/org/list/limits.ts](https://github.com/salesforcecli/plugin-limits/blob/3.3.11/src/commands/org/list/limits.ts)_
|
|
115
115
|
|
|
116
116
|
## `sf org list sobject record-counts`
|
|
117
117
|
|
|
@@ -119,7 +119,7 @@ Display record counts for the specified standard or custom objects.
|
|
|
119
119
|
|
|
120
120
|
```
|
|
121
121
|
USAGE
|
|
122
|
-
$ sf org list sobject record-counts -o <value> [--json] [--flags-dir <value>] [-s <value
|
|
122
|
+
$ sf org list sobject record-counts -o <value> [--json] [--flags-dir <value>] [-s <value>...] [--api-version <value>]
|
|
123
123
|
|
|
124
124
|
FLAGS
|
|
125
125
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
@@ -157,6 +157,6 @@ EXAMPLES
|
|
|
157
157
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
158
158
|
```
|
|
159
159
|
|
|
160
|
-
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
160
|
+
_See code: [src/commands/org/list/sobject/record-counts.ts](https://github.com/salesforcecli/plugin-limits/blob/3.3.11/src/commands/org/list/sobject/record-counts.ts)_
|
|
161
161
|
|
|
162
162
|
<!-- commandsstop -->
|
|
@@ -12,9 +12,9 @@ export declare class LimitsApiDisplayCommand extends SfCommand<ApiLimits> {
|
|
|
12
12
|
static readonly description: string;
|
|
13
13
|
static readonly examples: string[];
|
|
14
14
|
static readonly flags: {
|
|
15
|
-
'target-org': import("@oclif/core/
|
|
16
|
-
'api-version': import("@oclif/core/
|
|
17
|
-
loglevel: import("@oclif/core/
|
|
15
|
+
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
};
|
|
19
19
|
run(): Promise<ApiLimits>;
|
|
20
20
|
}
|
|
@@ -11,10 +11,10 @@ export declare class LimitsRecordCountsDisplayCommand extends SfCommand<RecordCo
|
|
|
11
11
|
static readonly description: string;
|
|
12
12
|
static readonly examples: string[];
|
|
13
13
|
static readonly flags: {
|
|
14
|
-
sobject: import("@oclif/core/
|
|
15
|
-
'target-org': import("@oclif/core/
|
|
16
|
-
'api-version': import("@oclif/core/
|
|
17
|
-
loglevel: import("@oclif/core/
|
|
14
|
+
sobject: import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
};
|
|
19
19
|
run(): Promise<RecordCounts>;
|
|
20
20
|
}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-limits",
|
|
3
3
|
"description": "commands to display api limits to your org",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.11",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^
|
|
8
|
+
"@oclif/core": "^4",
|
|
9
9
|
"@salesforce/core": "^7.3.6",
|
|
10
10
|
"@salesforce/kit": "^3.1.2",
|
|
11
|
-
"@salesforce/sf-plugins-core": "^
|
|
11
|
+
"@salesforce/sf-plugins-core": "^10.0.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oclif/plugin-command-snapshot": "^5.
|
|
14
|
+
"@oclif/plugin-command-snapshot": "^5.2.0",
|
|
15
15
|
"@oclif/test": "^3",
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
17
|
-
"@salesforce/dev-scripts": "^
|
|
18
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^5.3.9",
|
|
17
|
+
"@salesforce/dev-scripts": "^10.1.0",
|
|
18
|
+
"@salesforce/plugin-command-reference": "^3.0.89",
|
|
19
19
|
"@salesforce/ts-types": "^2.0.9",
|
|
20
20
|
"eslint-plugin-sf-plugin": "^1.18.4",
|
|
21
|
-
"oclif": "^4.
|
|
21
|
+
"oclif": "^4.12.1",
|
|
22
22
|
"ts-node": "^10.9.2",
|
|
23
23
|
"typescript": "^5.4.5"
|
|
24
24
|
},
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"exports": "./lib/index.js",
|
|
212
212
|
"type": "module",
|
|
213
213
|
"sfdx": {
|
|
214
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/3.3.
|
|
215
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/3.3.
|
|
214
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/3.3.11.crt",
|
|
215
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/3.3.11.sig"
|
|
216
216
|
}
|
|
217
217
|
}
|