Skip to content

Commit be16198

Browse files
[PR feedback] Make descriptions of bulk status more specific
Co-authored-by: Gonzalo Riestra <[email protected]>
1 parent 9a54299 commit be16198

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/app/src/cli/commands/app/bulk/status.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ import {normalizeStoreFqdn} from '@shopify/cli-kit/node/context/fqdn'
1010
export default class BulkStatus extends AppLinkedCommand {
1111
static summary = 'Check the status of bulk operations.'
1212

13-
static description = 'Check the status of a specific bulk operation by ID, or list all recent bulk operations.'
13+
static description =
14+
'Check the status of a specific bulk operation by ID, or list all bulk operations in the last 7 days.'
1415

1516
static hidden = true
1617

1718
static flags = {
1819
...globalFlags,
1920
...appFlags,
2021
id: Flags.string({
21-
description: 'The bulk operation ID. If not provided, lists all recent bulk operations.',
22+
description: 'The bulk operation ID. If not provided, lists all bulk operations in the last 7 days.',
2223
env: 'SHOPIFY_FLAG_ID',
2324
}),
2425
store: Flags.string({

packages/cli/oclif.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"args": {
9393
},
9494
"customPluginName": "@shopify/app",
95-
"description": "Check the status of a specific bulk operation by ID, or list all recent bulk operations.",
95+
"description": "Check the status of a specific bulk operation by ID, or list all bulk operations in the last 7 days.",
9696
"flags": {
9797
"client-id": {
9898
"description": "The Client ID of your app.",
@@ -117,7 +117,7 @@
117117
"type": "option"
118118
},
119119
"id": {
120-
"description": "The bulk operation ID. If not provided, lists all recent bulk operations.",
120+
"description": "The bulk operation ID. If not provided, lists all bulk operations in the last 7 days.",
121121
"env": "SHOPIFY_FLAG_ID",
122122
"hasDynamicHelp": false,
123123
"multiple": false,

0 commit comments

Comments
 (0)