File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
packages/cli/src/commands/invites/schema Expand file tree Collapse file tree 2 files changed +10
-3
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,10 +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' ,
78
+ acceptLimit : optionalIntegerDef ( 'Accept (Install) Limit' ,
79
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.' ,
80
+ helpText : 'Enter the maximum number of installs you want to allow for the invitation.\n' +
81
+ 'This limits the number of installs but we use the "accept" terminology here to match the API call.\n' +
82
+ 'There is also a limit of 30 days that cannot be changed. After that you will need to create a new invitation.\n' +
83
+ 'Leave blank for a maximum of 500.' ,
82
84
} ) ,
83
85
} )
84
86
You can’t perform that action at this time.
0 commit comments