@1msg/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ARCHITECTURE.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -0
- package/dist/commands.d.ts +8 -0
- package/dist/commands.d.ts.map +1 -0
- package/dist/commands.js +90 -0
- package/dist/commands.js.map +1 -0
- package/dist/completion.d.ts +11 -0
- package/dist/completion.d.ts.map +1 -0
- package/dist/completion.js +205 -0
- package/dist/completion.js.map +1 -0
- package/dist/config.d.ts +37 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +185 -0
- package/dist/config.js.map +1 -0
- package/dist/context.d.ts +30 -0
- package/dist/context.d.ts.map +1 -0
- package/dist/context.js +111 -0
- package/dist/context.js.map +1 -0
- package/dist/dest.d.ts +27 -0
- package/dist/dest.d.ts.map +1 -0
- package/dist/dest.js +63 -0
- package/dist/dest.js.map +1 -0
- package/dist/errors.d.ts +34 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +133 -0
- package/dist/errors.js.map +1 -0
- package/dist/execute.d.ts +11 -0
- package/dist/execute.d.ts.map +1 -0
- package/dist/execute.js +89 -0
- package/dist/execute.js.map +1 -0
- package/dist/help-text.d.ts +3 -0
- package/dist/help-text.d.ts.map +1 -0
- package/dist/help-text.js +55 -0
- package/dist/help-text.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/io.d.ts +14 -0
- package/dist/io.d.ts.map +1 -0
- package/dist/io.js +128 -0
- package/dist/io.js.map +1 -0
- package/dist/local.d.ts +30 -0
- package/dist/local.d.ts.map +1 -0
- package/dist/local.js +247 -0
- package/dist/local.js.map +1 -0
- package/dist/output.d.ts +20 -0
- package/dist/output.d.ts.map +1 -0
- package/dist/output.js +118 -0
- package/dist/output.js.map +1 -0
- package/dist/paths.d.ts +5 -0
- package/dist/paths.d.ts.map +1 -0
- package/dist/paths.js +33 -0
- package/dist/paths.js.map +1 -0
- package/dist/program.d.ts +5 -0
- package/dist/program.d.ts.map +1 -0
- package/dist/program.js +507 -0
- package/dist/program.js.map +1 -0
- package/dist/rest.d.ts +112 -0
- package/dist/rest.d.ts.map +1 -0
- package/dist/rest.js +549 -0
- package/dist/rest.js.map +1 -0
- package/dist/run.d.ts +3 -0
- package/dist/run.d.ts.map +1 -0
- package/dist/run.js +33 -0
- package/dist/run.js.map +1 -0
- package/dist/send.d.ts +188 -0
- package/dist/send.d.ts.map +1 -0
- package/dist/send.js +498 -0
- package/dist/send.js.map +1 -0
- package/dist/version.d.ts +3 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +6 -0
- package/dist/version.js.map +1 -0
- package/package.json +50 -0
package/dist/program.js
ADDED
|
@@ -0,0 +1,507 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createProgram = createProgram;
|
|
4
|
+
exports.translateCommanderError = translateCommanderError;
|
|
5
|
+
const commander_1 = require("commander");
|
|
6
|
+
const errors_1 = require("./errors");
|
|
7
|
+
const io_1 = require("./io");
|
|
8
|
+
const local_1 = require("./local");
|
|
9
|
+
const send_1 = require("./send");
|
|
10
|
+
const rest_1 = require("./rest");
|
|
11
|
+
function wrap(fn) {
|
|
12
|
+
return async function (...args) {
|
|
13
|
+
await fn.apply(this, args);
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function commandPath(cmd) {
|
|
17
|
+
const names = [];
|
|
18
|
+
let current = cmd;
|
|
19
|
+
while (current) {
|
|
20
|
+
const name = current.name();
|
|
21
|
+
if (name && name !== '1msg')
|
|
22
|
+
names.unshift(name);
|
|
23
|
+
current = current.parent;
|
|
24
|
+
}
|
|
25
|
+
return names.join(' ');
|
|
26
|
+
}
|
|
27
|
+
function applyCommon(cmd, ctx, helpPath) {
|
|
28
|
+
cmd.helpOption(false);
|
|
29
|
+
cmd.addHelpCommand(false);
|
|
30
|
+
cmd.option('-c, --channel <name>');
|
|
31
|
+
cmd.option('--instance-id <id>');
|
|
32
|
+
cmd.option('--base-url <url>');
|
|
33
|
+
cmd.option('--token <token>');
|
|
34
|
+
cmd.option('--json');
|
|
35
|
+
cmd.addOption(new commander_1.Option('--no-color'));
|
|
36
|
+
cmd.option('-h, --help');
|
|
37
|
+
cmd.hook('preAction', (thisCommand, actionCommand) => {
|
|
38
|
+
if (thisCommand !== actionCommand)
|
|
39
|
+
return;
|
|
40
|
+
const opts = actionCommand.optsWithGlobals();
|
|
41
|
+
if (opts.help) {
|
|
42
|
+
(0, local_1.writeHelp)(ctx, helpPath || commandPath(actionCommand) || 'root');
|
|
43
|
+
throw new errors_1.CliExit(0);
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
return cmd;
|
|
47
|
+
}
|
|
48
|
+
function destFlags(cmd) {
|
|
49
|
+
cmd.option('--to <phone>');
|
|
50
|
+
cmd.option('--chat-id <id>');
|
|
51
|
+
cmd.option('--quote <wamid>');
|
|
52
|
+
return cmd;
|
|
53
|
+
}
|
|
54
|
+
function createProgram(ctx) {
|
|
55
|
+
const program = new commander_1.Command();
|
|
56
|
+
program.name('1msg');
|
|
57
|
+
program.exitOverride();
|
|
58
|
+
program.showSuggestionAfterError(false);
|
|
59
|
+
program.configureOutput({
|
|
60
|
+
writeOut: (s) => {
|
|
61
|
+
ctx.stdout.write(s);
|
|
62
|
+
},
|
|
63
|
+
writeErr: (s) => {
|
|
64
|
+
ctx.stderr.write(s);
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
applyCommon(program, ctx, 'root');
|
|
68
|
+
program.option('-v, --version');
|
|
69
|
+
program.action(wrap((opts) => {
|
|
70
|
+
if (opts.version) {
|
|
71
|
+
(0, local_1.handleVersion)(ctx);
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
if (opts.help) {
|
|
75
|
+
(0, local_1.writeHelp)(ctx, 'root');
|
|
76
|
+
throw new errors_1.CliExit(0);
|
|
77
|
+
}
|
|
78
|
+
(0, local_1.writeHelp)(ctx, 'root');
|
|
79
|
+
throw new errors_1.CliExit(1);
|
|
80
|
+
}));
|
|
81
|
+
const init = applyCommon(program.command('init'), ctx, 'init');
|
|
82
|
+
init.option('--name <name>');
|
|
83
|
+
init.option('--token-stdin');
|
|
84
|
+
init.addOption(new commander_1.Option('--no-verify'));
|
|
85
|
+
init.action(wrap((opts) => (0, local_1.handleInit)(ctx, init, opts)));
|
|
86
|
+
const send = applyCommon(program.command('send'), ctx, 'send');
|
|
87
|
+
destFlags(send);
|
|
88
|
+
send.option('--text <body>');
|
|
89
|
+
send.option('--file <path>');
|
|
90
|
+
send.option('--caption <text>');
|
|
91
|
+
send.option('--filename <name>');
|
|
92
|
+
send.option('--media-id <id>');
|
|
93
|
+
send.option('--media-type <type>');
|
|
94
|
+
send.option('--voice');
|
|
95
|
+
send.action(wrap((opts) => (0, send_1.handleSend)(ctx, send, opts)));
|
|
96
|
+
const message = applyCommon(program.command('message'), ctx, 'message');
|
|
97
|
+
message.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'message')));
|
|
98
|
+
const messageSend = applyCommon(message.command('send'), ctx, 'message send');
|
|
99
|
+
destFlags(messageSend);
|
|
100
|
+
messageSend.option('--text <body>');
|
|
101
|
+
messageSend.option('--file <path>');
|
|
102
|
+
messageSend.option('--caption <text>');
|
|
103
|
+
messageSend.option('--filename <name>');
|
|
104
|
+
messageSend.option('--media-id <id>');
|
|
105
|
+
messageSend.option('--media-type <type>');
|
|
106
|
+
messageSend.option('--voice');
|
|
107
|
+
messageSend.action(wrap((opts) => (0, send_1.handleSend)(ctx, messageSend, opts)));
|
|
108
|
+
const messageList = applyCommon(message.command('list'), ctx, 'message list');
|
|
109
|
+
messageList.option('--chat-id <id>');
|
|
110
|
+
messageList.option('--limit <n>');
|
|
111
|
+
messageList.option('--last');
|
|
112
|
+
messageList.option('--msg-id <id>');
|
|
113
|
+
messageList.option('--min-time <unix>');
|
|
114
|
+
messageList.option('--max-time <unix>');
|
|
115
|
+
messageList.option('--first-number <n>');
|
|
116
|
+
messageList.option('--last-number <n>');
|
|
117
|
+
messageList.action(wrap((opts) => (0, send_1.handleMessageList)(ctx, messageList, opts)));
|
|
118
|
+
const messageRead = applyCommon(message.command('read'), ctx, 'message read');
|
|
119
|
+
messageRead.option('--message-id <id>');
|
|
120
|
+
messageRead.option('--typing');
|
|
121
|
+
messageRead.action(wrap((opts) => (0, send_1.handleMessageRead)(ctx, messageRead, opts)));
|
|
122
|
+
const messageReact = applyCommon(message.command('react'), ctx, 'message react');
|
|
123
|
+
destFlags(messageReact);
|
|
124
|
+
messageReact.option('--message-id <id>');
|
|
125
|
+
messageReact.option('--emoji <emoji>');
|
|
126
|
+
messageReact.action(wrap((opts) => (0, send_1.handleMessageReact)(ctx, messageReact, opts)));
|
|
127
|
+
const messageLocation = applyCommon(message.command('location'), ctx, 'message location');
|
|
128
|
+
destFlags(messageLocation);
|
|
129
|
+
messageLocation.option('--lat <n>');
|
|
130
|
+
messageLocation.option('--lng <n>');
|
|
131
|
+
messageLocation.option('--name <text>');
|
|
132
|
+
messageLocation.option('--address <text>');
|
|
133
|
+
messageLocation.action(wrap((opts) => (0, send_1.handleMessageLocation)(ctx, messageLocation, opts)));
|
|
134
|
+
const messageLocReq = applyCommon(message.command('location-request'), ctx, 'message location-request');
|
|
135
|
+
destFlags(messageLocReq);
|
|
136
|
+
messageLocReq.option('--text <body>');
|
|
137
|
+
messageLocReq.action(wrap((opts) => (0, send_1.handleMessageLocationRequest)(ctx, messageLocReq, opts)));
|
|
138
|
+
const messageContact = applyCommon(message.command('contact'), ctx, 'message contact');
|
|
139
|
+
destFlags(messageContact);
|
|
140
|
+
messageContact.option('--name <formatted>');
|
|
141
|
+
messageContact.option('--first-name <text>');
|
|
142
|
+
messageContact.option('--last-name <text>');
|
|
143
|
+
messageContact.option('--phone <number>');
|
|
144
|
+
messageContact.option('--email <email>');
|
|
145
|
+
messageContact.option('--org <company>');
|
|
146
|
+
messageContact.option('--title <text>');
|
|
147
|
+
messageContact.option('--url <url>');
|
|
148
|
+
messageContact.option('--from-file <path>');
|
|
149
|
+
messageContact.action(wrap((opts) => (0, send_1.handleMessageContact)(ctx, messageContact, opts)));
|
|
150
|
+
const messageButtons = applyCommon(message.command('buttons'), ctx, 'message buttons');
|
|
151
|
+
destFlags(messageButtons);
|
|
152
|
+
messageButtons.option('--text <body>');
|
|
153
|
+
messageButtons.option('--footer <text>');
|
|
154
|
+
messageButtons.option('--button <id:title>', 'repeatable', io_1.collect, []);
|
|
155
|
+
messageButtons.option('--from-file <path>');
|
|
156
|
+
messageButtons.action(wrap((opts) => (0, send_1.handleMessageButtons)(ctx, messageButtons, opts)));
|
|
157
|
+
const messageMenu = applyCommon(message.command('menu'), ctx, 'message menu');
|
|
158
|
+
destFlags(messageMenu);
|
|
159
|
+
messageMenu.option('--from-file <path>');
|
|
160
|
+
messageMenu.option('--text <body>');
|
|
161
|
+
messageMenu.option('--button-text <text>');
|
|
162
|
+
messageMenu.option('--title <text>');
|
|
163
|
+
messageMenu.option('--footer <text>');
|
|
164
|
+
messageMenu.action(wrap((opts) => (0, send_1.handleMessageMenu)(ctx, messageMenu, opts)));
|
|
165
|
+
const messageCarousel = applyCommon(message.command('carousel'), ctx, 'message carousel');
|
|
166
|
+
destFlags(messageCarousel);
|
|
167
|
+
messageCarousel.option('--text <body>');
|
|
168
|
+
messageCarousel.option('--from-file <path>');
|
|
169
|
+
messageCarousel.action(wrap((opts) => (0, send_1.handleMessageCarousel)(ctx, messageCarousel, opts)));
|
|
170
|
+
const messageProduct = applyCommon(message.command('product'), ctx, 'message product');
|
|
171
|
+
destFlags(messageProduct);
|
|
172
|
+
messageProduct.option('--text <body>');
|
|
173
|
+
messageProduct.option('--header <text>');
|
|
174
|
+
messageProduct.option('--footer <text>');
|
|
175
|
+
messageProduct.option('--catalog-id <id>');
|
|
176
|
+
messageProduct.option('--product-id <retailer-id>');
|
|
177
|
+
messageProduct.option('--from-file <path>');
|
|
178
|
+
messageProduct.action(wrap((opts) => (0, send_1.handleMessageProduct)(ctx, messageProduct, opts)));
|
|
179
|
+
const messageCta = applyCommon(message.command('cta'), ctx, 'message cta');
|
|
180
|
+
destFlags(messageCta);
|
|
181
|
+
messageCta.option('--text <body>');
|
|
182
|
+
messageCta.option('--button <label>');
|
|
183
|
+
messageCta.option('--url <https>');
|
|
184
|
+
messageCta.option('--footer <text>');
|
|
185
|
+
messageCta.option('--from-file <path>');
|
|
186
|
+
messageCta.action(wrap((opts) => (0, send_1.handleMessageCta)(ctx, messageCta, opts)));
|
|
187
|
+
const messageAddress = applyCommon(message.command('address'), ctx, 'message address');
|
|
188
|
+
destFlags(messageAddress);
|
|
189
|
+
messageAddress.option('--text <body>');
|
|
190
|
+
messageAddress.option('--country <IN|SG>');
|
|
191
|
+
messageAddress.option('--from-file <path>');
|
|
192
|
+
messageAddress.action(wrap((opts) => (0, send_1.handleMessageAddress)(ctx, messageAddress, opts)));
|
|
193
|
+
const messageOrder = applyCommon(message.command('order'), ctx, 'message order');
|
|
194
|
+
destFlags(messageOrder);
|
|
195
|
+
messageOrder.option('--name <template>');
|
|
196
|
+
messageOrder.option('--lang <code>');
|
|
197
|
+
messageOrder.option('--namespace <id>');
|
|
198
|
+
messageOrder.option('--reference-id <id>');
|
|
199
|
+
messageOrder.option('--currency <code>');
|
|
200
|
+
messageOrder.option('--from-file <path>');
|
|
201
|
+
messageOrder.action(wrap((opts) => (0, send_1.handleMessageOrder)(ctx, messageOrder, opts)));
|
|
202
|
+
const messagePayment = applyCommon(message.command('payment'), ctx, 'message payment');
|
|
203
|
+
messagePayment.option('--to <phone>');
|
|
204
|
+
messagePayment.option('--chat-id <id>');
|
|
205
|
+
messagePayment.option('--region <IN|SG|BR>');
|
|
206
|
+
messagePayment.option('--text <body>');
|
|
207
|
+
messagePayment.option('--from-file <path>');
|
|
208
|
+
messagePayment.action(wrap((opts) => (0, send_1.handleMessagePayment)(ctx, messagePayment, opts)));
|
|
209
|
+
const messageSticker = applyCommon(message.command('sticker'), ctx, 'message sticker');
|
|
210
|
+
destFlags(messageSticker);
|
|
211
|
+
messageSticker.option('--link <https>');
|
|
212
|
+
messageSticker.option('--media-id <id>');
|
|
213
|
+
messageSticker.option('--file <path>');
|
|
214
|
+
messageSticker.action(wrap((opts) => (0, send_1.handleMessageSticker)(ctx, messageSticker, opts)));
|
|
215
|
+
const messageFlow = applyCommon(message.command('flow'), ctx, 'message flow');
|
|
216
|
+
destFlags(messageFlow);
|
|
217
|
+
messageFlow.option('--text <body>');
|
|
218
|
+
messageFlow.option('--flow-id <id>');
|
|
219
|
+
messageFlow.option('--flow-token <token>');
|
|
220
|
+
messageFlow.option('--cta <text>');
|
|
221
|
+
messageFlow.option('--header <text>');
|
|
222
|
+
messageFlow.option('--footer <text>');
|
|
223
|
+
messageFlow.option('--action <navigate|data_exchange>');
|
|
224
|
+
messageFlow.option('--screen <id>');
|
|
225
|
+
messageFlow.option('--mode <draft|published>');
|
|
226
|
+
messageFlow.option('--from-file <path>');
|
|
227
|
+
messageFlow.action(wrap((opts) => (0, send_1.handleMessageFlow)(ctx, messageFlow, opts)));
|
|
228
|
+
const template = applyCommon(program.command('template'), ctx, 'template');
|
|
229
|
+
template.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'template')));
|
|
230
|
+
const templateList = applyCommon(template.command('list'), ctx, 'template list');
|
|
231
|
+
templateList.option('--limit <n>');
|
|
232
|
+
templateList.option('--offset <n>');
|
|
233
|
+
templateList.option('--sort <id|name|status>');
|
|
234
|
+
templateList.action(wrap((opts) => (0, send_1.handleTemplateList)(ctx, templateList, opts)));
|
|
235
|
+
const templateSend = applyCommon(template.command('send'), ctx, 'template send');
|
|
236
|
+
destFlags(templateSend);
|
|
237
|
+
templateSend.option('--name <template>');
|
|
238
|
+
templateSend.option('--lang <code>');
|
|
239
|
+
templateSend.option('--namespace <id>');
|
|
240
|
+
templateSend.option('--params <json>');
|
|
241
|
+
templateSend.option('--params-file <path>');
|
|
242
|
+
templateSend.option('--mm-lite');
|
|
243
|
+
templateSend.option('--activity-sharing');
|
|
244
|
+
templateSend.option('--ttl <seconds>');
|
|
245
|
+
templateSend.action(wrap((opts) => (0, send_1.handleTemplateSend)(ctx, templateSend, opts)));
|
|
246
|
+
const templateAdd = applyCommon(template.command('add'), ctx, 'template add');
|
|
247
|
+
templateAdd.option('--from-file <path>');
|
|
248
|
+
templateAdd.option('--name <name>');
|
|
249
|
+
templateAdd.option('--category <MARKETING|UTILITY|AUTHENTICATION>');
|
|
250
|
+
templateAdd.option('--language <code>');
|
|
251
|
+
templateAdd.action(wrap((opts) => (0, send_1.handleTemplateAdd)(ctx, templateAdd, opts)));
|
|
252
|
+
const templateRemove = applyCommon(template.command('remove'), ctx, 'template remove');
|
|
253
|
+
templateRemove.option('--name <name>');
|
|
254
|
+
templateRemove.action(wrap((opts) => (0, send_1.handleTemplateRemove)(ctx, templateRemove, opts)));
|
|
255
|
+
const channel = applyCommon(program.command('channel'), ctx, 'channel');
|
|
256
|
+
channel.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'channel')));
|
|
257
|
+
applyCommon(channel.command('list'), ctx, 'channel').action(wrap(function () {
|
|
258
|
+
return (0, local_1.handleChannelList)(ctx, this);
|
|
259
|
+
}));
|
|
260
|
+
applyCommon(channel.command('use'), ctx, 'channel use')
|
|
261
|
+
.argument('[name-or-id]')
|
|
262
|
+
.action(wrap((nameOrId) => (0, local_1.handleChannelUse)(ctx, nameOrId)));
|
|
263
|
+
const channelAdd = applyCommon(channel.command('add'), ctx, 'channel add');
|
|
264
|
+
channelAdd.option('--name <name>');
|
|
265
|
+
channelAdd.option('--token-stdin');
|
|
266
|
+
channelAdd.option('--default');
|
|
267
|
+
channelAdd.addOption(new commander_1.Option('--no-verify'));
|
|
268
|
+
channelAdd.action(wrap((opts) => (0, local_1.handleChannelAdd)(ctx, channelAdd, opts)));
|
|
269
|
+
applyCommon(channel.command('remove'), ctx, 'channel')
|
|
270
|
+
.argument('[name]')
|
|
271
|
+
.action(wrap((name) => (0, local_1.handleChannelRemove)(ctx, name)));
|
|
272
|
+
applyCommon(channel.command('current'), ctx, 'channel').action(wrap(function () {
|
|
273
|
+
return (0, local_1.handleChannelCurrent)(ctx, this);
|
|
274
|
+
}));
|
|
275
|
+
applyCommon(channel.command('info'), ctx, 'channel info').action(wrap(function () {
|
|
276
|
+
return (0, rest_1.handleChannelInfo)(ctx, this);
|
|
277
|
+
}));
|
|
278
|
+
applyCommon(channel.command('status'), ctx, 'channel status').action(wrap(function () {
|
|
279
|
+
return (0, rest_1.handleStatus)(ctx, this);
|
|
280
|
+
}));
|
|
281
|
+
const settings = applyCommon(channel.command('settings'), ctx, 'channel');
|
|
282
|
+
settings.action(wrap(function () {
|
|
283
|
+
return (0, rest_1.handleChannelSettings)(ctx, this);
|
|
284
|
+
}));
|
|
285
|
+
const settingsSet = applyCommon(settings.command('set'), ctx, 'channel');
|
|
286
|
+
settingsSet.option('--webhook-url <url>', 'repeatable', io_1.collect, []);
|
|
287
|
+
settingsSet.option('--guaranteed-hooks');
|
|
288
|
+
settingsSet.option('--no-guaranteed-hooks');
|
|
289
|
+
settingsSet.option('--ack-notifications');
|
|
290
|
+
settingsSet.option('--no-ack-notifications');
|
|
291
|
+
settingsSet.option('--raw-hooks');
|
|
292
|
+
settingsSet.option('--no-raw-hooks');
|
|
293
|
+
settingsSet.option('--template-analytics');
|
|
294
|
+
settingsSet.option('--no-template-analytics');
|
|
295
|
+
settingsSet.option('--cta-tracking-opt-out');
|
|
296
|
+
settingsSet.option('--no-cta-tracking-opt-out');
|
|
297
|
+
settingsSet.action(wrap((opts) => (0, rest_1.handleChannelSettingsSet)(ctx, settingsSet, opts)));
|
|
298
|
+
applyCommon(channel.command('mm-lite'), ctx, 'channel').action(wrap(function () {
|
|
299
|
+
return (0, rest_1.handleMmLite)(ctx, this);
|
|
300
|
+
}));
|
|
301
|
+
const automation = applyCommon(channel.command('automation'), ctx, 'channel');
|
|
302
|
+
automation.action(wrap(function () {
|
|
303
|
+
return (0, rest_1.handleAutomation)(ctx, this);
|
|
304
|
+
}));
|
|
305
|
+
const automationSet = applyCommon(automation.command('set'), ctx, 'channel');
|
|
306
|
+
automationSet.option('--welcome');
|
|
307
|
+
automationSet.option('--no-welcome');
|
|
308
|
+
automationSet.option('--prompt <text>', 'repeatable', io_1.collect, []);
|
|
309
|
+
automationSet.option('--command <name:description>', 'repeatable', io_1.collect, []);
|
|
310
|
+
automationSet.action(wrap((opts) => (0, rest_1.handleAutomationSet)(ctx, automationSet, opts)));
|
|
311
|
+
const me = applyCommon(program.command('me'), ctx, 'me');
|
|
312
|
+
me.action(wrap(function () {
|
|
313
|
+
return (0, rest_1.handleMe)(ctx, this);
|
|
314
|
+
}));
|
|
315
|
+
const meUpdate = applyCommon(me.command('update'), ctx, 'me');
|
|
316
|
+
meUpdate.option('--about <text>');
|
|
317
|
+
meUpdate.option('--address <text>');
|
|
318
|
+
meUpdate.option('--description <text>');
|
|
319
|
+
meUpdate.option('--email <email>');
|
|
320
|
+
meUpdate.option('--vertical <text>');
|
|
321
|
+
meUpdate.option('--photo <url>');
|
|
322
|
+
meUpdate.option('--website <url>', 'repeatable', io_1.collect, []);
|
|
323
|
+
meUpdate.action(wrap((opts) => (0, rest_1.handleMeUpdate)(ctx, meUpdate, opts)));
|
|
324
|
+
const status = applyCommon(program.command('status'), ctx, 'status');
|
|
325
|
+
status.action(wrap(function () {
|
|
326
|
+
return (0, rest_1.handleStatus)(ctx, this);
|
|
327
|
+
}));
|
|
328
|
+
const media = applyCommon(program.command('media'), ctx, 'media');
|
|
329
|
+
media.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'media')));
|
|
330
|
+
const mediaUpload = applyCommon(media.command('upload'), ctx, 'media');
|
|
331
|
+
mediaUpload.option('--file <path>');
|
|
332
|
+
mediaUpload.option('--url <https>');
|
|
333
|
+
mediaUpload.action(wrap((opts) => (0, rest_1.handleMediaUpload)(ctx, mediaUpload, opts)));
|
|
334
|
+
const mediaGet = applyCommon(media.command('get'), ctx, 'media');
|
|
335
|
+
mediaGet.option('--id <id>');
|
|
336
|
+
mediaGet.action(wrap((opts) => (0, rest_1.handleMediaGet)(ctx, mediaGet, opts)));
|
|
337
|
+
const mediaDelete = applyCommon(media.command('delete'), ctx, 'media');
|
|
338
|
+
mediaDelete.option('--id <id>');
|
|
339
|
+
mediaDelete.action(wrap((opts) => (0, rest_1.handleMediaDelete)(ctx, mediaDelete, opts)));
|
|
340
|
+
const group = applyCommon(program.command('group'), ctx, 'group');
|
|
341
|
+
group.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'group')));
|
|
342
|
+
const groupList = applyCommon(group.command('list'), ctx, 'group');
|
|
343
|
+
groupList.option('--limit <n>');
|
|
344
|
+
groupList.option('--before <cursor>');
|
|
345
|
+
groupList.option('--after <cursor>');
|
|
346
|
+
groupList.action(wrap((opts) => (0, rest_1.handleGroupList)(ctx, groupList, opts)));
|
|
347
|
+
const groupCreate = applyCommon(group.command('create'), ctx, 'group');
|
|
348
|
+
groupCreate.option('--name <subject>');
|
|
349
|
+
groupCreate.option('--description <text>');
|
|
350
|
+
groupCreate.action(wrap((opts) => (0, rest_1.handleGroupCreate)(ctx, groupCreate, opts)));
|
|
351
|
+
const groupGet = applyCommon(group.command('get'), ctx, 'group');
|
|
352
|
+
groupGet.argument('[group-id]');
|
|
353
|
+
groupGet.option('--fields <csv>');
|
|
354
|
+
groupGet.action(wrap((id, opts) => (0, rest_1.handleGroupGet)(ctx, groupGet, id, opts)));
|
|
355
|
+
const groupUpdate = applyCommon(group.command('update'), ctx, 'group');
|
|
356
|
+
groupUpdate.argument('[group-id]');
|
|
357
|
+
groupUpdate.option('--subject <text>');
|
|
358
|
+
groupUpdate.option('--description <text>');
|
|
359
|
+
groupUpdate.option('--picture <url>');
|
|
360
|
+
groupUpdate.action(wrap((id, opts) => (0, rest_1.handleGroupUpdate)(ctx, groupUpdate, id, opts)));
|
|
361
|
+
applyCommon(group.command('delete'), ctx, 'group')
|
|
362
|
+
.argument('[group-id]')
|
|
363
|
+
.action(wrap(function (id) {
|
|
364
|
+
return (0, rest_1.handleGroupDelete)(ctx, this, id);
|
|
365
|
+
}));
|
|
366
|
+
const invite = applyCommon(group.command('invite-link'), ctx, 'group');
|
|
367
|
+
invite.argument('[group-id]');
|
|
368
|
+
invite.action(wrap(function (id) {
|
|
369
|
+
return (0, rest_1.handleGroupInviteLink)(ctx, this, id, false);
|
|
370
|
+
}));
|
|
371
|
+
applyCommon(invite.command('reset'), ctx, 'group')
|
|
372
|
+
.argument('[group-id]')
|
|
373
|
+
.action(wrap(function (id) {
|
|
374
|
+
return (0, rest_1.handleGroupInviteLink)(ctx, this, id, true);
|
|
375
|
+
}));
|
|
376
|
+
const flow = applyCommon(program.command('flow'), ctx, 'flow');
|
|
377
|
+
flow.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'flow')));
|
|
378
|
+
const flowWaba = (c) => c.option('--waba-account-id <id>');
|
|
379
|
+
const flowList = applyCommon(flow.command('list'), ctx, 'flow');
|
|
380
|
+
flowWaba(flowList);
|
|
381
|
+
flowList.option('--fields <csv>');
|
|
382
|
+
flowList.action(wrap((opts) => (0, rest_1.handleFlowList)(ctx, flowList, opts)));
|
|
383
|
+
const flowCreate = applyCommon(flow.command('create'), ctx, 'flow');
|
|
384
|
+
flowWaba(flowCreate);
|
|
385
|
+
flowCreate.option('--name <name>');
|
|
386
|
+
flowCreate.option('--category <ENUM>', 'repeatable', io_1.collect, []);
|
|
387
|
+
flowCreate.option('--endpoint <uri>');
|
|
388
|
+
flowCreate.option('--publish');
|
|
389
|
+
flowCreate.option('--json-file <path>');
|
|
390
|
+
flowCreate.action(wrap((opts) => (0, rest_1.handleFlowCreate)(ctx, flowCreate, opts)));
|
|
391
|
+
const flowGet = applyCommon(flow.command('get'), ctx, 'flow');
|
|
392
|
+
flowWaba(flowGet);
|
|
393
|
+
flowGet.argument('[flow-id]');
|
|
394
|
+
flowGet.action(wrap((id, opts) => (0, rest_1.handleFlowIdOp)(ctx, flowGet, id, 'get', opts)));
|
|
395
|
+
const flowDelete = applyCommon(flow.command('delete'), ctx, 'flow');
|
|
396
|
+
flowWaba(flowDelete);
|
|
397
|
+
flowDelete.argument('[flow-id]');
|
|
398
|
+
flowDelete.action(wrap((id, opts) => (0, rest_1.handleFlowIdOp)(ctx, flowDelete, id, 'delete', opts)));
|
|
399
|
+
const flowPreview = applyCommon(flow.command('preview'), ctx, 'flow');
|
|
400
|
+
flowWaba(flowPreview);
|
|
401
|
+
flowPreview.argument('[flow-id]');
|
|
402
|
+
flowPreview.action(wrap((id, opts) => (0, rest_1.handleFlowIdOp)(ctx, flowPreview, id, 'preview', opts)));
|
|
403
|
+
const flowPublish = applyCommon(flow.command('publish'), ctx, 'flow');
|
|
404
|
+
flowWaba(flowPublish);
|
|
405
|
+
flowPublish.argument('[flow-id]');
|
|
406
|
+
flowPublish.action(wrap((id, opts) => (0, rest_1.handleFlowIdOp)(ctx, flowPublish, id, 'publish', opts)));
|
|
407
|
+
const flowDeprecate = applyCommon(flow.command('deprecate'), ctx, 'flow');
|
|
408
|
+
flowWaba(flowDeprecate);
|
|
409
|
+
flowDeprecate.argument('[flow-id]');
|
|
410
|
+
flowDeprecate.action(wrap((id, opts) => (0, rest_1.handleFlowIdOp)(ctx, flowDeprecate, id, 'deprecate', opts)));
|
|
411
|
+
const flowMetadata = applyCommon(flow.command('metadata'), ctx, 'flow');
|
|
412
|
+
flowWaba(flowMetadata);
|
|
413
|
+
flowMetadata.argument('[flow-id]');
|
|
414
|
+
flowMetadata.option('--name <name>');
|
|
415
|
+
flowMetadata.option('--category <ENUM>', 'repeatable', io_1.collect, []);
|
|
416
|
+
flowMetadata.option('--endpoint <uri>');
|
|
417
|
+
flowMetadata.action(wrap((id, opts) => (0, rest_1.handleFlowMetadata)(ctx, flowMetadata, id, opts)));
|
|
418
|
+
const flowAssets = applyCommon(flow.command('assets'), ctx, 'flow');
|
|
419
|
+
flowWaba(flowAssets);
|
|
420
|
+
flowAssets.argument('[flow-id]');
|
|
421
|
+
flowAssets.option('--json-file <path>');
|
|
422
|
+
flowAssets.action(wrap((id, opts) => (0, rest_1.handleFlowAssets)(ctx, flowAssets, id, opts)));
|
|
423
|
+
const encryption = applyCommon(flow.command('encryption'), ctx, 'flow');
|
|
424
|
+
encryption.action(wrap(function () {
|
|
425
|
+
return (0, rest_1.handleFlowEncryption)(ctx, this);
|
|
426
|
+
}));
|
|
427
|
+
const encryptionSet = applyCommon(encryption.command('set'), ctx, 'flow');
|
|
428
|
+
encryptionSet.option('--pem-file <path>');
|
|
429
|
+
encryptionSet.action(wrap((opts) => (0, rest_1.handleFlowEncryptionSet)(ctx, encryptionSet, opts)));
|
|
430
|
+
const webhook = applyCommon(program.command('webhook'), ctx, 'webhook');
|
|
431
|
+
webhook.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'webhook')));
|
|
432
|
+
applyCommon(webhook.command('get'), ctx, 'webhook').action(wrap(function () {
|
|
433
|
+
return (0, rest_1.handleWebhookGet)(ctx, this);
|
|
434
|
+
}));
|
|
435
|
+
const webhookSet = applyCommon(webhook.command('set'), ctx, 'webhook');
|
|
436
|
+
webhookSet.option('--url <https>', 'repeatable', io_1.collect, []);
|
|
437
|
+
webhookSet.action(wrap((opts) => (0, rest_1.handleWebhookSet)(ctx, webhookSet, opts)));
|
|
438
|
+
applyCommon(webhook.command('clear'), ctx, 'webhook').action(wrap(function () {
|
|
439
|
+
return (0, rest_1.handleWebhookClear)(ctx, this);
|
|
440
|
+
}));
|
|
441
|
+
const user = applyCommon(program.command('user'), ctx, 'user');
|
|
442
|
+
user.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'user')));
|
|
443
|
+
applyCommon(user.command('blocked'), ctx, 'user').action(wrap(function () {
|
|
444
|
+
return (0, rest_1.handleUserBlocked)(ctx, this);
|
|
445
|
+
}));
|
|
446
|
+
const userBlock = applyCommon(user.command('block'), ctx, 'user');
|
|
447
|
+
userBlock.option('--to <phone>');
|
|
448
|
+
userBlock.action(wrap((opts) => (0, rest_1.handleUserBlock)(ctx, userBlock, opts, 'block')));
|
|
449
|
+
const userUnblock = applyCommon(user.command('unblock'), ctx, 'user');
|
|
450
|
+
userUnblock.option('--to <phone>');
|
|
451
|
+
userUnblock.action(wrap((opts) => (0, rest_1.handleUserBlock)(ctx, userUnblock, opts, 'unblock')));
|
|
452
|
+
const catalog = applyCommon(program.command('catalog'), ctx, 'catalog');
|
|
453
|
+
catalog.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'catalog')));
|
|
454
|
+
applyCommon(catalog.command('get'), ctx, 'catalog').action(wrap(function () {
|
|
455
|
+
return (0, rest_1.handleCatalogGet)(ctx, this);
|
|
456
|
+
}));
|
|
457
|
+
const catalogSet = applyCommon(catalog.command('set'), ctx, 'catalog');
|
|
458
|
+
catalogSet.option('--cart');
|
|
459
|
+
catalogSet.option('--no-cart');
|
|
460
|
+
catalogSet.option('--visible');
|
|
461
|
+
catalogSet.option('--no-visible');
|
|
462
|
+
catalogSet.action(wrap((opts) => (0, rest_1.handleCatalogSet)(ctx, catalogSet, opts)));
|
|
463
|
+
const call = applyCommon(program.command('call'), ctx, 'call');
|
|
464
|
+
call.action(wrap(() => (0, local_1.missingSubcommand)(ctx, 'call')));
|
|
465
|
+
const callSettings = applyCommon(call.command('settings'), ctx, 'call');
|
|
466
|
+
callSettings.action(wrap(function () {
|
|
467
|
+
return (0, rest_1.handleCallSettings)(ctx, this);
|
|
468
|
+
}));
|
|
469
|
+
const callSettingsSet = applyCommon(callSettings.command('set'), ctx, 'call');
|
|
470
|
+
callSettingsSet.option('--from-file <path>');
|
|
471
|
+
callSettingsSet.action(wrap((opts) => (0, rest_1.handleCallSettingsSet)(ctx, callSettingsSet, opts)));
|
|
472
|
+
const callConnect = applyCommon(call.command('connect'), ctx, 'call');
|
|
473
|
+
callConnect.option('--to <phone>');
|
|
474
|
+
callConnect.option('--sdp-file <path>');
|
|
475
|
+
callConnect.option('--callback-data <str>');
|
|
476
|
+
callConnect.action(wrap((opts) => (0, rest_1.handleCallConnect)(ctx, callConnect, opts)));
|
|
477
|
+
const callPre = applyCommon(call.command('pre-accept'), ctx, 'call');
|
|
478
|
+
callPre.option('--call-id <id>');
|
|
479
|
+
callPre.option('--sdp-file <path>');
|
|
480
|
+
callPre.action(wrap((opts) => (0, rest_1.handleCallControl)(ctx, callPre, 'pre_accept', opts)));
|
|
481
|
+
const callAccept = applyCommon(call.command('accept'), ctx, 'call');
|
|
482
|
+
callAccept.option('--call-id <id>');
|
|
483
|
+
callAccept.option('--sdp-file <path>');
|
|
484
|
+
callAccept.action(wrap((opts) => (0, rest_1.handleCallControl)(ctx, callAccept, 'accept', opts)));
|
|
485
|
+
const callReject = applyCommon(call.command('reject'), ctx, 'call');
|
|
486
|
+
callReject.option('--call-id <id>');
|
|
487
|
+
callReject.action(wrap((opts) => (0, rest_1.handleCallControl)(ctx, callReject, 'reject', opts)));
|
|
488
|
+
const callHangup = applyCommon(call.command('hangup'), ctx, 'call');
|
|
489
|
+
callHangup.option('--call-id <id>');
|
|
490
|
+
callHangup.action(wrap((opts) => (0, rest_1.handleCallControl)(ctx, callHangup, 'terminate', opts)));
|
|
491
|
+
const completion = applyCommon(program.command('completion'), ctx, 'completion');
|
|
492
|
+
completion.argument('[shell]');
|
|
493
|
+
completion.action(wrap((shell) => (0, local_1.handleCompletion)(ctx, shell)));
|
|
494
|
+
applyCommon(program.command('version'), ctx, 'version').action(wrap(() => (0, local_1.handleVersion)(ctx)));
|
|
495
|
+
const hidden = applyCommon(program.command('__complete', { hidden: true }), ctx, 'root');
|
|
496
|
+
hidden.argument('[kind]');
|
|
497
|
+
hidden.action(wrap((kind) => (0, local_1.handleCompleteQuery)(ctx, kind)));
|
|
498
|
+
return program;
|
|
499
|
+
}
|
|
500
|
+
function translateCommanderError(error) {
|
|
501
|
+
const msg = error.message.replace(/^error: /i, '').trim();
|
|
502
|
+
if (/unknown command/i.test(msg)) {
|
|
503
|
+
return new errors_1.UsageError(msg, '1msg --help');
|
|
504
|
+
}
|
|
505
|
+
return new errors_1.UsageError(msg);
|
|
506
|
+
}
|
|
507
|
+
//# sourceMappingURL=program.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"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"}
|