File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -598,7 +598,7 @@ DESCRIPTION
598598EXAMPLES
599599 $ mapps scheduler:create -a APP_ID -s "0 * * * *" -u "/my-endpoint"
600600
601- $ mapps scheduler:create -a APP_ID -s "0 * * * *" -u "/my-endpoint" -n "My special job" -d "My description"
601+ $ mapps scheduler:create -a APP_ID -s "0 * * * *" -u "/my-endpoint" -n "My- special- job" -d "My description"
602602
603603 $ mapps scheduler:create -a APP_ID -s "0 * * * *" -u "/my-endpoint" -r 3 -b 10 -t 60
604604```
Original file line number Diff line number Diff line change 11{
22 "name" : " @mondaycom/apps-cli" ,
3- "version" : " 4.7.2 " ,
3+ "version" : " 4.7.3 " ,
44 "description" : " A cli tool to manage apps (and monday-code projects) in monday.com" ,
55 "author" : " monday.com Apps Team" ,
66 "type" : " module" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import { VAR_UNKNOWN } from 'consts/messages';
66import { getDatabaseConnectionString } from 'services/database-service' ;
77import { DynamicChoicesService } from 'services/dynamic-choices-service' ;
88import { HttpError } from 'types/errors' ;
9- import { AppId } from 'types/general' ;
109import logger from 'utils/logger' ;
1110
1211export default class ConnectionString extends AuthenticatedCommand {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default class SchedulerCreate extends AuthenticatedCommand {
1313 static description = 'Create a new scheduler job for an app' ;
1414 static examples = [
1515 '<%= config.bin %> <%= command.id %> -a APP_ID -s "0 * * * *" -u "/my-endpoint"' ,
16- '<%= config.bin %> <%= command.id %> -a APP_ID -s "0 * * * *" -u "/my-endpoint" -n "My special job" -d "My description"' ,
16+ '<%= config.bin %> <%= command.id %> -a APP_ID -s "0 * * * *" -u "/my-endpoint" -n "My- special- job" -d "My description"' ,
1717 '<%= config.bin %> <%= command.id %> -a APP_ID -s "0 * * * *" -u "/my-endpoint" -r 3 -b 10 -t 60' ,
1818 ] ;
1919
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { APP_ID_TO_ENTER } from 'src/consts/messages';
22
33export const SchedulerMessages = {
44 appId : APP_ID_TO_ENTER ,
5- name : 'Scheduled job name' ,
5+ name : 'Scheduled job name (no whitespace) ' ,
66 description : 'Scheduled job description (optional)' ,
77 schedule : 'Cron expression for the job schedule (relative to UTC)' ,
88 targetUrl : 'Target URL path for the job (must start with /, will be relative to /mndy-cronjob)' ,
You can’t perform that action at this time.
0 commit comments