@sendmux/cli 1.0.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/README.md +26 -0
- package/bin/run.js +5 -0
- package/dist/base-command.d.ts +25 -0
- package/dist/base-command.d.ts.map +1 -0
- package/dist/base-command.js +93 -0
- package/dist/commands/mailbox/folders/list.d.ts +24 -0
- package/dist/commands/mailbox/folders/list.d.ts.map +1 -0
- package/dist/commands/mailbox/folders/list.js +6 -0
- package/dist/commands/mailbox/me/get.d.ts +21 -0
- package/dist/commands/mailbox/me/get.d.ts.map +1 -0
- package/dist/commands/mailbox/me/get.js +6 -0
- package/dist/commands/mailbox/messages/get.d.ts +24 -0
- package/dist/commands/mailbox/messages/get.d.ts.map +1 -0
- package/dist/commands/mailbox/messages/get.js +6 -0
- package/dist/commands/mailbox/messages/list.d.ts +87 -0
- package/dist/commands/mailbox/messages/list.d.ts.map +1 -0
- package/dist/commands/mailbox/messages/list.js +6 -0
- package/dist/commands/management/domains/get.d.ts +24 -0
- package/dist/commands/management/domains/get.d.ts.map +1 -0
- package/dist/commands/management/domains/get.js +6 -0
- package/dist/commands/management/domains/list.d.ts +24 -0
- package/dist/commands/management/domains/list.d.ts.map +1 -0
- package/dist/commands/management/domains/list.js +6 -0
- package/dist/commands/management/mailboxes/list.d.ts +27 -0
- package/dist/commands/management/mailboxes/list.d.ts.map +1 -0
- package/dist/commands/management/mailboxes/list.js +6 -0
- package/dist/commands/management/providers/list.d.ts +30 -0
- package/dist/commands/management/providers/list.d.ts.map +1 -0
- package/dist/commands/management/providers/list.js +6 -0
- package/dist/commands/profiles/list.d.ts +9 -0
- package/dist/commands/profiles/list.d.ts.map +1 -0
- package/dist/commands/profiles/list.js +28 -0
- package/dist/commands/profiles/set.d.ts +14 -0
- package/dist/commands/profiles/set.d.ts.map +1 -0
- package/dist/commands/profiles/set.js +57 -0
- package/dist/commands/profiles/show.d.ts +9 -0
- package/dist/commands/profiles/show.d.ts.map +1 -0
- package/dist/commands/profiles/show.js +36 -0
- package/dist/commands/sending/send/batch.d.ts +21 -0
- package/dist/commands/sending/send/batch.d.ts.map +1 -0
- package/dist/commands/sending/send/batch.js +6 -0
- package/dist/commands/sending/send.d.ts +21 -0
- package/dist/commands/sending/send.d.ts.map +1 -0
- package/dist/commands/sending/send.js +6 -0
- package/dist/generated/operations.d.ts +2340 -0
- package/dist/generated/operations.d.ts.map +1 -0
- package/dist/generated/operations.js +2511 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/key-kind.d.ts +4 -0
- package/dist/key-kind.d.ts.map +1 -0
- package/dist/key-kind.js +15 -0
- package/dist/operation-command.d.ts +18 -0
- package/dist/operation-command.d.ts.map +1 -0
- package/dist/operation-command.js +11 -0
- package/dist/operation-flags.d.ts +33 -0
- package/dist/operation-flags.d.ts.map +1 -0
- package/dist/operation-flags.js +103 -0
- package/dist/operation-runner.d.ts +5 -0
- package/dist/operation-runner.d.ts.map +1 -0
- package/dist/operation-runner.js +45 -0
- package/dist/operation-types.d.ts +19 -0
- package/dist/operation-types.d.ts.map +1 -0
- package/dist/operation-types.js +1 -0
- package/dist/profiles.d.ts +12 -0
- package/dist/profiles.d.ts.map +1 -0
- package/dist/profiles.js +35 -0
- package/oclif.manifest.json +1546 -0
- package/package.json +60 -0
|
@@ -0,0 +1,1546 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"mailbox:folders:list": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {},
|
|
6
|
+
"description": "List mailbox folders",
|
|
7
|
+
"flags": {
|
|
8
|
+
"json": {
|
|
9
|
+
"description": "Format output as json.",
|
|
10
|
+
"helpGroup": "GLOBAL",
|
|
11
|
+
"name": "json",
|
|
12
|
+
"allowNo": false,
|
|
13
|
+
"type": "boolean"
|
|
14
|
+
},
|
|
15
|
+
"api-key": {
|
|
16
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
17
|
+
"helpGroup": "GLOBAL",
|
|
18
|
+
"name": "api-key",
|
|
19
|
+
"hasDynamicHelp": false,
|
|
20
|
+
"multiple": false,
|
|
21
|
+
"type": "option"
|
|
22
|
+
},
|
|
23
|
+
"base-url": {
|
|
24
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
25
|
+
"helpGroup": "GLOBAL",
|
|
26
|
+
"name": "base-url",
|
|
27
|
+
"hasDynamicHelp": false,
|
|
28
|
+
"multiple": false,
|
|
29
|
+
"type": "option"
|
|
30
|
+
},
|
|
31
|
+
"profile": {
|
|
32
|
+
"char": "p",
|
|
33
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
34
|
+
"helpGroup": "GLOBAL",
|
|
35
|
+
"name": "profile",
|
|
36
|
+
"hasDynamicHelp": false,
|
|
37
|
+
"multiple": false,
|
|
38
|
+
"type": "option"
|
|
39
|
+
},
|
|
40
|
+
"body": {
|
|
41
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
42
|
+
"name": "body",
|
|
43
|
+
"hasDynamicHelp": false,
|
|
44
|
+
"multiple": false,
|
|
45
|
+
"type": "option"
|
|
46
|
+
},
|
|
47
|
+
"body-file": {
|
|
48
|
+
"description": "Path to a JSON request body file.",
|
|
49
|
+
"name": "body-file",
|
|
50
|
+
"hasDynamicHelp": false,
|
|
51
|
+
"multiple": false,
|
|
52
|
+
"type": "option"
|
|
53
|
+
},
|
|
54
|
+
"header": {
|
|
55
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
56
|
+
"name": "header",
|
|
57
|
+
"hasDynamicHelp": false,
|
|
58
|
+
"multiple": true,
|
|
59
|
+
"type": "option"
|
|
60
|
+
},
|
|
61
|
+
"idempotency-key": {
|
|
62
|
+
"description": "Set the Idempotency-Key header.",
|
|
63
|
+
"name": "idempotency-key",
|
|
64
|
+
"hasDynamicHelp": false,
|
|
65
|
+
"multiple": false,
|
|
66
|
+
"type": "option"
|
|
67
|
+
},
|
|
68
|
+
"if-match": {
|
|
69
|
+
"description": "Set the If-Match header.",
|
|
70
|
+
"name": "if-match",
|
|
71
|
+
"hasDynamicHelp": false,
|
|
72
|
+
"multiple": false,
|
|
73
|
+
"type": "option"
|
|
74
|
+
},
|
|
75
|
+
"if-none-match": {
|
|
76
|
+
"description": "Set the If-None-Match header.",
|
|
77
|
+
"name": "if-none-match",
|
|
78
|
+
"hasDynamicHelp": false,
|
|
79
|
+
"multiple": false,
|
|
80
|
+
"type": "option"
|
|
81
|
+
},
|
|
82
|
+
"path": {
|
|
83
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
84
|
+
"name": "path",
|
|
85
|
+
"hasDynamicHelp": false,
|
|
86
|
+
"multiple": true,
|
|
87
|
+
"type": "option"
|
|
88
|
+
},
|
|
89
|
+
"query": {
|
|
90
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
91
|
+
"name": "query",
|
|
92
|
+
"hasDynamicHelp": false,
|
|
93
|
+
"multiple": true,
|
|
94
|
+
"type": "option"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"hasDynamicHelp": false,
|
|
98
|
+
"hiddenAliases": [],
|
|
99
|
+
"id": "mailbox:folders:list",
|
|
100
|
+
"pluginAlias": "@sendmux/cli",
|
|
101
|
+
"pluginName": "@sendmux/cli",
|
|
102
|
+
"pluginType": "core",
|
|
103
|
+
"strict": true,
|
|
104
|
+
"enableJsonFlag": true,
|
|
105
|
+
"operation": {
|
|
106
|
+
"command": "mailbox:folders:list",
|
|
107
|
+
"description": "List mailbox folders",
|
|
108
|
+
"headerParams": [],
|
|
109
|
+
"method": "get",
|
|
110
|
+
"operationId": "mailboxListFolders",
|
|
111
|
+
"path": "/mailbox/folders",
|
|
112
|
+
"pathParams": [],
|
|
113
|
+
"queryParams": [
|
|
114
|
+
{
|
|
115
|
+
"name": "cursor",
|
|
116
|
+
"required": false
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "limit",
|
|
120
|
+
"required": false
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"requestBodyRequired": false,
|
|
124
|
+
"requiredKeyKind": "mailbox",
|
|
125
|
+
"surface": "mailbox"
|
|
126
|
+
},
|
|
127
|
+
"isESM": true,
|
|
128
|
+
"relativePath": [
|
|
129
|
+
"dist",
|
|
130
|
+
"commands",
|
|
131
|
+
"mailbox",
|
|
132
|
+
"folders",
|
|
133
|
+
"list.js"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
"mailbox:me:get": {
|
|
137
|
+
"aliases": [],
|
|
138
|
+
"args": {},
|
|
139
|
+
"description": "Self-introspect the calling mailbox",
|
|
140
|
+
"flags": {
|
|
141
|
+
"json": {
|
|
142
|
+
"description": "Format output as json.",
|
|
143
|
+
"helpGroup": "GLOBAL",
|
|
144
|
+
"name": "json",
|
|
145
|
+
"allowNo": false,
|
|
146
|
+
"type": "boolean"
|
|
147
|
+
},
|
|
148
|
+
"api-key": {
|
|
149
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
150
|
+
"helpGroup": "GLOBAL",
|
|
151
|
+
"name": "api-key",
|
|
152
|
+
"hasDynamicHelp": false,
|
|
153
|
+
"multiple": false,
|
|
154
|
+
"type": "option"
|
|
155
|
+
},
|
|
156
|
+
"base-url": {
|
|
157
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
158
|
+
"helpGroup": "GLOBAL",
|
|
159
|
+
"name": "base-url",
|
|
160
|
+
"hasDynamicHelp": false,
|
|
161
|
+
"multiple": false,
|
|
162
|
+
"type": "option"
|
|
163
|
+
},
|
|
164
|
+
"profile": {
|
|
165
|
+
"char": "p",
|
|
166
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
167
|
+
"helpGroup": "GLOBAL",
|
|
168
|
+
"name": "profile",
|
|
169
|
+
"hasDynamicHelp": false,
|
|
170
|
+
"multiple": false,
|
|
171
|
+
"type": "option"
|
|
172
|
+
},
|
|
173
|
+
"body": {
|
|
174
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
175
|
+
"name": "body",
|
|
176
|
+
"hasDynamicHelp": false,
|
|
177
|
+
"multiple": false,
|
|
178
|
+
"type": "option"
|
|
179
|
+
},
|
|
180
|
+
"body-file": {
|
|
181
|
+
"description": "Path to a JSON request body file.",
|
|
182
|
+
"name": "body-file",
|
|
183
|
+
"hasDynamicHelp": false,
|
|
184
|
+
"multiple": false,
|
|
185
|
+
"type": "option"
|
|
186
|
+
},
|
|
187
|
+
"header": {
|
|
188
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
189
|
+
"name": "header",
|
|
190
|
+
"hasDynamicHelp": false,
|
|
191
|
+
"multiple": true,
|
|
192
|
+
"type": "option"
|
|
193
|
+
},
|
|
194
|
+
"idempotency-key": {
|
|
195
|
+
"description": "Set the Idempotency-Key header.",
|
|
196
|
+
"name": "idempotency-key",
|
|
197
|
+
"hasDynamicHelp": false,
|
|
198
|
+
"multiple": false,
|
|
199
|
+
"type": "option"
|
|
200
|
+
},
|
|
201
|
+
"if-match": {
|
|
202
|
+
"description": "Set the If-Match header.",
|
|
203
|
+
"name": "if-match",
|
|
204
|
+
"hasDynamicHelp": false,
|
|
205
|
+
"multiple": false,
|
|
206
|
+
"type": "option"
|
|
207
|
+
},
|
|
208
|
+
"if-none-match": {
|
|
209
|
+
"description": "Set the If-None-Match header.",
|
|
210
|
+
"name": "if-none-match",
|
|
211
|
+
"hasDynamicHelp": false,
|
|
212
|
+
"multiple": false,
|
|
213
|
+
"type": "option"
|
|
214
|
+
},
|
|
215
|
+
"path": {
|
|
216
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
217
|
+
"name": "path",
|
|
218
|
+
"hasDynamicHelp": false,
|
|
219
|
+
"multiple": true,
|
|
220
|
+
"type": "option"
|
|
221
|
+
},
|
|
222
|
+
"query": {
|
|
223
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
224
|
+
"name": "query",
|
|
225
|
+
"hasDynamicHelp": false,
|
|
226
|
+
"multiple": true,
|
|
227
|
+
"type": "option"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"hasDynamicHelp": false,
|
|
231
|
+
"hiddenAliases": [],
|
|
232
|
+
"id": "mailbox:me:get",
|
|
233
|
+
"pluginAlias": "@sendmux/cli",
|
|
234
|
+
"pluginName": "@sendmux/cli",
|
|
235
|
+
"pluginType": "core",
|
|
236
|
+
"strict": true,
|
|
237
|
+
"enableJsonFlag": true,
|
|
238
|
+
"operation": {
|
|
239
|
+
"command": "mailbox:me:get",
|
|
240
|
+
"description": "Self-introspect the calling mailbox",
|
|
241
|
+
"headerParams": [
|
|
242
|
+
{
|
|
243
|
+
"name": "If-None-Match",
|
|
244
|
+
"required": false
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"method": "get",
|
|
248
|
+
"operationId": "mailboxGetMe",
|
|
249
|
+
"path": "/mailbox/me",
|
|
250
|
+
"pathParams": [],
|
|
251
|
+
"queryParams": [],
|
|
252
|
+
"requestBodyRequired": false,
|
|
253
|
+
"requiredKeyKind": "mailbox",
|
|
254
|
+
"surface": "mailbox"
|
|
255
|
+
},
|
|
256
|
+
"isESM": true,
|
|
257
|
+
"relativePath": [
|
|
258
|
+
"dist",
|
|
259
|
+
"commands",
|
|
260
|
+
"mailbox",
|
|
261
|
+
"me",
|
|
262
|
+
"get.js"
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
"sending:send": {
|
|
266
|
+
"aliases": [],
|
|
267
|
+
"args": {},
|
|
268
|
+
"description": "Send a single email",
|
|
269
|
+
"flags": {
|
|
270
|
+
"json": {
|
|
271
|
+
"description": "Format output as json.",
|
|
272
|
+
"helpGroup": "GLOBAL",
|
|
273
|
+
"name": "json",
|
|
274
|
+
"allowNo": false,
|
|
275
|
+
"type": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"api-key": {
|
|
278
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
279
|
+
"helpGroup": "GLOBAL",
|
|
280
|
+
"name": "api-key",
|
|
281
|
+
"hasDynamicHelp": false,
|
|
282
|
+
"multiple": false,
|
|
283
|
+
"type": "option"
|
|
284
|
+
},
|
|
285
|
+
"base-url": {
|
|
286
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
287
|
+
"helpGroup": "GLOBAL",
|
|
288
|
+
"name": "base-url",
|
|
289
|
+
"hasDynamicHelp": false,
|
|
290
|
+
"multiple": false,
|
|
291
|
+
"type": "option"
|
|
292
|
+
},
|
|
293
|
+
"profile": {
|
|
294
|
+
"char": "p",
|
|
295
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
296
|
+
"helpGroup": "GLOBAL",
|
|
297
|
+
"name": "profile",
|
|
298
|
+
"hasDynamicHelp": false,
|
|
299
|
+
"multiple": false,
|
|
300
|
+
"type": "option"
|
|
301
|
+
},
|
|
302
|
+
"body": {
|
|
303
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
304
|
+
"name": "body",
|
|
305
|
+
"hasDynamicHelp": false,
|
|
306
|
+
"multiple": false,
|
|
307
|
+
"type": "option"
|
|
308
|
+
},
|
|
309
|
+
"body-file": {
|
|
310
|
+
"description": "Path to a JSON request body file.",
|
|
311
|
+
"name": "body-file",
|
|
312
|
+
"hasDynamicHelp": false,
|
|
313
|
+
"multiple": false,
|
|
314
|
+
"type": "option"
|
|
315
|
+
},
|
|
316
|
+
"header": {
|
|
317
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
318
|
+
"name": "header",
|
|
319
|
+
"hasDynamicHelp": false,
|
|
320
|
+
"multiple": true,
|
|
321
|
+
"type": "option"
|
|
322
|
+
},
|
|
323
|
+
"idempotency-key": {
|
|
324
|
+
"description": "Set the Idempotency-Key header.",
|
|
325
|
+
"name": "idempotency-key",
|
|
326
|
+
"hasDynamicHelp": false,
|
|
327
|
+
"multiple": false,
|
|
328
|
+
"type": "option"
|
|
329
|
+
},
|
|
330
|
+
"if-match": {
|
|
331
|
+
"description": "Set the If-Match header.",
|
|
332
|
+
"name": "if-match",
|
|
333
|
+
"hasDynamicHelp": false,
|
|
334
|
+
"multiple": false,
|
|
335
|
+
"type": "option"
|
|
336
|
+
},
|
|
337
|
+
"if-none-match": {
|
|
338
|
+
"description": "Set the If-None-Match header.",
|
|
339
|
+
"name": "if-none-match",
|
|
340
|
+
"hasDynamicHelp": false,
|
|
341
|
+
"multiple": false,
|
|
342
|
+
"type": "option"
|
|
343
|
+
},
|
|
344
|
+
"path": {
|
|
345
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
346
|
+
"name": "path",
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": true,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"query": {
|
|
352
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
353
|
+
"name": "query",
|
|
354
|
+
"hasDynamicHelp": false,
|
|
355
|
+
"multiple": true,
|
|
356
|
+
"type": "option"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"hasDynamicHelp": false,
|
|
360
|
+
"hiddenAliases": [],
|
|
361
|
+
"id": "sending:send",
|
|
362
|
+
"pluginAlias": "@sendmux/cli",
|
|
363
|
+
"pluginName": "@sendmux/cli",
|
|
364
|
+
"pluginType": "core",
|
|
365
|
+
"strict": true,
|
|
366
|
+
"enableJsonFlag": true,
|
|
367
|
+
"operation": {
|
|
368
|
+
"command": "sending:send",
|
|
369
|
+
"description": "Send a single email",
|
|
370
|
+
"headerParams": [
|
|
371
|
+
{
|
|
372
|
+
"name": "Idempotency-Key",
|
|
373
|
+
"required": false
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"method": "post",
|
|
377
|
+
"operationId": "sendingSendEmail",
|
|
378
|
+
"path": "/emails/send",
|
|
379
|
+
"pathParams": [],
|
|
380
|
+
"queryParams": [],
|
|
381
|
+
"requestBodyRequired": true,
|
|
382
|
+
"requiredKeyKind": "root",
|
|
383
|
+
"surface": "sending"
|
|
384
|
+
},
|
|
385
|
+
"isESM": true,
|
|
386
|
+
"relativePath": [
|
|
387
|
+
"dist",
|
|
388
|
+
"commands",
|
|
389
|
+
"sending",
|
|
390
|
+
"send.js"
|
|
391
|
+
]
|
|
392
|
+
},
|
|
393
|
+
"mailbox:messages:get": {
|
|
394
|
+
"aliases": [],
|
|
395
|
+
"args": {},
|
|
396
|
+
"description": "Get a mailbox message",
|
|
397
|
+
"flags": {
|
|
398
|
+
"json": {
|
|
399
|
+
"description": "Format output as json.",
|
|
400
|
+
"helpGroup": "GLOBAL",
|
|
401
|
+
"name": "json",
|
|
402
|
+
"allowNo": false,
|
|
403
|
+
"type": "boolean"
|
|
404
|
+
},
|
|
405
|
+
"api-key": {
|
|
406
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
407
|
+
"helpGroup": "GLOBAL",
|
|
408
|
+
"name": "api-key",
|
|
409
|
+
"hasDynamicHelp": false,
|
|
410
|
+
"multiple": false,
|
|
411
|
+
"type": "option"
|
|
412
|
+
},
|
|
413
|
+
"base-url": {
|
|
414
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
415
|
+
"helpGroup": "GLOBAL",
|
|
416
|
+
"name": "base-url",
|
|
417
|
+
"hasDynamicHelp": false,
|
|
418
|
+
"multiple": false,
|
|
419
|
+
"type": "option"
|
|
420
|
+
},
|
|
421
|
+
"profile": {
|
|
422
|
+
"char": "p",
|
|
423
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
424
|
+
"helpGroup": "GLOBAL",
|
|
425
|
+
"name": "profile",
|
|
426
|
+
"hasDynamicHelp": false,
|
|
427
|
+
"multiple": false,
|
|
428
|
+
"type": "option"
|
|
429
|
+
},
|
|
430
|
+
"body": {
|
|
431
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
432
|
+
"name": "body",
|
|
433
|
+
"hasDynamicHelp": false,
|
|
434
|
+
"multiple": false,
|
|
435
|
+
"type": "option"
|
|
436
|
+
},
|
|
437
|
+
"body-file": {
|
|
438
|
+
"description": "Path to a JSON request body file.",
|
|
439
|
+
"name": "body-file",
|
|
440
|
+
"hasDynamicHelp": false,
|
|
441
|
+
"multiple": false,
|
|
442
|
+
"type": "option"
|
|
443
|
+
},
|
|
444
|
+
"header": {
|
|
445
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
446
|
+
"name": "header",
|
|
447
|
+
"hasDynamicHelp": false,
|
|
448
|
+
"multiple": true,
|
|
449
|
+
"type": "option"
|
|
450
|
+
},
|
|
451
|
+
"idempotency-key": {
|
|
452
|
+
"description": "Set the Idempotency-Key header.",
|
|
453
|
+
"name": "idempotency-key",
|
|
454
|
+
"hasDynamicHelp": false,
|
|
455
|
+
"multiple": false,
|
|
456
|
+
"type": "option"
|
|
457
|
+
},
|
|
458
|
+
"if-match": {
|
|
459
|
+
"description": "Set the If-Match header.",
|
|
460
|
+
"name": "if-match",
|
|
461
|
+
"hasDynamicHelp": false,
|
|
462
|
+
"multiple": false,
|
|
463
|
+
"type": "option"
|
|
464
|
+
},
|
|
465
|
+
"if-none-match": {
|
|
466
|
+
"description": "Set the If-None-Match header.",
|
|
467
|
+
"name": "if-none-match",
|
|
468
|
+
"hasDynamicHelp": false,
|
|
469
|
+
"multiple": false,
|
|
470
|
+
"type": "option"
|
|
471
|
+
},
|
|
472
|
+
"path": {
|
|
473
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
474
|
+
"name": "path",
|
|
475
|
+
"hasDynamicHelp": false,
|
|
476
|
+
"multiple": true,
|
|
477
|
+
"type": "option"
|
|
478
|
+
},
|
|
479
|
+
"query": {
|
|
480
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
481
|
+
"name": "query",
|
|
482
|
+
"hasDynamicHelp": false,
|
|
483
|
+
"multiple": true,
|
|
484
|
+
"type": "option"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"hasDynamicHelp": false,
|
|
488
|
+
"hiddenAliases": [],
|
|
489
|
+
"id": "mailbox:messages:get",
|
|
490
|
+
"pluginAlias": "@sendmux/cli",
|
|
491
|
+
"pluginName": "@sendmux/cli",
|
|
492
|
+
"pluginType": "core",
|
|
493
|
+
"strict": true,
|
|
494
|
+
"enableJsonFlag": true,
|
|
495
|
+
"operation": {
|
|
496
|
+
"command": "mailbox:messages:get",
|
|
497
|
+
"description": "Get a mailbox message",
|
|
498
|
+
"headerParams": [
|
|
499
|
+
{
|
|
500
|
+
"name": "If-None-Match",
|
|
501
|
+
"required": false
|
|
502
|
+
}
|
|
503
|
+
],
|
|
504
|
+
"method": "get",
|
|
505
|
+
"operationId": "mailboxGetMessage",
|
|
506
|
+
"path": "/mailbox/messages/{message_id}",
|
|
507
|
+
"pathParams": [
|
|
508
|
+
{
|
|
509
|
+
"name": "message_id",
|
|
510
|
+
"required": true
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"queryParams": [],
|
|
514
|
+
"requestBodyRequired": false,
|
|
515
|
+
"requiredKeyKind": "mailbox",
|
|
516
|
+
"surface": "mailbox"
|
|
517
|
+
},
|
|
518
|
+
"isESM": true,
|
|
519
|
+
"relativePath": [
|
|
520
|
+
"dist",
|
|
521
|
+
"commands",
|
|
522
|
+
"mailbox",
|
|
523
|
+
"messages",
|
|
524
|
+
"get.js"
|
|
525
|
+
]
|
|
526
|
+
},
|
|
527
|
+
"mailbox:messages:list": {
|
|
528
|
+
"aliases": [],
|
|
529
|
+
"args": {},
|
|
530
|
+
"description": "List mailbox messages",
|
|
531
|
+
"flags": {
|
|
532
|
+
"json": {
|
|
533
|
+
"description": "Format output as json.",
|
|
534
|
+
"helpGroup": "GLOBAL",
|
|
535
|
+
"name": "json",
|
|
536
|
+
"allowNo": false,
|
|
537
|
+
"type": "boolean"
|
|
538
|
+
},
|
|
539
|
+
"api-key": {
|
|
540
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
541
|
+
"helpGroup": "GLOBAL",
|
|
542
|
+
"name": "api-key",
|
|
543
|
+
"hasDynamicHelp": false,
|
|
544
|
+
"multiple": false,
|
|
545
|
+
"type": "option"
|
|
546
|
+
},
|
|
547
|
+
"base-url": {
|
|
548
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
549
|
+
"helpGroup": "GLOBAL",
|
|
550
|
+
"name": "base-url",
|
|
551
|
+
"hasDynamicHelp": false,
|
|
552
|
+
"multiple": false,
|
|
553
|
+
"type": "option"
|
|
554
|
+
},
|
|
555
|
+
"profile": {
|
|
556
|
+
"char": "p",
|
|
557
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
558
|
+
"helpGroup": "GLOBAL",
|
|
559
|
+
"name": "profile",
|
|
560
|
+
"hasDynamicHelp": false,
|
|
561
|
+
"multiple": false,
|
|
562
|
+
"type": "option"
|
|
563
|
+
},
|
|
564
|
+
"body": {
|
|
565
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
566
|
+
"name": "body",
|
|
567
|
+
"hasDynamicHelp": false,
|
|
568
|
+
"multiple": false,
|
|
569
|
+
"type": "option"
|
|
570
|
+
},
|
|
571
|
+
"body-file": {
|
|
572
|
+
"description": "Path to a JSON request body file.",
|
|
573
|
+
"name": "body-file",
|
|
574
|
+
"hasDynamicHelp": false,
|
|
575
|
+
"multiple": false,
|
|
576
|
+
"type": "option"
|
|
577
|
+
},
|
|
578
|
+
"header": {
|
|
579
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
580
|
+
"name": "header",
|
|
581
|
+
"hasDynamicHelp": false,
|
|
582
|
+
"multiple": true,
|
|
583
|
+
"type": "option"
|
|
584
|
+
},
|
|
585
|
+
"idempotency-key": {
|
|
586
|
+
"description": "Set the Idempotency-Key header.",
|
|
587
|
+
"name": "idempotency-key",
|
|
588
|
+
"hasDynamicHelp": false,
|
|
589
|
+
"multiple": false,
|
|
590
|
+
"type": "option"
|
|
591
|
+
},
|
|
592
|
+
"if-match": {
|
|
593
|
+
"description": "Set the If-Match header.",
|
|
594
|
+
"name": "if-match",
|
|
595
|
+
"hasDynamicHelp": false,
|
|
596
|
+
"multiple": false,
|
|
597
|
+
"type": "option"
|
|
598
|
+
},
|
|
599
|
+
"if-none-match": {
|
|
600
|
+
"description": "Set the If-None-Match header.",
|
|
601
|
+
"name": "if-none-match",
|
|
602
|
+
"hasDynamicHelp": false,
|
|
603
|
+
"multiple": false,
|
|
604
|
+
"type": "option"
|
|
605
|
+
},
|
|
606
|
+
"path": {
|
|
607
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
608
|
+
"name": "path",
|
|
609
|
+
"hasDynamicHelp": false,
|
|
610
|
+
"multiple": true,
|
|
611
|
+
"type": "option"
|
|
612
|
+
},
|
|
613
|
+
"query": {
|
|
614
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
615
|
+
"name": "query",
|
|
616
|
+
"hasDynamicHelp": false,
|
|
617
|
+
"multiple": true,
|
|
618
|
+
"type": "option"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
"hasDynamicHelp": false,
|
|
622
|
+
"hiddenAliases": [],
|
|
623
|
+
"id": "mailbox:messages:list",
|
|
624
|
+
"pluginAlias": "@sendmux/cli",
|
|
625
|
+
"pluginName": "@sendmux/cli",
|
|
626
|
+
"pluginType": "core",
|
|
627
|
+
"strict": true,
|
|
628
|
+
"enableJsonFlag": true,
|
|
629
|
+
"operation": {
|
|
630
|
+
"command": "mailbox:messages:list",
|
|
631
|
+
"description": "List mailbox messages",
|
|
632
|
+
"headerParams": [],
|
|
633
|
+
"method": "get",
|
|
634
|
+
"operationId": "mailboxListMessages",
|
|
635
|
+
"path": "/mailbox/messages",
|
|
636
|
+
"pathParams": [],
|
|
637
|
+
"queryParams": [
|
|
638
|
+
{
|
|
639
|
+
"name": "cursor",
|
|
640
|
+
"required": false
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"name": "limit",
|
|
644
|
+
"required": false
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "folder_id",
|
|
648
|
+
"required": false
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"name": "thread_id",
|
|
652
|
+
"required": false
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "q",
|
|
656
|
+
"required": false
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "from",
|
|
660
|
+
"required": false
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "to",
|
|
664
|
+
"required": false
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "cc",
|
|
668
|
+
"required": false
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "bcc",
|
|
672
|
+
"required": false
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "subject",
|
|
676
|
+
"required": false
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"name": "body",
|
|
680
|
+
"required": false
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"name": "header_name",
|
|
684
|
+
"required": false
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"name": "header_value",
|
|
688
|
+
"required": false
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "min_size_bytes",
|
|
692
|
+
"required": false
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"name": "max_size_bytes",
|
|
696
|
+
"required": false
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"name": "keyword",
|
|
700
|
+
"required": false
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "not_keyword",
|
|
704
|
+
"required": false
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "after",
|
|
708
|
+
"required": false
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "before",
|
|
712
|
+
"required": false
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "has_attachment",
|
|
716
|
+
"required": false
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"name": "is_unread",
|
|
720
|
+
"required": false
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"name": "sort_by",
|
|
724
|
+
"required": false
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"name": "sort_direction",
|
|
728
|
+
"required": false
|
|
729
|
+
}
|
|
730
|
+
],
|
|
731
|
+
"requestBodyRequired": false,
|
|
732
|
+
"requiredKeyKind": "mailbox",
|
|
733
|
+
"surface": "mailbox"
|
|
734
|
+
},
|
|
735
|
+
"isESM": true,
|
|
736
|
+
"relativePath": [
|
|
737
|
+
"dist",
|
|
738
|
+
"commands",
|
|
739
|
+
"mailbox",
|
|
740
|
+
"messages",
|
|
741
|
+
"list.js"
|
|
742
|
+
]
|
|
743
|
+
},
|
|
744
|
+
"profiles:list": {
|
|
745
|
+
"aliases": [],
|
|
746
|
+
"args": {},
|
|
747
|
+
"description": "List local Sendmux CLI profiles.",
|
|
748
|
+
"flags": {
|
|
749
|
+
"json": {
|
|
750
|
+
"description": "Format output as json.",
|
|
751
|
+
"helpGroup": "GLOBAL",
|
|
752
|
+
"name": "json",
|
|
753
|
+
"allowNo": false,
|
|
754
|
+
"type": "boolean"
|
|
755
|
+
},
|
|
756
|
+
"verbose": {
|
|
757
|
+
"description": "Include masked API key prefixes.",
|
|
758
|
+
"name": "verbose",
|
|
759
|
+
"allowNo": false,
|
|
760
|
+
"type": "boolean"
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
"hasDynamicHelp": false,
|
|
764
|
+
"hiddenAliases": [],
|
|
765
|
+
"id": "profiles:list",
|
|
766
|
+
"pluginAlias": "@sendmux/cli",
|
|
767
|
+
"pluginName": "@sendmux/cli",
|
|
768
|
+
"pluginType": "core",
|
|
769
|
+
"strict": true,
|
|
770
|
+
"enableJsonFlag": true,
|
|
771
|
+
"isESM": true,
|
|
772
|
+
"relativePath": [
|
|
773
|
+
"dist",
|
|
774
|
+
"commands",
|
|
775
|
+
"profiles",
|
|
776
|
+
"list.js"
|
|
777
|
+
]
|
|
778
|
+
},
|
|
779
|
+
"profiles:set": {
|
|
780
|
+
"aliases": [],
|
|
781
|
+
"args": {
|
|
782
|
+
"name": {
|
|
783
|
+
"description": "Profile name.",
|
|
784
|
+
"name": "name",
|
|
785
|
+
"required": true
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
"description": "Create or update a local Sendmux CLI profile.",
|
|
789
|
+
"flags": {
|
|
790
|
+
"json": {
|
|
791
|
+
"description": "Format output as json.",
|
|
792
|
+
"helpGroup": "GLOBAL",
|
|
793
|
+
"name": "json",
|
|
794
|
+
"allowNo": false,
|
|
795
|
+
"type": "boolean"
|
|
796
|
+
},
|
|
797
|
+
"api-key": {
|
|
798
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
799
|
+
"name": "api-key",
|
|
800
|
+
"required": false,
|
|
801
|
+
"hasDynamicHelp": false,
|
|
802
|
+
"multiple": false,
|
|
803
|
+
"type": "option"
|
|
804
|
+
},
|
|
805
|
+
"base-url": {
|
|
806
|
+
"description": "Optional API base URL override for this profile.",
|
|
807
|
+
"name": "base-url",
|
|
808
|
+
"hasDynamicHelp": false,
|
|
809
|
+
"multiple": false,
|
|
810
|
+
"type": "option"
|
|
811
|
+
},
|
|
812
|
+
"default": {
|
|
813
|
+
"description": "Make this the default profile.",
|
|
814
|
+
"name": "default",
|
|
815
|
+
"allowNo": false,
|
|
816
|
+
"type": "boolean"
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
"hasDynamicHelp": false,
|
|
820
|
+
"hiddenAliases": [],
|
|
821
|
+
"id": "profiles:set",
|
|
822
|
+
"pluginAlias": "@sendmux/cli",
|
|
823
|
+
"pluginName": "@sendmux/cli",
|
|
824
|
+
"pluginType": "core",
|
|
825
|
+
"strict": true,
|
|
826
|
+
"enableJsonFlag": true,
|
|
827
|
+
"isESM": true,
|
|
828
|
+
"relativePath": [
|
|
829
|
+
"dist",
|
|
830
|
+
"commands",
|
|
831
|
+
"profiles",
|
|
832
|
+
"set.js"
|
|
833
|
+
]
|
|
834
|
+
},
|
|
835
|
+
"profiles:show": {
|
|
836
|
+
"aliases": [],
|
|
837
|
+
"args": {
|
|
838
|
+
"name": {
|
|
839
|
+
"description": "Profile name. Defaults to the configured default profile.",
|
|
840
|
+
"name": "name",
|
|
841
|
+
"required": false
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
"description": "Show a local Sendmux CLI profile without revealing its key.",
|
|
845
|
+
"flags": {
|
|
846
|
+
"json": {
|
|
847
|
+
"description": "Format output as json.",
|
|
848
|
+
"helpGroup": "GLOBAL",
|
|
849
|
+
"name": "json",
|
|
850
|
+
"allowNo": false,
|
|
851
|
+
"type": "boolean"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"hasDynamicHelp": false,
|
|
855
|
+
"hiddenAliases": [],
|
|
856
|
+
"id": "profiles:show",
|
|
857
|
+
"pluginAlias": "@sendmux/cli",
|
|
858
|
+
"pluginName": "@sendmux/cli",
|
|
859
|
+
"pluginType": "core",
|
|
860
|
+
"strict": true,
|
|
861
|
+
"enableJsonFlag": true,
|
|
862
|
+
"isESM": true,
|
|
863
|
+
"relativePath": [
|
|
864
|
+
"dist",
|
|
865
|
+
"commands",
|
|
866
|
+
"profiles",
|
|
867
|
+
"show.js"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
"sending:send:batch": {
|
|
871
|
+
"aliases": [],
|
|
872
|
+
"args": {},
|
|
873
|
+
"description": "Send a batch of emails",
|
|
874
|
+
"flags": {
|
|
875
|
+
"json": {
|
|
876
|
+
"description": "Format output as json.",
|
|
877
|
+
"helpGroup": "GLOBAL",
|
|
878
|
+
"name": "json",
|
|
879
|
+
"allowNo": false,
|
|
880
|
+
"type": "boolean"
|
|
881
|
+
},
|
|
882
|
+
"api-key": {
|
|
883
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
884
|
+
"helpGroup": "GLOBAL",
|
|
885
|
+
"name": "api-key",
|
|
886
|
+
"hasDynamicHelp": false,
|
|
887
|
+
"multiple": false,
|
|
888
|
+
"type": "option"
|
|
889
|
+
},
|
|
890
|
+
"base-url": {
|
|
891
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
892
|
+
"helpGroup": "GLOBAL",
|
|
893
|
+
"name": "base-url",
|
|
894
|
+
"hasDynamicHelp": false,
|
|
895
|
+
"multiple": false,
|
|
896
|
+
"type": "option"
|
|
897
|
+
},
|
|
898
|
+
"profile": {
|
|
899
|
+
"char": "p",
|
|
900
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
901
|
+
"helpGroup": "GLOBAL",
|
|
902
|
+
"name": "profile",
|
|
903
|
+
"hasDynamicHelp": false,
|
|
904
|
+
"multiple": false,
|
|
905
|
+
"type": "option"
|
|
906
|
+
},
|
|
907
|
+
"body": {
|
|
908
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
909
|
+
"name": "body",
|
|
910
|
+
"hasDynamicHelp": false,
|
|
911
|
+
"multiple": false,
|
|
912
|
+
"type": "option"
|
|
913
|
+
},
|
|
914
|
+
"body-file": {
|
|
915
|
+
"description": "Path to a JSON request body file.",
|
|
916
|
+
"name": "body-file",
|
|
917
|
+
"hasDynamicHelp": false,
|
|
918
|
+
"multiple": false,
|
|
919
|
+
"type": "option"
|
|
920
|
+
},
|
|
921
|
+
"header": {
|
|
922
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
923
|
+
"name": "header",
|
|
924
|
+
"hasDynamicHelp": false,
|
|
925
|
+
"multiple": true,
|
|
926
|
+
"type": "option"
|
|
927
|
+
},
|
|
928
|
+
"idempotency-key": {
|
|
929
|
+
"description": "Set the Idempotency-Key header.",
|
|
930
|
+
"name": "idempotency-key",
|
|
931
|
+
"hasDynamicHelp": false,
|
|
932
|
+
"multiple": false,
|
|
933
|
+
"type": "option"
|
|
934
|
+
},
|
|
935
|
+
"if-match": {
|
|
936
|
+
"description": "Set the If-Match header.",
|
|
937
|
+
"name": "if-match",
|
|
938
|
+
"hasDynamicHelp": false,
|
|
939
|
+
"multiple": false,
|
|
940
|
+
"type": "option"
|
|
941
|
+
},
|
|
942
|
+
"if-none-match": {
|
|
943
|
+
"description": "Set the If-None-Match header.",
|
|
944
|
+
"name": "if-none-match",
|
|
945
|
+
"hasDynamicHelp": false,
|
|
946
|
+
"multiple": false,
|
|
947
|
+
"type": "option"
|
|
948
|
+
},
|
|
949
|
+
"path": {
|
|
950
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
951
|
+
"name": "path",
|
|
952
|
+
"hasDynamicHelp": false,
|
|
953
|
+
"multiple": true,
|
|
954
|
+
"type": "option"
|
|
955
|
+
},
|
|
956
|
+
"query": {
|
|
957
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
958
|
+
"name": "query",
|
|
959
|
+
"hasDynamicHelp": false,
|
|
960
|
+
"multiple": true,
|
|
961
|
+
"type": "option"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
"hasDynamicHelp": false,
|
|
965
|
+
"hiddenAliases": [],
|
|
966
|
+
"id": "sending:send:batch",
|
|
967
|
+
"pluginAlias": "@sendmux/cli",
|
|
968
|
+
"pluginName": "@sendmux/cli",
|
|
969
|
+
"pluginType": "core",
|
|
970
|
+
"strict": true,
|
|
971
|
+
"enableJsonFlag": true,
|
|
972
|
+
"operation": {
|
|
973
|
+
"command": "sending:send:batch",
|
|
974
|
+
"description": "Send a batch of emails",
|
|
975
|
+
"headerParams": [
|
|
976
|
+
{
|
|
977
|
+
"name": "Idempotency-Key",
|
|
978
|
+
"required": false
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"method": "post",
|
|
982
|
+
"operationId": "sendingSendEmailBatch",
|
|
983
|
+
"path": "/emails/send/batch",
|
|
984
|
+
"pathParams": [],
|
|
985
|
+
"queryParams": [],
|
|
986
|
+
"requestBodyRequired": true,
|
|
987
|
+
"requiredKeyKind": "root",
|
|
988
|
+
"surface": "sending"
|
|
989
|
+
},
|
|
990
|
+
"isESM": true,
|
|
991
|
+
"relativePath": [
|
|
992
|
+
"dist",
|
|
993
|
+
"commands",
|
|
994
|
+
"sending",
|
|
995
|
+
"send",
|
|
996
|
+
"batch.js"
|
|
997
|
+
]
|
|
998
|
+
},
|
|
999
|
+
"management:domains:get": {
|
|
1000
|
+
"aliases": [],
|
|
1001
|
+
"args": {},
|
|
1002
|
+
"description": "Get a mailbox domain",
|
|
1003
|
+
"flags": {
|
|
1004
|
+
"json": {
|
|
1005
|
+
"description": "Format output as json.",
|
|
1006
|
+
"helpGroup": "GLOBAL",
|
|
1007
|
+
"name": "json",
|
|
1008
|
+
"allowNo": false,
|
|
1009
|
+
"type": "boolean"
|
|
1010
|
+
},
|
|
1011
|
+
"api-key": {
|
|
1012
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
1013
|
+
"helpGroup": "GLOBAL",
|
|
1014
|
+
"name": "api-key",
|
|
1015
|
+
"hasDynamicHelp": false,
|
|
1016
|
+
"multiple": false,
|
|
1017
|
+
"type": "option"
|
|
1018
|
+
},
|
|
1019
|
+
"base-url": {
|
|
1020
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
1021
|
+
"helpGroup": "GLOBAL",
|
|
1022
|
+
"name": "base-url",
|
|
1023
|
+
"hasDynamicHelp": false,
|
|
1024
|
+
"multiple": false,
|
|
1025
|
+
"type": "option"
|
|
1026
|
+
},
|
|
1027
|
+
"profile": {
|
|
1028
|
+
"char": "p",
|
|
1029
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
1030
|
+
"helpGroup": "GLOBAL",
|
|
1031
|
+
"name": "profile",
|
|
1032
|
+
"hasDynamicHelp": false,
|
|
1033
|
+
"multiple": false,
|
|
1034
|
+
"type": "option"
|
|
1035
|
+
},
|
|
1036
|
+
"body": {
|
|
1037
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
1038
|
+
"name": "body",
|
|
1039
|
+
"hasDynamicHelp": false,
|
|
1040
|
+
"multiple": false,
|
|
1041
|
+
"type": "option"
|
|
1042
|
+
},
|
|
1043
|
+
"body-file": {
|
|
1044
|
+
"description": "Path to a JSON request body file.",
|
|
1045
|
+
"name": "body-file",
|
|
1046
|
+
"hasDynamicHelp": false,
|
|
1047
|
+
"multiple": false,
|
|
1048
|
+
"type": "option"
|
|
1049
|
+
},
|
|
1050
|
+
"header": {
|
|
1051
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
1052
|
+
"name": "header",
|
|
1053
|
+
"hasDynamicHelp": false,
|
|
1054
|
+
"multiple": true,
|
|
1055
|
+
"type": "option"
|
|
1056
|
+
},
|
|
1057
|
+
"idempotency-key": {
|
|
1058
|
+
"description": "Set the Idempotency-Key header.",
|
|
1059
|
+
"name": "idempotency-key",
|
|
1060
|
+
"hasDynamicHelp": false,
|
|
1061
|
+
"multiple": false,
|
|
1062
|
+
"type": "option"
|
|
1063
|
+
},
|
|
1064
|
+
"if-match": {
|
|
1065
|
+
"description": "Set the If-Match header.",
|
|
1066
|
+
"name": "if-match",
|
|
1067
|
+
"hasDynamicHelp": false,
|
|
1068
|
+
"multiple": false,
|
|
1069
|
+
"type": "option"
|
|
1070
|
+
},
|
|
1071
|
+
"if-none-match": {
|
|
1072
|
+
"description": "Set the If-None-Match header.",
|
|
1073
|
+
"name": "if-none-match",
|
|
1074
|
+
"hasDynamicHelp": false,
|
|
1075
|
+
"multiple": false,
|
|
1076
|
+
"type": "option"
|
|
1077
|
+
},
|
|
1078
|
+
"path": {
|
|
1079
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
1080
|
+
"name": "path",
|
|
1081
|
+
"hasDynamicHelp": false,
|
|
1082
|
+
"multiple": true,
|
|
1083
|
+
"type": "option"
|
|
1084
|
+
},
|
|
1085
|
+
"query": {
|
|
1086
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
1087
|
+
"name": "query",
|
|
1088
|
+
"hasDynamicHelp": false,
|
|
1089
|
+
"multiple": true,
|
|
1090
|
+
"type": "option"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"hasDynamicHelp": false,
|
|
1094
|
+
"hiddenAliases": [],
|
|
1095
|
+
"id": "management:domains:get",
|
|
1096
|
+
"pluginAlias": "@sendmux/cli",
|
|
1097
|
+
"pluginName": "@sendmux/cli",
|
|
1098
|
+
"pluginType": "core",
|
|
1099
|
+
"strict": true,
|
|
1100
|
+
"enableJsonFlag": true,
|
|
1101
|
+
"operation": {
|
|
1102
|
+
"command": "management:domains:get",
|
|
1103
|
+
"description": "Get a mailbox domain",
|
|
1104
|
+
"headerParams": [
|
|
1105
|
+
{
|
|
1106
|
+
"name": "If-None-Match",
|
|
1107
|
+
"required": false
|
|
1108
|
+
}
|
|
1109
|
+
],
|
|
1110
|
+
"method": "get",
|
|
1111
|
+
"operationId": "managementGetDomain",
|
|
1112
|
+
"path": "/domains/{public_id}",
|
|
1113
|
+
"pathParams": [
|
|
1114
|
+
{
|
|
1115
|
+
"name": "public_id",
|
|
1116
|
+
"required": true
|
|
1117
|
+
}
|
|
1118
|
+
],
|
|
1119
|
+
"queryParams": [],
|
|
1120
|
+
"requestBodyRequired": false,
|
|
1121
|
+
"requiredKeyKind": "root",
|
|
1122
|
+
"surface": "management"
|
|
1123
|
+
},
|
|
1124
|
+
"isESM": true,
|
|
1125
|
+
"relativePath": [
|
|
1126
|
+
"dist",
|
|
1127
|
+
"commands",
|
|
1128
|
+
"management",
|
|
1129
|
+
"domains",
|
|
1130
|
+
"get.js"
|
|
1131
|
+
]
|
|
1132
|
+
},
|
|
1133
|
+
"management:domains:list": {
|
|
1134
|
+
"aliases": [],
|
|
1135
|
+
"args": {},
|
|
1136
|
+
"description": "List mailbox domains",
|
|
1137
|
+
"flags": {
|
|
1138
|
+
"json": {
|
|
1139
|
+
"description": "Format output as json.",
|
|
1140
|
+
"helpGroup": "GLOBAL",
|
|
1141
|
+
"name": "json",
|
|
1142
|
+
"allowNo": false,
|
|
1143
|
+
"type": "boolean"
|
|
1144
|
+
},
|
|
1145
|
+
"api-key": {
|
|
1146
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
1147
|
+
"helpGroup": "GLOBAL",
|
|
1148
|
+
"name": "api-key",
|
|
1149
|
+
"hasDynamicHelp": false,
|
|
1150
|
+
"multiple": false,
|
|
1151
|
+
"type": "option"
|
|
1152
|
+
},
|
|
1153
|
+
"base-url": {
|
|
1154
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
1155
|
+
"helpGroup": "GLOBAL",
|
|
1156
|
+
"name": "base-url",
|
|
1157
|
+
"hasDynamicHelp": false,
|
|
1158
|
+
"multiple": false,
|
|
1159
|
+
"type": "option"
|
|
1160
|
+
},
|
|
1161
|
+
"profile": {
|
|
1162
|
+
"char": "p",
|
|
1163
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
1164
|
+
"helpGroup": "GLOBAL",
|
|
1165
|
+
"name": "profile",
|
|
1166
|
+
"hasDynamicHelp": false,
|
|
1167
|
+
"multiple": false,
|
|
1168
|
+
"type": "option"
|
|
1169
|
+
},
|
|
1170
|
+
"body": {
|
|
1171
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
1172
|
+
"name": "body",
|
|
1173
|
+
"hasDynamicHelp": false,
|
|
1174
|
+
"multiple": false,
|
|
1175
|
+
"type": "option"
|
|
1176
|
+
},
|
|
1177
|
+
"body-file": {
|
|
1178
|
+
"description": "Path to a JSON request body file.",
|
|
1179
|
+
"name": "body-file",
|
|
1180
|
+
"hasDynamicHelp": false,
|
|
1181
|
+
"multiple": false,
|
|
1182
|
+
"type": "option"
|
|
1183
|
+
},
|
|
1184
|
+
"header": {
|
|
1185
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
1186
|
+
"name": "header",
|
|
1187
|
+
"hasDynamicHelp": false,
|
|
1188
|
+
"multiple": true,
|
|
1189
|
+
"type": "option"
|
|
1190
|
+
},
|
|
1191
|
+
"idempotency-key": {
|
|
1192
|
+
"description": "Set the Idempotency-Key header.",
|
|
1193
|
+
"name": "idempotency-key",
|
|
1194
|
+
"hasDynamicHelp": false,
|
|
1195
|
+
"multiple": false,
|
|
1196
|
+
"type": "option"
|
|
1197
|
+
},
|
|
1198
|
+
"if-match": {
|
|
1199
|
+
"description": "Set the If-Match header.",
|
|
1200
|
+
"name": "if-match",
|
|
1201
|
+
"hasDynamicHelp": false,
|
|
1202
|
+
"multiple": false,
|
|
1203
|
+
"type": "option"
|
|
1204
|
+
},
|
|
1205
|
+
"if-none-match": {
|
|
1206
|
+
"description": "Set the If-None-Match header.",
|
|
1207
|
+
"name": "if-none-match",
|
|
1208
|
+
"hasDynamicHelp": false,
|
|
1209
|
+
"multiple": false,
|
|
1210
|
+
"type": "option"
|
|
1211
|
+
},
|
|
1212
|
+
"path": {
|
|
1213
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
1214
|
+
"name": "path",
|
|
1215
|
+
"hasDynamicHelp": false,
|
|
1216
|
+
"multiple": true,
|
|
1217
|
+
"type": "option"
|
|
1218
|
+
},
|
|
1219
|
+
"query": {
|
|
1220
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
1221
|
+
"name": "query",
|
|
1222
|
+
"hasDynamicHelp": false,
|
|
1223
|
+
"multiple": true,
|
|
1224
|
+
"type": "option"
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1227
|
+
"hasDynamicHelp": false,
|
|
1228
|
+
"hiddenAliases": [],
|
|
1229
|
+
"id": "management:domains:list",
|
|
1230
|
+
"pluginAlias": "@sendmux/cli",
|
|
1231
|
+
"pluginName": "@sendmux/cli",
|
|
1232
|
+
"pluginType": "core",
|
|
1233
|
+
"strict": true,
|
|
1234
|
+
"enableJsonFlag": true,
|
|
1235
|
+
"operation": {
|
|
1236
|
+
"command": "management:domains:list",
|
|
1237
|
+
"description": "List mailbox domains",
|
|
1238
|
+
"headerParams": [],
|
|
1239
|
+
"method": "get",
|
|
1240
|
+
"operationId": "managementListDomains",
|
|
1241
|
+
"path": "/domains",
|
|
1242
|
+
"pathParams": [],
|
|
1243
|
+
"queryParams": [
|
|
1244
|
+
{
|
|
1245
|
+
"name": "cursor",
|
|
1246
|
+
"required": false
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"name": "limit",
|
|
1250
|
+
"required": false
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"requestBodyRequired": false,
|
|
1254
|
+
"requiredKeyKind": "root",
|
|
1255
|
+
"surface": "management"
|
|
1256
|
+
},
|
|
1257
|
+
"isESM": true,
|
|
1258
|
+
"relativePath": [
|
|
1259
|
+
"dist",
|
|
1260
|
+
"commands",
|
|
1261
|
+
"management",
|
|
1262
|
+
"domains",
|
|
1263
|
+
"list.js"
|
|
1264
|
+
]
|
|
1265
|
+
},
|
|
1266
|
+
"management:mailboxes:list": {
|
|
1267
|
+
"aliases": [],
|
|
1268
|
+
"args": {},
|
|
1269
|
+
"description": "List mailboxes",
|
|
1270
|
+
"flags": {
|
|
1271
|
+
"json": {
|
|
1272
|
+
"description": "Format output as json.",
|
|
1273
|
+
"helpGroup": "GLOBAL",
|
|
1274
|
+
"name": "json",
|
|
1275
|
+
"allowNo": false,
|
|
1276
|
+
"type": "boolean"
|
|
1277
|
+
},
|
|
1278
|
+
"api-key": {
|
|
1279
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
1280
|
+
"helpGroup": "GLOBAL",
|
|
1281
|
+
"name": "api-key",
|
|
1282
|
+
"hasDynamicHelp": false,
|
|
1283
|
+
"multiple": false,
|
|
1284
|
+
"type": "option"
|
|
1285
|
+
},
|
|
1286
|
+
"base-url": {
|
|
1287
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
1288
|
+
"helpGroup": "GLOBAL",
|
|
1289
|
+
"name": "base-url",
|
|
1290
|
+
"hasDynamicHelp": false,
|
|
1291
|
+
"multiple": false,
|
|
1292
|
+
"type": "option"
|
|
1293
|
+
},
|
|
1294
|
+
"profile": {
|
|
1295
|
+
"char": "p",
|
|
1296
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
1297
|
+
"helpGroup": "GLOBAL",
|
|
1298
|
+
"name": "profile",
|
|
1299
|
+
"hasDynamicHelp": false,
|
|
1300
|
+
"multiple": false,
|
|
1301
|
+
"type": "option"
|
|
1302
|
+
},
|
|
1303
|
+
"body": {
|
|
1304
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
1305
|
+
"name": "body",
|
|
1306
|
+
"hasDynamicHelp": false,
|
|
1307
|
+
"multiple": false,
|
|
1308
|
+
"type": "option"
|
|
1309
|
+
},
|
|
1310
|
+
"body-file": {
|
|
1311
|
+
"description": "Path to a JSON request body file.",
|
|
1312
|
+
"name": "body-file",
|
|
1313
|
+
"hasDynamicHelp": false,
|
|
1314
|
+
"multiple": false,
|
|
1315
|
+
"type": "option"
|
|
1316
|
+
},
|
|
1317
|
+
"header": {
|
|
1318
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
1319
|
+
"name": "header",
|
|
1320
|
+
"hasDynamicHelp": false,
|
|
1321
|
+
"multiple": true,
|
|
1322
|
+
"type": "option"
|
|
1323
|
+
},
|
|
1324
|
+
"idempotency-key": {
|
|
1325
|
+
"description": "Set the Idempotency-Key header.",
|
|
1326
|
+
"name": "idempotency-key",
|
|
1327
|
+
"hasDynamicHelp": false,
|
|
1328
|
+
"multiple": false,
|
|
1329
|
+
"type": "option"
|
|
1330
|
+
},
|
|
1331
|
+
"if-match": {
|
|
1332
|
+
"description": "Set the If-Match header.",
|
|
1333
|
+
"name": "if-match",
|
|
1334
|
+
"hasDynamicHelp": false,
|
|
1335
|
+
"multiple": false,
|
|
1336
|
+
"type": "option"
|
|
1337
|
+
},
|
|
1338
|
+
"if-none-match": {
|
|
1339
|
+
"description": "Set the If-None-Match header.",
|
|
1340
|
+
"name": "if-none-match",
|
|
1341
|
+
"hasDynamicHelp": false,
|
|
1342
|
+
"multiple": false,
|
|
1343
|
+
"type": "option"
|
|
1344
|
+
},
|
|
1345
|
+
"path": {
|
|
1346
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
1347
|
+
"name": "path",
|
|
1348
|
+
"hasDynamicHelp": false,
|
|
1349
|
+
"multiple": true,
|
|
1350
|
+
"type": "option"
|
|
1351
|
+
},
|
|
1352
|
+
"query": {
|
|
1353
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
1354
|
+
"name": "query",
|
|
1355
|
+
"hasDynamicHelp": false,
|
|
1356
|
+
"multiple": true,
|
|
1357
|
+
"type": "option"
|
|
1358
|
+
}
|
|
1359
|
+
},
|
|
1360
|
+
"hasDynamicHelp": false,
|
|
1361
|
+
"hiddenAliases": [],
|
|
1362
|
+
"id": "management:mailboxes:list",
|
|
1363
|
+
"pluginAlias": "@sendmux/cli",
|
|
1364
|
+
"pluginName": "@sendmux/cli",
|
|
1365
|
+
"pluginType": "core",
|
|
1366
|
+
"strict": true,
|
|
1367
|
+
"enableJsonFlag": true,
|
|
1368
|
+
"operation": {
|
|
1369
|
+
"command": "management:mailboxes:list",
|
|
1370
|
+
"description": "List mailboxes",
|
|
1371
|
+
"headerParams": [],
|
|
1372
|
+
"method": "get",
|
|
1373
|
+
"operationId": "managementListMailboxes",
|
|
1374
|
+
"path": "/mailboxes",
|
|
1375
|
+
"pathParams": [],
|
|
1376
|
+
"queryParams": [
|
|
1377
|
+
{
|
|
1378
|
+
"name": "cursor",
|
|
1379
|
+
"required": false
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"name": "limit",
|
|
1383
|
+
"required": false
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"name": "include_deleted",
|
|
1387
|
+
"required": false
|
|
1388
|
+
}
|
|
1389
|
+
],
|
|
1390
|
+
"requestBodyRequired": false,
|
|
1391
|
+
"requiredKeyKind": "root",
|
|
1392
|
+
"surface": "management"
|
|
1393
|
+
},
|
|
1394
|
+
"isESM": true,
|
|
1395
|
+
"relativePath": [
|
|
1396
|
+
"dist",
|
|
1397
|
+
"commands",
|
|
1398
|
+
"management",
|
|
1399
|
+
"mailboxes",
|
|
1400
|
+
"list.js"
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
"management:providers:list": {
|
|
1404
|
+
"aliases": [],
|
|
1405
|
+
"args": {},
|
|
1406
|
+
"description": "List sending accounts",
|
|
1407
|
+
"flags": {
|
|
1408
|
+
"json": {
|
|
1409
|
+
"description": "Format output as json.",
|
|
1410
|
+
"helpGroup": "GLOBAL",
|
|
1411
|
+
"name": "json",
|
|
1412
|
+
"allowNo": false,
|
|
1413
|
+
"type": "boolean"
|
|
1414
|
+
},
|
|
1415
|
+
"api-key": {
|
|
1416
|
+
"description": "Sendmux API key. Defaults to SENDMUX_API_KEY.",
|
|
1417
|
+
"helpGroup": "GLOBAL",
|
|
1418
|
+
"name": "api-key",
|
|
1419
|
+
"hasDynamicHelp": false,
|
|
1420
|
+
"multiple": false,
|
|
1421
|
+
"type": "option"
|
|
1422
|
+
},
|
|
1423
|
+
"base-url": {
|
|
1424
|
+
"description": "Override the API base URL. Defaults to the SDK surface default or SENDMUX_BASE_URL.",
|
|
1425
|
+
"helpGroup": "GLOBAL",
|
|
1426
|
+
"name": "base-url",
|
|
1427
|
+
"hasDynamicHelp": false,
|
|
1428
|
+
"multiple": false,
|
|
1429
|
+
"type": "option"
|
|
1430
|
+
},
|
|
1431
|
+
"profile": {
|
|
1432
|
+
"char": "p",
|
|
1433
|
+
"description": "Profile name from the local Sendmux CLI config. Defaults to SENDMUX_PROFILE or the configured default profile.",
|
|
1434
|
+
"helpGroup": "GLOBAL",
|
|
1435
|
+
"name": "profile",
|
|
1436
|
+
"hasDynamicHelp": false,
|
|
1437
|
+
"multiple": false,
|
|
1438
|
+
"type": "option"
|
|
1439
|
+
},
|
|
1440
|
+
"body": {
|
|
1441
|
+
"description": "JSON request body for POST, PUT, and PATCH operations.",
|
|
1442
|
+
"name": "body",
|
|
1443
|
+
"hasDynamicHelp": false,
|
|
1444
|
+
"multiple": false,
|
|
1445
|
+
"type": "option"
|
|
1446
|
+
},
|
|
1447
|
+
"body-file": {
|
|
1448
|
+
"description": "Path to a JSON request body file.",
|
|
1449
|
+
"name": "body-file",
|
|
1450
|
+
"hasDynamicHelp": false,
|
|
1451
|
+
"multiple": false,
|
|
1452
|
+
"type": "option"
|
|
1453
|
+
},
|
|
1454
|
+
"header": {
|
|
1455
|
+
"description": "Header as name=value. Repeat for multiple headers.",
|
|
1456
|
+
"name": "header",
|
|
1457
|
+
"hasDynamicHelp": false,
|
|
1458
|
+
"multiple": true,
|
|
1459
|
+
"type": "option"
|
|
1460
|
+
},
|
|
1461
|
+
"idempotency-key": {
|
|
1462
|
+
"description": "Set the Idempotency-Key header.",
|
|
1463
|
+
"name": "idempotency-key",
|
|
1464
|
+
"hasDynamicHelp": false,
|
|
1465
|
+
"multiple": false,
|
|
1466
|
+
"type": "option"
|
|
1467
|
+
},
|
|
1468
|
+
"if-match": {
|
|
1469
|
+
"description": "Set the If-Match header.",
|
|
1470
|
+
"name": "if-match",
|
|
1471
|
+
"hasDynamicHelp": false,
|
|
1472
|
+
"multiple": false,
|
|
1473
|
+
"type": "option"
|
|
1474
|
+
},
|
|
1475
|
+
"if-none-match": {
|
|
1476
|
+
"description": "Set the If-None-Match header.",
|
|
1477
|
+
"name": "if-none-match",
|
|
1478
|
+
"hasDynamicHelp": false,
|
|
1479
|
+
"multiple": false,
|
|
1480
|
+
"type": "option"
|
|
1481
|
+
},
|
|
1482
|
+
"path": {
|
|
1483
|
+
"description": "Path parameter as name=value. Repeat for multiple path parameters.",
|
|
1484
|
+
"name": "path",
|
|
1485
|
+
"hasDynamicHelp": false,
|
|
1486
|
+
"multiple": true,
|
|
1487
|
+
"type": "option"
|
|
1488
|
+
},
|
|
1489
|
+
"query": {
|
|
1490
|
+
"description": "Query parameter as name=value. Repeat for multiple query parameters.",
|
|
1491
|
+
"name": "query",
|
|
1492
|
+
"hasDynamicHelp": false,
|
|
1493
|
+
"multiple": true,
|
|
1494
|
+
"type": "option"
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
"hasDynamicHelp": false,
|
|
1498
|
+
"hiddenAliases": [],
|
|
1499
|
+
"id": "management:providers:list",
|
|
1500
|
+
"pluginAlias": "@sendmux/cli",
|
|
1501
|
+
"pluginName": "@sendmux/cli",
|
|
1502
|
+
"pluginType": "core",
|
|
1503
|
+
"strict": true,
|
|
1504
|
+
"enableJsonFlag": true,
|
|
1505
|
+
"operation": {
|
|
1506
|
+
"command": "management:providers:list",
|
|
1507
|
+
"description": "List sending accounts",
|
|
1508
|
+
"headerParams": [],
|
|
1509
|
+
"method": "get",
|
|
1510
|
+
"operationId": "managementListProviders",
|
|
1511
|
+
"path": "/providers",
|
|
1512
|
+
"pathParams": [],
|
|
1513
|
+
"queryParams": [
|
|
1514
|
+
{
|
|
1515
|
+
"name": "cursor",
|
|
1516
|
+
"required": false
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"name": "status",
|
|
1520
|
+
"required": false
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"name": "type",
|
|
1524
|
+
"required": false
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"name": "limit",
|
|
1528
|
+
"required": false
|
|
1529
|
+
}
|
|
1530
|
+
],
|
|
1531
|
+
"requestBodyRequired": false,
|
|
1532
|
+
"requiredKeyKind": "root",
|
|
1533
|
+
"surface": "management"
|
|
1534
|
+
},
|
|
1535
|
+
"isESM": true,
|
|
1536
|
+
"relativePath": [
|
|
1537
|
+
"dist",
|
|
1538
|
+
"commands",
|
|
1539
|
+
"management",
|
|
1540
|
+
"providers",
|
|
1541
|
+
"list.js"
|
|
1542
|
+
]
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
"version": "1.0.0"
|
|
1546
|
+
}
|