Skip to content

Commit acae158

Browse files
author
SF-CLI-BOT
committed
chore(release): 1.2.0 [ci skip]
1 parent f3f1378 commit acae158

File tree

3 files changed

+55
-2
lines changed

3 files changed

+55
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.2.0](https://github.com/salesforcecli/plugin-limits/compare/v1.1.0...v1.2.0) (2021-04-29)
6+
7+
8+
### Features
9+
10+
* add recordcounts command ([7628eaa](https://github.com/salesforcecli/plugin-limits/commit/7628eaab70a6b1fc9b015f22b4040de198d53745))
11+
12+
13+
### Bug Fixes
14+
15+
* add 0 count response output ([14ede94](https://github.com/salesforcecli/plugin-limits/commit/14ede94c39dfc7cca008a22b2bd2fcecee3e0c5c))
16+
* arg in test ([b56ad46](https://github.com/salesforcecli/plugin-limits/commit/b56ad4687d59dc4272b4a6c770d4f81b059ace74))
17+
* update message ([3e5c28f](https://github.com/salesforcecli/plugin-limits/commit/3e5c28f118caceaff6acaace3e0ed5f94cf1bca9))
18+
519
## [1.1.0](https://github.com/salesforcecli/plugin-limits/compare/v1.0.6...v1.1.0) (2021-04-26)
620

721

README.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ sfdx plugins
6969
## Commands
7070
<!-- commands -->
7171
* [`sfdx force:limits:api:display [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forcelimitsapidisplay--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
72+
* [`sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forcelimitsrecordcountsdisplay--s-array--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
7273

7374
## `sfdx force:limits:api:display [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
7475

@@ -99,5 +100,43 @@ EXAMPLES
99100
sfdx force:limits:api:display -u [email protected]
100101
```
101102

102-
_See code: [src/commands/force/limits/api/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v1.0.6/src/commands/force/limits/api/display.ts)_
103+
_See code: [src/commands/force/limits/api/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v1.1.0/src/commands/force/limits/api/display.ts)_
104+
105+
## `sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
106+
107+
display record counts for the specified standard and custom objects
108+
109+
```
110+
USAGE
111+
$ sfdx force:limits:recordcounts:display -s <array> [-u <string>] [--apiversion <string>] [--json] [--loglevel
112+
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
113+
114+
OPTIONS
115+
-s, --sobjecttype=sobjecttype (required) comma-separated list of
116+
API names of standard or custom
117+
objects for which to display record
118+
counts
119+
120+
-u, --targetusername=targetusername username or alias for the target
121+
org; overrides default target org
122+
123+
--apiversion=apiversion override the api version used for
124+
api requests made by this command
125+
126+
--json format output as json
127+
128+
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
129+
this command invocation
130+
131+
DESCRIPTION
132+
Use this command to get an approximate count of the records in standard or custom objects in your org. These record
133+
counts are the same as the counts listed in the Storage Usage page in Setup. The record counts are approximate because
134+
they're calculated asynchronously and your org’s storage usage isn’t updated immediately.
135+
136+
EXAMPLES
137+
sfdx force:limits:recordcounts:display -s Account,Contact,Lead,Opportunity
138+
sfdx force:limits:recordcounts:display -s Account,Contact -u [email protected]
139+
```
140+
141+
_See code: [src/commands/force/limits/recordcounts/display.ts](https://github.com/salesforcecli/plugin-limits/blob/v1.1.0/src/commands/force/limits/recordcounts/display.ts)_
103142
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-limits",
33
"description": "commands to display api limits to your org",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)