@sendly/cli 3.35.0 → 3.36.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/dist/commands/business-upgrade/cancel.d.ts +12 -0
- package/dist/commands/business-upgrade/cancel.js +47 -0
- package/dist/commands/business-upgrade/disposition.d.ts +13 -0
- package/dist/commands/business-upgrade/disposition.js +44 -0
- package/dist/commands/business-upgrade/preflight.d.ts +16 -0
- package/dist/commands/business-upgrade/preflight.js +82 -0
- package/dist/commands/business-upgrade/resubmit.d.ts +24 -0
- package/dist/commands/business-upgrade/resubmit.js +109 -0
- package/dist/commands/business-upgrade/start.d.ts +38 -0
- package/dist/commands/business-upgrade/start.js +142 -0
- package/dist/commands/business-upgrade/status.d.ts +11 -0
- package/dist/commands/business-upgrade/status.js +38 -0
- package/dist/commands/enterprise/verification/get.d.ts +13 -0
- package/dist/commands/enterprise/verification/get.js +78 -0
- package/dist/commands/enterprise/verification/resubmit.d.ts +41 -0
- package/dist/commands/enterprise/verification/resubmit.js +87 -0
- package/dist/commands/enterprise/verification/submit.d.ts +77 -0
- package/dist/commands/enterprise/verification/submit.js +212 -0
- package/dist/commands/numbers/buy.d.ts +31 -0
- package/dist/commands/numbers/buy.js +252 -0
- package/dist/commands/numbers/list.d.ts +10 -0
- package/dist/commands/numbers/list.js +53 -0
- package/dist/commands/numbers/search.d.ts +13 -0
- package/dist/commands/numbers/search.js +78 -0
- package/dist/lib/auth.js +2 -94
- package/dist/lib/config.js +31 -2
- package/dist/lib/detect-install-path.d.ts +11 -7
- package/dist/lib/detect-install-path.js +25 -9
- package/dist/lib/keypress.d.ts +26 -0
- package/dist/lib/keypress.js +103 -0
- package/oclif.manifest.json +1931 -622
- package/package.json +7 -1
package/oclif.manifest.json
CHANGED
|
@@ -427,6 +427,153 @@
|
|
|
427
427
|
"whoami.js"
|
|
428
428
|
]
|
|
429
429
|
},
|
|
430
|
+
"config:get": {
|
|
431
|
+
"aliases": [],
|
|
432
|
+
"args": {
|
|
433
|
+
"key": {
|
|
434
|
+
"description": "Configuration key",
|
|
435
|
+
"name": "key",
|
|
436
|
+
"options": [
|
|
437
|
+
"environment",
|
|
438
|
+
"baseUrl",
|
|
439
|
+
"defaultFormat",
|
|
440
|
+
"colorEnabled"
|
|
441
|
+
],
|
|
442
|
+
"required": true
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"description": "Get a configuration value",
|
|
446
|
+
"examples": [
|
|
447
|
+
"<%= config.bin %> config get environment",
|
|
448
|
+
"<%= config.bin %> config get baseUrl"
|
|
449
|
+
],
|
|
450
|
+
"flags": {
|
|
451
|
+
"json": {
|
|
452
|
+
"description": "Output in JSON format",
|
|
453
|
+
"name": "json",
|
|
454
|
+
"allowNo": false,
|
|
455
|
+
"type": "boolean"
|
|
456
|
+
},
|
|
457
|
+
"quiet": {
|
|
458
|
+
"char": "q",
|
|
459
|
+
"description": "Minimal output",
|
|
460
|
+
"name": "quiet",
|
|
461
|
+
"allowNo": false,
|
|
462
|
+
"type": "boolean"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"hasDynamicHelp": false,
|
|
466
|
+
"hiddenAliases": [],
|
|
467
|
+
"id": "config:get",
|
|
468
|
+
"pluginAlias": "@sendly/cli",
|
|
469
|
+
"pluginName": "@sendly/cli",
|
|
470
|
+
"pluginType": "core",
|
|
471
|
+
"strict": true,
|
|
472
|
+
"enableJsonFlag": false,
|
|
473
|
+
"isESM": true,
|
|
474
|
+
"relativePath": [
|
|
475
|
+
"dist",
|
|
476
|
+
"commands",
|
|
477
|
+
"config",
|
|
478
|
+
"get.js"
|
|
479
|
+
]
|
|
480
|
+
},
|
|
481
|
+
"config:list": {
|
|
482
|
+
"aliases": [],
|
|
483
|
+
"args": {},
|
|
484
|
+
"description": "List all configuration values",
|
|
485
|
+
"examples": [
|
|
486
|
+
"<%= config.bin %> config list",
|
|
487
|
+
"<%= config.bin %> config list --json"
|
|
488
|
+
],
|
|
489
|
+
"flags": {
|
|
490
|
+
"json": {
|
|
491
|
+
"description": "Output in JSON format",
|
|
492
|
+
"name": "json",
|
|
493
|
+
"allowNo": false,
|
|
494
|
+
"type": "boolean"
|
|
495
|
+
},
|
|
496
|
+
"quiet": {
|
|
497
|
+
"char": "q",
|
|
498
|
+
"description": "Minimal output",
|
|
499
|
+
"name": "quiet",
|
|
500
|
+
"allowNo": false,
|
|
501
|
+
"type": "boolean"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"hasDynamicHelp": false,
|
|
505
|
+
"hiddenAliases": [],
|
|
506
|
+
"id": "config:list",
|
|
507
|
+
"pluginAlias": "@sendly/cli",
|
|
508
|
+
"pluginName": "@sendly/cli",
|
|
509
|
+
"pluginType": "core",
|
|
510
|
+
"strict": true,
|
|
511
|
+
"enableJsonFlag": false,
|
|
512
|
+
"isESM": true,
|
|
513
|
+
"relativePath": [
|
|
514
|
+
"dist",
|
|
515
|
+
"commands",
|
|
516
|
+
"config",
|
|
517
|
+
"list.js"
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
"config:set": {
|
|
521
|
+
"aliases": [],
|
|
522
|
+
"args": {
|
|
523
|
+
"key": {
|
|
524
|
+
"description": "Configuration key",
|
|
525
|
+
"name": "key",
|
|
526
|
+
"options": [
|
|
527
|
+
"environment",
|
|
528
|
+
"baseUrl",
|
|
529
|
+
"defaultFormat",
|
|
530
|
+
"colorEnabled"
|
|
531
|
+
],
|
|
532
|
+
"required": true
|
|
533
|
+
},
|
|
534
|
+
"value": {
|
|
535
|
+
"description": "Configuration value",
|
|
536
|
+
"name": "value",
|
|
537
|
+
"required": true
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"description": "Set a configuration value",
|
|
541
|
+
"examples": [
|
|
542
|
+
"<%= config.bin %> config set environment live",
|
|
543
|
+
"<%= config.bin %> config set defaultFormat json",
|
|
544
|
+
"<%= config.bin %> config set baseUrl https://api.sendly.live"
|
|
545
|
+
],
|
|
546
|
+
"flags": {
|
|
547
|
+
"json": {
|
|
548
|
+
"description": "Output in JSON format",
|
|
549
|
+
"name": "json",
|
|
550
|
+
"allowNo": false,
|
|
551
|
+
"type": "boolean"
|
|
552
|
+
},
|
|
553
|
+
"quiet": {
|
|
554
|
+
"char": "q",
|
|
555
|
+
"description": "Minimal output",
|
|
556
|
+
"name": "quiet",
|
|
557
|
+
"allowNo": false,
|
|
558
|
+
"type": "boolean"
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"hasDynamicHelp": false,
|
|
562
|
+
"hiddenAliases": [],
|
|
563
|
+
"id": "config:set",
|
|
564
|
+
"pluginAlias": "@sendly/cli",
|
|
565
|
+
"pluginName": "@sendly/cli",
|
|
566
|
+
"pluginType": "core",
|
|
567
|
+
"strict": true,
|
|
568
|
+
"enableJsonFlag": false,
|
|
569
|
+
"isESM": true,
|
|
570
|
+
"relativePath": [
|
|
571
|
+
"dist",
|
|
572
|
+
"commands",
|
|
573
|
+
"config",
|
|
574
|
+
"set.js"
|
|
575
|
+
]
|
|
576
|
+
},
|
|
430
577
|
"campaigns:cancel": {
|
|
431
578
|
"aliases": [],
|
|
432
579
|
"args": {
|
|
@@ -987,25 +1134,19 @@
|
|
|
987
1134
|
"update.js"
|
|
988
1135
|
]
|
|
989
1136
|
},
|
|
990
|
-
"
|
|
1137
|
+
"conversations:close": {
|
|
991
1138
|
"aliases": [],
|
|
992
1139
|
"args": {
|
|
993
|
-
"
|
|
994
|
-
"description": "
|
|
995
|
-
"name": "
|
|
996
|
-
"options": [
|
|
997
|
-
"environment",
|
|
998
|
-
"baseUrl",
|
|
999
|
-
"defaultFormat",
|
|
1000
|
-
"colorEnabled"
|
|
1001
|
-
],
|
|
1140
|
+
"id": {
|
|
1141
|
+
"description": "Conversation ID",
|
|
1142
|
+
"name": "id",
|
|
1002
1143
|
"required": true
|
|
1003
1144
|
}
|
|
1004
1145
|
},
|
|
1005
|
-
"description": "
|
|
1146
|
+
"description": "Close a conversation",
|
|
1006
1147
|
"examples": [
|
|
1007
|
-
"<%= config.bin %>
|
|
1008
|
-
"<%= config.bin %>
|
|
1148
|
+
"<%= config.bin %> conversations close conv_abc123",
|
|
1149
|
+
"<%= config.bin %> conversations close conv_abc123 --json"
|
|
1009
1150
|
],
|
|
1010
1151
|
"flags": {
|
|
1011
1152
|
"json": {
|
|
@@ -1024,27 +1165,34 @@
|
|
|
1024
1165
|
},
|
|
1025
1166
|
"hasDynamicHelp": false,
|
|
1026
1167
|
"hiddenAliases": [],
|
|
1027
|
-
"id": "
|
|
1168
|
+
"id": "conversations:close",
|
|
1028
1169
|
"pluginAlias": "@sendly/cli",
|
|
1029
1170
|
"pluginName": "@sendly/cli",
|
|
1030
1171
|
"pluginType": "core",
|
|
1031
1172
|
"strict": true,
|
|
1032
|
-
"enableJsonFlag": false,
|
|
1033
1173
|
"isESM": true,
|
|
1034
1174
|
"relativePath": [
|
|
1035
1175
|
"dist",
|
|
1036
1176
|
"commands",
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
1177
|
+
"conversations",
|
|
1178
|
+
"close.js"
|
|
1039
1179
|
]
|
|
1040
1180
|
},
|
|
1041
|
-
"
|
|
1181
|
+
"conversations:context": {
|
|
1042
1182
|
"aliases": [],
|
|
1043
|
-
"args": {
|
|
1044
|
-
|
|
1183
|
+
"args": {
|
|
1184
|
+
"id": {
|
|
1185
|
+
"description": "Conversation ID",
|
|
1186
|
+
"name": "id",
|
|
1187
|
+
"required": true
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
"description": "Get LLM-ready conversation context. Returns pre-formatted text with timestamped messages, AI classification, and business context.",
|
|
1045
1191
|
"examples": [
|
|
1046
|
-
"<%= config.bin %>
|
|
1047
|
-
"<%= config.bin %>
|
|
1192
|
+
"<%= config.bin %> conversations context conv_abc123",
|
|
1193
|
+
"<%= config.bin %> conversations context conv_abc123 --max-messages 10",
|
|
1194
|
+
"<%= config.bin %> conversations context conv_abc123 --json",
|
|
1195
|
+
"<%= config.bin %> conversations context conv_abc123 --raw"
|
|
1048
1196
|
],
|
|
1049
1197
|
"flags": {
|
|
1050
1198
|
"json": {
|
|
@@ -1059,49 +1207,53 @@
|
|
|
1059
1207
|
"name": "quiet",
|
|
1060
1208
|
"allowNo": false,
|
|
1061
1209
|
"type": "boolean"
|
|
1210
|
+
},
|
|
1211
|
+
"max-messages": {
|
|
1212
|
+
"char": "m",
|
|
1213
|
+
"description": "Maximum number of messages to include",
|
|
1214
|
+
"name": "max-messages",
|
|
1215
|
+
"default": 20,
|
|
1216
|
+
"hasDynamicHelp": false,
|
|
1217
|
+
"multiple": false,
|
|
1218
|
+
"type": "option"
|
|
1219
|
+
},
|
|
1220
|
+
"raw": {
|
|
1221
|
+
"description": "Output only the context text (for piping to LLMs)",
|
|
1222
|
+
"name": "raw",
|
|
1223
|
+
"allowNo": false,
|
|
1224
|
+
"type": "boolean"
|
|
1062
1225
|
}
|
|
1063
1226
|
},
|
|
1064
1227
|
"hasDynamicHelp": false,
|
|
1065
1228
|
"hiddenAliases": [],
|
|
1066
|
-
"id": "
|
|
1229
|
+
"id": "conversations:context",
|
|
1067
1230
|
"pluginAlias": "@sendly/cli",
|
|
1068
1231
|
"pluginName": "@sendly/cli",
|
|
1069
1232
|
"pluginType": "core",
|
|
1070
1233
|
"strict": true,
|
|
1071
|
-
"enableJsonFlag": false,
|
|
1072
1234
|
"isESM": true,
|
|
1073
1235
|
"relativePath": [
|
|
1074
1236
|
"dist",
|
|
1075
1237
|
"commands",
|
|
1076
|
-
"
|
|
1077
|
-
"
|
|
1238
|
+
"conversations",
|
|
1239
|
+
"context.js"
|
|
1078
1240
|
]
|
|
1079
1241
|
},
|
|
1080
|
-
"
|
|
1242
|
+
"conversations:get": {
|
|
1081
1243
|
"aliases": [],
|
|
1082
1244
|
"args": {
|
|
1083
|
-
"
|
|
1084
|
-
"description": "
|
|
1085
|
-
"name": "
|
|
1086
|
-
"options": [
|
|
1087
|
-
"environment",
|
|
1088
|
-
"baseUrl",
|
|
1089
|
-
"defaultFormat",
|
|
1090
|
-
"colorEnabled"
|
|
1091
|
-
],
|
|
1092
|
-
"required": true
|
|
1093
|
-
},
|
|
1094
|
-
"value": {
|
|
1095
|
-
"description": "Configuration value",
|
|
1096
|
-
"name": "value",
|
|
1245
|
+
"id": {
|
|
1246
|
+
"description": "Conversation ID",
|
|
1247
|
+
"name": "id",
|
|
1097
1248
|
"required": true
|
|
1098
1249
|
}
|
|
1099
1250
|
},
|
|
1100
|
-
"description": "
|
|
1251
|
+
"description": "Get details of a conversation",
|
|
1101
1252
|
"examples": [
|
|
1102
|
-
"<%= config.bin %>
|
|
1103
|
-
"<%= config.bin %>
|
|
1104
|
-
"<%= config.bin %>
|
|
1253
|
+
"<%= config.bin %> conversations get conv_abc123",
|
|
1254
|
+
"<%= config.bin %> conversations get conv_abc123 --messages",
|
|
1255
|
+
"<%= config.bin %> conversations get conv_abc123 --messages --limit 10",
|
|
1256
|
+
"<%= config.bin %> conversations get conv_abc123 --json"
|
|
1105
1257
|
],
|
|
1106
1258
|
"flags": {
|
|
1107
1259
|
"json": {
|
|
@@ -1116,62 +1268,19 @@
|
|
|
1116
1268
|
"name": "quiet",
|
|
1117
1269
|
"allowNo": false,
|
|
1118
1270
|
"type": "boolean"
|
|
1119
|
-
}
|
|
1120
|
-
},
|
|
1121
|
-
"hasDynamicHelp": false,
|
|
1122
|
-
"hiddenAliases": [],
|
|
1123
|
-
"id": "config:set",
|
|
1124
|
-
"pluginAlias": "@sendly/cli",
|
|
1125
|
-
"pluginName": "@sendly/cli",
|
|
1126
|
-
"pluginType": "core",
|
|
1127
|
-
"strict": true,
|
|
1128
|
-
"enableJsonFlag": false,
|
|
1129
|
-
"isESM": true,
|
|
1130
|
-
"relativePath": [
|
|
1131
|
-
"dist",
|
|
1132
|
-
"commands",
|
|
1133
|
-
"config",
|
|
1134
|
-
"set.js"
|
|
1135
|
-
]
|
|
1136
|
-
},
|
|
1137
|
-
"contacts:bulk-mark-valid": {
|
|
1138
|
-
"aliases": [],
|
|
1139
|
-
"args": {},
|
|
1140
|
-
"description": "Clear the invalid flag on many contacts at once. Pass --ids (comma-separated, up to 10,000) OR --list <id>, not both. Escape hatch for when auto-mark misclassifies at scale.",
|
|
1141
|
-
"examples": [
|
|
1142
|
-
"<%= config.bin %> contacts bulk-mark-valid --ids cnt_abc,cnt_def,cnt_ghi",
|
|
1143
|
-
"<%= config.bin %> contacts bulk-mark-valid --list lst_xxx"
|
|
1144
|
-
],
|
|
1145
|
-
"flags": {
|
|
1146
|
-
"json": {
|
|
1147
|
-
"description": "Output in JSON format",
|
|
1148
|
-
"name": "json",
|
|
1149
|
-
"allowNo": false,
|
|
1150
|
-
"type": "boolean"
|
|
1151
1271
|
},
|
|
1152
|
-
"
|
|
1153
|
-
"char": "
|
|
1154
|
-
"description": "
|
|
1155
|
-
"name": "
|
|
1272
|
+
"messages": {
|
|
1273
|
+
"char": "m",
|
|
1274
|
+
"description": "Include message thread",
|
|
1275
|
+
"name": "messages",
|
|
1156
1276
|
"allowNo": false,
|
|
1157
1277
|
"type": "boolean"
|
|
1158
1278
|
},
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1161
|
-
"
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
"name": "ids",
|
|
1165
|
-
"hasDynamicHelp": false,
|
|
1166
|
-
"multiple": false,
|
|
1167
|
-
"type": "option"
|
|
1168
|
-
},
|
|
1169
|
-
"list": {
|
|
1170
|
-
"description": "Clear every flagged member of this list ID",
|
|
1171
|
-
"exclusive": [
|
|
1172
|
-
"ids"
|
|
1173
|
-
],
|
|
1174
|
-
"name": "list",
|
|
1279
|
+
"limit": {
|
|
1280
|
+
"char": "l",
|
|
1281
|
+
"description": "Number of messages to include (requires --messages)",
|
|
1282
|
+
"name": "limit",
|
|
1283
|
+
"default": 50,
|
|
1175
1284
|
"hasDynamicHelp": false,
|
|
1176
1285
|
"multiple": false,
|
|
1177
1286
|
"type": "option"
|
|
@@ -1179,7 +1288,7 @@
|
|
|
1179
1288
|
},
|
|
1180
1289
|
"hasDynamicHelp": false,
|
|
1181
1290
|
"hiddenAliases": [],
|
|
1182
|
-
"id": "
|
|
1291
|
+
"id": "conversations:get",
|
|
1183
1292
|
"pluginAlias": "@sendly/cli",
|
|
1184
1293
|
"pluginName": "@sendly/cli",
|
|
1185
1294
|
"pluginType": "core",
|
|
@@ -1188,18 +1297,17 @@
|
|
|
1188
1297
|
"relativePath": [
|
|
1189
1298
|
"dist",
|
|
1190
1299
|
"commands",
|
|
1191
|
-
"
|
|
1192
|
-
"
|
|
1300
|
+
"conversations",
|
|
1301
|
+
"get.js"
|
|
1193
1302
|
]
|
|
1194
1303
|
},
|
|
1195
|
-
"
|
|
1304
|
+
"conversations": {
|
|
1196
1305
|
"aliases": [],
|
|
1197
1306
|
"args": {},
|
|
1198
|
-
"description": "
|
|
1307
|
+
"description": "List conversations (default subcommand)",
|
|
1199
1308
|
"examples": [
|
|
1200
|
-
"<%= config.bin %>
|
|
1201
|
-
"<%= config.bin %>
|
|
1202
|
-
"<%= config.bin %> contacts check-numbers --force"
|
|
1309
|
+
"<%= config.bin %> conversations",
|
|
1310
|
+
"<%= config.bin %> conversations --json"
|
|
1203
1311
|
],
|
|
1204
1312
|
"flags": {
|
|
1205
1313
|
"json": {
|
|
@@ -1214,25 +1322,11 @@
|
|
|
1214
1322
|
"name": "quiet",
|
|
1215
1323
|
"allowNo": false,
|
|
1216
1324
|
"type": "boolean"
|
|
1217
|
-
},
|
|
1218
|
-
"list": {
|
|
1219
|
-
"char": "l",
|
|
1220
|
-
"description": "Scope the lookup to a single contact list",
|
|
1221
|
-
"name": "list",
|
|
1222
|
-
"hasDynamicHelp": false,
|
|
1223
|
-
"multiple": false,
|
|
1224
|
-
"type": "option"
|
|
1225
|
-
},
|
|
1226
|
-
"force": {
|
|
1227
|
-
"description": "Re-check contacts even if already looked up",
|
|
1228
|
-
"name": "force",
|
|
1229
|
-
"allowNo": false,
|
|
1230
|
-
"type": "boolean"
|
|
1231
1325
|
}
|
|
1232
1326
|
},
|
|
1233
1327
|
"hasDynamicHelp": false,
|
|
1234
1328
|
"hiddenAliases": [],
|
|
1235
|
-
"id": "
|
|
1329
|
+
"id": "conversations",
|
|
1236
1330
|
"pluginAlias": "@sendly/cli",
|
|
1237
1331
|
"pluginName": "@sendly/cli",
|
|
1238
1332
|
"pluginType": "core",
|
|
@@ -1241,19 +1335,19 @@
|
|
|
1241
1335
|
"relativePath": [
|
|
1242
1336
|
"dist",
|
|
1243
1337
|
"commands",
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1338
|
+
"conversations",
|
|
1339
|
+
"index.js"
|
|
1246
1340
|
]
|
|
1247
1341
|
},
|
|
1248
|
-
"
|
|
1342
|
+
"conversations:list": {
|
|
1249
1343
|
"aliases": [],
|
|
1250
1344
|
"args": {},
|
|
1251
|
-
"description": "
|
|
1345
|
+
"description": "List conversations",
|
|
1252
1346
|
"examples": [
|
|
1253
|
-
"<%= config.bin %>
|
|
1254
|
-
"<%= config.bin %>
|
|
1255
|
-
"<%= config.bin %>
|
|
1256
|
-
"<%= config.bin %>
|
|
1347
|
+
"<%= config.bin %> conversations list",
|
|
1348
|
+
"<%= config.bin %> conversations list --status active",
|
|
1349
|
+
"<%= config.bin %> conversations list --limit 10",
|
|
1350
|
+
"<%= config.bin %> conversations list --json"
|
|
1257
1351
|
],
|
|
1258
1352
|
"flags": {
|
|
1259
1353
|
"json": {
|
|
@@ -1269,35 +1363,38 @@
|
|
|
1269
1363
|
"allowNo": false,
|
|
1270
1364
|
"type": "boolean"
|
|
1271
1365
|
},
|
|
1272
|
-
"
|
|
1273
|
-
"char": "
|
|
1274
|
-
"description": "
|
|
1275
|
-
"name": "
|
|
1276
|
-
"
|
|
1366
|
+
"limit": {
|
|
1367
|
+
"char": "l",
|
|
1368
|
+
"description": "Number of conversations per page",
|
|
1369
|
+
"name": "limit",
|
|
1370
|
+
"default": 20,
|
|
1277
1371
|
"hasDynamicHelp": false,
|
|
1278
1372
|
"multiple": false,
|
|
1279
1373
|
"type": "option"
|
|
1280
1374
|
},
|
|
1281
|
-
"
|
|
1282
|
-
"
|
|
1283
|
-
"
|
|
1284
|
-
"name": "name",
|
|
1375
|
+
"offset": {
|
|
1376
|
+
"description": "Offset from start",
|
|
1377
|
+
"name": "offset",
|
|
1285
1378
|
"hasDynamicHelp": false,
|
|
1286
1379
|
"multiple": false,
|
|
1287
1380
|
"type": "option"
|
|
1288
1381
|
},
|
|
1289
|
-
"
|
|
1290
|
-
"char": "
|
|
1291
|
-
"description": "
|
|
1292
|
-
"name": "
|
|
1382
|
+
"status": {
|
|
1383
|
+
"char": "s",
|
|
1384
|
+
"description": "Filter by status (active, closed)",
|
|
1385
|
+
"name": "status",
|
|
1293
1386
|
"hasDynamicHelp": false,
|
|
1294
1387
|
"multiple": false,
|
|
1388
|
+
"options": [
|
|
1389
|
+
"active",
|
|
1390
|
+
"closed"
|
|
1391
|
+
],
|
|
1295
1392
|
"type": "option"
|
|
1296
1393
|
}
|
|
1297
1394
|
},
|
|
1298
1395
|
"hasDynamicHelp": false,
|
|
1299
1396
|
"hiddenAliases": [],
|
|
1300
|
-
"id": "
|
|
1397
|
+
"id": "conversations:list",
|
|
1301
1398
|
"pluginAlias": "@sendly/cli",
|
|
1302
1399
|
"pluginName": "@sendly/cli",
|
|
1303
1400
|
"pluginType": "core",
|
|
@@ -1306,23 +1403,23 @@
|
|
|
1306
1403
|
"relativePath": [
|
|
1307
1404
|
"dist",
|
|
1308
1405
|
"commands",
|
|
1309
|
-
"
|
|
1310
|
-
"
|
|
1406
|
+
"conversations",
|
|
1407
|
+
"list.js"
|
|
1311
1408
|
]
|
|
1312
1409
|
},
|
|
1313
|
-
"
|
|
1410
|
+
"conversations:mark-read": {
|
|
1314
1411
|
"aliases": [],
|
|
1315
1412
|
"args": {
|
|
1316
1413
|
"id": {
|
|
1317
|
-
"description": "
|
|
1414
|
+
"description": "Conversation ID",
|
|
1318
1415
|
"name": "id",
|
|
1319
1416
|
"required": true
|
|
1320
1417
|
}
|
|
1321
1418
|
},
|
|
1322
|
-
"description": "
|
|
1419
|
+
"description": "Mark a conversation as read",
|
|
1323
1420
|
"examples": [
|
|
1324
|
-
"<%= config.bin %>
|
|
1325
|
-
"<%= config.bin %>
|
|
1421
|
+
"<%= config.bin %> conversations mark-read conv_abc123",
|
|
1422
|
+
"<%= config.bin %> conversations mark-read conv_abc123 --json"
|
|
1326
1423
|
],
|
|
1327
1424
|
"flags": {
|
|
1328
1425
|
"json": {
|
|
@@ -1337,18 +1434,11 @@
|
|
|
1337
1434
|
"name": "quiet",
|
|
1338
1435
|
"allowNo": false,
|
|
1339
1436
|
"type": "boolean"
|
|
1340
|
-
},
|
|
1341
|
-
"yes": {
|
|
1342
|
-
"char": "y",
|
|
1343
|
-
"description": "Skip confirmation prompt",
|
|
1344
|
-
"name": "yes",
|
|
1345
|
-
"allowNo": false,
|
|
1346
|
-
"type": "boolean"
|
|
1347
1437
|
}
|
|
1348
1438
|
},
|
|
1349
1439
|
"hasDynamicHelp": false,
|
|
1350
1440
|
"hiddenAliases": [],
|
|
1351
|
-
"id": "
|
|
1441
|
+
"id": "conversations:mark-read",
|
|
1352
1442
|
"pluginAlias": "@sendly/cli",
|
|
1353
1443
|
"pluginName": "@sendly/cli",
|
|
1354
1444
|
"pluginType": "core",
|
|
@@ -1357,23 +1447,23 @@
|
|
|
1357
1447
|
"relativePath": [
|
|
1358
1448
|
"dist",
|
|
1359
1449
|
"commands",
|
|
1360
|
-
"
|
|
1361
|
-
"
|
|
1450
|
+
"conversations",
|
|
1451
|
+
"mark-read.js"
|
|
1362
1452
|
]
|
|
1363
1453
|
},
|
|
1364
|
-
"
|
|
1454
|
+
"conversations:reopen": {
|
|
1365
1455
|
"aliases": [],
|
|
1366
1456
|
"args": {
|
|
1367
1457
|
"id": {
|
|
1368
|
-
"description": "
|
|
1458
|
+
"description": "Conversation ID",
|
|
1369
1459
|
"name": "id",
|
|
1370
1460
|
"required": true
|
|
1371
1461
|
}
|
|
1372
1462
|
},
|
|
1373
|
-
"description": "
|
|
1463
|
+
"description": "Reopen a closed conversation",
|
|
1374
1464
|
"examples": [
|
|
1375
|
-
"<%= config.bin %>
|
|
1376
|
-
"<%= config.bin %>
|
|
1465
|
+
"<%= config.bin %> conversations reopen conv_abc123",
|
|
1466
|
+
"<%= config.bin %> conversations reopen conv_abc123 --json"
|
|
1377
1467
|
],
|
|
1378
1468
|
"flags": {
|
|
1379
1469
|
"json": {
|
|
@@ -1392,7 +1482,7 @@
|
|
|
1392
1482
|
},
|
|
1393
1483
|
"hasDynamicHelp": false,
|
|
1394
1484
|
"hiddenAliases": [],
|
|
1395
|
-
"id": "
|
|
1485
|
+
"id": "conversations:reopen",
|
|
1396
1486
|
"pluginAlias": "@sendly/cli",
|
|
1397
1487
|
"pluginName": "@sendly/cli",
|
|
1398
1488
|
"pluginType": "core",
|
|
@@ -1401,24 +1491,28 @@
|
|
|
1401
1491
|
"relativePath": [
|
|
1402
1492
|
"dist",
|
|
1403
1493
|
"commands",
|
|
1404
|
-
"
|
|
1405
|
-
"
|
|
1494
|
+
"conversations",
|
|
1495
|
+
"reopen.js"
|
|
1406
1496
|
]
|
|
1407
1497
|
},
|
|
1408
|
-
"
|
|
1498
|
+
"conversations:reply": {
|
|
1409
1499
|
"aliases": [],
|
|
1410
1500
|
"args": {
|
|
1411
|
-
"
|
|
1412
|
-
"description": "
|
|
1413
|
-
"name": "
|
|
1501
|
+
"id": {
|
|
1502
|
+
"description": "Conversation ID",
|
|
1503
|
+
"name": "id",
|
|
1504
|
+
"required": true
|
|
1505
|
+
},
|
|
1506
|
+
"text": {
|
|
1507
|
+
"description": "Reply message text",
|
|
1508
|
+
"name": "text",
|
|
1414
1509
|
"required": true
|
|
1415
1510
|
}
|
|
1416
1511
|
},
|
|
1417
|
-
"description": "
|
|
1512
|
+
"description": "Send a reply in a conversation",
|
|
1418
1513
|
"examples": [
|
|
1419
|
-
"<%= config.bin %>
|
|
1420
|
-
"<%= config.bin %>
|
|
1421
|
-
"<%= config.bin %> contacts import contacts.csv --list lst_xxx --json"
|
|
1514
|
+
"<%= config.bin %> conversations reply conv_abc123 \"Thanks for reaching out!\"",
|
|
1515
|
+
"<%= config.bin %> conversations reply conv_abc123 \"Got it\" --json"
|
|
1422
1516
|
],
|
|
1423
1517
|
"flags": {
|
|
1424
1518
|
"json": {
|
|
@@ -1433,19 +1527,11 @@
|
|
|
1433
1527
|
"name": "quiet",
|
|
1434
1528
|
"allowNo": false,
|
|
1435
1529
|
"type": "boolean"
|
|
1436
|
-
},
|
|
1437
|
-
"list": {
|
|
1438
|
-
"char": "l",
|
|
1439
|
-
"description": "Contact list ID to add imported contacts to",
|
|
1440
|
-
"name": "list",
|
|
1441
|
-
"hasDynamicHelp": false,
|
|
1442
|
-
"multiple": false,
|
|
1443
|
-
"type": "option"
|
|
1444
1530
|
}
|
|
1445
1531
|
},
|
|
1446
1532
|
"hasDynamicHelp": false,
|
|
1447
1533
|
"hiddenAliases": [],
|
|
1448
|
-
"id": "
|
|
1534
|
+
"id": "conversations:reply",
|
|
1449
1535
|
"pluginAlias": "@sendly/cli",
|
|
1450
1536
|
"pluginName": "@sendly/cli",
|
|
1451
1537
|
"pluginType": "core",
|
|
@@ -1454,20 +1540,23 @@
|
|
|
1454
1540
|
"relativePath": [
|
|
1455
1541
|
"dist",
|
|
1456
1542
|
"commands",
|
|
1457
|
-
"
|
|
1458
|
-
"
|
|
1543
|
+
"conversations",
|
|
1544
|
+
"reply.js"
|
|
1459
1545
|
]
|
|
1460
1546
|
},
|
|
1461
|
-
"
|
|
1547
|
+
"conversations:suggest-replies": {
|
|
1462
1548
|
"aliases": [],
|
|
1463
|
-
"args": {
|
|
1464
|
-
|
|
1549
|
+
"args": {
|
|
1550
|
+
"id": {
|
|
1551
|
+
"description": "Conversation ID",
|
|
1552
|
+
"name": "id",
|
|
1553
|
+
"required": true
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"description": "Get AI-suggested replies for a conversation",
|
|
1465
1557
|
"examples": [
|
|
1466
|
-
"<%= config.bin %>
|
|
1467
|
-
"<%= config.bin %>
|
|
1468
|
-
"<%= config.bin %> contacts list --list lst_xxx",
|
|
1469
|
-
"<%= config.bin %> contacts list --limit 50",
|
|
1470
|
-
"<%= config.bin %> contacts list --json"
|
|
1558
|
+
"<%= config.bin %> conversations suggest-replies conv_abc123",
|
|
1559
|
+
"<%= config.bin %> conversations suggest-replies conv_abc123 --json"
|
|
1471
1560
|
],
|
|
1472
1561
|
"flags": {
|
|
1473
1562
|
"json": {
|
|
@@ -1482,43 +1571,11 @@
|
|
|
1482
1571
|
"name": "quiet",
|
|
1483
1572
|
"allowNo": false,
|
|
1484
1573
|
"type": "boolean"
|
|
1485
|
-
},
|
|
1486
|
-
"limit": {
|
|
1487
|
-
"char": "l",
|
|
1488
|
-
"description": "Number of contacts to show",
|
|
1489
|
-
"name": "limit",
|
|
1490
|
-
"default": 50,
|
|
1491
|
-
"hasDynamicHelp": false,
|
|
1492
|
-
"multiple": false,
|
|
1493
|
-
"type": "option"
|
|
1494
|
-
},
|
|
1495
|
-
"offset": {
|
|
1496
|
-
"description": "Offset for pagination",
|
|
1497
|
-
"name": "offset",
|
|
1498
|
-
"default": 0,
|
|
1499
|
-
"hasDynamicHelp": false,
|
|
1500
|
-
"multiple": false,
|
|
1501
|
-
"type": "option"
|
|
1502
|
-
},
|
|
1503
|
-
"search": {
|
|
1504
|
-
"char": "s",
|
|
1505
|
-
"description": "Search by name, phone, or email",
|
|
1506
|
-
"name": "search",
|
|
1507
|
-
"hasDynamicHelp": false,
|
|
1508
|
-
"multiple": false,
|
|
1509
|
-
"type": "option"
|
|
1510
|
-
},
|
|
1511
|
-
"list": {
|
|
1512
|
-
"description": "Filter by contact list ID",
|
|
1513
|
-
"name": "list",
|
|
1514
|
-
"hasDynamicHelp": false,
|
|
1515
|
-
"multiple": false,
|
|
1516
|
-
"type": "option"
|
|
1517
1574
|
}
|
|
1518
1575
|
},
|
|
1519
1576
|
"hasDynamicHelp": false,
|
|
1520
1577
|
"hiddenAliases": [],
|
|
1521
|
-
"id": "
|
|
1578
|
+
"id": "conversations:suggest-replies",
|
|
1522
1579
|
"pluginAlias": "@sendly/cli",
|
|
1523
1580
|
"pluginName": "@sendly/cli",
|
|
1524
1581
|
"pluginType": "core",
|
|
@@ -1527,22 +1584,24 @@
|
|
|
1527
1584
|
"relativePath": [
|
|
1528
1585
|
"dist",
|
|
1529
1586
|
"commands",
|
|
1530
|
-
"
|
|
1531
|
-
"
|
|
1587
|
+
"conversations",
|
|
1588
|
+
"suggest-replies.js"
|
|
1532
1589
|
]
|
|
1533
1590
|
},
|
|
1534
|
-
"
|
|
1591
|
+
"conversations:update": {
|
|
1535
1592
|
"aliases": [],
|
|
1536
1593
|
"args": {
|
|
1537
1594
|
"id": {
|
|
1538
|
-
"description": "
|
|
1595
|
+
"description": "Conversation ID",
|
|
1539
1596
|
"name": "id",
|
|
1540
1597
|
"required": true
|
|
1541
1598
|
}
|
|
1542
1599
|
},
|
|
1543
|
-
"description": "
|
|
1600
|
+
"description": "Update a conversation",
|
|
1544
1601
|
"examples": [
|
|
1545
|
-
"<%= config.bin %>
|
|
1602
|
+
"<%= config.bin %> conversations update conv_abc123 --metadata '{\"priority\":\"high\"}'",
|
|
1603
|
+
"<%= config.bin %> conversations update conv_abc123 --tags vip,urgent",
|
|
1604
|
+
"<%= config.bin %> conversations update conv_abc123 --metadata '{\"note\":\"follow up\"}' --tags support"
|
|
1546
1605
|
],
|
|
1547
1606
|
"flags": {
|
|
1548
1607
|
"json": {
|
|
@@ -1557,11 +1616,27 @@
|
|
|
1557
1616
|
"name": "quiet",
|
|
1558
1617
|
"allowNo": false,
|
|
1559
1618
|
"type": "boolean"
|
|
1619
|
+
},
|
|
1620
|
+
"metadata": {
|
|
1621
|
+
"char": "m",
|
|
1622
|
+
"description": "Metadata as JSON string",
|
|
1623
|
+
"name": "metadata",
|
|
1624
|
+
"hasDynamicHelp": false,
|
|
1625
|
+
"multiple": false,
|
|
1626
|
+
"type": "option"
|
|
1627
|
+
},
|
|
1628
|
+
"tags": {
|
|
1629
|
+
"char": "t",
|
|
1630
|
+
"description": "Comma-separated list of tags",
|
|
1631
|
+
"name": "tags",
|
|
1632
|
+
"hasDynamicHelp": false,
|
|
1633
|
+
"multiple": false,
|
|
1634
|
+
"type": "option"
|
|
1560
1635
|
}
|
|
1561
1636
|
},
|
|
1562
1637
|
"hasDynamicHelp": false,
|
|
1563
1638
|
"hiddenAliases": [],
|
|
1564
|
-
"id": "
|
|
1639
|
+
"id": "conversations:update",
|
|
1565
1640
|
"pluginAlias": "@sendly/cli",
|
|
1566
1641
|
"pluginName": "@sendly/cli",
|
|
1567
1642
|
"pluginType": "core",
|
|
@@ -1570,24 +1645,17 @@
|
|
|
1570
1645
|
"relativePath": [
|
|
1571
1646
|
"dist",
|
|
1572
1647
|
"commands",
|
|
1573
|
-
"
|
|
1574
|
-
"
|
|
1648
|
+
"conversations",
|
|
1649
|
+
"update.js"
|
|
1575
1650
|
]
|
|
1576
1651
|
},
|
|
1577
|
-
"contacts:
|
|
1652
|
+
"contacts:bulk-mark-valid": {
|
|
1578
1653
|
"aliases": [],
|
|
1579
|
-
"args": {
|
|
1580
|
-
|
|
1581
|
-
"description": "Contact ID",
|
|
1582
|
-
"name": "id",
|
|
1583
|
-
"required": true
|
|
1584
|
-
}
|
|
1585
|
-
},
|
|
1586
|
-
"description": "Update a contact",
|
|
1654
|
+
"args": {},
|
|
1655
|
+
"description": "Clear the invalid flag on many contacts at once. Pass --ids (comma-separated, up to 10,000) OR --list <id>, not both. Escape hatch for when auto-mark misclassifies at scale.",
|
|
1587
1656
|
"examples": [
|
|
1588
|
-
"<%= config.bin %> contacts
|
|
1589
|
-
"<%= config.bin %> contacts
|
|
1590
|
-
"<%= config.bin %> contacts update cnt_xxx --name \"John\" --email john@example.com"
|
|
1657
|
+
"<%= config.bin %> contacts bulk-mark-valid --ids cnt_abc,cnt_def,cnt_ghi",
|
|
1658
|
+
"<%= config.bin %> contacts bulk-mark-valid --list lst_xxx"
|
|
1591
1659
|
],
|
|
1592
1660
|
"flags": {
|
|
1593
1661
|
"json": {
|
|
@@ -1603,18 +1671,22 @@
|
|
|
1603
1671
|
"allowNo": false,
|
|
1604
1672
|
"type": "boolean"
|
|
1605
1673
|
},
|
|
1606
|
-
"
|
|
1607
|
-
"
|
|
1608
|
-
"
|
|
1609
|
-
|
|
1674
|
+
"ids": {
|
|
1675
|
+
"description": "Comma-separated contact IDs to clear (max 10,000 per call)",
|
|
1676
|
+
"exclusive": [
|
|
1677
|
+
"list"
|
|
1678
|
+
],
|
|
1679
|
+
"name": "ids",
|
|
1610
1680
|
"hasDynamicHelp": false,
|
|
1611
1681
|
"multiple": false,
|
|
1612
1682
|
"type": "option"
|
|
1613
1683
|
},
|
|
1614
|
-
"
|
|
1615
|
-
"
|
|
1616
|
-
"
|
|
1617
|
-
|
|
1684
|
+
"list": {
|
|
1685
|
+
"description": "Clear every flagged member of this list ID",
|
|
1686
|
+
"exclusive": [
|
|
1687
|
+
"ids"
|
|
1688
|
+
],
|
|
1689
|
+
"name": "list",
|
|
1618
1690
|
"hasDynamicHelp": false,
|
|
1619
1691
|
"multiple": false,
|
|
1620
1692
|
"type": "option"
|
|
@@ -1622,7 +1694,7 @@
|
|
|
1622
1694
|
},
|
|
1623
1695
|
"hasDynamicHelp": false,
|
|
1624
1696
|
"hiddenAliases": [],
|
|
1625
|
-
"id": "contacts:
|
|
1697
|
+
"id": "contacts:bulk-mark-valid",
|
|
1626
1698
|
"pluginAlias": "@sendly/cli",
|
|
1627
1699
|
"pluginName": "@sendly/cli",
|
|
1628
1700
|
"pluginType": "core",
|
|
@@ -1632,22 +1704,17 @@
|
|
|
1632
1704
|
"dist",
|
|
1633
1705
|
"commands",
|
|
1634
1706
|
"contacts",
|
|
1635
|
-
"
|
|
1707
|
+
"bulk-mark-valid.js"
|
|
1636
1708
|
]
|
|
1637
1709
|
},
|
|
1638
|
-
"
|
|
1710
|
+
"contacts:check-numbers": {
|
|
1639
1711
|
"aliases": [],
|
|
1640
|
-
"args": {
|
|
1641
|
-
|
|
1642
|
-
"description": "Conversation ID",
|
|
1643
|
-
"name": "id",
|
|
1644
|
-
"required": true
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
"description": "Close a conversation",
|
|
1712
|
+
"args": {},
|
|
1713
|
+
"description": "Trigger a background carrier lookup across your contacts. Landlines and other non-SMS-capable numbers are auto-excluded from future campaigns. Runs asynchronously — results populate line_type / carrier_name / invalid_reason on affected contacts within a few minutes.",
|
|
1648
1714
|
"examples": [
|
|
1649
|
-
"<%= config.bin %>
|
|
1650
|
-
"<%= config.bin %>
|
|
1715
|
+
"<%= config.bin %> contacts check-numbers",
|
|
1716
|
+
"<%= config.bin %> contacts check-numbers --list lst_xxx",
|
|
1717
|
+
"<%= config.bin %> contacts check-numbers --force"
|
|
1651
1718
|
],
|
|
1652
1719
|
"flags": {
|
|
1653
1720
|
"json": {
|
|
@@ -1662,11 +1729,25 @@
|
|
|
1662
1729
|
"name": "quiet",
|
|
1663
1730
|
"allowNo": false,
|
|
1664
1731
|
"type": "boolean"
|
|
1732
|
+
},
|
|
1733
|
+
"list": {
|
|
1734
|
+
"char": "l",
|
|
1735
|
+
"description": "Scope the lookup to a single contact list",
|
|
1736
|
+
"name": "list",
|
|
1737
|
+
"hasDynamicHelp": false,
|
|
1738
|
+
"multiple": false,
|
|
1739
|
+
"type": "option"
|
|
1740
|
+
},
|
|
1741
|
+
"force": {
|
|
1742
|
+
"description": "Re-check contacts even if already looked up",
|
|
1743
|
+
"name": "force",
|
|
1744
|
+
"allowNo": false,
|
|
1745
|
+
"type": "boolean"
|
|
1665
1746
|
}
|
|
1666
1747
|
},
|
|
1667
1748
|
"hasDynamicHelp": false,
|
|
1668
1749
|
"hiddenAliases": [],
|
|
1669
|
-
"id": "
|
|
1750
|
+
"id": "contacts:check-numbers",
|
|
1670
1751
|
"pluginAlias": "@sendly/cli",
|
|
1671
1752
|
"pluginName": "@sendly/cli",
|
|
1672
1753
|
"pluginType": "core",
|
|
@@ -1675,25 +1756,19 @@
|
|
|
1675
1756
|
"relativePath": [
|
|
1676
1757
|
"dist",
|
|
1677
1758
|
"commands",
|
|
1678
|
-
"
|
|
1679
|
-
"
|
|
1759
|
+
"contacts",
|
|
1760
|
+
"check-numbers.js"
|
|
1680
1761
|
]
|
|
1681
1762
|
},
|
|
1682
|
-
"
|
|
1763
|
+
"contacts:create": {
|
|
1683
1764
|
"aliases": [],
|
|
1684
|
-
"args": {
|
|
1685
|
-
|
|
1686
|
-
"description": "Conversation ID",
|
|
1687
|
-
"name": "id",
|
|
1688
|
-
"required": true
|
|
1689
|
-
}
|
|
1690
|
-
},
|
|
1691
|
-
"description": "Get LLM-ready conversation context. Returns pre-formatted text with timestamped messages, AI classification, and business context.",
|
|
1765
|
+
"args": {},
|
|
1766
|
+
"description": "Create a new contact",
|
|
1692
1767
|
"examples": [
|
|
1693
|
-
"<%= config.bin %>
|
|
1694
|
-
"<%= config.bin %>
|
|
1695
|
-
"<%= config.bin %>
|
|
1696
|
-
"<%= config.bin %>
|
|
1768
|
+
"<%= config.bin %> contacts create --phone +15551234567",
|
|
1769
|
+
"<%= config.bin %> contacts create --phone +15551234567 --name \"John Doe\"",
|
|
1770
|
+
"<%= config.bin %> contacts create --phone +15551234567 --name \"John\" --email john@example.com",
|
|
1771
|
+
"<%= config.bin %> contacts create --phone +15551234567 --json"
|
|
1697
1772
|
],
|
|
1698
1773
|
"flags": {
|
|
1699
1774
|
"json": {
|
|
@@ -1709,25 +1784,35 @@
|
|
|
1709
1784
|
"allowNo": false,
|
|
1710
1785
|
"type": "boolean"
|
|
1711
1786
|
},
|
|
1712
|
-
"
|
|
1713
|
-
"char": "
|
|
1714
|
-
"description": "
|
|
1715
|
-
"name": "
|
|
1716
|
-
"
|
|
1787
|
+
"phone": {
|
|
1788
|
+
"char": "p",
|
|
1789
|
+
"description": "Phone number in E.164 format (e.g., +15551234567)",
|
|
1790
|
+
"name": "phone",
|
|
1791
|
+
"required": true,
|
|
1717
1792
|
"hasDynamicHelp": false,
|
|
1718
1793
|
"multiple": false,
|
|
1719
1794
|
"type": "option"
|
|
1720
1795
|
},
|
|
1721
|
-
"
|
|
1722
|
-
"
|
|
1723
|
-
"
|
|
1724
|
-
"
|
|
1725
|
-
"
|
|
1796
|
+
"name": {
|
|
1797
|
+
"char": "n",
|
|
1798
|
+
"description": "Contact name",
|
|
1799
|
+
"name": "name",
|
|
1800
|
+
"hasDynamicHelp": false,
|
|
1801
|
+
"multiple": false,
|
|
1802
|
+
"type": "option"
|
|
1803
|
+
},
|
|
1804
|
+
"email": {
|
|
1805
|
+
"char": "e",
|
|
1806
|
+
"description": "Contact email",
|
|
1807
|
+
"name": "email",
|
|
1808
|
+
"hasDynamicHelp": false,
|
|
1809
|
+
"multiple": false,
|
|
1810
|
+
"type": "option"
|
|
1726
1811
|
}
|
|
1727
1812
|
},
|
|
1728
1813
|
"hasDynamicHelp": false,
|
|
1729
1814
|
"hiddenAliases": [],
|
|
1730
|
-
"id": "
|
|
1815
|
+
"id": "contacts:create",
|
|
1731
1816
|
"pluginAlias": "@sendly/cli",
|
|
1732
1817
|
"pluginName": "@sendly/cli",
|
|
1733
1818
|
"pluginType": "core",
|
|
@@ -1736,25 +1821,23 @@
|
|
|
1736
1821
|
"relativePath": [
|
|
1737
1822
|
"dist",
|
|
1738
1823
|
"commands",
|
|
1739
|
-
"
|
|
1740
|
-
"
|
|
1824
|
+
"contacts",
|
|
1825
|
+
"create.js"
|
|
1741
1826
|
]
|
|
1742
1827
|
},
|
|
1743
|
-
"
|
|
1828
|
+
"contacts:delete": {
|
|
1744
1829
|
"aliases": [],
|
|
1745
1830
|
"args": {
|
|
1746
1831
|
"id": {
|
|
1747
|
-
"description": "
|
|
1832
|
+
"description": "Contact ID to delete",
|
|
1748
1833
|
"name": "id",
|
|
1749
1834
|
"required": true
|
|
1750
1835
|
}
|
|
1751
1836
|
},
|
|
1752
|
-
"description": "
|
|
1837
|
+
"description": "Delete a contact",
|
|
1753
1838
|
"examples": [
|
|
1754
|
-
"<%= config.bin %>
|
|
1755
|
-
"<%= config.bin %>
|
|
1756
|
-
"<%= config.bin %> conversations get conv_abc123 --messages --limit 10",
|
|
1757
|
-
"<%= config.bin %> conversations get conv_abc123 --json"
|
|
1839
|
+
"<%= config.bin %> contacts delete cnt_xxx",
|
|
1840
|
+
"<%= config.bin %> contacts delete cnt_xxx --yes"
|
|
1758
1841
|
],
|
|
1759
1842
|
"flags": {
|
|
1760
1843
|
"json": {
|
|
@@ -1770,26 +1853,17 @@
|
|
|
1770
1853
|
"allowNo": false,
|
|
1771
1854
|
"type": "boolean"
|
|
1772
1855
|
},
|
|
1773
|
-
"
|
|
1774
|
-
"char": "
|
|
1775
|
-
"description": "
|
|
1776
|
-
"name": "
|
|
1856
|
+
"yes": {
|
|
1857
|
+
"char": "y",
|
|
1858
|
+
"description": "Skip confirmation prompt",
|
|
1859
|
+
"name": "yes",
|
|
1777
1860
|
"allowNo": false,
|
|
1778
1861
|
"type": "boolean"
|
|
1779
|
-
},
|
|
1780
|
-
"limit": {
|
|
1781
|
-
"char": "l",
|
|
1782
|
-
"description": "Number of messages to include (requires --messages)",
|
|
1783
|
-
"name": "limit",
|
|
1784
|
-
"default": 50,
|
|
1785
|
-
"hasDynamicHelp": false,
|
|
1786
|
-
"multiple": false,
|
|
1787
|
-
"type": "option"
|
|
1788
1862
|
}
|
|
1789
1863
|
},
|
|
1790
1864
|
"hasDynamicHelp": false,
|
|
1791
1865
|
"hiddenAliases": [],
|
|
1792
|
-
"id": "
|
|
1866
|
+
"id": "contacts:delete",
|
|
1793
1867
|
"pluginAlias": "@sendly/cli",
|
|
1794
1868
|
"pluginName": "@sendly/cli",
|
|
1795
1869
|
"pluginType": "core",
|
|
@@ -1798,17 +1872,23 @@
|
|
|
1798
1872
|
"relativePath": [
|
|
1799
1873
|
"dist",
|
|
1800
1874
|
"commands",
|
|
1801
|
-
"
|
|
1802
|
-
"
|
|
1875
|
+
"contacts",
|
|
1876
|
+
"delete.js"
|
|
1803
1877
|
]
|
|
1804
1878
|
},
|
|
1805
|
-
"
|
|
1879
|
+
"contacts:get": {
|
|
1806
1880
|
"aliases": [],
|
|
1807
|
-
"args": {
|
|
1808
|
-
|
|
1881
|
+
"args": {
|
|
1882
|
+
"id": {
|
|
1883
|
+
"description": "Contact ID",
|
|
1884
|
+
"name": "id",
|
|
1885
|
+
"required": true
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
"description": "Get contact details",
|
|
1809
1889
|
"examples": [
|
|
1810
|
-
"<%= config.bin %>
|
|
1811
|
-
"<%= config.bin %>
|
|
1890
|
+
"<%= config.bin %> contacts get cnt_xxx",
|
|
1891
|
+
"<%= config.bin %> contacts get cnt_xxx --json"
|
|
1812
1892
|
],
|
|
1813
1893
|
"flags": {
|
|
1814
1894
|
"json": {
|
|
@@ -1827,7 +1907,7 @@
|
|
|
1827
1907
|
},
|
|
1828
1908
|
"hasDynamicHelp": false,
|
|
1829
1909
|
"hiddenAliases": [],
|
|
1830
|
-
"id": "
|
|
1910
|
+
"id": "contacts:get",
|
|
1831
1911
|
"pluginAlias": "@sendly/cli",
|
|
1832
1912
|
"pluginName": "@sendly/cli",
|
|
1833
1913
|
"pluginType": "core",
|
|
@@ -1836,19 +1916,24 @@
|
|
|
1836
1916
|
"relativePath": [
|
|
1837
1917
|
"dist",
|
|
1838
1918
|
"commands",
|
|
1839
|
-
"
|
|
1840
|
-
"
|
|
1919
|
+
"contacts",
|
|
1920
|
+
"get.js"
|
|
1841
1921
|
]
|
|
1842
1922
|
},
|
|
1843
|
-
"
|
|
1923
|
+
"contacts:import": {
|
|
1844
1924
|
"aliases": [],
|
|
1845
|
-
"args": {
|
|
1846
|
-
|
|
1925
|
+
"args": {
|
|
1926
|
+
"file": {
|
|
1927
|
+
"description": "Path to CSV file (columns: phone, name, email)",
|
|
1928
|
+
"name": "file",
|
|
1929
|
+
"required": true
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"description": "Import contacts from a CSV file",
|
|
1847
1933
|
"examples": [
|
|
1848
|
-
"<%= config.bin %>
|
|
1849
|
-
"<%= config.bin %>
|
|
1850
|
-
"<%= config.bin %>
|
|
1851
|
-
"<%= config.bin %> conversations list --json"
|
|
1934
|
+
"<%= config.bin %> contacts import contacts.csv",
|
|
1935
|
+
"<%= config.bin %> contacts import contacts.csv --list lst_xxx",
|
|
1936
|
+
"<%= config.bin %> contacts import contacts.csv --list lst_xxx --json"
|
|
1852
1937
|
],
|
|
1853
1938
|
"flags": {
|
|
1854
1939
|
"json": {
|
|
@@ -1864,38 +1949,18 @@
|
|
|
1864
1949
|
"allowNo": false,
|
|
1865
1950
|
"type": "boolean"
|
|
1866
1951
|
},
|
|
1867
|
-
"
|
|
1952
|
+
"list": {
|
|
1868
1953
|
"char": "l",
|
|
1869
|
-
"description": "
|
|
1870
|
-
"name": "
|
|
1871
|
-
"default": 20,
|
|
1954
|
+
"description": "Contact list ID to add imported contacts to",
|
|
1955
|
+
"name": "list",
|
|
1872
1956
|
"hasDynamicHelp": false,
|
|
1873
1957
|
"multiple": false,
|
|
1874
1958
|
"type": "option"
|
|
1875
|
-
},
|
|
1876
|
-
"offset": {
|
|
1877
|
-
"description": "Offset from start",
|
|
1878
|
-
"name": "offset",
|
|
1879
|
-
"hasDynamicHelp": false,
|
|
1880
|
-
"multiple": false,
|
|
1881
|
-
"type": "option"
|
|
1882
|
-
},
|
|
1883
|
-
"status": {
|
|
1884
|
-
"char": "s",
|
|
1885
|
-
"description": "Filter by status (active, closed)",
|
|
1886
|
-
"name": "status",
|
|
1887
|
-
"hasDynamicHelp": false,
|
|
1888
|
-
"multiple": false,
|
|
1889
|
-
"options": [
|
|
1890
|
-
"active",
|
|
1891
|
-
"closed"
|
|
1892
|
-
],
|
|
1893
|
-
"type": "option"
|
|
1894
1959
|
}
|
|
1895
1960
|
},
|
|
1896
1961
|
"hasDynamicHelp": false,
|
|
1897
1962
|
"hiddenAliases": [],
|
|
1898
|
-
"id": "
|
|
1963
|
+
"id": "contacts:import",
|
|
1899
1964
|
"pluginAlias": "@sendly/cli",
|
|
1900
1965
|
"pluginName": "@sendly/cli",
|
|
1901
1966
|
"pluginType": "core",
|
|
@@ -1904,23 +1969,20 @@
|
|
|
1904
1969
|
"relativePath": [
|
|
1905
1970
|
"dist",
|
|
1906
1971
|
"commands",
|
|
1907
|
-
"
|
|
1908
|
-
"
|
|
1972
|
+
"contacts",
|
|
1973
|
+
"import.js"
|
|
1909
1974
|
]
|
|
1910
1975
|
},
|
|
1911
|
-
"
|
|
1976
|
+
"contacts:list": {
|
|
1912
1977
|
"aliases": [],
|
|
1913
|
-
"args": {
|
|
1914
|
-
|
|
1915
|
-
"description": "Conversation ID",
|
|
1916
|
-
"name": "id",
|
|
1917
|
-
"required": true
|
|
1918
|
-
}
|
|
1919
|
-
},
|
|
1920
|
-
"description": "Mark a conversation as read",
|
|
1978
|
+
"args": {},
|
|
1979
|
+
"description": "List contacts",
|
|
1921
1980
|
"examples": [
|
|
1922
|
-
"<%= config.bin %>
|
|
1923
|
-
"<%= config.bin %>
|
|
1981
|
+
"<%= config.bin %> contacts list",
|
|
1982
|
+
"<%= config.bin %> contacts list --search john",
|
|
1983
|
+
"<%= config.bin %> contacts list --list lst_xxx",
|
|
1984
|
+
"<%= config.bin %> contacts list --limit 50",
|
|
1985
|
+
"<%= config.bin %> contacts list --json"
|
|
1924
1986
|
],
|
|
1925
1987
|
"flags": {
|
|
1926
1988
|
"json": {
|
|
@@ -1935,104 +1997,43 @@
|
|
|
1935
1997
|
"name": "quiet",
|
|
1936
1998
|
"allowNo": false,
|
|
1937
1999
|
"type": "boolean"
|
|
1938
|
-
}
|
|
1939
|
-
},
|
|
1940
|
-
"hasDynamicHelp": false,
|
|
1941
|
-
"hiddenAliases": [],
|
|
1942
|
-
"id": "conversations:mark-read",
|
|
1943
|
-
"pluginAlias": "@sendly/cli",
|
|
1944
|
-
"pluginName": "@sendly/cli",
|
|
1945
|
-
"pluginType": "core",
|
|
1946
|
-
"strict": true,
|
|
1947
|
-
"isESM": true,
|
|
1948
|
-
"relativePath": [
|
|
1949
|
-
"dist",
|
|
1950
|
-
"commands",
|
|
1951
|
-
"conversations",
|
|
1952
|
-
"mark-read.js"
|
|
1953
|
-
]
|
|
1954
|
-
},
|
|
1955
|
-
"conversations:reopen": {
|
|
1956
|
-
"aliases": [],
|
|
1957
|
-
"args": {
|
|
1958
|
-
"id": {
|
|
1959
|
-
"description": "Conversation ID",
|
|
1960
|
-
"name": "id",
|
|
1961
|
-
"required": true
|
|
1962
|
-
}
|
|
1963
|
-
},
|
|
1964
|
-
"description": "Reopen a closed conversation",
|
|
1965
|
-
"examples": [
|
|
1966
|
-
"<%= config.bin %> conversations reopen conv_abc123",
|
|
1967
|
-
"<%= config.bin %> conversations reopen conv_abc123 --json"
|
|
1968
|
-
],
|
|
1969
|
-
"flags": {
|
|
1970
|
-
"json": {
|
|
1971
|
-
"description": "Output in JSON format",
|
|
1972
|
-
"name": "json",
|
|
1973
|
-
"allowNo": false,
|
|
1974
|
-
"type": "boolean"
|
|
1975
2000
|
},
|
|
1976
|
-
"
|
|
1977
|
-
"char": "
|
|
1978
|
-
"description": "
|
|
1979
|
-
"name": "
|
|
1980
|
-
"
|
|
1981
|
-
"
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
"hasDynamicHelp": false,
|
|
1985
|
-
"hiddenAliases": [],
|
|
1986
|
-
"id": "conversations:reopen",
|
|
1987
|
-
"pluginAlias": "@sendly/cli",
|
|
1988
|
-
"pluginName": "@sendly/cli",
|
|
1989
|
-
"pluginType": "core",
|
|
1990
|
-
"strict": true,
|
|
1991
|
-
"isESM": true,
|
|
1992
|
-
"relativePath": [
|
|
1993
|
-
"dist",
|
|
1994
|
-
"commands",
|
|
1995
|
-
"conversations",
|
|
1996
|
-
"reopen.js"
|
|
1997
|
-
]
|
|
1998
|
-
},
|
|
1999
|
-
"conversations:reply": {
|
|
2000
|
-
"aliases": [],
|
|
2001
|
-
"args": {
|
|
2002
|
-
"id": {
|
|
2003
|
-
"description": "Conversation ID",
|
|
2004
|
-
"name": "id",
|
|
2005
|
-
"required": true
|
|
2001
|
+
"limit": {
|
|
2002
|
+
"char": "l",
|
|
2003
|
+
"description": "Number of contacts to show",
|
|
2004
|
+
"name": "limit",
|
|
2005
|
+
"default": 50,
|
|
2006
|
+
"hasDynamicHelp": false,
|
|
2007
|
+
"multiple": false,
|
|
2008
|
+
"type": "option"
|
|
2006
2009
|
},
|
|
2007
|
-
"
|
|
2008
|
-
"description": "
|
|
2009
|
-
"name": "
|
|
2010
|
-
"
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
"examples": [
|
|
2015
|
-
"<%= config.bin %> conversations reply conv_abc123 \"Thanks for reaching out!\"",
|
|
2016
|
-
"<%= config.bin %> conversations reply conv_abc123 \"Got it\" --json"
|
|
2017
|
-
],
|
|
2018
|
-
"flags": {
|
|
2019
|
-
"json": {
|
|
2020
|
-
"description": "Output in JSON format",
|
|
2021
|
-
"name": "json",
|
|
2022
|
-
"allowNo": false,
|
|
2023
|
-
"type": "boolean"
|
|
2010
|
+
"offset": {
|
|
2011
|
+
"description": "Offset for pagination",
|
|
2012
|
+
"name": "offset",
|
|
2013
|
+
"default": 0,
|
|
2014
|
+
"hasDynamicHelp": false,
|
|
2015
|
+
"multiple": false,
|
|
2016
|
+
"type": "option"
|
|
2024
2017
|
},
|
|
2025
|
-
"
|
|
2026
|
-
"char": "
|
|
2027
|
-
"description": "
|
|
2028
|
-
"name": "
|
|
2029
|
-
"
|
|
2030
|
-
"
|
|
2018
|
+
"search": {
|
|
2019
|
+
"char": "s",
|
|
2020
|
+
"description": "Search by name, phone, or email",
|
|
2021
|
+
"name": "search",
|
|
2022
|
+
"hasDynamicHelp": false,
|
|
2023
|
+
"multiple": false,
|
|
2024
|
+
"type": "option"
|
|
2025
|
+
},
|
|
2026
|
+
"list": {
|
|
2027
|
+
"description": "Filter by contact list ID",
|
|
2028
|
+
"name": "list",
|
|
2029
|
+
"hasDynamicHelp": false,
|
|
2030
|
+
"multiple": false,
|
|
2031
|
+
"type": "option"
|
|
2031
2032
|
}
|
|
2032
2033
|
},
|
|
2033
2034
|
"hasDynamicHelp": false,
|
|
2034
2035
|
"hiddenAliases": [],
|
|
2035
|
-
"id": "
|
|
2036
|
+
"id": "contacts:list",
|
|
2036
2037
|
"pluginAlias": "@sendly/cli",
|
|
2037
2038
|
"pluginName": "@sendly/cli",
|
|
2038
2039
|
"pluginType": "core",
|
|
@@ -2041,23 +2042,22 @@
|
|
|
2041
2042
|
"relativePath": [
|
|
2042
2043
|
"dist",
|
|
2043
2044
|
"commands",
|
|
2044
|
-
"
|
|
2045
|
-
"
|
|
2045
|
+
"contacts",
|
|
2046
|
+
"list.js"
|
|
2046
2047
|
]
|
|
2047
2048
|
},
|
|
2048
|
-
"
|
|
2049
|
+
"contacts:mark-valid": {
|
|
2049
2050
|
"aliases": [],
|
|
2050
2051
|
"args": {
|
|
2051
2052
|
"id": {
|
|
2052
|
-
"description": "
|
|
2053
|
+
"description": "Contact ID to clear the invalid flag on",
|
|
2053
2054
|
"name": "id",
|
|
2054
2055
|
"required": true
|
|
2055
2056
|
}
|
|
2056
2057
|
},
|
|
2057
|
-
"description": "
|
|
2058
|
+
"description": "Clear the invalid flag on a contact so future campaigns include it again. Use when you disagree with an auto-exclusion (e.g. the recipient ported from a landline to mobile).",
|
|
2058
2059
|
"examples": [
|
|
2059
|
-
"<%= config.bin %>
|
|
2060
|
-
"<%= config.bin %> conversations suggest-replies conv_abc123 --json"
|
|
2060
|
+
"<%= config.bin %> contacts mark-valid cnt_xxx"
|
|
2061
2061
|
],
|
|
2062
2062
|
"flags": {
|
|
2063
2063
|
"json": {
|
|
@@ -2076,7 +2076,7 @@
|
|
|
2076
2076
|
},
|
|
2077
2077
|
"hasDynamicHelp": false,
|
|
2078
2078
|
"hiddenAliases": [],
|
|
2079
|
-
"id": "
|
|
2079
|
+
"id": "contacts:mark-valid",
|
|
2080
2080
|
"pluginAlias": "@sendly/cli",
|
|
2081
2081
|
"pluginName": "@sendly/cli",
|
|
2082
2082
|
"pluginType": "core",
|
|
@@ -2085,24 +2085,24 @@
|
|
|
2085
2085
|
"relativePath": [
|
|
2086
2086
|
"dist",
|
|
2087
2087
|
"commands",
|
|
2088
|
-
"
|
|
2089
|
-
"
|
|
2088
|
+
"contacts",
|
|
2089
|
+
"mark-valid.js"
|
|
2090
2090
|
]
|
|
2091
2091
|
},
|
|
2092
|
-
"
|
|
2092
|
+
"contacts:update": {
|
|
2093
2093
|
"aliases": [],
|
|
2094
2094
|
"args": {
|
|
2095
2095
|
"id": {
|
|
2096
|
-
"description": "
|
|
2096
|
+
"description": "Contact ID",
|
|
2097
2097
|
"name": "id",
|
|
2098
2098
|
"required": true
|
|
2099
2099
|
}
|
|
2100
2100
|
},
|
|
2101
|
-
"description": "Update a
|
|
2101
|
+
"description": "Update a contact",
|
|
2102
2102
|
"examples": [
|
|
2103
|
-
"<%= config.bin %>
|
|
2104
|
-
"<%= config.bin %>
|
|
2105
|
-
"<%= config.bin %>
|
|
2103
|
+
"<%= config.bin %> contacts update cnt_xxx --name \"John Doe\"",
|
|
2104
|
+
"<%= config.bin %> contacts update cnt_xxx --email john@example.com",
|
|
2105
|
+
"<%= config.bin %> contacts update cnt_xxx --name \"John\" --email john@example.com"
|
|
2106
2106
|
],
|
|
2107
2107
|
"flags": {
|
|
2108
2108
|
"json": {
|
|
@@ -2118,18 +2118,18 @@
|
|
|
2118
2118
|
"allowNo": false,
|
|
2119
2119
|
"type": "boolean"
|
|
2120
2120
|
},
|
|
2121
|
-
"
|
|
2122
|
-
"char": "
|
|
2123
|
-
"description": "
|
|
2124
|
-
"name": "
|
|
2121
|
+
"name": {
|
|
2122
|
+
"char": "n",
|
|
2123
|
+
"description": "Contact name",
|
|
2124
|
+
"name": "name",
|
|
2125
2125
|
"hasDynamicHelp": false,
|
|
2126
2126
|
"multiple": false,
|
|
2127
2127
|
"type": "option"
|
|
2128
2128
|
},
|
|
2129
|
-
"
|
|
2130
|
-
"char": "
|
|
2131
|
-
"description": "
|
|
2132
|
-
"name": "
|
|
2129
|
+
"email": {
|
|
2130
|
+
"char": "e",
|
|
2131
|
+
"description": "Contact email",
|
|
2132
|
+
"name": "email",
|
|
2133
2133
|
"hasDynamicHelp": false,
|
|
2134
2134
|
"multiple": false,
|
|
2135
2135
|
"type": "option"
|
|
@@ -2137,7 +2137,7 @@
|
|
|
2137
2137
|
},
|
|
2138
2138
|
"hasDynamicHelp": false,
|
|
2139
2139
|
"hiddenAliases": [],
|
|
2140
|
-
"id": "
|
|
2140
|
+
"id": "contacts:update",
|
|
2141
2141
|
"pluginAlias": "@sendly/cli",
|
|
2142
2142
|
"pluginName": "@sendly/cli",
|
|
2143
2143
|
"pluginType": "core",
|
|
@@ -2146,7 +2146,7 @@
|
|
|
2146
2146
|
"relativePath": [
|
|
2147
2147
|
"dist",
|
|
2148
2148
|
"commands",
|
|
2149
|
-
"
|
|
2149
|
+
"contacts",
|
|
2150
2150
|
"update.js"
|
|
2151
2151
|
]
|
|
2152
2152
|
},
|
|
@@ -3723,14 +3723,14 @@
|
|
|
3723
3723
|
"tail.js"
|
|
3724
3724
|
]
|
|
3725
3725
|
},
|
|
3726
|
-
"
|
|
3726
|
+
"numbers:buy": {
|
|
3727
3727
|
"aliases": [],
|
|
3728
3728
|
"args": {},
|
|
3729
|
-
"description": "
|
|
3729
|
+
"description": "Buy a phone number. Handles document/payment steps interactively when a country requires them.",
|
|
3730
3730
|
"examples": [
|
|
3731
|
-
"<%= config.bin %>
|
|
3732
|
-
"<%= config.bin %>
|
|
3733
|
-
"<%= config.bin %>
|
|
3731
|
+
"<%= config.bin %> numbers buy --country GB --type mobile",
|
|
3732
|
+
"<%= config.bin %> numbers buy --country US --type local --number +15551234567",
|
|
3733
|
+
"<%= config.bin %> numbers buy --country GB --type mobile --json"
|
|
3734
3734
|
],
|
|
3735
3735
|
"flags": {
|
|
3736
3736
|
"json": {
|
|
@@ -3746,45 +3746,28 @@
|
|
|
3746
3746
|
"allowNo": false,
|
|
3747
3747
|
"type": "boolean"
|
|
3748
3748
|
},
|
|
3749
|
-
"
|
|
3750
|
-
"
|
|
3751
|
-
"
|
|
3749
|
+
"country": {
|
|
3750
|
+
"char": "c",
|
|
3751
|
+
"description": "ISO country code (e.g. GB, US)",
|
|
3752
|
+
"name": "country",
|
|
3752
3753
|
"required": true,
|
|
3753
3754
|
"hasDynamicHelp": false,
|
|
3754
3755
|
"multiple": false,
|
|
3755
3756
|
"type": "option"
|
|
3756
3757
|
},
|
|
3757
|
-
"
|
|
3758
|
-
"
|
|
3759
|
-
"
|
|
3760
|
-
"
|
|
3761
|
-
"
|
|
3762
|
-
"type": "option"
|
|
3763
|
-
},
|
|
3764
|
-
"sentiment": {
|
|
3765
|
-
"description": "Match sentiment (positive, neutral, negative)",
|
|
3766
|
-
"name": "sentiment",
|
|
3767
|
-
"hasDynamicHelp": false,
|
|
3768
|
-
"multiple": true,
|
|
3769
|
-
"type": "option"
|
|
3770
|
-
},
|
|
3771
|
-
"label": {
|
|
3772
|
-
"description": "Label ID to apply when rule matches",
|
|
3773
|
-
"name": "label",
|
|
3758
|
+
"type": {
|
|
3759
|
+
"char": "t",
|
|
3760
|
+
"description": "Number type (e.g. mobile, local, toll-free)",
|
|
3761
|
+
"name": "type",
|
|
3762
|
+
"required": true,
|
|
3774
3763
|
"hasDynamicHelp": false,
|
|
3775
|
-
"multiple":
|
|
3764
|
+
"multiple": false,
|
|
3776
3765
|
"type": "option"
|
|
3777
3766
|
},
|
|
3778
|
-
"
|
|
3779
|
-
"
|
|
3780
|
-
"
|
|
3781
|
-
"
|
|
3782
|
-
"type": "boolean"
|
|
3783
|
-
},
|
|
3784
|
-
"priority": {
|
|
3785
|
-
"description": "Priority (lower runs first)",
|
|
3786
|
-
"name": "priority",
|
|
3787
|
-
"default": 0,
|
|
3767
|
+
"number": {
|
|
3768
|
+
"char": "n",
|
|
3769
|
+
"description": "Specific number to buy in E.164 format (skips selection)",
|
|
3770
|
+
"name": "number",
|
|
3788
3771
|
"hasDynamicHelp": false,
|
|
3789
3772
|
"multiple": false,
|
|
3790
3773
|
"type": "option"
|
|
@@ -3792,7 +3775,191 @@
|
|
|
3792
3775
|
},
|
|
3793
3776
|
"hasDynamicHelp": false,
|
|
3794
3777
|
"hiddenAliases": [],
|
|
3795
|
-
"id": "
|
|
3778
|
+
"id": "numbers:buy",
|
|
3779
|
+
"pluginAlias": "@sendly/cli",
|
|
3780
|
+
"pluginName": "@sendly/cli",
|
|
3781
|
+
"pluginType": "core",
|
|
3782
|
+
"strict": true,
|
|
3783
|
+
"isESM": true,
|
|
3784
|
+
"relativePath": [
|
|
3785
|
+
"dist",
|
|
3786
|
+
"commands",
|
|
3787
|
+
"numbers",
|
|
3788
|
+
"buy.js"
|
|
3789
|
+
]
|
|
3790
|
+
},
|
|
3791
|
+
"numbers:list": {
|
|
3792
|
+
"aliases": [],
|
|
3793
|
+
"args": {},
|
|
3794
|
+
"description": "List the phone numbers on your account",
|
|
3795
|
+
"examples": [
|
|
3796
|
+
"<%= config.bin %> numbers list",
|
|
3797
|
+
"<%= config.bin %> numbers list --json"
|
|
3798
|
+
],
|
|
3799
|
+
"flags": {
|
|
3800
|
+
"json": {
|
|
3801
|
+
"description": "Output in JSON format",
|
|
3802
|
+
"name": "json",
|
|
3803
|
+
"allowNo": false,
|
|
3804
|
+
"type": "boolean"
|
|
3805
|
+
},
|
|
3806
|
+
"quiet": {
|
|
3807
|
+
"char": "q",
|
|
3808
|
+
"description": "Minimal output",
|
|
3809
|
+
"name": "quiet",
|
|
3810
|
+
"allowNo": false,
|
|
3811
|
+
"type": "boolean"
|
|
3812
|
+
}
|
|
3813
|
+
},
|
|
3814
|
+
"hasDynamicHelp": false,
|
|
3815
|
+
"hiddenAliases": [],
|
|
3816
|
+
"id": "numbers:list",
|
|
3817
|
+
"pluginAlias": "@sendly/cli",
|
|
3818
|
+
"pluginName": "@sendly/cli",
|
|
3819
|
+
"pluginType": "core",
|
|
3820
|
+
"strict": true,
|
|
3821
|
+
"isESM": true,
|
|
3822
|
+
"relativePath": [
|
|
3823
|
+
"dist",
|
|
3824
|
+
"commands",
|
|
3825
|
+
"numbers",
|
|
3826
|
+
"list.js"
|
|
3827
|
+
]
|
|
3828
|
+
},
|
|
3829
|
+
"numbers:search": {
|
|
3830
|
+
"aliases": [],
|
|
3831
|
+
"args": {},
|
|
3832
|
+
"description": "Search for available phone numbers to buy in a country",
|
|
3833
|
+
"examples": [
|
|
3834
|
+
"<%= config.bin %> numbers search --country GB --type mobile",
|
|
3835
|
+
"<%= config.bin %> numbers search --country US --type local --contains 555",
|
|
3836
|
+
"<%= config.bin %> numbers search --country GB --type mobile --json"
|
|
3837
|
+
],
|
|
3838
|
+
"flags": {
|
|
3839
|
+
"json": {
|
|
3840
|
+
"description": "Output in JSON format",
|
|
3841
|
+
"name": "json",
|
|
3842
|
+
"allowNo": false,
|
|
3843
|
+
"type": "boolean"
|
|
3844
|
+
},
|
|
3845
|
+
"quiet": {
|
|
3846
|
+
"char": "q",
|
|
3847
|
+
"description": "Minimal output",
|
|
3848
|
+
"name": "quiet",
|
|
3849
|
+
"allowNo": false,
|
|
3850
|
+
"type": "boolean"
|
|
3851
|
+
},
|
|
3852
|
+
"country": {
|
|
3853
|
+
"char": "c",
|
|
3854
|
+
"description": "ISO country code (e.g. GB, US)",
|
|
3855
|
+
"name": "country",
|
|
3856
|
+
"required": true,
|
|
3857
|
+
"hasDynamicHelp": false,
|
|
3858
|
+
"multiple": false,
|
|
3859
|
+
"type": "option"
|
|
3860
|
+
},
|
|
3861
|
+
"type": {
|
|
3862
|
+
"char": "t",
|
|
3863
|
+
"description": "Number type (e.g. mobile, local, toll-free)",
|
|
3864
|
+
"name": "type",
|
|
3865
|
+
"required": true,
|
|
3866
|
+
"hasDynamicHelp": false,
|
|
3867
|
+
"multiple": false,
|
|
3868
|
+
"type": "option"
|
|
3869
|
+
},
|
|
3870
|
+
"contains": {
|
|
3871
|
+
"description": "Only return numbers containing this digit pattern",
|
|
3872
|
+
"name": "contains",
|
|
3873
|
+
"hasDynamicHelp": false,
|
|
3874
|
+
"multiple": false,
|
|
3875
|
+
"type": "option"
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
"hasDynamicHelp": false,
|
|
3879
|
+
"hiddenAliases": [],
|
|
3880
|
+
"id": "numbers:search",
|
|
3881
|
+
"pluginAlias": "@sendly/cli",
|
|
3882
|
+
"pluginName": "@sendly/cli",
|
|
3883
|
+
"pluginType": "core",
|
|
3884
|
+
"strict": true,
|
|
3885
|
+
"isESM": true,
|
|
3886
|
+
"relativePath": [
|
|
3887
|
+
"dist",
|
|
3888
|
+
"commands",
|
|
3889
|
+
"numbers",
|
|
3890
|
+
"search.js"
|
|
3891
|
+
]
|
|
3892
|
+
},
|
|
3893
|
+
"rules:create": {
|
|
3894
|
+
"aliases": [],
|
|
3895
|
+
"args": {},
|
|
3896
|
+
"description": "Create an auto-labeling rule",
|
|
3897
|
+
"examples": [
|
|
3898
|
+
"<%= config.bin %> rules create --name \"Flag complaints\" --intent complaint --label label_abc",
|
|
3899
|
+
"<%= config.bin %> rules create --name \"Close opt-outs\" --intent opt_out --close",
|
|
3900
|
+
"<%= config.bin %> rules create --name \"Negative\" --sentiment negative --label label_xyz --priority 1"
|
|
3901
|
+
],
|
|
3902
|
+
"flags": {
|
|
3903
|
+
"json": {
|
|
3904
|
+
"description": "Output in JSON format",
|
|
3905
|
+
"name": "json",
|
|
3906
|
+
"allowNo": false,
|
|
3907
|
+
"type": "boolean"
|
|
3908
|
+
},
|
|
3909
|
+
"quiet": {
|
|
3910
|
+
"char": "q",
|
|
3911
|
+
"description": "Minimal output",
|
|
3912
|
+
"name": "quiet",
|
|
3913
|
+
"allowNo": false,
|
|
3914
|
+
"type": "boolean"
|
|
3915
|
+
},
|
|
3916
|
+
"name": {
|
|
3917
|
+
"description": "Rule name",
|
|
3918
|
+
"name": "name",
|
|
3919
|
+
"required": true,
|
|
3920
|
+
"hasDynamicHelp": false,
|
|
3921
|
+
"multiple": false,
|
|
3922
|
+
"type": "option"
|
|
3923
|
+
},
|
|
3924
|
+
"intent": {
|
|
3925
|
+
"description": "Match intent (question, appointment, complaint, order_status, feedback, opt_out, greeting, confirmation, other)",
|
|
3926
|
+
"name": "intent",
|
|
3927
|
+
"hasDynamicHelp": false,
|
|
3928
|
+
"multiple": true,
|
|
3929
|
+
"type": "option"
|
|
3930
|
+
},
|
|
3931
|
+
"sentiment": {
|
|
3932
|
+
"description": "Match sentiment (positive, neutral, negative)",
|
|
3933
|
+
"name": "sentiment",
|
|
3934
|
+
"hasDynamicHelp": false,
|
|
3935
|
+
"multiple": true,
|
|
3936
|
+
"type": "option"
|
|
3937
|
+
},
|
|
3938
|
+
"label": {
|
|
3939
|
+
"description": "Label ID to apply when rule matches",
|
|
3940
|
+
"name": "label",
|
|
3941
|
+
"hasDynamicHelp": false,
|
|
3942
|
+
"multiple": true,
|
|
3943
|
+
"type": "option"
|
|
3944
|
+
},
|
|
3945
|
+
"close": {
|
|
3946
|
+
"description": "Close the conversation when rule matches",
|
|
3947
|
+
"name": "close",
|
|
3948
|
+
"allowNo": false,
|
|
3949
|
+
"type": "boolean"
|
|
3950
|
+
},
|
|
3951
|
+
"priority": {
|
|
3952
|
+
"description": "Priority (lower runs first)",
|
|
3953
|
+
"name": "priority",
|
|
3954
|
+
"default": 0,
|
|
3955
|
+
"hasDynamicHelp": false,
|
|
3956
|
+
"multiple": false,
|
|
3957
|
+
"type": "option"
|
|
3958
|
+
}
|
|
3959
|
+
},
|
|
3960
|
+
"hasDynamicHelp": false,
|
|
3961
|
+
"hiddenAliases": [],
|
|
3962
|
+
"id": "rules:create",
|
|
3796
3963
|
"pluginAlias": "@sendly/cli",
|
|
3797
3964
|
"pluginName": "@sendly/cli",
|
|
3798
3965
|
"pluginType": "core",
|
|
@@ -6795,19 +6962,13 @@
|
|
|
6795
6962
|
"overview.js"
|
|
6796
6963
|
]
|
|
6797
6964
|
},
|
|
6798
|
-
"
|
|
6965
|
+
"business-upgrade:cancel": {
|
|
6799
6966
|
"aliases": [],
|
|
6800
|
-
"args": {
|
|
6801
|
-
|
|
6802
|
-
"description": "Workspace ID",
|
|
6803
|
-
"name": "workspaceId",
|
|
6804
|
-
"required": true
|
|
6805
|
-
}
|
|
6806
|
-
},
|
|
6807
|
-
"description": "Create an API key for an enterprise workspace",
|
|
6967
|
+
"args": {},
|
|
6968
|
+
"description": "Cancel a pending business entity upgrade. Releases the reserved toll-free number, deletes the new messaging profile + EIN document. Current toll-free number unaffected. Idempotent.",
|
|
6808
6969
|
"examples": [
|
|
6809
|
-
"<%= config.bin %>
|
|
6810
|
-
"<%= config.bin %>
|
|
6970
|
+
"<%= config.bin %> business-upgrade cancel --workspace ws_abc",
|
|
6971
|
+
"<%= config.bin %> business-upgrade cancel --workspace ws_abc --yes"
|
|
6811
6972
|
],
|
|
6812
6973
|
"flags": {
|
|
6813
6974
|
"json": {
|
|
@@ -6823,32 +6984,24 @@
|
|
|
6823
6984
|
"allowNo": false,
|
|
6824
6985
|
"type": "boolean"
|
|
6825
6986
|
},
|
|
6826
|
-
"
|
|
6827
|
-
"
|
|
6828
|
-
"description": "Name for the API key",
|
|
6829
|
-
"name": "name",
|
|
6987
|
+
"workspace": {
|
|
6988
|
+
"name": "workspace",
|
|
6830
6989
|
"required": true,
|
|
6831
6990
|
"hasDynamicHelp": false,
|
|
6832
6991
|
"multiple": false,
|
|
6833
6992
|
"type": "option"
|
|
6834
6993
|
},
|
|
6835
|
-
"
|
|
6836
|
-
"char": "
|
|
6837
|
-
"description": "
|
|
6838
|
-
"name": "
|
|
6839
|
-
"
|
|
6840
|
-
"
|
|
6841
|
-
"multiple": false,
|
|
6842
|
-
"options": [
|
|
6843
|
-
"test",
|
|
6844
|
-
"live"
|
|
6845
|
-
],
|
|
6846
|
-
"type": "option"
|
|
6994
|
+
"yes": {
|
|
6995
|
+
"char": "y",
|
|
6996
|
+
"description": "Skip the confirmation prompt",
|
|
6997
|
+
"name": "yes",
|
|
6998
|
+
"allowNo": false,
|
|
6999
|
+
"type": "boolean"
|
|
6847
7000
|
}
|
|
6848
7001
|
},
|
|
6849
7002
|
"hasDynamicHelp": false,
|
|
6850
7003
|
"hiddenAliases": [],
|
|
6851
|
-
"id": "
|
|
7004
|
+
"id": "business-upgrade:cancel",
|
|
6852
7005
|
"pluginAlias": "@sendly/cli",
|
|
6853
7006
|
"pluginName": "@sendly/cli",
|
|
6854
7007
|
"pluginType": "core",
|
|
@@ -6857,24 +7010,17 @@
|
|
|
6857
7010
|
"relativePath": [
|
|
6858
7011
|
"dist",
|
|
6859
7012
|
"commands",
|
|
6860
|
-
"
|
|
6861
|
-
"
|
|
6862
|
-
"create.js"
|
|
7013
|
+
"business-upgrade",
|
|
7014
|
+
"cancel.js"
|
|
6863
7015
|
]
|
|
6864
7016
|
},
|
|
6865
|
-
"
|
|
7017
|
+
"business-upgrade:disposition": {
|
|
6866
7018
|
"aliases": [],
|
|
6867
|
-
"args": {
|
|
6868
|
-
|
|
6869
|
-
"description": "Workspace ID",
|
|
6870
|
-
"name": "workspaceId",
|
|
6871
|
-
"required": true
|
|
6872
|
-
}
|
|
6873
|
-
},
|
|
6874
|
-
"description": "List API keys for an enterprise workspace",
|
|
7019
|
+
"args": {},
|
|
7020
|
+
"description": "Choose what happens to the old toll-free number after a successful business entity upgrade — either move it to another workspace you own, or release it back to the carrier pool",
|
|
6875
7021
|
"examples": [
|
|
6876
|
-
"<%= config.bin %>
|
|
6877
|
-
"<%= config.bin %>
|
|
7022
|
+
"<%= config.bin %> business-upgrade disposition --workspace ws_abc --disposition moved --target-workspace ws_xyz",
|
|
7023
|
+
"<%= config.bin %> business-upgrade disposition --workspace ws_abc --disposition released"
|
|
6878
7024
|
],
|
|
6879
7025
|
"flags": {
|
|
6880
7026
|
"json": {
|
|
@@ -6889,11 +7035,38 @@
|
|
|
6889
7035
|
"name": "quiet",
|
|
6890
7036
|
"allowNo": false,
|
|
6891
7037
|
"type": "boolean"
|
|
7038
|
+
},
|
|
7039
|
+
"workspace": {
|
|
7040
|
+
"description": "Workspace whose upgrade was just approved",
|
|
7041
|
+
"name": "workspace",
|
|
7042
|
+
"required": true,
|
|
7043
|
+
"hasDynamicHelp": false,
|
|
7044
|
+
"multiple": false,
|
|
7045
|
+
"type": "option"
|
|
7046
|
+
},
|
|
7047
|
+
"disposition": {
|
|
7048
|
+
"description": "What to do with the old toll-free number",
|
|
7049
|
+
"name": "disposition",
|
|
7050
|
+
"required": true,
|
|
7051
|
+
"hasDynamicHelp": false,
|
|
7052
|
+
"multiple": false,
|
|
7053
|
+
"options": [
|
|
7054
|
+
"moved",
|
|
7055
|
+
"released"
|
|
7056
|
+
],
|
|
7057
|
+
"type": "option"
|
|
7058
|
+
},
|
|
7059
|
+
"target-workspace": {
|
|
7060
|
+
"description": "Required when disposition='moved' — workspace to attach old number to",
|
|
7061
|
+
"name": "target-workspace",
|
|
7062
|
+
"hasDynamicHelp": false,
|
|
7063
|
+
"multiple": false,
|
|
7064
|
+
"type": "option"
|
|
6892
7065
|
}
|
|
6893
7066
|
},
|
|
6894
7067
|
"hasDynamicHelp": false,
|
|
6895
7068
|
"hiddenAliases": [],
|
|
6896
|
-
"id": "
|
|
7069
|
+
"id": "business-upgrade:disposition",
|
|
6897
7070
|
"pluginAlias": "@sendly/cli",
|
|
6898
7071
|
"pluginName": "@sendly/cli",
|
|
6899
7072
|
"pluginType": "core",
|
|
@@ -6902,29 +7075,17 @@
|
|
|
6902
7075
|
"relativePath": [
|
|
6903
7076
|
"dist",
|
|
6904
7077
|
"commands",
|
|
6905
|
-
"
|
|
6906
|
-
"
|
|
6907
|
-
"list.js"
|
|
7078
|
+
"business-upgrade",
|
|
7079
|
+
"disposition.js"
|
|
6908
7080
|
]
|
|
6909
7081
|
},
|
|
6910
|
-
"
|
|
7082
|
+
"business-upgrade:preflight": {
|
|
6911
7083
|
"aliases": [],
|
|
6912
|
-
"args": {
|
|
6913
|
-
|
|
6914
|
-
"description": "Workspace ID",
|
|
6915
|
-
"name": "workspaceId",
|
|
6916
|
-
"required": true
|
|
6917
|
-
},
|
|
6918
|
-
"keyId": {
|
|
6919
|
-
"description": "API key ID to revoke",
|
|
6920
|
-
"name": "keyId",
|
|
6921
|
-
"required": true
|
|
6922
|
-
}
|
|
6923
|
-
},
|
|
6924
|
-
"description": "Revoke an API key for an enterprise workspace",
|
|
7084
|
+
"args": {},
|
|
7085
|
+
"description": "Dry-run a business entity upgrade and surface issues + auto-fix suggestions before submitting",
|
|
6925
7086
|
"examples": [
|
|
6926
|
-
"<%= config.bin %>
|
|
6927
|
-
"<%= config.bin %>
|
|
7087
|
+
"<%= config.bin %> business-upgrade preflight --business-name \"Acme LLC\" --brn \"12-3456789\" --brn-type EIN --entity-type PRIVATE_PROFIT",
|
|
7088
|
+
"<%= config.bin %> business-upgrade preflight --candidate ./candidate.json --json"
|
|
6928
7089
|
],
|
|
6929
7090
|
"flags": {
|
|
6930
7091
|
"json": {
|
|
@@ -6940,17 +7101,755 @@
|
|
|
6940
7101
|
"allowNo": false,
|
|
6941
7102
|
"type": "boolean"
|
|
6942
7103
|
},
|
|
6943
|
-
"
|
|
6944
|
-
"
|
|
6945
|
-
"
|
|
6946
|
-
"
|
|
6947
|
-
"
|
|
6948
|
-
"type": "
|
|
6949
|
-
}
|
|
7104
|
+
"business-name": {
|
|
7105
|
+
"description": "Legal business name of the new entity",
|
|
7106
|
+
"name": "business-name",
|
|
7107
|
+
"hasDynamicHelp": false,
|
|
7108
|
+
"multiple": false,
|
|
7109
|
+
"type": "option"
|
|
7110
|
+
},
|
|
7111
|
+
"brn": {
|
|
7112
|
+
"description": "Business registration number (EIN/SSN/etc.)",
|
|
7113
|
+
"name": "brn",
|
|
7114
|
+
"hasDynamicHelp": false,
|
|
7115
|
+
"multiple": false,
|
|
7116
|
+
"type": "option"
|
|
7117
|
+
},
|
|
7118
|
+
"brn-type": {
|
|
7119
|
+
"description": "Registration type (EIN, SSN, DUNS, CRA, VAT, LEI, OTHER)",
|
|
7120
|
+
"name": "brn-type",
|
|
7121
|
+
"hasDynamicHelp": false,
|
|
7122
|
+
"multiple": false,
|
|
7123
|
+
"type": "option"
|
|
7124
|
+
},
|
|
7125
|
+
"brn-country": {
|
|
7126
|
+
"description": "Registration issuing country (ISO 3166-1 alpha-2)",
|
|
7127
|
+
"name": "brn-country",
|
|
7128
|
+
"default": "US",
|
|
7129
|
+
"hasDynamicHelp": false,
|
|
7130
|
+
"multiple": false,
|
|
7131
|
+
"type": "option"
|
|
7132
|
+
},
|
|
7133
|
+
"entity-type": {
|
|
7134
|
+
"description": "Entity type (SOLE_PROPRIETOR, PRIVATE_PROFIT, PUBLIC_PROFIT, NON_PROFIT, GOVERNMENT)",
|
|
7135
|
+
"name": "entity-type",
|
|
7136
|
+
"default": "PRIVATE_PROFIT",
|
|
7137
|
+
"hasDynamicHelp": false,
|
|
7138
|
+
"multiple": false,
|
|
7139
|
+
"type": "option"
|
|
7140
|
+
},
|
|
7141
|
+
"candidate": {
|
|
7142
|
+
"description": "Path to a JSON file with the full candidate payload",
|
|
7143
|
+
"name": "candidate",
|
|
7144
|
+
"hasDynamicHelp": false,
|
|
7145
|
+
"multiple": false,
|
|
7146
|
+
"type": "option"
|
|
7147
|
+
}
|
|
7148
|
+
},
|
|
7149
|
+
"hasDynamicHelp": false,
|
|
7150
|
+
"hiddenAliases": [],
|
|
7151
|
+
"id": "business-upgrade:preflight",
|
|
7152
|
+
"pluginAlias": "@sendly/cli",
|
|
7153
|
+
"pluginName": "@sendly/cli",
|
|
7154
|
+
"pluginType": "core",
|
|
7155
|
+
"strict": true,
|
|
7156
|
+
"isESM": true,
|
|
7157
|
+
"relativePath": [
|
|
7158
|
+
"dist",
|
|
7159
|
+
"commands",
|
|
7160
|
+
"business-upgrade",
|
|
7161
|
+
"preflight.js"
|
|
7162
|
+
]
|
|
7163
|
+
},
|
|
7164
|
+
"business-upgrade:resubmit": {
|
|
7165
|
+
"aliases": [],
|
|
7166
|
+
"args": {},
|
|
7167
|
+
"description": "Resubmit a previously rejected (or waiting-for-customer) business entity upgrade with corrected fields and optionally a new EIN document",
|
|
7168
|
+
"examples": [
|
|
7169
|
+
"<%= config.bin %> business-upgrade resubmit --workspace ws_abc --business-name \"Acme Holdings LLC\" --ein-doc ./CP-575-v2.pdf"
|
|
7170
|
+
],
|
|
7171
|
+
"flags": {
|
|
7172
|
+
"json": {
|
|
7173
|
+
"description": "Output in JSON format",
|
|
7174
|
+
"name": "json",
|
|
7175
|
+
"allowNo": false,
|
|
7176
|
+
"type": "boolean"
|
|
7177
|
+
},
|
|
7178
|
+
"quiet": {
|
|
7179
|
+
"char": "q",
|
|
7180
|
+
"description": "Minimal output",
|
|
7181
|
+
"name": "quiet",
|
|
7182
|
+
"allowNo": false,
|
|
7183
|
+
"type": "boolean"
|
|
7184
|
+
},
|
|
7185
|
+
"workspace": {
|
|
7186
|
+
"name": "workspace",
|
|
7187
|
+
"required": true,
|
|
7188
|
+
"hasDynamicHelp": false,
|
|
7189
|
+
"multiple": false,
|
|
7190
|
+
"type": "option"
|
|
7191
|
+
},
|
|
7192
|
+
"business-name": {
|
|
7193
|
+
"name": "business-name",
|
|
7194
|
+
"hasDynamicHelp": false,
|
|
7195
|
+
"multiple": false,
|
|
7196
|
+
"type": "option"
|
|
7197
|
+
},
|
|
7198
|
+
"brn": {
|
|
7199
|
+
"name": "brn",
|
|
7200
|
+
"hasDynamicHelp": false,
|
|
7201
|
+
"multiple": false,
|
|
7202
|
+
"type": "option"
|
|
7203
|
+
},
|
|
7204
|
+
"brn-type": {
|
|
7205
|
+
"name": "brn-type",
|
|
7206
|
+
"hasDynamicHelp": false,
|
|
7207
|
+
"multiple": false,
|
|
7208
|
+
"type": "option"
|
|
7209
|
+
},
|
|
7210
|
+
"brn-country": {
|
|
7211
|
+
"name": "brn-country",
|
|
7212
|
+
"hasDynamicHelp": false,
|
|
7213
|
+
"multiple": false,
|
|
7214
|
+
"type": "option"
|
|
7215
|
+
},
|
|
7216
|
+
"entity-type": {
|
|
7217
|
+
"name": "entity-type",
|
|
7218
|
+
"hasDynamicHelp": false,
|
|
7219
|
+
"multiple": false,
|
|
7220
|
+
"type": "option"
|
|
7221
|
+
},
|
|
7222
|
+
"monthly-volume": {
|
|
7223
|
+
"name": "monthly-volume",
|
|
7224
|
+
"hasDynamicHelp": false,
|
|
7225
|
+
"multiple": false,
|
|
7226
|
+
"type": "option"
|
|
7227
|
+
},
|
|
7228
|
+
"use-case": {
|
|
7229
|
+
"name": "use-case",
|
|
7230
|
+
"hasDynamicHelp": false,
|
|
7231
|
+
"multiple": false,
|
|
7232
|
+
"type": "option"
|
|
7233
|
+
},
|
|
7234
|
+
"use-case-summary": {
|
|
7235
|
+
"name": "use-case-summary",
|
|
7236
|
+
"hasDynamicHelp": false,
|
|
7237
|
+
"multiple": false,
|
|
7238
|
+
"type": "option"
|
|
7239
|
+
},
|
|
7240
|
+
"sample-messages": {
|
|
7241
|
+
"name": "sample-messages",
|
|
7242
|
+
"hasDynamicHelp": false,
|
|
7243
|
+
"multiple": false,
|
|
7244
|
+
"type": "option"
|
|
7245
|
+
},
|
|
7246
|
+
"opt-in-workflow": {
|
|
7247
|
+
"name": "opt-in-workflow",
|
|
7248
|
+
"hasDynamicHelp": false,
|
|
7249
|
+
"multiple": false,
|
|
7250
|
+
"type": "option"
|
|
7251
|
+
},
|
|
7252
|
+
"privacy-url": {
|
|
7253
|
+
"name": "privacy-url",
|
|
7254
|
+
"hasDynamicHelp": false,
|
|
7255
|
+
"multiple": false,
|
|
7256
|
+
"type": "option"
|
|
7257
|
+
},
|
|
7258
|
+
"terms-url": {
|
|
7259
|
+
"name": "terms-url",
|
|
7260
|
+
"hasDynamicHelp": false,
|
|
7261
|
+
"multiple": false,
|
|
7262
|
+
"type": "option"
|
|
7263
|
+
},
|
|
7264
|
+
"ein-doc": {
|
|
7265
|
+
"name": "ein-doc",
|
|
7266
|
+
"hasDynamicHelp": false,
|
|
7267
|
+
"multiple": false,
|
|
7268
|
+
"type": "option"
|
|
7269
|
+
}
|
|
7270
|
+
},
|
|
7271
|
+
"hasDynamicHelp": false,
|
|
7272
|
+
"hiddenAliases": [],
|
|
7273
|
+
"id": "business-upgrade:resubmit",
|
|
7274
|
+
"pluginAlias": "@sendly/cli",
|
|
7275
|
+
"pluginName": "@sendly/cli",
|
|
7276
|
+
"pluginType": "core",
|
|
7277
|
+
"strict": true,
|
|
7278
|
+
"isESM": true,
|
|
7279
|
+
"relativePath": [
|
|
7280
|
+
"dist",
|
|
7281
|
+
"commands",
|
|
7282
|
+
"business-upgrade",
|
|
7283
|
+
"resubmit.js"
|
|
7284
|
+
]
|
|
7285
|
+
},
|
|
7286
|
+
"business-upgrade:start": {
|
|
7287
|
+
"aliases": [],
|
|
7288
|
+
"args": {},
|
|
7289
|
+
"description": "Start a business entity upgrade — auto-provisions a new toll-free number under the new entity and submits to the carrier for review",
|
|
7290
|
+
"examples": [
|
|
7291
|
+
"<%= config.bin %> business-upgrade start --workspace ws_abc --business-name \"Acme Holdings LLC\" --brn \"12-3456789\" --brn-type EIN --entity-type PRIVATE_PROFIT --ein-doc ./CP-575.pdf"
|
|
7292
|
+
],
|
|
7293
|
+
"flags": {
|
|
7294
|
+
"json": {
|
|
7295
|
+
"description": "Output in JSON format",
|
|
7296
|
+
"name": "json",
|
|
7297
|
+
"allowNo": false,
|
|
7298
|
+
"type": "boolean"
|
|
7299
|
+
},
|
|
7300
|
+
"quiet": {
|
|
7301
|
+
"char": "q",
|
|
7302
|
+
"description": "Minimal output",
|
|
7303
|
+
"name": "quiet",
|
|
7304
|
+
"allowNo": false,
|
|
7305
|
+
"type": "boolean"
|
|
7306
|
+
},
|
|
7307
|
+
"workspace": {
|
|
7308
|
+
"description": "Workspace ID being upgraded",
|
|
7309
|
+
"name": "workspace",
|
|
7310
|
+
"required": true,
|
|
7311
|
+
"hasDynamicHelp": false,
|
|
7312
|
+
"multiple": false,
|
|
7313
|
+
"type": "option"
|
|
7314
|
+
},
|
|
7315
|
+
"business-name": {
|
|
7316
|
+
"name": "business-name",
|
|
7317
|
+
"required": true,
|
|
7318
|
+
"hasDynamicHelp": false,
|
|
7319
|
+
"multiple": false,
|
|
7320
|
+
"type": "option"
|
|
7321
|
+
},
|
|
7322
|
+
"brn": {
|
|
7323
|
+
"name": "brn",
|
|
7324
|
+
"required": true,
|
|
7325
|
+
"hasDynamicHelp": false,
|
|
7326
|
+
"multiple": false,
|
|
7327
|
+
"type": "option"
|
|
7328
|
+
},
|
|
7329
|
+
"brn-type": {
|
|
7330
|
+
"name": "brn-type",
|
|
7331
|
+
"required": true,
|
|
7332
|
+
"default": "EIN",
|
|
7333
|
+
"hasDynamicHelp": false,
|
|
7334
|
+
"multiple": false,
|
|
7335
|
+
"type": "option"
|
|
7336
|
+
},
|
|
7337
|
+
"brn-country": {
|
|
7338
|
+
"name": "brn-country",
|
|
7339
|
+
"default": "US",
|
|
7340
|
+
"hasDynamicHelp": false,
|
|
7341
|
+
"multiple": false,
|
|
7342
|
+
"type": "option"
|
|
7343
|
+
},
|
|
7344
|
+
"entity-type": {
|
|
7345
|
+
"name": "entity-type",
|
|
7346
|
+
"required": true,
|
|
7347
|
+
"default": "PRIVATE_PROFIT",
|
|
7348
|
+
"hasDynamicHelp": false,
|
|
7349
|
+
"multiple": false,
|
|
7350
|
+
"type": "option"
|
|
7351
|
+
},
|
|
7352
|
+
"doing-business-as": {
|
|
7353
|
+
"name": "doing-business-as",
|
|
7354
|
+
"hasDynamicHelp": false,
|
|
7355
|
+
"multiple": false,
|
|
7356
|
+
"type": "option"
|
|
7357
|
+
},
|
|
7358
|
+
"website": {
|
|
7359
|
+
"name": "website",
|
|
7360
|
+
"hasDynamicHelp": false,
|
|
7361
|
+
"multiple": false,
|
|
7362
|
+
"type": "option"
|
|
7363
|
+
},
|
|
7364
|
+
"address1": {
|
|
7365
|
+
"name": "address1",
|
|
7366
|
+
"hasDynamicHelp": false,
|
|
7367
|
+
"multiple": false,
|
|
7368
|
+
"type": "option"
|
|
7369
|
+
},
|
|
7370
|
+
"address2": {
|
|
7371
|
+
"name": "address2",
|
|
7372
|
+
"hasDynamicHelp": false,
|
|
7373
|
+
"multiple": false,
|
|
7374
|
+
"type": "option"
|
|
7375
|
+
},
|
|
7376
|
+
"city": {
|
|
7377
|
+
"name": "city",
|
|
7378
|
+
"hasDynamicHelp": false,
|
|
7379
|
+
"multiple": false,
|
|
7380
|
+
"type": "option"
|
|
7381
|
+
},
|
|
7382
|
+
"state": {
|
|
7383
|
+
"name": "state",
|
|
7384
|
+
"hasDynamicHelp": false,
|
|
7385
|
+
"multiple": false,
|
|
7386
|
+
"type": "option"
|
|
7387
|
+
},
|
|
7388
|
+
"zip": {
|
|
7389
|
+
"name": "zip",
|
|
7390
|
+
"hasDynamicHelp": false,
|
|
7391
|
+
"multiple": false,
|
|
7392
|
+
"type": "option"
|
|
7393
|
+
},
|
|
7394
|
+
"address-country": {
|
|
7395
|
+
"name": "address-country",
|
|
7396
|
+
"hasDynamicHelp": false,
|
|
7397
|
+
"multiple": false,
|
|
7398
|
+
"type": "option"
|
|
7399
|
+
},
|
|
7400
|
+
"contact-first-name": {
|
|
7401
|
+
"name": "contact-first-name",
|
|
7402
|
+
"hasDynamicHelp": false,
|
|
7403
|
+
"multiple": false,
|
|
7404
|
+
"type": "option"
|
|
7405
|
+
},
|
|
7406
|
+
"contact-last-name": {
|
|
7407
|
+
"name": "contact-last-name",
|
|
7408
|
+
"hasDynamicHelp": false,
|
|
7409
|
+
"multiple": false,
|
|
7410
|
+
"type": "option"
|
|
7411
|
+
},
|
|
7412
|
+
"contact-email": {
|
|
7413
|
+
"name": "contact-email",
|
|
7414
|
+
"hasDynamicHelp": false,
|
|
7415
|
+
"multiple": false,
|
|
7416
|
+
"type": "option"
|
|
7417
|
+
},
|
|
7418
|
+
"contact-phone": {
|
|
7419
|
+
"name": "contact-phone",
|
|
7420
|
+
"hasDynamicHelp": false,
|
|
7421
|
+
"multiple": false,
|
|
7422
|
+
"type": "option"
|
|
7423
|
+
},
|
|
7424
|
+
"monthly-volume": {
|
|
7425
|
+
"name": "monthly-volume",
|
|
7426
|
+
"hasDynamicHelp": false,
|
|
7427
|
+
"multiple": false,
|
|
7428
|
+
"type": "option"
|
|
7429
|
+
},
|
|
7430
|
+
"use-case": {
|
|
7431
|
+
"name": "use-case",
|
|
7432
|
+
"hasDynamicHelp": false,
|
|
7433
|
+
"multiple": false,
|
|
7434
|
+
"type": "option"
|
|
7435
|
+
},
|
|
7436
|
+
"use-case-summary": {
|
|
7437
|
+
"name": "use-case-summary",
|
|
7438
|
+
"hasDynamicHelp": false,
|
|
7439
|
+
"multiple": false,
|
|
7440
|
+
"type": "option"
|
|
7441
|
+
},
|
|
7442
|
+
"sample-messages": {
|
|
7443
|
+
"name": "sample-messages",
|
|
7444
|
+
"hasDynamicHelp": false,
|
|
7445
|
+
"multiple": false,
|
|
7446
|
+
"type": "option"
|
|
7447
|
+
},
|
|
7448
|
+
"opt-in-workflow": {
|
|
7449
|
+
"name": "opt-in-workflow",
|
|
7450
|
+
"hasDynamicHelp": false,
|
|
7451
|
+
"multiple": false,
|
|
7452
|
+
"type": "option"
|
|
7453
|
+
},
|
|
7454
|
+
"privacy-url": {
|
|
7455
|
+
"name": "privacy-url",
|
|
7456
|
+
"hasDynamicHelp": false,
|
|
7457
|
+
"multiple": false,
|
|
7458
|
+
"type": "option"
|
|
7459
|
+
},
|
|
7460
|
+
"terms-url": {
|
|
7461
|
+
"name": "terms-url",
|
|
7462
|
+
"hasDynamicHelp": false,
|
|
7463
|
+
"multiple": false,
|
|
7464
|
+
"type": "option"
|
|
7465
|
+
},
|
|
7466
|
+
"additional-information": {
|
|
7467
|
+
"name": "additional-information",
|
|
7468
|
+
"hasDynamicHelp": false,
|
|
7469
|
+
"multiple": false,
|
|
7470
|
+
"type": "option"
|
|
7471
|
+
},
|
|
7472
|
+
"age-gated-content": {
|
|
7473
|
+
"name": "age-gated-content",
|
|
7474
|
+
"allowNo": false,
|
|
7475
|
+
"type": "boolean"
|
|
7476
|
+
},
|
|
7477
|
+
"ein-doc": {
|
|
7478
|
+
"description": "Path to the IRS letter (CP-575 or 147C) PDF",
|
|
7479
|
+
"name": "ein-doc",
|
|
7480
|
+
"hasDynamicHelp": false,
|
|
7481
|
+
"multiple": false,
|
|
7482
|
+
"type": "option"
|
|
7483
|
+
}
|
|
7484
|
+
},
|
|
7485
|
+
"hasDynamicHelp": false,
|
|
7486
|
+
"hiddenAliases": [],
|
|
7487
|
+
"id": "business-upgrade:start",
|
|
7488
|
+
"pluginAlias": "@sendly/cli",
|
|
7489
|
+
"pluginName": "@sendly/cli",
|
|
7490
|
+
"pluginType": "core",
|
|
7491
|
+
"strict": true,
|
|
7492
|
+
"isESM": true,
|
|
7493
|
+
"relativePath": [
|
|
7494
|
+
"dist",
|
|
7495
|
+
"commands",
|
|
7496
|
+
"business-upgrade",
|
|
7497
|
+
"start.js"
|
|
7498
|
+
]
|
|
7499
|
+
},
|
|
7500
|
+
"business-upgrade:status": {
|
|
7501
|
+
"aliases": [],
|
|
7502
|
+
"args": {},
|
|
7503
|
+
"description": "Show the status of any pending business entity upgrade for a workspace",
|
|
7504
|
+
"examples": [
|
|
7505
|
+
"<%= config.bin %> business-upgrade status --workspace ws_abc",
|
|
7506
|
+
"<%= config.bin %> business-upgrade status --workspace ws_abc --json"
|
|
7507
|
+
],
|
|
7508
|
+
"flags": {
|
|
7509
|
+
"json": {
|
|
7510
|
+
"description": "Output in JSON format",
|
|
7511
|
+
"name": "json",
|
|
7512
|
+
"allowNo": false,
|
|
7513
|
+
"type": "boolean"
|
|
7514
|
+
},
|
|
7515
|
+
"quiet": {
|
|
7516
|
+
"char": "q",
|
|
7517
|
+
"description": "Minimal output",
|
|
7518
|
+
"name": "quiet",
|
|
7519
|
+
"allowNo": false,
|
|
7520
|
+
"type": "boolean"
|
|
7521
|
+
},
|
|
7522
|
+
"workspace": {
|
|
7523
|
+
"description": "Workspace ID to check",
|
|
7524
|
+
"name": "workspace",
|
|
7525
|
+
"required": true,
|
|
7526
|
+
"hasDynamicHelp": false,
|
|
7527
|
+
"multiple": false,
|
|
7528
|
+
"type": "option"
|
|
7529
|
+
}
|
|
7530
|
+
},
|
|
7531
|
+
"hasDynamicHelp": false,
|
|
7532
|
+
"hiddenAliases": [],
|
|
7533
|
+
"id": "business-upgrade:status",
|
|
7534
|
+
"pluginAlias": "@sendly/cli",
|
|
7535
|
+
"pluginName": "@sendly/cli",
|
|
7536
|
+
"pluginType": "core",
|
|
7537
|
+
"strict": true,
|
|
7538
|
+
"isESM": true,
|
|
7539
|
+
"relativePath": [
|
|
7540
|
+
"dist",
|
|
7541
|
+
"commands",
|
|
7542
|
+
"business-upgrade",
|
|
7543
|
+
"status.js"
|
|
7544
|
+
]
|
|
7545
|
+
},
|
|
7546
|
+
"enterprise:keys:create": {
|
|
7547
|
+
"aliases": [],
|
|
7548
|
+
"args": {
|
|
7549
|
+
"workspaceId": {
|
|
7550
|
+
"description": "Workspace ID",
|
|
7551
|
+
"name": "workspaceId",
|
|
7552
|
+
"required": true
|
|
7553
|
+
}
|
|
7554
|
+
},
|
|
7555
|
+
"description": "Create an API key for an enterprise workspace",
|
|
7556
|
+
"examples": [
|
|
7557
|
+
"<%= config.bin %> enterprise keys create org_abc123 --name \"Production\"",
|
|
7558
|
+
"<%= config.bin %> enterprise keys create org_abc123 --name \"CI\" --type test"
|
|
7559
|
+
],
|
|
7560
|
+
"flags": {
|
|
7561
|
+
"json": {
|
|
7562
|
+
"description": "Output in JSON format",
|
|
7563
|
+
"name": "json",
|
|
7564
|
+
"allowNo": false,
|
|
7565
|
+
"type": "boolean"
|
|
7566
|
+
},
|
|
7567
|
+
"quiet": {
|
|
7568
|
+
"char": "q",
|
|
7569
|
+
"description": "Minimal output",
|
|
7570
|
+
"name": "quiet",
|
|
7571
|
+
"allowNo": false,
|
|
7572
|
+
"type": "boolean"
|
|
7573
|
+
},
|
|
7574
|
+
"name": {
|
|
7575
|
+
"char": "n",
|
|
7576
|
+
"description": "Name for the API key",
|
|
7577
|
+
"name": "name",
|
|
7578
|
+
"required": true,
|
|
7579
|
+
"hasDynamicHelp": false,
|
|
7580
|
+
"multiple": false,
|
|
7581
|
+
"type": "option"
|
|
7582
|
+
},
|
|
7583
|
+
"type": {
|
|
7584
|
+
"char": "t",
|
|
7585
|
+
"description": "Key type (test or live)",
|
|
7586
|
+
"name": "type",
|
|
7587
|
+
"default": "live",
|
|
7588
|
+
"hasDynamicHelp": false,
|
|
7589
|
+
"multiple": false,
|
|
7590
|
+
"options": [
|
|
7591
|
+
"test",
|
|
7592
|
+
"live"
|
|
7593
|
+
],
|
|
7594
|
+
"type": "option"
|
|
7595
|
+
}
|
|
7596
|
+
},
|
|
7597
|
+
"hasDynamicHelp": false,
|
|
7598
|
+
"hiddenAliases": [],
|
|
7599
|
+
"id": "enterprise:keys:create",
|
|
7600
|
+
"pluginAlias": "@sendly/cli",
|
|
7601
|
+
"pluginName": "@sendly/cli",
|
|
7602
|
+
"pluginType": "core",
|
|
7603
|
+
"strict": true,
|
|
7604
|
+
"isESM": true,
|
|
7605
|
+
"relativePath": [
|
|
7606
|
+
"dist",
|
|
7607
|
+
"commands",
|
|
7608
|
+
"enterprise",
|
|
7609
|
+
"keys",
|
|
7610
|
+
"create.js"
|
|
7611
|
+
]
|
|
7612
|
+
},
|
|
7613
|
+
"enterprise:keys:list": {
|
|
7614
|
+
"aliases": [],
|
|
7615
|
+
"args": {
|
|
7616
|
+
"workspaceId": {
|
|
7617
|
+
"description": "Workspace ID",
|
|
7618
|
+
"name": "workspaceId",
|
|
7619
|
+
"required": true
|
|
7620
|
+
}
|
|
7621
|
+
},
|
|
7622
|
+
"description": "List API keys for an enterprise workspace",
|
|
7623
|
+
"examples": [
|
|
7624
|
+
"<%= config.bin %> enterprise keys list org_abc123",
|
|
7625
|
+
"<%= config.bin %> enterprise keys list org_abc123 --json"
|
|
7626
|
+
],
|
|
7627
|
+
"flags": {
|
|
7628
|
+
"json": {
|
|
7629
|
+
"description": "Output in JSON format",
|
|
7630
|
+
"name": "json",
|
|
7631
|
+
"allowNo": false,
|
|
7632
|
+
"type": "boolean"
|
|
7633
|
+
},
|
|
7634
|
+
"quiet": {
|
|
7635
|
+
"char": "q",
|
|
7636
|
+
"description": "Minimal output",
|
|
7637
|
+
"name": "quiet",
|
|
7638
|
+
"allowNo": false,
|
|
7639
|
+
"type": "boolean"
|
|
7640
|
+
}
|
|
7641
|
+
},
|
|
7642
|
+
"hasDynamicHelp": false,
|
|
7643
|
+
"hiddenAliases": [],
|
|
7644
|
+
"id": "enterprise:keys:list",
|
|
7645
|
+
"pluginAlias": "@sendly/cli",
|
|
7646
|
+
"pluginName": "@sendly/cli",
|
|
7647
|
+
"pluginType": "core",
|
|
7648
|
+
"strict": true,
|
|
7649
|
+
"isESM": true,
|
|
7650
|
+
"relativePath": [
|
|
7651
|
+
"dist",
|
|
7652
|
+
"commands",
|
|
7653
|
+
"enterprise",
|
|
7654
|
+
"keys",
|
|
7655
|
+
"list.js"
|
|
7656
|
+
]
|
|
7657
|
+
},
|
|
7658
|
+
"enterprise:keys:revoke": {
|
|
7659
|
+
"aliases": [],
|
|
7660
|
+
"args": {
|
|
7661
|
+
"workspaceId": {
|
|
7662
|
+
"description": "Workspace ID",
|
|
7663
|
+
"name": "workspaceId",
|
|
7664
|
+
"required": true
|
|
7665
|
+
},
|
|
7666
|
+
"keyId": {
|
|
7667
|
+
"description": "API key ID to revoke",
|
|
7668
|
+
"name": "keyId",
|
|
7669
|
+
"required": true
|
|
7670
|
+
}
|
|
7671
|
+
},
|
|
7672
|
+
"description": "Revoke an API key for an enterprise workspace",
|
|
7673
|
+
"examples": [
|
|
7674
|
+
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz",
|
|
7675
|
+
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz --yes"
|
|
7676
|
+
],
|
|
7677
|
+
"flags": {
|
|
7678
|
+
"json": {
|
|
7679
|
+
"description": "Output in JSON format",
|
|
7680
|
+
"name": "json",
|
|
7681
|
+
"allowNo": false,
|
|
7682
|
+
"type": "boolean"
|
|
7683
|
+
},
|
|
7684
|
+
"quiet": {
|
|
7685
|
+
"char": "q",
|
|
7686
|
+
"description": "Minimal output",
|
|
7687
|
+
"name": "quiet",
|
|
7688
|
+
"allowNo": false,
|
|
7689
|
+
"type": "boolean"
|
|
7690
|
+
},
|
|
7691
|
+
"yes": {
|
|
7692
|
+
"char": "y",
|
|
7693
|
+
"description": "Skip confirmation prompt",
|
|
7694
|
+
"name": "yes",
|
|
7695
|
+
"allowNo": false,
|
|
7696
|
+
"type": "boolean"
|
|
7697
|
+
}
|
|
7698
|
+
},
|
|
7699
|
+
"hasDynamicHelp": false,
|
|
7700
|
+
"hiddenAliases": [],
|
|
7701
|
+
"id": "enterprise:keys:revoke",
|
|
7702
|
+
"pluginAlias": "@sendly/cli",
|
|
7703
|
+
"pluginName": "@sendly/cli",
|
|
7704
|
+
"pluginType": "core",
|
|
7705
|
+
"strict": true,
|
|
7706
|
+
"isESM": true,
|
|
7707
|
+
"relativePath": [
|
|
7708
|
+
"dist",
|
|
7709
|
+
"commands",
|
|
7710
|
+
"enterprise",
|
|
7711
|
+
"keys",
|
|
7712
|
+
"revoke.js"
|
|
7713
|
+
]
|
|
7714
|
+
},
|
|
7715
|
+
"enterprise:quota:get": {
|
|
7716
|
+
"aliases": [],
|
|
7717
|
+
"args": {
|
|
7718
|
+
"workspaceId": {
|
|
7719
|
+
"description": "Workspace ID",
|
|
7720
|
+
"name": "workspaceId",
|
|
7721
|
+
"required": true
|
|
7722
|
+
}
|
|
7723
|
+
},
|
|
7724
|
+
"description": "Get message quota for an enterprise workspace",
|
|
7725
|
+
"examples": [
|
|
7726
|
+
"<%= config.bin %> enterprise quota get org_abc123",
|
|
7727
|
+
"<%= config.bin %> enterprise quota get org_abc123 --json"
|
|
7728
|
+
],
|
|
7729
|
+
"flags": {
|
|
7730
|
+
"json": {
|
|
7731
|
+
"description": "Output in JSON format",
|
|
7732
|
+
"name": "json",
|
|
7733
|
+
"allowNo": false,
|
|
7734
|
+
"type": "boolean"
|
|
7735
|
+
},
|
|
7736
|
+
"quiet": {
|
|
7737
|
+
"char": "q",
|
|
7738
|
+
"description": "Minimal output",
|
|
7739
|
+
"name": "quiet",
|
|
7740
|
+
"allowNo": false,
|
|
7741
|
+
"type": "boolean"
|
|
7742
|
+
}
|
|
7743
|
+
},
|
|
7744
|
+
"hasDynamicHelp": false,
|
|
7745
|
+
"hiddenAliases": [],
|
|
7746
|
+
"id": "enterprise:quota:get",
|
|
7747
|
+
"pluginAlias": "@sendly/cli",
|
|
7748
|
+
"pluginName": "@sendly/cli",
|
|
7749
|
+
"pluginType": "core",
|
|
7750
|
+
"strict": true,
|
|
7751
|
+
"isESM": true,
|
|
7752
|
+
"relativePath": [
|
|
7753
|
+
"dist",
|
|
7754
|
+
"commands",
|
|
7755
|
+
"enterprise",
|
|
7756
|
+
"quota",
|
|
7757
|
+
"get.js"
|
|
7758
|
+
]
|
|
7759
|
+
},
|
|
7760
|
+
"enterprise:quota:set": {
|
|
7761
|
+
"aliases": [],
|
|
7762
|
+
"args": {
|
|
7763
|
+
"workspaceId": {
|
|
7764
|
+
"description": "Workspace ID",
|
|
7765
|
+
"name": "workspaceId",
|
|
7766
|
+
"required": true
|
|
7767
|
+
}
|
|
7768
|
+
},
|
|
7769
|
+
"description": "Set message quota for an enterprise workspace",
|
|
7770
|
+
"examples": [
|
|
7771
|
+
"<%= config.bin %> enterprise quota set org_abc123 --daily 1000",
|
|
7772
|
+
"<%= config.bin %> enterprise quota set org_abc123 --monthly 25000",
|
|
7773
|
+
"<%= config.bin %> enterprise quota set org_abc123 --daily 1000 --monthly 25000",
|
|
7774
|
+
"<%= config.bin %> enterprise quota set org_abc123 --daily unlimited"
|
|
7775
|
+
],
|
|
7776
|
+
"flags": {
|
|
7777
|
+
"json": {
|
|
7778
|
+
"description": "Output in JSON format",
|
|
7779
|
+
"name": "json",
|
|
7780
|
+
"allowNo": false,
|
|
7781
|
+
"type": "boolean"
|
|
7782
|
+
},
|
|
7783
|
+
"quiet": {
|
|
7784
|
+
"char": "q",
|
|
7785
|
+
"description": "Minimal output",
|
|
7786
|
+
"name": "quiet",
|
|
7787
|
+
"allowNo": false,
|
|
7788
|
+
"type": "boolean"
|
|
7789
|
+
},
|
|
7790
|
+
"daily": {
|
|
7791
|
+
"description": "Daily message limit (number or \"unlimited\")",
|
|
7792
|
+
"name": "daily",
|
|
7793
|
+
"hasDynamicHelp": false,
|
|
7794
|
+
"multiple": false,
|
|
7795
|
+
"type": "option"
|
|
7796
|
+
},
|
|
7797
|
+
"monthly": {
|
|
7798
|
+
"description": "Monthly message limit (number or \"unlimited\")",
|
|
7799
|
+
"name": "monthly",
|
|
7800
|
+
"hasDynamicHelp": false,
|
|
7801
|
+
"multiple": false,
|
|
7802
|
+
"type": "option"
|
|
7803
|
+
}
|
|
7804
|
+
},
|
|
7805
|
+
"hasDynamicHelp": false,
|
|
7806
|
+
"hiddenAliases": [],
|
|
7807
|
+
"id": "enterprise:quota:set",
|
|
7808
|
+
"pluginAlias": "@sendly/cli",
|
|
7809
|
+
"pluginName": "@sendly/cli",
|
|
7810
|
+
"pluginType": "core",
|
|
7811
|
+
"strict": true,
|
|
7812
|
+
"isESM": true,
|
|
7813
|
+
"relativePath": [
|
|
7814
|
+
"dist",
|
|
7815
|
+
"commands",
|
|
7816
|
+
"enterprise",
|
|
7817
|
+
"quota",
|
|
7818
|
+
"set.js"
|
|
7819
|
+
]
|
|
7820
|
+
},
|
|
7821
|
+
"enterprise:verification:get": {
|
|
7822
|
+
"aliases": [],
|
|
7823
|
+
"args": {
|
|
7824
|
+
"workspaceId": {
|
|
7825
|
+
"description": "Workspace ID",
|
|
7826
|
+
"name": "workspaceId",
|
|
7827
|
+
"required": true
|
|
7828
|
+
}
|
|
7829
|
+
},
|
|
7830
|
+
"description": "Show the current verification record for an enterprise workspace.",
|
|
7831
|
+
"examples": [
|
|
7832
|
+
"<%= config.bin %> enterprise verification get org_abc123",
|
|
7833
|
+
"<%= config.bin %> enterprise verification get org_abc123 --json"
|
|
7834
|
+
],
|
|
7835
|
+
"flags": {
|
|
7836
|
+
"json": {
|
|
7837
|
+
"description": "Output in JSON format",
|
|
7838
|
+
"name": "json",
|
|
7839
|
+
"allowNo": false,
|
|
7840
|
+
"type": "boolean"
|
|
7841
|
+
},
|
|
7842
|
+
"quiet": {
|
|
7843
|
+
"char": "q",
|
|
7844
|
+
"description": "Minimal output",
|
|
7845
|
+
"name": "quiet",
|
|
7846
|
+
"allowNo": false,
|
|
7847
|
+
"type": "boolean"
|
|
7848
|
+
}
|
|
6950
7849
|
},
|
|
6951
7850
|
"hasDynamicHelp": false,
|
|
6952
7851
|
"hiddenAliases": [],
|
|
6953
|
-
"id": "enterprise:
|
|
7852
|
+
"id": "enterprise:verification:get",
|
|
6954
7853
|
"pluginAlias": "@sendly/cli",
|
|
6955
7854
|
"pluginName": "@sendly/cli",
|
|
6956
7855
|
"pluginType": "core",
|
|
@@ -6960,11 +7859,11 @@
|
|
|
6960
7859
|
"dist",
|
|
6961
7860
|
"commands",
|
|
6962
7861
|
"enterprise",
|
|
6963
|
-
"
|
|
6964
|
-
"
|
|
7862
|
+
"verification",
|
|
7863
|
+
"get.js"
|
|
6965
7864
|
]
|
|
6966
7865
|
},
|
|
6967
|
-
"enterprise:
|
|
7866
|
+
"enterprise:verification:resubmit": {
|
|
6968
7867
|
"aliases": [],
|
|
6969
7868
|
"args": {
|
|
6970
7869
|
"workspaceId": {
|
|
@@ -6973,10 +7872,11 @@
|
|
|
6973
7872
|
"required": true
|
|
6974
7873
|
}
|
|
6975
7874
|
},
|
|
6976
|
-
"description": "
|
|
7875
|
+
"description": "Resubmit a verification after rejection. Same endpoint as submit — partial-update friendly, omitted fields are preserved from the existing record.",
|
|
6977
7876
|
"examples": [
|
|
6978
|
-
"<%= config.bin %> enterprise
|
|
6979
|
-
"<%= config.bin %> enterprise
|
|
7877
|
+
"<%= config.bin %> enterprise verification resubmit org_abc123 --contact-email new@acme.com",
|
|
7878
|
+
"<%= config.bin %> enterprise verification resubmit org_abc123 --data ./fixes.json",
|
|
7879
|
+
"<%= config.bin %> enterprise verification resubmit org_abc123 --use-case-summary \"Updated summary\""
|
|
6980
7880
|
],
|
|
6981
7881
|
"flags": {
|
|
6982
7882
|
"json": {
|
|
@@ -6991,11 +7891,223 @@
|
|
|
6991
7891
|
"name": "quiet",
|
|
6992
7892
|
"allowNo": false,
|
|
6993
7893
|
"type": "boolean"
|
|
7894
|
+
},
|
|
7895
|
+
"data": {
|
|
7896
|
+
"char": "d",
|
|
7897
|
+
"description": "Path to a JSON file containing the partial-update payload",
|
|
7898
|
+
"name": "data",
|
|
7899
|
+
"hasDynamicHelp": false,
|
|
7900
|
+
"multiple": false,
|
|
7901
|
+
"type": "option"
|
|
7902
|
+
},
|
|
7903
|
+
"business-name": {
|
|
7904
|
+
"description": "Legal business name",
|
|
7905
|
+
"name": "business-name",
|
|
7906
|
+
"hasDynamicHelp": false,
|
|
7907
|
+
"multiple": false,
|
|
7908
|
+
"type": "option"
|
|
7909
|
+
},
|
|
7910
|
+
"doing-business-as": {
|
|
7911
|
+
"description": "DBA / trading name",
|
|
7912
|
+
"name": "doing-business-as",
|
|
7913
|
+
"hasDynamicHelp": false,
|
|
7914
|
+
"multiple": false,
|
|
7915
|
+
"type": "option"
|
|
7916
|
+
},
|
|
7917
|
+
"website": {
|
|
7918
|
+
"description": "Business website URL",
|
|
7919
|
+
"name": "website",
|
|
7920
|
+
"hasDynamicHelp": false,
|
|
7921
|
+
"multiple": false,
|
|
7922
|
+
"type": "option"
|
|
7923
|
+
},
|
|
7924
|
+
"entity-type": {
|
|
7925
|
+
"description": "Entity type (SOLE_PROPRIETOR | PRIVATE_PROFIT | PUBLIC_PROFIT | NON_PROFIT | GOVERNMENT)",
|
|
7926
|
+
"name": "entity-type",
|
|
7927
|
+
"hasDynamicHelp": false,
|
|
7928
|
+
"multiple": false,
|
|
7929
|
+
"options": [
|
|
7930
|
+
"SOLE_PROPRIETOR",
|
|
7931
|
+
"PRIVATE_PROFIT",
|
|
7932
|
+
"PUBLIC_PROFIT",
|
|
7933
|
+
"NON_PROFIT",
|
|
7934
|
+
"GOVERNMENT"
|
|
7935
|
+
],
|
|
7936
|
+
"type": "option"
|
|
7937
|
+
},
|
|
7938
|
+
"address-street": {
|
|
7939
|
+
"description": "Street address",
|
|
7940
|
+
"name": "address-street",
|
|
7941
|
+
"hasDynamicHelp": false,
|
|
7942
|
+
"multiple": false,
|
|
7943
|
+
"type": "option"
|
|
7944
|
+
},
|
|
7945
|
+
"address-city": {
|
|
7946
|
+
"description": "City",
|
|
7947
|
+
"name": "address-city",
|
|
7948
|
+
"hasDynamicHelp": false,
|
|
7949
|
+
"multiple": false,
|
|
7950
|
+
"type": "option"
|
|
7951
|
+
},
|
|
7952
|
+
"address-state": {
|
|
7953
|
+
"description": "State / region",
|
|
7954
|
+
"name": "address-state",
|
|
7955
|
+
"hasDynamicHelp": false,
|
|
7956
|
+
"multiple": false,
|
|
7957
|
+
"type": "option"
|
|
7958
|
+
},
|
|
7959
|
+
"address-zip": {
|
|
7960
|
+
"description": "ZIP / postal code",
|
|
7961
|
+
"name": "address-zip",
|
|
7962
|
+
"hasDynamicHelp": false,
|
|
7963
|
+
"multiple": false,
|
|
7964
|
+
"type": "option"
|
|
7965
|
+
},
|
|
7966
|
+
"address-country": {
|
|
7967
|
+
"description": "Country code (e.g. US)",
|
|
7968
|
+
"name": "address-country",
|
|
7969
|
+
"hasDynamicHelp": false,
|
|
7970
|
+
"multiple": false,
|
|
7971
|
+
"type": "option"
|
|
7972
|
+
},
|
|
7973
|
+
"contact-first-name": {
|
|
7974
|
+
"description": "Contact first name",
|
|
7975
|
+
"name": "contact-first-name",
|
|
7976
|
+
"hasDynamicHelp": false,
|
|
7977
|
+
"multiple": false,
|
|
7978
|
+
"type": "option"
|
|
7979
|
+
},
|
|
7980
|
+
"contact-last-name": {
|
|
7981
|
+
"description": "Contact last name",
|
|
7982
|
+
"name": "contact-last-name",
|
|
7983
|
+
"hasDynamicHelp": false,
|
|
7984
|
+
"multiple": false,
|
|
7985
|
+
"type": "option"
|
|
7986
|
+
},
|
|
7987
|
+
"contact-email": {
|
|
7988
|
+
"description": "Contact email address",
|
|
7989
|
+
"name": "contact-email",
|
|
7990
|
+
"hasDynamicHelp": false,
|
|
7991
|
+
"multiple": false,
|
|
7992
|
+
"type": "option"
|
|
7993
|
+
},
|
|
7994
|
+
"contact-phone": {
|
|
7995
|
+
"description": "Contact phone number (E.164)",
|
|
7996
|
+
"name": "contact-phone",
|
|
7997
|
+
"hasDynamicHelp": false,
|
|
7998
|
+
"multiple": false,
|
|
7999
|
+
"type": "option"
|
|
8000
|
+
},
|
|
8001
|
+
"brn": {
|
|
8002
|
+
"description": "Business registration number (omit for sole proprietors; server will strip)",
|
|
8003
|
+
"name": "brn",
|
|
8004
|
+
"hasDynamicHelp": false,
|
|
8005
|
+
"multiple": false,
|
|
8006
|
+
"type": "option"
|
|
8007
|
+
},
|
|
8008
|
+
"brn-type": {
|
|
8009
|
+
"description": "BRN type (EIN | SSN | DUNS | CRA | VAT | LEI | OTHER)",
|
|
8010
|
+
"name": "brn-type",
|
|
8011
|
+
"hasDynamicHelp": false,
|
|
8012
|
+
"multiple": false,
|
|
8013
|
+
"options": [
|
|
8014
|
+
"EIN",
|
|
8015
|
+
"SSN",
|
|
8016
|
+
"DUNS",
|
|
8017
|
+
"CRA",
|
|
8018
|
+
"VAT",
|
|
8019
|
+
"LEI",
|
|
8020
|
+
"OTHER"
|
|
8021
|
+
],
|
|
8022
|
+
"type": "option"
|
|
8023
|
+
},
|
|
8024
|
+
"brn-country": {
|
|
8025
|
+
"description": "BRN country code (e.g. US)",
|
|
8026
|
+
"name": "brn-country",
|
|
8027
|
+
"hasDynamicHelp": false,
|
|
8028
|
+
"multiple": false,
|
|
8029
|
+
"type": "option"
|
|
8030
|
+
},
|
|
8031
|
+
"use-case": {
|
|
8032
|
+
"description": "Use case (Telnyx use-case enum value)",
|
|
8033
|
+
"name": "use-case",
|
|
8034
|
+
"hasDynamicHelp": false,
|
|
8035
|
+
"multiple": false,
|
|
8036
|
+
"type": "option"
|
|
8037
|
+
},
|
|
8038
|
+
"use-case-summary": {
|
|
8039
|
+
"description": "Use case summary",
|
|
8040
|
+
"name": "use-case-summary",
|
|
8041
|
+
"hasDynamicHelp": false,
|
|
8042
|
+
"multiple": false,
|
|
8043
|
+
"type": "option"
|
|
8044
|
+
},
|
|
8045
|
+
"sample-messages": {
|
|
8046
|
+
"description": "Sample messages",
|
|
8047
|
+
"name": "sample-messages",
|
|
8048
|
+
"hasDynamicHelp": false,
|
|
8049
|
+
"multiple": false,
|
|
8050
|
+
"type": "option"
|
|
8051
|
+
},
|
|
8052
|
+
"opt-in-workflow": {
|
|
8053
|
+
"description": "Opt-in workflow description",
|
|
8054
|
+
"name": "opt-in-workflow",
|
|
8055
|
+
"hasDynamicHelp": false,
|
|
8056
|
+
"multiple": false,
|
|
8057
|
+
"type": "option"
|
|
8058
|
+
},
|
|
8059
|
+
"opt-in-image-urls": {
|
|
8060
|
+
"description": "Opt-in image URLs (newline or comma separated)",
|
|
8061
|
+
"name": "opt-in-image-urls",
|
|
8062
|
+
"hasDynamicHelp": false,
|
|
8063
|
+
"multiple": false,
|
|
8064
|
+
"type": "option"
|
|
8065
|
+
},
|
|
8066
|
+
"monthly-volume": {
|
|
8067
|
+
"description": "Estimated monthly message volume",
|
|
8068
|
+
"name": "monthly-volume",
|
|
8069
|
+
"hasDynamicHelp": false,
|
|
8070
|
+
"multiple": false,
|
|
8071
|
+
"type": "option"
|
|
8072
|
+
},
|
|
8073
|
+
"additional-information": {
|
|
8074
|
+
"description": "Additional information for the carrier",
|
|
8075
|
+
"name": "additional-information",
|
|
8076
|
+
"hasDynamicHelp": false,
|
|
8077
|
+
"multiple": false,
|
|
8078
|
+
"type": "option"
|
|
8079
|
+
},
|
|
8080
|
+
"age-gated-content": {
|
|
8081
|
+
"description": "Mark traffic as age-gated content",
|
|
8082
|
+
"name": "age-gated-content",
|
|
8083
|
+
"allowNo": true,
|
|
8084
|
+
"type": "boolean"
|
|
8085
|
+
},
|
|
8086
|
+
"isv-reseller": {
|
|
8087
|
+
"description": "ISV / reseller name (if applicable)",
|
|
8088
|
+
"name": "isv-reseller",
|
|
8089
|
+
"hasDynamicHelp": false,
|
|
8090
|
+
"multiple": false,
|
|
8091
|
+
"type": "option"
|
|
8092
|
+
},
|
|
8093
|
+
"privacy-url": {
|
|
8094
|
+
"description": "Privacy policy URL",
|
|
8095
|
+
"name": "privacy-url",
|
|
8096
|
+
"hasDynamicHelp": false,
|
|
8097
|
+
"multiple": false,
|
|
8098
|
+
"type": "option"
|
|
8099
|
+
},
|
|
8100
|
+
"terms-url": {
|
|
8101
|
+
"description": "Terms of service URL",
|
|
8102
|
+
"name": "terms-url",
|
|
8103
|
+
"hasDynamicHelp": false,
|
|
8104
|
+
"multiple": false,
|
|
8105
|
+
"type": "option"
|
|
6994
8106
|
}
|
|
6995
8107
|
},
|
|
6996
8108
|
"hasDynamicHelp": false,
|
|
6997
8109
|
"hiddenAliases": [],
|
|
6998
|
-
"id": "enterprise:
|
|
8110
|
+
"id": "enterprise:verification:resubmit",
|
|
6999
8111
|
"pluginAlias": "@sendly/cli",
|
|
7000
8112
|
"pluginName": "@sendly/cli",
|
|
7001
8113
|
"pluginType": "core",
|
|
@@ -7005,11 +8117,11 @@
|
|
|
7005
8117
|
"dist",
|
|
7006
8118
|
"commands",
|
|
7007
8119
|
"enterprise",
|
|
7008
|
-
"
|
|
7009
|
-
"
|
|
8120
|
+
"verification",
|
|
8121
|
+
"resubmit.js"
|
|
7010
8122
|
]
|
|
7011
8123
|
},
|
|
7012
|
-
"enterprise:
|
|
8124
|
+
"enterprise:verification:submit": {
|
|
7013
8125
|
"aliases": [],
|
|
7014
8126
|
"args": {
|
|
7015
8127
|
"workspaceId": {
|
|
@@ -7018,12 +8130,11 @@
|
|
|
7018
8130
|
"required": true
|
|
7019
8131
|
}
|
|
7020
8132
|
},
|
|
7021
|
-
"description": "
|
|
8133
|
+
"description": "Submit (or resubmit) a verification for an enterprise workspace. Partial-update friendly: only the fields you pass are changed.",
|
|
7022
8134
|
"examples": [
|
|
7023
|
-
"<%= config.bin %> enterprise
|
|
7024
|
-
"<%= config.bin %> enterprise
|
|
7025
|
-
"<%= config.bin %> enterprise
|
|
7026
|
-
"<%= config.bin %> enterprise quota set org_abc123 --daily unlimited"
|
|
8135
|
+
"<%= config.bin %> enterprise verification submit org_abc123 --data ./verification.json",
|
|
8136
|
+
"<%= config.bin %> enterprise verification submit org_abc123 --business-name \"Acme LLC\" --website https://acme.com --use-case \"Insurance Services\"",
|
|
8137
|
+
"<%= config.bin %> enterprise verification submit org_abc123 --contact-email new@acme.com"
|
|
7027
8138
|
],
|
|
7028
8139
|
"flags": {
|
|
7029
8140
|
"json": {
|
|
@@ -7039,16 +8150,214 @@
|
|
|
7039
8150
|
"allowNo": false,
|
|
7040
8151
|
"type": "boolean"
|
|
7041
8152
|
},
|
|
7042
|
-
"
|
|
7043
|
-
"
|
|
7044
|
-
"
|
|
8153
|
+
"data": {
|
|
8154
|
+
"char": "d",
|
|
8155
|
+
"description": "Path to a JSON file containing the verification payload",
|
|
8156
|
+
"name": "data",
|
|
7045
8157
|
"hasDynamicHelp": false,
|
|
7046
8158
|
"multiple": false,
|
|
7047
8159
|
"type": "option"
|
|
7048
8160
|
},
|
|
7049
|
-
"
|
|
7050
|
-
"description": "
|
|
7051
|
-
"name": "
|
|
8161
|
+
"business-name": {
|
|
8162
|
+
"description": "Legal business name",
|
|
8163
|
+
"name": "business-name",
|
|
8164
|
+
"hasDynamicHelp": false,
|
|
8165
|
+
"multiple": false,
|
|
8166
|
+
"type": "option"
|
|
8167
|
+
},
|
|
8168
|
+
"doing-business-as": {
|
|
8169
|
+
"description": "DBA / trading name",
|
|
8170
|
+
"name": "doing-business-as",
|
|
8171
|
+
"hasDynamicHelp": false,
|
|
8172
|
+
"multiple": false,
|
|
8173
|
+
"type": "option"
|
|
8174
|
+
},
|
|
8175
|
+
"website": {
|
|
8176
|
+
"description": "Business website URL",
|
|
8177
|
+
"name": "website",
|
|
8178
|
+
"hasDynamicHelp": false,
|
|
8179
|
+
"multiple": false,
|
|
8180
|
+
"type": "option"
|
|
8181
|
+
},
|
|
8182
|
+
"entity-type": {
|
|
8183
|
+
"description": "Entity type (SOLE_PROPRIETOR | PRIVATE_PROFIT | PUBLIC_PROFIT | NON_PROFIT | GOVERNMENT)",
|
|
8184
|
+
"name": "entity-type",
|
|
8185
|
+
"hasDynamicHelp": false,
|
|
8186
|
+
"multiple": false,
|
|
8187
|
+
"options": [
|
|
8188
|
+
"SOLE_PROPRIETOR",
|
|
8189
|
+
"PRIVATE_PROFIT",
|
|
8190
|
+
"PUBLIC_PROFIT",
|
|
8191
|
+
"NON_PROFIT",
|
|
8192
|
+
"GOVERNMENT"
|
|
8193
|
+
],
|
|
8194
|
+
"type": "option"
|
|
8195
|
+
},
|
|
8196
|
+
"address-street": {
|
|
8197
|
+
"description": "Street address",
|
|
8198
|
+
"name": "address-street",
|
|
8199
|
+
"hasDynamicHelp": false,
|
|
8200
|
+
"multiple": false,
|
|
8201
|
+
"type": "option"
|
|
8202
|
+
},
|
|
8203
|
+
"address-city": {
|
|
8204
|
+
"description": "City",
|
|
8205
|
+
"name": "address-city",
|
|
8206
|
+
"hasDynamicHelp": false,
|
|
8207
|
+
"multiple": false,
|
|
8208
|
+
"type": "option"
|
|
8209
|
+
},
|
|
8210
|
+
"address-state": {
|
|
8211
|
+
"description": "State / region",
|
|
8212
|
+
"name": "address-state",
|
|
8213
|
+
"hasDynamicHelp": false,
|
|
8214
|
+
"multiple": false,
|
|
8215
|
+
"type": "option"
|
|
8216
|
+
},
|
|
8217
|
+
"address-zip": {
|
|
8218
|
+
"description": "ZIP / postal code",
|
|
8219
|
+
"name": "address-zip",
|
|
8220
|
+
"hasDynamicHelp": false,
|
|
8221
|
+
"multiple": false,
|
|
8222
|
+
"type": "option"
|
|
8223
|
+
},
|
|
8224
|
+
"address-country": {
|
|
8225
|
+
"description": "Country code (e.g. US)",
|
|
8226
|
+
"name": "address-country",
|
|
8227
|
+
"hasDynamicHelp": false,
|
|
8228
|
+
"multiple": false,
|
|
8229
|
+
"type": "option"
|
|
8230
|
+
},
|
|
8231
|
+
"contact-first-name": {
|
|
8232
|
+
"description": "Contact first name",
|
|
8233
|
+
"name": "contact-first-name",
|
|
8234
|
+
"hasDynamicHelp": false,
|
|
8235
|
+
"multiple": false,
|
|
8236
|
+
"type": "option"
|
|
8237
|
+
},
|
|
8238
|
+
"contact-last-name": {
|
|
8239
|
+
"description": "Contact last name",
|
|
8240
|
+
"name": "contact-last-name",
|
|
8241
|
+
"hasDynamicHelp": false,
|
|
8242
|
+
"multiple": false,
|
|
8243
|
+
"type": "option"
|
|
8244
|
+
},
|
|
8245
|
+
"contact-email": {
|
|
8246
|
+
"description": "Contact email address",
|
|
8247
|
+
"name": "contact-email",
|
|
8248
|
+
"hasDynamicHelp": false,
|
|
8249
|
+
"multiple": false,
|
|
8250
|
+
"type": "option"
|
|
8251
|
+
},
|
|
8252
|
+
"contact-phone": {
|
|
8253
|
+
"description": "Contact phone number (E.164)",
|
|
8254
|
+
"name": "contact-phone",
|
|
8255
|
+
"hasDynamicHelp": false,
|
|
8256
|
+
"multiple": false,
|
|
8257
|
+
"type": "option"
|
|
8258
|
+
},
|
|
8259
|
+
"brn": {
|
|
8260
|
+
"description": "Business registration number (omit for sole proprietors; server will strip)",
|
|
8261
|
+
"name": "brn",
|
|
8262
|
+
"hasDynamicHelp": false,
|
|
8263
|
+
"multiple": false,
|
|
8264
|
+
"type": "option"
|
|
8265
|
+
},
|
|
8266
|
+
"brn-type": {
|
|
8267
|
+
"description": "BRN type (EIN | SSN | DUNS | CRA | VAT | LEI | OTHER)",
|
|
8268
|
+
"name": "brn-type",
|
|
8269
|
+
"hasDynamicHelp": false,
|
|
8270
|
+
"multiple": false,
|
|
8271
|
+
"options": [
|
|
8272
|
+
"EIN",
|
|
8273
|
+
"SSN",
|
|
8274
|
+
"DUNS",
|
|
8275
|
+
"CRA",
|
|
8276
|
+
"VAT",
|
|
8277
|
+
"LEI",
|
|
8278
|
+
"OTHER"
|
|
8279
|
+
],
|
|
8280
|
+
"type": "option"
|
|
8281
|
+
},
|
|
8282
|
+
"brn-country": {
|
|
8283
|
+
"description": "BRN country code (e.g. US)",
|
|
8284
|
+
"name": "brn-country",
|
|
8285
|
+
"hasDynamicHelp": false,
|
|
8286
|
+
"multiple": false,
|
|
8287
|
+
"type": "option"
|
|
8288
|
+
},
|
|
8289
|
+
"use-case": {
|
|
8290
|
+
"description": "Use case (Telnyx use-case enum value)",
|
|
8291
|
+
"name": "use-case",
|
|
8292
|
+
"hasDynamicHelp": false,
|
|
8293
|
+
"multiple": false,
|
|
8294
|
+
"type": "option"
|
|
8295
|
+
},
|
|
8296
|
+
"use-case-summary": {
|
|
8297
|
+
"description": "Use case summary",
|
|
8298
|
+
"name": "use-case-summary",
|
|
8299
|
+
"hasDynamicHelp": false,
|
|
8300
|
+
"multiple": false,
|
|
8301
|
+
"type": "option"
|
|
8302
|
+
},
|
|
8303
|
+
"sample-messages": {
|
|
8304
|
+
"description": "Sample messages",
|
|
8305
|
+
"name": "sample-messages",
|
|
8306
|
+
"hasDynamicHelp": false,
|
|
8307
|
+
"multiple": false,
|
|
8308
|
+
"type": "option"
|
|
8309
|
+
},
|
|
8310
|
+
"opt-in-workflow": {
|
|
8311
|
+
"description": "Opt-in workflow description",
|
|
8312
|
+
"name": "opt-in-workflow",
|
|
8313
|
+
"hasDynamicHelp": false,
|
|
8314
|
+
"multiple": false,
|
|
8315
|
+
"type": "option"
|
|
8316
|
+
},
|
|
8317
|
+
"opt-in-image-urls": {
|
|
8318
|
+
"description": "Opt-in image URLs (newline or comma separated)",
|
|
8319
|
+
"name": "opt-in-image-urls",
|
|
8320
|
+
"hasDynamicHelp": false,
|
|
8321
|
+
"multiple": false,
|
|
8322
|
+
"type": "option"
|
|
8323
|
+
},
|
|
8324
|
+
"monthly-volume": {
|
|
8325
|
+
"description": "Estimated monthly message volume",
|
|
8326
|
+
"name": "monthly-volume",
|
|
8327
|
+
"hasDynamicHelp": false,
|
|
8328
|
+
"multiple": false,
|
|
8329
|
+
"type": "option"
|
|
8330
|
+
},
|
|
8331
|
+
"additional-information": {
|
|
8332
|
+
"description": "Additional information for the carrier",
|
|
8333
|
+
"name": "additional-information",
|
|
8334
|
+
"hasDynamicHelp": false,
|
|
8335
|
+
"multiple": false,
|
|
8336
|
+
"type": "option"
|
|
8337
|
+
},
|
|
8338
|
+
"age-gated-content": {
|
|
8339
|
+
"description": "Mark traffic as age-gated content",
|
|
8340
|
+
"name": "age-gated-content",
|
|
8341
|
+
"allowNo": true,
|
|
8342
|
+
"type": "boolean"
|
|
8343
|
+
},
|
|
8344
|
+
"isv-reseller": {
|
|
8345
|
+
"description": "ISV / reseller name (if applicable)",
|
|
8346
|
+
"name": "isv-reseller",
|
|
8347
|
+
"hasDynamicHelp": false,
|
|
8348
|
+
"multiple": false,
|
|
8349
|
+
"type": "option"
|
|
8350
|
+
},
|
|
8351
|
+
"privacy-url": {
|
|
8352
|
+
"description": "Privacy policy URL",
|
|
8353
|
+
"name": "privacy-url",
|
|
8354
|
+
"hasDynamicHelp": false,
|
|
8355
|
+
"multiple": false,
|
|
8356
|
+
"type": "option"
|
|
8357
|
+
},
|
|
8358
|
+
"terms-url": {
|
|
8359
|
+
"description": "Terms of service URL",
|
|
8360
|
+
"name": "terms-url",
|
|
7052
8361
|
"hasDynamicHelp": false,
|
|
7053
8362
|
"multiple": false,
|
|
7054
8363
|
"type": "option"
|
|
@@ -7056,7 +8365,7 @@
|
|
|
7056
8365
|
},
|
|
7057
8366
|
"hasDynamicHelp": false,
|
|
7058
8367
|
"hiddenAliases": [],
|
|
7059
|
-
"id": "enterprise:
|
|
8368
|
+
"id": "enterprise:verification:submit",
|
|
7060
8369
|
"pluginAlias": "@sendly/cli",
|
|
7061
8370
|
"pluginName": "@sendly/cli",
|
|
7062
8371
|
"pluginType": "core",
|
|
@@ -7066,8 +8375,8 @@
|
|
|
7066
8375
|
"dist",
|
|
7067
8376
|
"commands",
|
|
7068
8377
|
"enterprise",
|
|
7069
|
-
"
|
|
7070
|
-
"
|
|
8378
|
+
"verification",
|
|
8379
|
+
"submit.js"
|
|
7071
8380
|
]
|
|
7072
8381
|
},
|
|
7073
8382
|
"enterprise:webhooks:delete": {
|
|
@@ -7537,5 +8846,5 @@
|
|
|
7537
8846
|
]
|
|
7538
8847
|
}
|
|
7539
8848
|
},
|
|
7540
|
-
"version": "3.
|
|
8849
|
+
"version": "3.36.0"
|
|
7541
8850
|
}
|