You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/index.js
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -154,6 +154,35 @@ program
154
154
});
155
155
});
156
156
157
+
program
158
+
.command('bulk-sync')
159
+
.option('-e, --env <environment>','Enter the environment of which the content needs to be synchronized',undefined)
160
+
.option('-t, --type [type]','Enter a type of content to include in publishing [content_types/assets/all]',/(content_types|assets|all)/,undefined)
161
+
.option('-l, --lang [language]','Enter the language of which the content needs to be synchronized',undefined)
162
+
.option('-c, --content_types [content_types]','Enter the content types to be included in synchronization (comma(\',\') seperated)',list,undefined)
163
+
.option('-s, --skip_content_types [skip_content_types]','Enter the content types to be excluded from synchronization (comma(\',\') seperated)',list,undefined)
164
+
.option('-d, --datetime [datetime]','Enter start date in ISO String format. Content published after this date will be synchronized (skip for all content)',undefined)
0 commit comments