@@ -195,40 +195,38 @@ const pull = new Command("pull")
195
195
196
196
pull
197
197
.command("all")
198
- .description("Push all resource.")
199
- .option(`--all`, `Flag to pull all functions`)
200
- .option(`--yes`, `Flag to confirm all warnings`)
198
+ .description("Pull all resource.")
201
199
.action(actionRunner(pullResources));
202
200
203
201
204
202
pull
205
203
.command("project")
206
- .description("Pulling your {{ spec .title | caseUcfirst }} project name, services and auth settings")
204
+ .description("Pull your {{ spec .title | caseUcfirst }} project name, services and auth settings")
207
205
.action(actionRunner(pullProject));
208
206
209
207
pull
210
208
.command("functions")
211
- .description(`Pulling your {{ spec .title | caseUcfirst }} functions`)
209
+ .description(`Pull your {{ spec .title | caseUcfirst }} functions`)
212
210
.action(actionRunner(pullFunctions));
213
211
214
212
pull
215
213
.command("collections")
216
- .description("Pulling your {{ spec .title | caseUcfirst }} collections")
214
+ .description("Pull your {{ spec .title | caseUcfirst }} collections")
217
215
.action(actionRunner(pullCollection))
218
216
219
217
pull
220
218
.command("buckets")
221
- .description("Pulling your {{ spec .title | caseUcfirst }} buckets")
219
+ .description("Pull your {{ spec .title | caseUcfirst }} buckets")
222
220
.action(actionRunner(pullBucket))
223
221
224
222
pull
225
223
.command("teams")
226
- .description("Pulling your {{ spec .title | caseUcfirst }} teams")
224
+ .description("Pull your {{ spec .title | caseUcfirst }} teams")
227
225
.action(actionRunner(pullTeam))
228
226
229
227
pull
230
228
.command("topics")
231
- .description("Initialise your Appwrite messaging topics")
229
+ .description("Pull your {{ spec . title | caseUcfirst }} messaging topics")
232
230
.action(actionRunner(pullMessagingTopic))
233
231
234
232
module.exports = {
0 commit comments