@salesforce/plugin-limits 2.2.4 → 2.3.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.
|
@@ -11,9 +11,9 @@ export declare class LimitsApiDisplayCommand extends SfCommand<ApiLimits> {
|
|
|
11
11
|
static readonly description: string;
|
|
12
12
|
static readonly examples: string[];
|
|
13
13
|
static readonly flags: {
|
|
14
|
-
'target-org': import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/core").Org>;
|
|
15
|
-
'api-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
|
|
16
|
-
loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
|
|
14
|
+
'target-org': import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
15
|
+
'api-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
16
|
+
loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
17
17
|
};
|
|
18
18
|
run(): Promise<ApiLimits>;
|
|
19
19
|
}
|
|
@@ -10,10 +10,10 @@ export declare class LimitsRecordCountsDisplayCommand extends SfCommand<RecordCo
|
|
|
10
10
|
static readonly description: string;
|
|
11
11
|
static readonly examples: string[];
|
|
12
12
|
static readonly flags: {
|
|
13
|
-
sobject: import("@oclif/core/lib/interfaces").OptionFlag<string[]>;
|
|
14
|
-
'target-org': import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/core").Org>;
|
|
15
|
-
'api-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
|
|
16
|
-
loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
|
|
13
|
+
sobject: import("@oclif/core/lib/interfaces").OptionFlag<string[], import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
14
|
+
'target-org': import("@oclif/core/lib/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
15
|
+
'api-version': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
16
|
+
loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
17
17
|
};
|
|
18
18
|
run(): Promise<RecordCounts>;
|
|
19
19
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.
|
|
2
|
+
"version": "2.3.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"limits:api:display": {
|
|
5
5
|
"id": "limits:api:display",
|
|
@@ -93,7 +93,8 @@
|
|
|
93
93
|
"default": [],
|
|
94
94
|
"aliases": [
|
|
95
95
|
"sobjecttype"
|
|
96
|
-
]
|
|
96
|
+
],
|
|
97
|
+
"delimiter": ","
|
|
97
98
|
},
|
|
98
99
|
"target-org": {
|
|
99
100
|
"name": "target-org",
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-limits",
|
|
3
3
|
"description": "commands to display api limits to your org",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"main": "lib/index.js",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^
|
|
9
|
+
"@oclif/core": "^2.0.7",
|
|
10
10
|
"@salesforce/core": "^3.32.11",
|
|
11
11
|
"@salesforce/kit": "^1.8.0",
|
|
12
|
-
"@salesforce/sf-plugins-core": "^
|
|
12
|
+
"@salesforce/sf-plugins-core": "^2.0.1",
|
|
13
13
|
"@salesforce/ts-types": "^1.7.2",
|
|
14
14
|
"tslib": "^2"
|
|
15
15
|
},
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@typescript-eslint/parser": "^5.48.1",
|
|
28
28
|
"chai": "^4.3.7",
|
|
29
29
|
"eslint": "^8.32.0",
|
|
30
|
-
"eslint-config-prettier": "^8.
|
|
31
|
-
"eslint-config-salesforce": "^1.1.
|
|
30
|
+
"eslint-config-prettier": "^8.6.0",
|
|
31
|
+
"eslint-config-salesforce": "^1.1.1",
|
|
32
32
|
"eslint-config-salesforce-license": "^0.1.6",
|
|
33
33
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
34
34
|
"eslint-plugin-header": "^3.1.1",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"access": "public"
|
|
118
118
|
},
|
|
119
119
|
"sfdx": {
|
|
120
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.
|
|
121
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.
|
|
120
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.0.crt",
|
|
121
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.0.sig"
|
|
122
122
|
}
|
|
123
123
|
}
|