File tree 2 files changed +11
-5
lines changed
packages/cli/src/commands/invites/schema
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @smartthings/cli " : patch
3
+ ---
4
+
5
+ Updated help text for "accept limit" for schema invitation creation.
Original file line number Diff line number Diff line change @@ -75,11 +75,12 @@ export default class InvitesSchemaCreateCommand extends APICommand<typeof Invite
75
75
const createInputDefinition = objectDef < SchemaAppInvitationCreate > ( 'Schema App Invitation' , {
76
76
schemaAppId : schemaAppIdDef ,
77
77
description : optionalStringDef ( 'Description' ) ,
78
- acceptLimit : optionalIntegerDef ( 'Accept Limit' ,
79
- {
80
- helpText : 'Enter the maximum number of users you want to be able to accept the invitation.\n' +
81
- 'Leave blank for no maximum.' ,
82
- } ) ,
78
+ acceptLimit : optionalIntegerDef ( 'Accept (Install) Limit' , {
79
+ helpText :
80
+ 'Invitations are limited to a maximum of 500 installations (called "accept"s by the API) by default and are only valid for 30 days.\n' +
81
+ 'Once either the install limit or the time limit is reached, you will need to create a new invitation.\n' +
82
+ 'Leave blank to accept the default or enter a different install limit if desired.\n' ,
83
+ } ) ,
83
84
} )
84
85
85
86
return createFromUserInput ( this , createInputDefinition , { dryRun : this . flags [ 'dry-run' ] } )
You can’t perform that action at this time.
0 commit comments