@sendly/cli 3.20.0 → 3.23.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/conversations/close.d.ts +13 -0
- package/dist/commands/conversations/close.js +43 -0
- package/dist/commands/conversations/get.d.ts +15 -0
- package/dist/commands/conversations/get.js +87 -0
- package/dist/commands/conversations/index.d.ts +10 -0
- package/dist/commands/conversations/index.js +79 -0
- package/dist/commands/conversations/list.d.ts +13 -0
- package/dist/commands/conversations/list.js +99 -0
- package/dist/commands/conversations/mark-read.d.ts +13 -0
- package/dist/commands/conversations/mark-read.js +42 -0
- package/dist/commands/conversations/reopen.d.ts +13 -0
- package/dist/commands/conversations/reopen.js +43 -0
- package/dist/commands/conversations/reply.d.ts +14 -0
- package/dist/commands/conversations/reply.js +47 -0
- package/dist/commands/drafts/approve.d.ts +13 -0
- package/dist/commands/drafts/approve.js +43 -0
- package/dist/commands/drafts/create.d.ts +14 -0
- package/dist/commands/drafts/create.js +50 -0
- package/dist/commands/drafts/index.d.ts +10 -0
- package/dist/commands/drafts/index.js +66 -0
- package/dist/commands/drafts/list.d.ts +12 -0
- package/dist/commands/drafts/list.js +80 -0
- package/dist/commands/drafts/reject.d.ts +14 -0
- package/dist/commands/drafts/reject.js +51 -0
- package/dist/commands/labels/create.d.ts +15 -0
- package/dist/commands/labels/create.js +58 -0
- package/dist/commands/labels/delete.d.ts +13 -0
- package/dist/commands/labels/delete.js +41 -0
- package/dist/commands/labels/index.d.ts +10 -0
- package/dist/commands/labels/index.js +59 -0
- package/dist/commands/labels/list.d.ts +10 -0
- package/dist/commands/labels/list.js +59 -0
- package/dist/commands/sms/schedule.js +2 -2
- package/oclif.manifest.json +1449 -674
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -901,6 +901,649 @@
|
|
|
901
901
|
"update.js"
|
|
902
902
|
]
|
|
903
903
|
},
|
|
904
|
+
"config:get": {
|
|
905
|
+
"aliases": [],
|
|
906
|
+
"args": {
|
|
907
|
+
"key": {
|
|
908
|
+
"description": "Configuration key",
|
|
909
|
+
"name": "key",
|
|
910
|
+
"options": [
|
|
911
|
+
"environment",
|
|
912
|
+
"baseUrl",
|
|
913
|
+
"defaultFormat",
|
|
914
|
+
"colorEnabled"
|
|
915
|
+
],
|
|
916
|
+
"required": true
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
"description": "Get a configuration value",
|
|
920
|
+
"examples": [
|
|
921
|
+
"<%= config.bin %> config get environment",
|
|
922
|
+
"<%= config.bin %> config get baseUrl"
|
|
923
|
+
],
|
|
924
|
+
"flags": {
|
|
925
|
+
"json": {
|
|
926
|
+
"description": "Output in JSON format",
|
|
927
|
+
"name": "json",
|
|
928
|
+
"allowNo": false,
|
|
929
|
+
"type": "boolean"
|
|
930
|
+
},
|
|
931
|
+
"quiet": {
|
|
932
|
+
"char": "q",
|
|
933
|
+
"description": "Minimal output",
|
|
934
|
+
"name": "quiet",
|
|
935
|
+
"allowNo": false,
|
|
936
|
+
"type": "boolean"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
"hasDynamicHelp": false,
|
|
940
|
+
"hiddenAliases": [],
|
|
941
|
+
"id": "config:get",
|
|
942
|
+
"pluginAlias": "@sendly/cli",
|
|
943
|
+
"pluginName": "@sendly/cli",
|
|
944
|
+
"pluginType": "core",
|
|
945
|
+
"strict": true,
|
|
946
|
+
"enableJsonFlag": false,
|
|
947
|
+
"isESM": true,
|
|
948
|
+
"relativePath": [
|
|
949
|
+
"dist",
|
|
950
|
+
"commands",
|
|
951
|
+
"config",
|
|
952
|
+
"get.js"
|
|
953
|
+
]
|
|
954
|
+
},
|
|
955
|
+
"config:list": {
|
|
956
|
+
"aliases": [],
|
|
957
|
+
"args": {},
|
|
958
|
+
"description": "List all configuration values",
|
|
959
|
+
"examples": [
|
|
960
|
+
"<%= config.bin %> config list",
|
|
961
|
+
"<%= config.bin %> config list --json"
|
|
962
|
+
],
|
|
963
|
+
"flags": {
|
|
964
|
+
"json": {
|
|
965
|
+
"description": "Output in JSON format",
|
|
966
|
+
"name": "json",
|
|
967
|
+
"allowNo": false,
|
|
968
|
+
"type": "boolean"
|
|
969
|
+
},
|
|
970
|
+
"quiet": {
|
|
971
|
+
"char": "q",
|
|
972
|
+
"description": "Minimal output",
|
|
973
|
+
"name": "quiet",
|
|
974
|
+
"allowNo": false,
|
|
975
|
+
"type": "boolean"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
"hasDynamicHelp": false,
|
|
979
|
+
"hiddenAliases": [],
|
|
980
|
+
"id": "config:list",
|
|
981
|
+
"pluginAlias": "@sendly/cli",
|
|
982
|
+
"pluginName": "@sendly/cli",
|
|
983
|
+
"pluginType": "core",
|
|
984
|
+
"strict": true,
|
|
985
|
+
"enableJsonFlag": false,
|
|
986
|
+
"isESM": true,
|
|
987
|
+
"relativePath": [
|
|
988
|
+
"dist",
|
|
989
|
+
"commands",
|
|
990
|
+
"config",
|
|
991
|
+
"list.js"
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
"config:set": {
|
|
995
|
+
"aliases": [],
|
|
996
|
+
"args": {
|
|
997
|
+
"key": {
|
|
998
|
+
"description": "Configuration key",
|
|
999
|
+
"name": "key",
|
|
1000
|
+
"options": [
|
|
1001
|
+
"environment",
|
|
1002
|
+
"baseUrl",
|
|
1003
|
+
"defaultFormat",
|
|
1004
|
+
"colorEnabled"
|
|
1005
|
+
],
|
|
1006
|
+
"required": true
|
|
1007
|
+
},
|
|
1008
|
+
"value": {
|
|
1009
|
+
"description": "Configuration value",
|
|
1010
|
+
"name": "value",
|
|
1011
|
+
"required": true
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"description": "Set a configuration value",
|
|
1015
|
+
"examples": [
|
|
1016
|
+
"<%= config.bin %> config set environment live",
|
|
1017
|
+
"<%= config.bin %> config set defaultFormat json",
|
|
1018
|
+
"<%= config.bin %> config set baseUrl https://api.sendly.live"
|
|
1019
|
+
],
|
|
1020
|
+
"flags": {
|
|
1021
|
+
"json": {
|
|
1022
|
+
"description": "Output in JSON format",
|
|
1023
|
+
"name": "json",
|
|
1024
|
+
"allowNo": false,
|
|
1025
|
+
"type": "boolean"
|
|
1026
|
+
},
|
|
1027
|
+
"quiet": {
|
|
1028
|
+
"char": "q",
|
|
1029
|
+
"description": "Minimal output",
|
|
1030
|
+
"name": "quiet",
|
|
1031
|
+
"allowNo": false,
|
|
1032
|
+
"type": "boolean"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"hasDynamicHelp": false,
|
|
1036
|
+
"hiddenAliases": [],
|
|
1037
|
+
"id": "config:set",
|
|
1038
|
+
"pluginAlias": "@sendly/cli",
|
|
1039
|
+
"pluginName": "@sendly/cli",
|
|
1040
|
+
"pluginType": "core",
|
|
1041
|
+
"strict": true,
|
|
1042
|
+
"enableJsonFlag": false,
|
|
1043
|
+
"isESM": true,
|
|
1044
|
+
"relativePath": [
|
|
1045
|
+
"dist",
|
|
1046
|
+
"commands",
|
|
1047
|
+
"config",
|
|
1048
|
+
"set.js"
|
|
1049
|
+
]
|
|
1050
|
+
},
|
|
1051
|
+
"credits:balance": {
|
|
1052
|
+
"aliases": [],
|
|
1053
|
+
"args": {},
|
|
1054
|
+
"description": "Check your credit balance",
|
|
1055
|
+
"examples": [
|
|
1056
|
+
"<%= config.bin %> credits balance",
|
|
1057
|
+
"<%= config.bin %> credits balance --json"
|
|
1058
|
+
],
|
|
1059
|
+
"flags": {
|
|
1060
|
+
"json": {
|
|
1061
|
+
"description": "Output in JSON format",
|
|
1062
|
+
"name": "json",
|
|
1063
|
+
"allowNo": false,
|
|
1064
|
+
"type": "boolean"
|
|
1065
|
+
},
|
|
1066
|
+
"quiet": {
|
|
1067
|
+
"char": "q",
|
|
1068
|
+
"description": "Minimal output",
|
|
1069
|
+
"name": "quiet",
|
|
1070
|
+
"allowNo": false,
|
|
1071
|
+
"type": "boolean"
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
"hasDynamicHelp": false,
|
|
1075
|
+
"hiddenAliases": [],
|
|
1076
|
+
"id": "credits:balance",
|
|
1077
|
+
"pluginAlias": "@sendly/cli",
|
|
1078
|
+
"pluginName": "@sendly/cli",
|
|
1079
|
+
"pluginType": "core",
|
|
1080
|
+
"strict": true,
|
|
1081
|
+
"isESM": true,
|
|
1082
|
+
"relativePath": [
|
|
1083
|
+
"dist",
|
|
1084
|
+
"commands",
|
|
1085
|
+
"credits",
|
|
1086
|
+
"balance.js"
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
"credits:history": {
|
|
1090
|
+
"aliases": [],
|
|
1091
|
+
"args": {},
|
|
1092
|
+
"description": "View credit transaction history",
|
|
1093
|
+
"examples": [
|
|
1094
|
+
"<%= config.bin %> credits history",
|
|
1095
|
+
"<%= config.bin %> credits history --limit 10",
|
|
1096
|
+
"<%= config.bin %> credits history --json"
|
|
1097
|
+
],
|
|
1098
|
+
"flags": {
|
|
1099
|
+
"json": {
|
|
1100
|
+
"description": "Output in JSON format",
|
|
1101
|
+
"name": "json",
|
|
1102
|
+
"allowNo": false,
|
|
1103
|
+
"type": "boolean"
|
|
1104
|
+
},
|
|
1105
|
+
"quiet": {
|
|
1106
|
+
"char": "q",
|
|
1107
|
+
"description": "Minimal output",
|
|
1108
|
+
"name": "quiet",
|
|
1109
|
+
"allowNo": false,
|
|
1110
|
+
"type": "boolean"
|
|
1111
|
+
},
|
|
1112
|
+
"limit": {
|
|
1113
|
+
"char": "l",
|
|
1114
|
+
"description": "Number of transactions to show",
|
|
1115
|
+
"name": "limit",
|
|
1116
|
+
"default": 20,
|
|
1117
|
+
"hasDynamicHelp": false,
|
|
1118
|
+
"multiple": false,
|
|
1119
|
+
"type": "option"
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
"hasDynamicHelp": false,
|
|
1123
|
+
"hiddenAliases": [],
|
|
1124
|
+
"id": "credits:history",
|
|
1125
|
+
"pluginAlias": "@sendly/cli",
|
|
1126
|
+
"pluginName": "@sendly/cli",
|
|
1127
|
+
"pluginType": "core",
|
|
1128
|
+
"strict": true,
|
|
1129
|
+
"isESM": true,
|
|
1130
|
+
"relativePath": [
|
|
1131
|
+
"dist",
|
|
1132
|
+
"commands",
|
|
1133
|
+
"credits",
|
|
1134
|
+
"history.js"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"credits:transfer": {
|
|
1138
|
+
"aliases": [],
|
|
1139
|
+
"args": {},
|
|
1140
|
+
"description": "Transfer credits between workspaces",
|
|
1141
|
+
"examples": [
|
|
1142
|
+
"<%= config.bin %> credits transfer --to org_abc123 --amount 500",
|
|
1143
|
+
"<%= config.bin %> credits transfer --amount 1000",
|
|
1144
|
+
"<%= config.bin %> credits transfer --to org_abc123 --amount 500 --yes"
|
|
1145
|
+
],
|
|
1146
|
+
"flags": {
|
|
1147
|
+
"json": {
|
|
1148
|
+
"description": "Output in JSON format",
|
|
1149
|
+
"name": "json",
|
|
1150
|
+
"allowNo": false,
|
|
1151
|
+
"type": "boolean"
|
|
1152
|
+
},
|
|
1153
|
+
"quiet": {
|
|
1154
|
+
"char": "q",
|
|
1155
|
+
"description": "Minimal output",
|
|
1156
|
+
"name": "quiet",
|
|
1157
|
+
"allowNo": false,
|
|
1158
|
+
"type": "boolean"
|
|
1159
|
+
},
|
|
1160
|
+
"to": {
|
|
1161
|
+
"description": "Target workspace ID to transfer credits to",
|
|
1162
|
+
"name": "to",
|
|
1163
|
+
"hasDynamicHelp": false,
|
|
1164
|
+
"multiple": false,
|
|
1165
|
+
"type": "option"
|
|
1166
|
+
},
|
|
1167
|
+
"amount": {
|
|
1168
|
+
"char": "a",
|
|
1169
|
+
"description": "Number of credits to transfer",
|
|
1170
|
+
"name": "amount",
|
|
1171
|
+
"hasDynamicHelp": false,
|
|
1172
|
+
"multiple": false,
|
|
1173
|
+
"type": "option"
|
|
1174
|
+
},
|
|
1175
|
+
"yes": {
|
|
1176
|
+
"char": "y",
|
|
1177
|
+
"description": "Skip confirmation prompt",
|
|
1178
|
+
"name": "yes",
|
|
1179
|
+
"allowNo": false,
|
|
1180
|
+
"type": "boolean"
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
"hasDynamicHelp": false,
|
|
1184
|
+
"hiddenAliases": [],
|
|
1185
|
+
"id": "credits:transfer",
|
|
1186
|
+
"pluginAlias": "@sendly/cli",
|
|
1187
|
+
"pluginName": "@sendly/cli",
|
|
1188
|
+
"pluginType": "core",
|
|
1189
|
+
"strict": true,
|
|
1190
|
+
"isESM": true,
|
|
1191
|
+
"relativePath": [
|
|
1192
|
+
"dist",
|
|
1193
|
+
"commands",
|
|
1194
|
+
"credits",
|
|
1195
|
+
"transfer.js"
|
|
1196
|
+
]
|
|
1197
|
+
},
|
|
1198
|
+
"conversations:close": {
|
|
1199
|
+
"aliases": [],
|
|
1200
|
+
"args": {
|
|
1201
|
+
"id": {
|
|
1202
|
+
"description": "Conversation ID",
|
|
1203
|
+
"name": "id",
|
|
1204
|
+
"required": true
|
|
1205
|
+
}
|
|
1206
|
+
},
|
|
1207
|
+
"description": "Close a conversation",
|
|
1208
|
+
"examples": [
|
|
1209
|
+
"<%= config.bin %> conversations close conv_abc123",
|
|
1210
|
+
"<%= config.bin %> conversations close conv_abc123 --json"
|
|
1211
|
+
],
|
|
1212
|
+
"flags": {
|
|
1213
|
+
"json": {
|
|
1214
|
+
"description": "Output in JSON format",
|
|
1215
|
+
"name": "json",
|
|
1216
|
+
"allowNo": false,
|
|
1217
|
+
"type": "boolean"
|
|
1218
|
+
},
|
|
1219
|
+
"quiet": {
|
|
1220
|
+
"char": "q",
|
|
1221
|
+
"description": "Minimal output",
|
|
1222
|
+
"name": "quiet",
|
|
1223
|
+
"allowNo": false,
|
|
1224
|
+
"type": "boolean"
|
|
1225
|
+
}
|
|
1226
|
+
},
|
|
1227
|
+
"hasDynamicHelp": false,
|
|
1228
|
+
"hiddenAliases": [],
|
|
1229
|
+
"id": "conversations:close",
|
|
1230
|
+
"pluginAlias": "@sendly/cli",
|
|
1231
|
+
"pluginName": "@sendly/cli",
|
|
1232
|
+
"pluginType": "core",
|
|
1233
|
+
"strict": true,
|
|
1234
|
+
"isESM": true,
|
|
1235
|
+
"relativePath": [
|
|
1236
|
+
"dist",
|
|
1237
|
+
"commands",
|
|
1238
|
+
"conversations",
|
|
1239
|
+
"close.js"
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
"conversations:get": {
|
|
1243
|
+
"aliases": [],
|
|
1244
|
+
"args": {
|
|
1245
|
+
"id": {
|
|
1246
|
+
"description": "Conversation ID",
|
|
1247
|
+
"name": "id",
|
|
1248
|
+
"required": true
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"description": "Get details of a conversation",
|
|
1252
|
+
"examples": [
|
|
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"
|
|
1257
|
+
],
|
|
1258
|
+
"flags": {
|
|
1259
|
+
"json": {
|
|
1260
|
+
"description": "Output in JSON format",
|
|
1261
|
+
"name": "json",
|
|
1262
|
+
"allowNo": false,
|
|
1263
|
+
"type": "boolean"
|
|
1264
|
+
},
|
|
1265
|
+
"quiet": {
|
|
1266
|
+
"char": "q",
|
|
1267
|
+
"description": "Minimal output",
|
|
1268
|
+
"name": "quiet",
|
|
1269
|
+
"allowNo": false,
|
|
1270
|
+
"type": "boolean"
|
|
1271
|
+
},
|
|
1272
|
+
"messages": {
|
|
1273
|
+
"char": "m",
|
|
1274
|
+
"description": "Include message thread",
|
|
1275
|
+
"name": "messages",
|
|
1276
|
+
"allowNo": false,
|
|
1277
|
+
"type": "boolean"
|
|
1278
|
+
},
|
|
1279
|
+
"limit": {
|
|
1280
|
+
"char": "l",
|
|
1281
|
+
"description": "Number of messages to include (requires --messages)",
|
|
1282
|
+
"name": "limit",
|
|
1283
|
+
"default": 50,
|
|
1284
|
+
"hasDynamicHelp": false,
|
|
1285
|
+
"multiple": false,
|
|
1286
|
+
"type": "option"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"hasDynamicHelp": false,
|
|
1290
|
+
"hiddenAliases": [],
|
|
1291
|
+
"id": "conversations:get",
|
|
1292
|
+
"pluginAlias": "@sendly/cli",
|
|
1293
|
+
"pluginName": "@sendly/cli",
|
|
1294
|
+
"pluginType": "core",
|
|
1295
|
+
"strict": true,
|
|
1296
|
+
"isESM": true,
|
|
1297
|
+
"relativePath": [
|
|
1298
|
+
"dist",
|
|
1299
|
+
"commands",
|
|
1300
|
+
"conversations",
|
|
1301
|
+
"get.js"
|
|
1302
|
+
]
|
|
1303
|
+
},
|
|
1304
|
+
"conversations": {
|
|
1305
|
+
"aliases": [],
|
|
1306
|
+
"args": {},
|
|
1307
|
+
"description": "List conversations (default subcommand)",
|
|
1308
|
+
"examples": [
|
|
1309
|
+
"<%= config.bin %> conversations",
|
|
1310
|
+
"<%= config.bin %> conversations --json"
|
|
1311
|
+
],
|
|
1312
|
+
"flags": {
|
|
1313
|
+
"json": {
|
|
1314
|
+
"description": "Output in JSON format",
|
|
1315
|
+
"name": "json",
|
|
1316
|
+
"allowNo": false,
|
|
1317
|
+
"type": "boolean"
|
|
1318
|
+
},
|
|
1319
|
+
"quiet": {
|
|
1320
|
+
"char": "q",
|
|
1321
|
+
"description": "Minimal output",
|
|
1322
|
+
"name": "quiet",
|
|
1323
|
+
"allowNo": false,
|
|
1324
|
+
"type": "boolean"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"hasDynamicHelp": false,
|
|
1328
|
+
"hiddenAliases": [],
|
|
1329
|
+
"id": "conversations",
|
|
1330
|
+
"pluginAlias": "@sendly/cli",
|
|
1331
|
+
"pluginName": "@sendly/cli",
|
|
1332
|
+
"pluginType": "core",
|
|
1333
|
+
"strict": true,
|
|
1334
|
+
"isESM": true,
|
|
1335
|
+
"relativePath": [
|
|
1336
|
+
"dist",
|
|
1337
|
+
"commands",
|
|
1338
|
+
"conversations",
|
|
1339
|
+
"index.js"
|
|
1340
|
+
]
|
|
1341
|
+
},
|
|
1342
|
+
"conversations:list": {
|
|
1343
|
+
"aliases": [],
|
|
1344
|
+
"args": {},
|
|
1345
|
+
"description": "List conversations",
|
|
1346
|
+
"examples": [
|
|
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"
|
|
1351
|
+
],
|
|
1352
|
+
"flags": {
|
|
1353
|
+
"json": {
|
|
1354
|
+
"description": "Output in JSON format",
|
|
1355
|
+
"name": "json",
|
|
1356
|
+
"allowNo": false,
|
|
1357
|
+
"type": "boolean"
|
|
1358
|
+
},
|
|
1359
|
+
"quiet": {
|
|
1360
|
+
"char": "q",
|
|
1361
|
+
"description": "Minimal output",
|
|
1362
|
+
"name": "quiet",
|
|
1363
|
+
"allowNo": false,
|
|
1364
|
+
"type": "boolean"
|
|
1365
|
+
},
|
|
1366
|
+
"limit": {
|
|
1367
|
+
"char": "l",
|
|
1368
|
+
"description": "Number of conversations per page",
|
|
1369
|
+
"name": "limit",
|
|
1370
|
+
"default": 20,
|
|
1371
|
+
"hasDynamicHelp": false,
|
|
1372
|
+
"multiple": false,
|
|
1373
|
+
"type": "option"
|
|
1374
|
+
},
|
|
1375
|
+
"offset": {
|
|
1376
|
+
"description": "Offset from start",
|
|
1377
|
+
"name": "offset",
|
|
1378
|
+
"hasDynamicHelp": false,
|
|
1379
|
+
"multiple": false,
|
|
1380
|
+
"type": "option"
|
|
1381
|
+
},
|
|
1382
|
+
"status": {
|
|
1383
|
+
"char": "s",
|
|
1384
|
+
"description": "Filter by status (active, closed)",
|
|
1385
|
+
"name": "status",
|
|
1386
|
+
"hasDynamicHelp": false,
|
|
1387
|
+
"multiple": false,
|
|
1388
|
+
"options": [
|
|
1389
|
+
"active",
|
|
1390
|
+
"closed"
|
|
1391
|
+
],
|
|
1392
|
+
"type": "option"
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
"hasDynamicHelp": false,
|
|
1396
|
+
"hiddenAliases": [],
|
|
1397
|
+
"id": "conversations:list",
|
|
1398
|
+
"pluginAlias": "@sendly/cli",
|
|
1399
|
+
"pluginName": "@sendly/cli",
|
|
1400
|
+
"pluginType": "core",
|
|
1401
|
+
"strict": true,
|
|
1402
|
+
"isESM": true,
|
|
1403
|
+
"relativePath": [
|
|
1404
|
+
"dist",
|
|
1405
|
+
"commands",
|
|
1406
|
+
"conversations",
|
|
1407
|
+
"list.js"
|
|
1408
|
+
]
|
|
1409
|
+
},
|
|
1410
|
+
"conversations:mark-read": {
|
|
1411
|
+
"aliases": [],
|
|
1412
|
+
"args": {
|
|
1413
|
+
"id": {
|
|
1414
|
+
"description": "Conversation ID",
|
|
1415
|
+
"name": "id",
|
|
1416
|
+
"required": true
|
|
1417
|
+
}
|
|
1418
|
+
},
|
|
1419
|
+
"description": "Mark a conversation as read",
|
|
1420
|
+
"examples": [
|
|
1421
|
+
"<%= config.bin %> conversations mark-read conv_abc123",
|
|
1422
|
+
"<%= config.bin %> conversations mark-read conv_abc123 --json"
|
|
1423
|
+
],
|
|
1424
|
+
"flags": {
|
|
1425
|
+
"json": {
|
|
1426
|
+
"description": "Output in JSON format",
|
|
1427
|
+
"name": "json",
|
|
1428
|
+
"allowNo": false,
|
|
1429
|
+
"type": "boolean"
|
|
1430
|
+
},
|
|
1431
|
+
"quiet": {
|
|
1432
|
+
"char": "q",
|
|
1433
|
+
"description": "Minimal output",
|
|
1434
|
+
"name": "quiet",
|
|
1435
|
+
"allowNo": false,
|
|
1436
|
+
"type": "boolean"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"hasDynamicHelp": false,
|
|
1440
|
+
"hiddenAliases": [],
|
|
1441
|
+
"id": "conversations:mark-read",
|
|
1442
|
+
"pluginAlias": "@sendly/cli",
|
|
1443
|
+
"pluginName": "@sendly/cli",
|
|
1444
|
+
"pluginType": "core",
|
|
1445
|
+
"strict": true,
|
|
1446
|
+
"isESM": true,
|
|
1447
|
+
"relativePath": [
|
|
1448
|
+
"dist",
|
|
1449
|
+
"commands",
|
|
1450
|
+
"conversations",
|
|
1451
|
+
"mark-read.js"
|
|
1452
|
+
]
|
|
1453
|
+
},
|
|
1454
|
+
"conversations:reopen": {
|
|
1455
|
+
"aliases": [],
|
|
1456
|
+
"args": {
|
|
1457
|
+
"id": {
|
|
1458
|
+
"description": "Conversation ID",
|
|
1459
|
+
"name": "id",
|
|
1460
|
+
"required": true
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"description": "Reopen a closed conversation",
|
|
1464
|
+
"examples": [
|
|
1465
|
+
"<%= config.bin %> conversations reopen conv_abc123",
|
|
1466
|
+
"<%= config.bin %> conversations reopen conv_abc123 --json"
|
|
1467
|
+
],
|
|
1468
|
+
"flags": {
|
|
1469
|
+
"json": {
|
|
1470
|
+
"description": "Output in JSON format",
|
|
1471
|
+
"name": "json",
|
|
1472
|
+
"allowNo": false,
|
|
1473
|
+
"type": "boolean"
|
|
1474
|
+
},
|
|
1475
|
+
"quiet": {
|
|
1476
|
+
"char": "q",
|
|
1477
|
+
"description": "Minimal output",
|
|
1478
|
+
"name": "quiet",
|
|
1479
|
+
"allowNo": false,
|
|
1480
|
+
"type": "boolean"
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
"hasDynamicHelp": false,
|
|
1484
|
+
"hiddenAliases": [],
|
|
1485
|
+
"id": "conversations:reopen",
|
|
1486
|
+
"pluginAlias": "@sendly/cli",
|
|
1487
|
+
"pluginName": "@sendly/cli",
|
|
1488
|
+
"pluginType": "core",
|
|
1489
|
+
"strict": true,
|
|
1490
|
+
"isESM": true,
|
|
1491
|
+
"relativePath": [
|
|
1492
|
+
"dist",
|
|
1493
|
+
"commands",
|
|
1494
|
+
"conversations",
|
|
1495
|
+
"reopen.js"
|
|
1496
|
+
]
|
|
1497
|
+
},
|
|
1498
|
+
"conversations:reply": {
|
|
1499
|
+
"aliases": [],
|
|
1500
|
+
"args": {
|
|
1501
|
+
"id": {
|
|
1502
|
+
"description": "Conversation ID",
|
|
1503
|
+
"name": "id",
|
|
1504
|
+
"required": true
|
|
1505
|
+
},
|
|
1506
|
+
"text": {
|
|
1507
|
+
"description": "Reply message text",
|
|
1508
|
+
"name": "text",
|
|
1509
|
+
"required": true
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
"description": "Send a reply in a conversation",
|
|
1513
|
+
"examples": [
|
|
1514
|
+
"<%= config.bin %> conversations reply conv_abc123 \"Thanks for reaching out!\"",
|
|
1515
|
+
"<%= config.bin %> conversations reply conv_abc123 \"Got it\" --json"
|
|
1516
|
+
],
|
|
1517
|
+
"flags": {
|
|
1518
|
+
"json": {
|
|
1519
|
+
"description": "Output in JSON format",
|
|
1520
|
+
"name": "json",
|
|
1521
|
+
"allowNo": false,
|
|
1522
|
+
"type": "boolean"
|
|
1523
|
+
},
|
|
1524
|
+
"quiet": {
|
|
1525
|
+
"char": "q",
|
|
1526
|
+
"description": "Minimal output",
|
|
1527
|
+
"name": "quiet",
|
|
1528
|
+
"allowNo": false,
|
|
1529
|
+
"type": "boolean"
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
"hasDynamicHelp": false,
|
|
1533
|
+
"hiddenAliases": [],
|
|
1534
|
+
"id": "conversations:reply",
|
|
1535
|
+
"pluginAlias": "@sendly/cli",
|
|
1536
|
+
"pluginName": "@sendly/cli",
|
|
1537
|
+
"pluginType": "core",
|
|
1538
|
+
"strict": true,
|
|
1539
|
+
"isESM": true,
|
|
1540
|
+
"relativePath": [
|
|
1541
|
+
"dist",
|
|
1542
|
+
"commands",
|
|
1543
|
+
"conversations",
|
|
1544
|
+
"reply.js"
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
904
1547
|
"contacts:create": {
|
|
905
1548
|
"aliases": [],
|
|
906
1549
|
"args": {},
|
|
@@ -1248,13 +1891,19 @@
|
|
|
1248
1891
|
"update.js"
|
|
1249
1892
|
]
|
|
1250
1893
|
},
|
|
1251
|
-
"
|
|
1894
|
+
"drafts:approve": {
|
|
1252
1895
|
"aliases": [],
|
|
1253
|
-
"args": {
|
|
1254
|
-
|
|
1896
|
+
"args": {
|
|
1897
|
+
"id": {
|
|
1898
|
+
"description": "Draft ID",
|
|
1899
|
+
"name": "id",
|
|
1900
|
+
"required": true
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
"description": "Approve a draft and send it",
|
|
1255
1904
|
"examples": [
|
|
1256
|
-
"<%= config.bin %>
|
|
1257
|
-
"<%= config.bin %>
|
|
1905
|
+
"<%= config.bin %> drafts approve draft_abc123",
|
|
1906
|
+
"<%= config.bin %> drafts approve draft_abc123 --json"
|
|
1258
1907
|
],
|
|
1259
1908
|
"flags": {
|
|
1260
1909
|
"json": {
|
|
@@ -1273,7 +1922,7 @@
|
|
|
1273
1922
|
},
|
|
1274
1923
|
"hasDynamicHelp": false,
|
|
1275
1924
|
"hiddenAliases": [],
|
|
1276
|
-
"id": "
|
|
1925
|
+
"id": "drafts:approve",
|
|
1277
1926
|
"pluginAlias": "@sendly/cli",
|
|
1278
1927
|
"pluginName": "@sendly/cli",
|
|
1279
1928
|
"pluginType": "core",
|
|
@@ -1282,66 +1931,28 @@
|
|
|
1282
1931
|
"relativePath": [
|
|
1283
1932
|
"dist",
|
|
1284
1933
|
"commands",
|
|
1285
|
-
"
|
|
1286
|
-
"
|
|
1934
|
+
"drafts",
|
|
1935
|
+
"approve.js"
|
|
1287
1936
|
]
|
|
1288
1937
|
},
|
|
1289
|
-
"
|
|
1938
|
+
"drafts:create": {
|
|
1290
1939
|
"aliases": [],
|
|
1291
|
-
"args": {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
"<%= config.bin %> credits history --json"
|
|
1297
|
-
],
|
|
1298
|
-
"flags": {
|
|
1299
|
-
"json": {
|
|
1300
|
-
"description": "Output in JSON format",
|
|
1301
|
-
"name": "json",
|
|
1302
|
-
"allowNo": false,
|
|
1303
|
-
"type": "boolean"
|
|
1304
|
-
},
|
|
1305
|
-
"quiet": {
|
|
1306
|
-
"char": "q",
|
|
1307
|
-
"description": "Minimal output",
|
|
1308
|
-
"name": "quiet",
|
|
1309
|
-
"allowNo": false,
|
|
1310
|
-
"type": "boolean"
|
|
1940
|
+
"args": {
|
|
1941
|
+
"conversation-id": {
|
|
1942
|
+
"description": "Conversation ID",
|
|
1943
|
+
"name": "conversation-id",
|
|
1944
|
+
"required": true
|
|
1311
1945
|
},
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1316
|
-
"default": 20,
|
|
1317
|
-
"hasDynamicHelp": false,
|
|
1318
|
-
"multiple": false,
|
|
1319
|
-
"type": "option"
|
|
1946
|
+
"text": {
|
|
1947
|
+
"description": "Draft message text",
|
|
1948
|
+
"name": "text",
|
|
1949
|
+
"required": true
|
|
1320
1950
|
}
|
|
1321
1951
|
},
|
|
1322
|
-
"
|
|
1323
|
-
"hiddenAliases": [],
|
|
1324
|
-
"id": "credits:history",
|
|
1325
|
-
"pluginAlias": "@sendly/cli",
|
|
1326
|
-
"pluginName": "@sendly/cli",
|
|
1327
|
-
"pluginType": "core",
|
|
1328
|
-
"strict": true,
|
|
1329
|
-
"isESM": true,
|
|
1330
|
-
"relativePath": [
|
|
1331
|
-
"dist",
|
|
1332
|
-
"commands",
|
|
1333
|
-
"credits",
|
|
1334
|
-
"history.js"
|
|
1335
|
-
]
|
|
1336
|
-
},
|
|
1337
|
-
"credits:transfer": {
|
|
1338
|
-
"aliases": [],
|
|
1339
|
-
"args": {},
|
|
1340
|
-
"description": "Transfer credits between workspaces",
|
|
1952
|
+
"description": "Create a draft reply in a conversation",
|
|
1341
1953
|
"examples": [
|
|
1342
|
-
"<%= config.bin %>
|
|
1343
|
-
"<%= config.bin %>
|
|
1344
|
-
"<%= config.bin %> credits transfer --to org_abc123 --amount 500 --yes"
|
|
1954
|
+
"<%= config.bin %> drafts create conv_abc123 \"Thanks for reaching out!\"",
|
|
1955
|
+
"<%= config.bin %> drafts create conv_abc123 \"We will look into this\" --json"
|
|
1345
1956
|
],
|
|
1346
1957
|
"flags": {
|
|
1347
1958
|
"json": {
|
|
@@ -1356,64 +1967,30 @@
|
|
|
1356
1967
|
"name": "quiet",
|
|
1357
1968
|
"allowNo": false,
|
|
1358
1969
|
"type": "boolean"
|
|
1359
|
-
},
|
|
1360
|
-
"to": {
|
|
1361
|
-
"description": "Target workspace ID to transfer credits to",
|
|
1362
|
-
"name": "to",
|
|
1363
|
-
"hasDynamicHelp": false,
|
|
1364
|
-
"multiple": false,
|
|
1365
|
-
"type": "option"
|
|
1366
|
-
},
|
|
1367
|
-
"amount": {
|
|
1368
|
-
"char": "a",
|
|
1369
|
-
"description": "Number of credits to transfer",
|
|
1370
|
-
"name": "amount",
|
|
1371
|
-
"hasDynamicHelp": false,
|
|
1372
|
-
"multiple": false,
|
|
1373
|
-
"type": "option"
|
|
1374
|
-
},
|
|
1375
|
-
"yes": {
|
|
1376
|
-
"char": "y",
|
|
1377
|
-
"description": "Skip confirmation prompt",
|
|
1378
|
-
"name": "yes",
|
|
1379
|
-
"allowNo": false,
|
|
1380
|
-
"type": "boolean"
|
|
1381
1970
|
}
|
|
1382
1971
|
},
|
|
1383
1972
|
"hasDynamicHelp": false,
|
|
1384
1973
|
"hiddenAliases": [],
|
|
1385
|
-
"id": "
|
|
1974
|
+
"id": "drafts:create",
|
|
1386
1975
|
"pluginAlias": "@sendly/cli",
|
|
1387
1976
|
"pluginName": "@sendly/cli",
|
|
1388
1977
|
"pluginType": "core",
|
|
1389
1978
|
"strict": true,
|
|
1390
|
-
"isESM": true,
|
|
1391
|
-
"relativePath": [
|
|
1392
|
-
"dist",
|
|
1393
|
-
"commands",
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1396
|
-
]
|
|
1397
|
-
},
|
|
1398
|
-
"
|
|
1399
|
-
"aliases": [],
|
|
1400
|
-
"args": {
|
|
1401
|
-
|
|
1402
|
-
"description": "Configuration key",
|
|
1403
|
-
"name": "key",
|
|
1404
|
-
"options": [
|
|
1405
|
-
"environment",
|
|
1406
|
-
"baseUrl",
|
|
1407
|
-
"defaultFormat",
|
|
1408
|
-
"colorEnabled"
|
|
1409
|
-
],
|
|
1410
|
-
"required": true
|
|
1411
|
-
}
|
|
1412
|
-
},
|
|
1413
|
-
"description": "Get a configuration value",
|
|
1979
|
+
"isESM": true,
|
|
1980
|
+
"relativePath": [
|
|
1981
|
+
"dist",
|
|
1982
|
+
"commands",
|
|
1983
|
+
"drafts",
|
|
1984
|
+
"create.js"
|
|
1985
|
+
]
|
|
1986
|
+
},
|
|
1987
|
+
"drafts": {
|
|
1988
|
+
"aliases": [],
|
|
1989
|
+
"args": {},
|
|
1990
|
+
"description": "List pending drafts (default subcommand)",
|
|
1414
1991
|
"examples": [
|
|
1415
|
-
"<%= config.bin %>
|
|
1416
|
-
"<%= config.bin %>
|
|
1992
|
+
"<%= config.bin %> drafts",
|
|
1993
|
+
"<%= config.bin %> drafts --json"
|
|
1417
1994
|
],
|
|
1418
1995
|
"flags": {
|
|
1419
1996
|
"json": {
|
|
@@ -1432,27 +2009,28 @@
|
|
|
1432
2009
|
},
|
|
1433
2010
|
"hasDynamicHelp": false,
|
|
1434
2011
|
"hiddenAliases": [],
|
|
1435
|
-
"id": "
|
|
2012
|
+
"id": "drafts",
|
|
1436
2013
|
"pluginAlias": "@sendly/cli",
|
|
1437
2014
|
"pluginName": "@sendly/cli",
|
|
1438
2015
|
"pluginType": "core",
|
|
1439
2016
|
"strict": true,
|
|
1440
|
-
"enableJsonFlag": false,
|
|
1441
2017
|
"isESM": true,
|
|
1442
2018
|
"relativePath": [
|
|
1443
2019
|
"dist",
|
|
1444
2020
|
"commands",
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
2021
|
+
"drafts",
|
|
2022
|
+
"index.js"
|
|
1447
2023
|
]
|
|
1448
2024
|
},
|
|
1449
|
-
"
|
|
2025
|
+
"drafts:list": {
|
|
1450
2026
|
"aliases": [],
|
|
1451
2027
|
"args": {},
|
|
1452
|
-
"description": "List
|
|
2028
|
+
"description": "List drafts",
|
|
1453
2029
|
"examples": [
|
|
1454
|
-
"<%= config.bin %>
|
|
1455
|
-
"<%= config.bin %>
|
|
2030
|
+
"<%= config.bin %> drafts list",
|
|
2031
|
+
"<%= config.bin %> drafts list --status pending",
|
|
2032
|
+
"<%= config.bin %> drafts list --conversation-id conv_abc123",
|
|
2033
|
+
"<%= config.bin %> drafts list --json"
|
|
1456
2034
|
],
|
|
1457
2035
|
"flags": {
|
|
1458
2036
|
"json": {
|
|
@@ -1467,49 +2045,57 @@
|
|
|
1467
2045
|
"name": "quiet",
|
|
1468
2046
|
"allowNo": false,
|
|
1469
2047
|
"type": "boolean"
|
|
2048
|
+
},
|
|
2049
|
+
"conversation-id": {
|
|
2050
|
+
"description": "Filter by conversation ID",
|
|
2051
|
+
"name": "conversation-id",
|
|
2052
|
+
"hasDynamicHelp": false,
|
|
2053
|
+
"multiple": false,
|
|
2054
|
+
"type": "option"
|
|
2055
|
+
},
|
|
2056
|
+
"status": {
|
|
2057
|
+
"char": "s",
|
|
2058
|
+
"description": "Filter by status (pending, approved, rejected)",
|
|
2059
|
+
"name": "status",
|
|
2060
|
+
"hasDynamicHelp": false,
|
|
2061
|
+
"multiple": false,
|
|
2062
|
+
"options": [
|
|
2063
|
+
"pending",
|
|
2064
|
+
"approved",
|
|
2065
|
+
"rejected"
|
|
2066
|
+
],
|
|
2067
|
+
"type": "option"
|
|
1470
2068
|
}
|
|
1471
2069
|
},
|
|
1472
2070
|
"hasDynamicHelp": false,
|
|
1473
2071
|
"hiddenAliases": [],
|
|
1474
|
-
"id": "
|
|
2072
|
+
"id": "drafts:list",
|
|
1475
2073
|
"pluginAlias": "@sendly/cli",
|
|
1476
2074
|
"pluginName": "@sendly/cli",
|
|
1477
2075
|
"pluginType": "core",
|
|
1478
2076
|
"strict": true,
|
|
1479
|
-
"enableJsonFlag": false,
|
|
1480
2077
|
"isESM": true,
|
|
1481
2078
|
"relativePath": [
|
|
1482
2079
|
"dist",
|
|
1483
2080
|
"commands",
|
|
1484
|
-
"
|
|
2081
|
+
"drafts",
|
|
1485
2082
|
"list.js"
|
|
1486
2083
|
]
|
|
1487
2084
|
},
|
|
1488
|
-
"
|
|
2085
|
+
"drafts:reject": {
|
|
1489
2086
|
"aliases": [],
|
|
1490
2087
|
"args": {
|
|
1491
|
-
"
|
|
1492
|
-
"description": "
|
|
1493
|
-
"name": "
|
|
1494
|
-
"options": [
|
|
1495
|
-
"environment",
|
|
1496
|
-
"baseUrl",
|
|
1497
|
-
"defaultFormat",
|
|
1498
|
-
"colorEnabled"
|
|
1499
|
-
],
|
|
1500
|
-
"required": true
|
|
1501
|
-
},
|
|
1502
|
-
"value": {
|
|
1503
|
-
"description": "Configuration value",
|
|
1504
|
-
"name": "value",
|
|
2088
|
+
"id": {
|
|
2089
|
+
"description": "Draft ID",
|
|
2090
|
+
"name": "id",
|
|
1505
2091
|
"required": true
|
|
1506
2092
|
}
|
|
1507
2093
|
},
|
|
1508
|
-
"description": "
|
|
2094
|
+
"description": "Reject a draft",
|
|
1509
2095
|
"examples": [
|
|
1510
|
-
"<%= config.bin %>
|
|
1511
|
-
"<%= config.bin %>
|
|
1512
|
-
"<%= config.bin %>
|
|
2096
|
+
"<%= config.bin %> drafts reject draft_abc123",
|
|
2097
|
+
"<%= config.bin %> drafts reject draft_abc123 --reason \"Tone is too informal\"",
|
|
2098
|
+
"<%= config.bin %> drafts reject draft_abc123 --json"
|
|
1513
2099
|
],
|
|
1514
2100
|
"flags": {
|
|
1515
2101
|
"json": {
|
|
@@ -1524,22 +2110,29 @@
|
|
|
1524
2110
|
"name": "quiet",
|
|
1525
2111
|
"allowNo": false,
|
|
1526
2112
|
"type": "boolean"
|
|
2113
|
+
},
|
|
2114
|
+
"reason": {
|
|
2115
|
+
"char": "r",
|
|
2116
|
+
"description": "Reason for rejection",
|
|
2117
|
+
"name": "reason",
|
|
2118
|
+
"hasDynamicHelp": false,
|
|
2119
|
+
"multiple": false,
|
|
2120
|
+
"type": "option"
|
|
1527
2121
|
}
|
|
1528
2122
|
},
|
|
1529
2123
|
"hasDynamicHelp": false,
|
|
1530
2124
|
"hiddenAliases": [],
|
|
1531
|
-
"id": "
|
|
2125
|
+
"id": "drafts:reject",
|
|
1532
2126
|
"pluginAlias": "@sendly/cli",
|
|
1533
2127
|
"pluginName": "@sendly/cli",
|
|
1534
2128
|
"pluginType": "core",
|
|
1535
2129
|
"strict": true,
|
|
1536
|
-
"enableJsonFlag": false,
|
|
1537
2130
|
"isESM": true,
|
|
1538
2131
|
"relativePath": [
|
|
1539
2132
|
"dist",
|
|
1540
2133
|
"commands",
|
|
1541
|
-
"
|
|
1542
|
-
"
|
|
2134
|
+
"drafts",
|
|
2135
|
+
"reject.js"
|
|
1543
2136
|
]
|
|
1544
2137
|
},
|
|
1545
2138
|
"enterprise:billing": {
|
|
@@ -2065,17 +2658,227 @@
|
|
|
2065
2658
|
"multiple": false,
|
|
2066
2659
|
"type": "option"
|
|
2067
2660
|
},
|
|
2068
|
-
"yes": {
|
|
2069
|
-
"char": "y",
|
|
2070
|
-
"description": "Skip confirmation prompt",
|
|
2071
|
-
"name": "yes",
|
|
2661
|
+
"yes": {
|
|
2662
|
+
"char": "y",
|
|
2663
|
+
"description": "Skip confirmation prompt",
|
|
2664
|
+
"name": "yes",
|
|
2665
|
+
"allowNo": false,
|
|
2666
|
+
"type": "boolean"
|
|
2667
|
+
}
|
|
2668
|
+
},
|
|
2669
|
+
"hasDynamicHelp": false,
|
|
2670
|
+
"hiddenAliases": [],
|
|
2671
|
+
"id": "keys:revoke",
|
|
2672
|
+
"pluginAlias": "@sendly/cli",
|
|
2673
|
+
"pluginName": "@sendly/cli",
|
|
2674
|
+
"pluginType": "core",
|
|
2675
|
+
"strict": true,
|
|
2676
|
+
"isESM": true,
|
|
2677
|
+
"relativePath": [
|
|
2678
|
+
"dist",
|
|
2679
|
+
"commands",
|
|
2680
|
+
"keys",
|
|
2681
|
+
"revoke.js"
|
|
2682
|
+
]
|
|
2683
|
+
},
|
|
2684
|
+
"keys:rotate": {
|
|
2685
|
+
"aliases": [],
|
|
2686
|
+
"args": {
|
|
2687
|
+
"keyId": {
|
|
2688
|
+
"description": "Key ID to rotate (e.g., key_abc123)",
|
|
2689
|
+
"name": "keyId",
|
|
2690
|
+
"required": true
|
|
2691
|
+
}
|
|
2692
|
+
},
|
|
2693
|
+
"description": "Rotate an API key (generate new key, optionally keep old one active)",
|
|
2694
|
+
"examples": [
|
|
2695
|
+
"<%= config.bin %> keys rotate key_abc123",
|
|
2696
|
+
"<%= config.bin %> keys rotate key_abc123 --grace-period 24",
|
|
2697
|
+
"<%= config.bin %> keys rotate key_abc123 --yes"
|
|
2698
|
+
],
|
|
2699
|
+
"flags": {
|
|
2700
|
+
"json": {
|
|
2701
|
+
"description": "Output in JSON format",
|
|
2702
|
+
"name": "json",
|
|
2703
|
+
"allowNo": false,
|
|
2704
|
+
"type": "boolean"
|
|
2705
|
+
},
|
|
2706
|
+
"quiet": {
|
|
2707
|
+
"char": "q",
|
|
2708
|
+
"description": "Minimal output",
|
|
2709
|
+
"name": "quiet",
|
|
2710
|
+
"allowNo": false,
|
|
2711
|
+
"type": "boolean"
|
|
2712
|
+
},
|
|
2713
|
+
"grace-period": {
|
|
2714
|
+
"char": "g",
|
|
2715
|
+
"description": "Hours to keep old key active (0 = immediate revocation)",
|
|
2716
|
+
"name": "grace-period",
|
|
2717
|
+
"hasDynamicHelp": false,
|
|
2718
|
+
"multiple": false,
|
|
2719
|
+
"type": "option"
|
|
2720
|
+
},
|
|
2721
|
+
"yes": {
|
|
2722
|
+
"char": "y",
|
|
2723
|
+
"description": "Skip confirmation prompt",
|
|
2724
|
+
"name": "yes",
|
|
2725
|
+
"allowNo": false,
|
|
2726
|
+
"type": "boolean"
|
|
2727
|
+
}
|
|
2728
|
+
},
|
|
2729
|
+
"hasDynamicHelp": false,
|
|
2730
|
+
"hiddenAliases": [],
|
|
2731
|
+
"id": "keys:rotate",
|
|
2732
|
+
"pluginAlias": "@sendly/cli",
|
|
2733
|
+
"pluginName": "@sendly/cli",
|
|
2734
|
+
"pluginType": "core",
|
|
2735
|
+
"strict": true,
|
|
2736
|
+
"isESM": true,
|
|
2737
|
+
"relativePath": [
|
|
2738
|
+
"dist",
|
|
2739
|
+
"commands",
|
|
2740
|
+
"keys",
|
|
2741
|
+
"rotate.js"
|
|
2742
|
+
]
|
|
2743
|
+
},
|
|
2744
|
+
"keys:usage": {
|
|
2745
|
+
"aliases": [],
|
|
2746
|
+
"args": {
|
|
2747
|
+
"id": {
|
|
2748
|
+
"description": "API key ID",
|
|
2749
|
+
"name": "id",
|
|
2750
|
+
"required": true
|
|
2751
|
+
}
|
|
2752
|
+
},
|
|
2753
|
+
"description": "Get usage statistics for an API key",
|
|
2754
|
+
"examples": [
|
|
2755
|
+
"<%= config.bin %> keys usage KEY_ID",
|
|
2756
|
+
"<%= config.bin %> keys usage KEY_ID --json"
|
|
2757
|
+
],
|
|
2758
|
+
"flags": {
|
|
2759
|
+
"json": {
|
|
2760
|
+
"description": "Output in JSON format",
|
|
2761
|
+
"name": "json",
|
|
2762
|
+
"allowNo": false,
|
|
2763
|
+
"type": "boolean"
|
|
2764
|
+
},
|
|
2765
|
+
"quiet": {
|
|
2766
|
+
"char": "q",
|
|
2767
|
+
"description": "Minimal output",
|
|
2768
|
+
"name": "quiet",
|
|
2769
|
+
"allowNo": false,
|
|
2770
|
+
"type": "boolean"
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2773
|
+
"hasDynamicHelp": false,
|
|
2774
|
+
"hiddenAliases": [],
|
|
2775
|
+
"id": "keys:usage",
|
|
2776
|
+
"pluginAlias": "@sendly/cli",
|
|
2777
|
+
"pluginName": "@sendly/cli",
|
|
2778
|
+
"pluginType": "core",
|
|
2779
|
+
"strict": true,
|
|
2780
|
+
"isESM": true,
|
|
2781
|
+
"relativePath": [
|
|
2782
|
+
"dist",
|
|
2783
|
+
"commands",
|
|
2784
|
+
"keys",
|
|
2785
|
+
"usage.js"
|
|
2786
|
+
]
|
|
2787
|
+
},
|
|
2788
|
+
"labels:create": {
|
|
2789
|
+
"aliases": [],
|
|
2790
|
+
"args": {
|
|
2791
|
+
"name": {
|
|
2792
|
+
"description": "Label name",
|
|
2793
|
+
"name": "name",
|
|
2794
|
+
"required": true
|
|
2795
|
+
}
|
|
2796
|
+
},
|
|
2797
|
+
"description": "Create a label",
|
|
2798
|
+
"examples": [
|
|
2799
|
+
"<%= config.bin %> labels create \"VIP\"",
|
|
2800
|
+
"<%= config.bin %> labels create \"Urgent\" --color \"#FF0000\"",
|
|
2801
|
+
"<%= config.bin %> labels create \"Support\" --color \"#0000FF\" --description \"Support tickets\"",
|
|
2802
|
+
"<%= config.bin %> labels create \"VIP\" --json"
|
|
2803
|
+
],
|
|
2804
|
+
"flags": {
|
|
2805
|
+
"json": {
|
|
2806
|
+
"description": "Output in JSON format",
|
|
2807
|
+
"name": "json",
|
|
2808
|
+
"allowNo": false,
|
|
2809
|
+
"type": "boolean"
|
|
2810
|
+
},
|
|
2811
|
+
"quiet": {
|
|
2812
|
+
"char": "q",
|
|
2813
|
+
"description": "Minimal output",
|
|
2814
|
+
"name": "quiet",
|
|
2815
|
+
"allowNo": false,
|
|
2816
|
+
"type": "boolean"
|
|
2817
|
+
},
|
|
2818
|
+
"color": {
|
|
2819
|
+
"char": "c",
|
|
2820
|
+
"description": "Label color (hex, e.g. #FF0000)",
|
|
2821
|
+
"name": "color",
|
|
2822
|
+
"hasDynamicHelp": false,
|
|
2823
|
+
"multiple": false,
|
|
2824
|
+
"type": "option"
|
|
2825
|
+
},
|
|
2826
|
+
"description": {
|
|
2827
|
+
"char": "d",
|
|
2828
|
+
"description": "Label description",
|
|
2829
|
+
"name": "description",
|
|
2830
|
+
"hasDynamicHelp": false,
|
|
2831
|
+
"multiple": false,
|
|
2832
|
+
"type": "option"
|
|
2833
|
+
}
|
|
2834
|
+
},
|
|
2835
|
+
"hasDynamicHelp": false,
|
|
2836
|
+
"hiddenAliases": [],
|
|
2837
|
+
"id": "labels:create",
|
|
2838
|
+
"pluginAlias": "@sendly/cli",
|
|
2839
|
+
"pluginName": "@sendly/cli",
|
|
2840
|
+
"pluginType": "core",
|
|
2841
|
+
"strict": true,
|
|
2842
|
+
"isESM": true,
|
|
2843
|
+
"relativePath": [
|
|
2844
|
+
"dist",
|
|
2845
|
+
"commands",
|
|
2846
|
+
"labels",
|
|
2847
|
+
"create.js"
|
|
2848
|
+
]
|
|
2849
|
+
},
|
|
2850
|
+
"labels:delete": {
|
|
2851
|
+
"aliases": [],
|
|
2852
|
+
"args": {
|
|
2853
|
+
"id": {
|
|
2854
|
+
"description": "Label ID",
|
|
2855
|
+
"name": "id",
|
|
2856
|
+
"required": true
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
"description": "Delete a label",
|
|
2860
|
+
"examples": [
|
|
2861
|
+
"<%= config.bin %> labels delete lbl_abc123",
|
|
2862
|
+
"<%= config.bin %> labels delete lbl_abc123 --json"
|
|
2863
|
+
],
|
|
2864
|
+
"flags": {
|
|
2865
|
+
"json": {
|
|
2866
|
+
"description": "Output in JSON format",
|
|
2867
|
+
"name": "json",
|
|
2868
|
+
"allowNo": false,
|
|
2869
|
+
"type": "boolean"
|
|
2870
|
+
},
|
|
2871
|
+
"quiet": {
|
|
2872
|
+
"char": "q",
|
|
2873
|
+
"description": "Minimal output",
|
|
2874
|
+
"name": "quiet",
|
|
2072
2875
|
"allowNo": false,
|
|
2073
2876
|
"type": "boolean"
|
|
2074
2877
|
}
|
|
2075
2878
|
},
|
|
2076
2879
|
"hasDynamicHelp": false,
|
|
2077
2880
|
"hiddenAliases": [],
|
|
2078
|
-
"id": "
|
|
2881
|
+
"id": "labels:delete",
|
|
2079
2882
|
"pluginAlias": "@sendly/cli",
|
|
2080
2883
|
"pluginName": "@sendly/cli",
|
|
2081
2884
|
"pluginType": "core",
|
|
@@ -2084,24 +2887,17 @@
|
|
|
2084
2887
|
"relativePath": [
|
|
2085
2888
|
"dist",
|
|
2086
2889
|
"commands",
|
|
2087
|
-
"
|
|
2088
|
-
"
|
|
2890
|
+
"labels",
|
|
2891
|
+
"delete.js"
|
|
2089
2892
|
]
|
|
2090
2893
|
},
|
|
2091
|
-
"
|
|
2894
|
+
"labels": {
|
|
2092
2895
|
"aliases": [],
|
|
2093
|
-
"args": {
|
|
2094
|
-
|
|
2095
|
-
"description": "Key ID to rotate (e.g., key_abc123)",
|
|
2096
|
-
"name": "keyId",
|
|
2097
|
-
"required": true
|
|
2098
|
-
}
|
|
2099
|
-
},
|
|
2100
|
-
"description": "Rotate an API key (generate new key, optionally keep old one active)",
|
|
2896
|
+
"args": {},
|
|
2897
|
+
"description": "List labels (default subcommand)",
|
|
2101
2898
|
"examples": [
|
|
2102
|
-
"<%= config.bin %>
|
|
2103
|
-
"<%= config.bin %>
|
|
2104
|
-
"<%= config.bin %> keys rotate key_abc123 --yes"
|
|
2899
|
+
"<%= config.bin %> labels",
|
|
2900
|
+
"<%= config.bin %> labels --json"
|
|
2105
2901
|
],
|
|
2106
2902
|
"flags": {
|
|
2107
2903
|
"json": {
|
|
@@ -2116,26 +2912,11 @@
|
|
|
2116
2912
|
"name": "quiet",
|
|
2117
2913
|
"allowNo": false,
|
|
2118
2914
|
"type": "boolean"
|
|
2119
|
-
},
|
|
2120
|
-
"grace-period": {
|
|
2121
|
-
"char": "g",
|
|
2122
|
-
"description": "Hours to keep old key active (0 = immediate revocation)",
|
|
2123
|
-
"name": "grace-period",
|
|
2124
|
-
"hasDynamicHelp": false,
|
|
2125
|
-
"multiple": false,
|
|
2126
|
-
"type": "option"
|
|
2127
|
-
},
|
|
2128
|
-
"yes": {
|
|
2129
|
-
"char": "y",
|
|
2130
|
-
"description": "Skip confirmation prompt",
|
|
2131
|
-
"name": "yes",
|
|
2132
|
-
"allowNo": false,
|
|
2133
|
-
"type": "boolean"
|
|
2134
2915
|
}
|
|
2135
2916
|
},
|
|
2136
2917
|
"hasDynamicHelp": false,
|
|
2137
2918
|
"hiddenAliases": [],
|
|
2138
|
-
"id": "
|
|
2919
|
+
"id": "labels",
|
|
2139
2920
|
"pluginAlias": "@sendly/cli",
|
|
2140
2921
|
"pluginName": "@sendly/cli",
|
|
2141
2922
|
"pluginType": "core",
|
|
@@ -2144,23 +2925,17 @@
|
|
|
2144
2925
|
"relativePath": [
|
|
2145
2926
|
"dist",
|
|
2146
2927
|
"commands",
|
|
2147
|
-
"
|
|
2148
|
-
"
|
|
2928
|
+
"labels",
|
|
2929
|
+
"index.js"
|
|
2149
2930
|
]
|
|
2150
2931
|
},
|
|
2151
|
-
"
|
|
2932
|
+
"labels:list": {
|
|
2152
2933
|
"aliases": [],
|
|
2153
|
-
"args": {
|
|
2154
|
-
|
|
2155
|
-
"description": "API key ID",
|
|
2156
|
-
"name": "id",
|
|
2157
|
-
"required": true
|
|
2158
|
-
}
|
|
2159
|
-
},
|
|
2160
|
-
"description": "Get usage statistics for an API key",
|
|
2934
|
+
"args": {},
|
|
2935
|
+
"description": "List labels",
|
|
2161
2936
|
"examples": [
|
|
2162
|
-
"<%= config.bin %>
|
|
2163
|
-
"<%= config.bin %>
|
|
2937
|
+
"<%= config.bin %> labels list",
|
|
2938
|
+
"<%= config.bin %> labels list --json"
|
|
2164
2939
|
],
|
|
2165
2940
|
"flags": {
|
|
2166
2941
|
"json": {
|
|
@@ -2179,7 +2954,7 @@
|
|
|
2179
2954
|
},
|
|
2180
2955
|
"hasDynamicHelp": false,
|
|
2181
2956
|
"hiddenAliases": [],
|
|
2182
|
-
"id": "
|
|
2957
|
+
"id": "labels:list",
|
|
2183
2958
|
"pluginAlias": "@sendly/cli",
|
|
2184
2959
|
"pluginName": "@sendly/cli",
|
|
2185
2960
|
"pluginType": "core",
|
|
@@ -2188,8 +2963,8 @@
|
|
|
2188
2963
|
"relativePath": [
|
|
2189
2964
|
"dist",
|
|
2190
2965
|
"commands",
|
|
2191
|
-
"
|
|
2192
|
-
"
|
|
2966
|
+
"labels",
|
|
2967
|
+
"list.js"
|
|
2193
2968
|
]
|
|
2194
2969
|
},
|
|
2195
2970
|
"logs:tail": {
|
|
@@ -2781,20 +3556,19 @@
|
|
|
2781
3556
|
"send.js"
|
|
2782
3557
|
]
|
|
2783
3558
|
},
|
|
2784
|
-
"
|
|
3559
|
+
"verify:check": {
|
|
2785
3560
|
"aliases": [],
|
|
2786
3561
|
"args": {
|
|
2787
3562
|
"id": {
|
|
2788
|
-
"description": "
|
|
3563
|
+
"description": "Verification ID",
|
|
2789
3564
|
"name": "id",
|
|
2790
3565
|
"required": true
|
|
2791
3566
|
}
|
|
2792
3567
|
},
|
|
2793
|
-
"description": "
|
|
3568
|
+
"description": "Verify an OTP code",
|
|
2794
3569
|
"examples": [
|
|
2795
|
-
"<%= config.bin %>
|
|
2796
|
-
"<%= config.bin %>
|
|
2797
|
-
"<%= config.bin %> templates clone tpl_xxx --json"
|
|
3570
|
+
"<%= config.bin %> verify check ver_xxx --code 123456",
|
|
3571
|
+
"<%= config.bin %> verify check ver_xxx -c 123456"
|
|
2798
3572
|
],
|
|
2799
3573
|
"flags": {
|
|
2800
3574
|
"json": {
|
|
@@ -2810,10 +3584,11 @@
|
|
|
2810
3584
|
"allowNo": false,
|
|
2811
3585
|
"type": "boolean"
|
|
2812
3586
|
},
|
|
2813
|
-
"
|
|
2814
|
-
"char": "
|
|
2815
|
-
"description": "
|
|
2816
|
-
"name": "
|
|
3587
|
+
"code": {
|
|
3588
|
+
"char": "c",
|
|
3589
|
+
"description": "The OTP code to verify",
|
|
3590
|
+
"name": "code",
|
|
3591
|
+
"required": true,
|
|
2817
3592
|
"hasDynamicHelp": false,
|
|
2818
3593
|
"multiple": false,
|
|
2819
3594
|
"type": "option"
|
|
@@ -2821,7 +3596,7 @@
|
|
|
2821
3596
|
},
|
|
2822
3597
|
"hasDynamicHelp": false,
|
|
2823
3598
|
"hiddenAliases": [],
|
|
2824
|
-
"id": "
|
|
3599
|
+
"id": "verify:check",
|
|
2825
3600
|
"pluginAlias": "@sendly/cli",
|
|
2826
3601
|
"pluginName": "@sendly/cli",
|
|
2827
3602
|
"pluginType": "core",
|
|
@@ -2830,17 +3605,20 @@
|
|
|
2830
3605
|
"relativePath": [
|
|
2831
3606
|
"dist",
|
|
2832
3607
|
"commands",
|
|
2833
|
-
"
|
|
2834
|
-
"
|
|
3608
|
+
"verify",
|
|
3609
|
+
"check.js"
|
|
2835
3610
|
]
|
|
2836
3611
|
},
|
|
2837
|
-
"
|
|
3612
|
+
"verify:list": {
|
|
2838
3613
|
"aliases": [],
|
|
2839
3614
|
"args": {},
|
|
2840
|
-
"description": "
|
|
3615
|
+
"description": "List recent verifications",
|
|
2841
3616
|
"examples": [
|
|
2842
|
-
"<%= config.bin %>
|
|
2843
|
-
"<%= config.bin %>
|
|
3617
|
+
"<%= config.bin %> verify list",
|
|
3618
|
+
"<%= config.bin %> verify list --limit 10",
|
|
3619
|
+
"<%= config.bin %> verify list --page 2",
|
|
3620
|
+
"<%= config.bin %> verify list --status verified",
|
|
3621
|
+
"<%= config.bin %> verify list --json"
|
|
2844
3622
|
],
|
|
2845
3623
|
"flags": {
|
|
2846
3624
|
"json": {
|
|
@@ -2856,79 +3634,42 @@
|
|
|
2856
3634
|
"allowNo": false,
|
|
2857
3635
|
"type": "boolean"
|
|
2858
3636
|
},
|
|
2859
|
-
"
|
|
2860
|
-
"char": "
|
|
2861
|
-
"description": "
|
|
2862
|
-
"name": "
|
|
2863
|
-
"
|
|
3637
|
+
"limit": {
|
|
3638
|
+
"char": "l",
|
|
3639
|
+
"description": "Number of verifications per page",
|
|
3640
|
+
"name": "limit",
|
|
3641
|
+
"default": 20,
|
|
2864
3642
|
"hasDynamicHelp": false,
|
|
2865
3643
|
"multiple": false,
|
|
2866
3644
|
"type": "option"
|
|
2867
3645
|
},
|
|
2868
|
-
"
|
|
2869
|
-
"char": "
|
|
2870
|
-
"description": "
|
|
2871
|
-
"name": "
|
|
2872
|
-
"required": true,
|
|
3646
|
+
"page": {
|
|
3647
|
+
"char": "p",
|
|
3648
|
+
"description": "Page number (starts at 1)",
|
|
3649
|
+
"name": "page",
|
|
2873
3650
|
"hasDynamicHelp": false,
|
|
2874
3651
|
"multiple": false,
|
|
2875
3652
|
"type": "option"
|
|
2876
|
-
}
|
|
2877
|
-
},
|
|
2878
|
-
"hasDynamicHelp": false,
|
|
2879
|
-
"hiddenAliases": [],
|
|
2880
|
-
"id": "templates:create",
|
|
2881
|
-
"pluginAlias": "@sendly/cli",
|
|
2882
|
-
"pluginName": "@sendly/cli",
|
|
2883
|
-
"pluginType": "core",
|
|
2884
|
-
"strict": true,
|
|
2885
|
-
"isESM": true,
|
|
2886
|
-
"relativePath": [
|
|
2887
|
-
"dist",
|
|
2888
|
-
"commands",
|
|
2889
|
-
"templates",
|
|
2890
|
-
"create.js"
|
|
2891
|
-
]
|
|
2892
|
-
},
|
|
2893
|
-
"templates:delete": {
|
|
2894
|
-
"aliases": [],
|
|
2895
|
-
"args": {
|
|
2896
|
-
"id": {
|
|
2897
|
-
"description": "Template ID",
|
|
2898
|
-
"name": "id",
|
|
2899
|
-
"required": true
|
|
2900
|
-
}
|
|
2901
|
-
},
|
|
2902
|
-
"description": "Delete a template",
|
|
2903
|
-
"examples": [
|
|
2904
|
-
"<%= config.bin %> templates delete tpl_xxx",
|
|
2905
|
-
"<%= config.bin %> templates delete tpl_xxx --force"
|
|
2906
|
-
],
|
|
2907
|
-
"flags": {
|
|
2908
|
-
"json": {
|
|
2909
|
-
"description": "Output in JSON format",
|
|
2910
|
-
"name": "json",
|
|
2911
|
-
"allowNo": false,
|
|
2912
|
-
"type": "boolean"
|
|
2913
3653
|
},
|
|
2914
|
-
"
|
|
2915
|
-
"
|
|
2916
|
-
"
|
|
2917
|
-
"
|
|
2918
|
-
"
|
|
2919
|
-
"type": "
|
|
3654
|
+
"offset": {
|
|
3655
|
+
"description": "Offset from start (alternative to --page)",
|
|
3656
|
+
"name": "offset",
|
|
3657
|
+
"hasDynamicHelp": false,
|
|
3658
|
+
"multiple": false,
|
|
3659
|
+
"type": "option"
|
|
2920
3660
|
},
|
|
2921
|
-
"
|
|
2922
|
-
"char": "
|
|
2923
|
-
"description": "
|
|
2924
|
-
"name": "
|
|
2925
|
-
"
|
|
2926
|
-
"
|
|
3661
|
+
"status": {
|
|
3662
|
+
"char": "s",
|
|
3663
|
+
"description": "Filter by status (pending, verified, expired, failed)",
|
|
3664
|
+
"name": "status",
|
|
3665
|
+
"hasDynamicHelp": false,
|
|
3666
|
+
"multiple": false,
|
|
3667
|
+
"type": "option"
|
|
2927
3668
|
}
|
|
2928
3669
|
},
|
|
2929
3670
|
"hasDynamicHelp": false,
|
|
2930
3671
|
"hiddenAliases": [],
|
|
2931
|
-
"id": "
|
|
3672
|
+
"id": "verify:list",
|
|
2932
3673
|
"pluginAlias": "@sendly/cli",
|
|
2933
3674
|
"pluginName": "@sendly/cli",
|
|
2934
3675
|
"pluginType": "core",
|
|
@@ -2937,23 +3678,23 @@
|
|
|
2937
3678
|
"relativePath": [
|
|
2938
3679
|
"dist",
|
|
2939
3680
|
"commands",
|
|
2940
|
-
"
|
|
2941
|
-
"
|
|
3681
|
+
"verify",
|
|
3682
|
+
"list.js"
|
|
2942
3683
|
]
|
|
2943
3684
|
},
|
|
2944
|
-
"
|
|
3685
|
+
"verify:resend": {
|
|
2945
3686
|
"aliases": [],
|
|
2946
3687
|
"args": {
|
|
2947
3688
|
"id": {
|
|
2948
|
-
"description": "
|
|
3689
|
+
"description": "Verification ID",
|
|
2949
3690
|
"name": "id",
|
|
2950
3691
|
"required": true
|
|
2951
3692
|
}
|
|
2952
3693
|
},
|
|
2953
|
-
"description": "
|
|
3694
|
+
"description": "Resend an OTP verification code",
|
|
2954
3695
|
"examples": [
|
|
2955
|
-
"<%= config.bin %>
|
|
2956
|
-
"<%= config.bin %>
|
|
3696
|
+
"<%= config.bin %> verify resend ver_xxx",
|
|
3697
|
+
"<%= config.bin %> verify resend ver_xxx --json"
|
|
2957
3698
|
],
|
|
2958
3699
|
"flags": {
|
|
2959
3700
|
"json": {
|
|
@@ -2972,7 +3713,7 @@
|
|
|
2972
3713
|
},
|
|
2973
3714
|
"hasDynamicHelp": false,
|
|
2974
3715
|
"hiddenAliases": [],
|
|
2975
|
-
"id": "
|
|
3716
|
+
"id": "verify:resend",
|
|
2976
3717
|
"pluginAlias": "@sendly/cli",
|
|
2977
3718
|
"pluginName": "@sendly/cli",
|
|
2978
3719
|
"pluginType": "core",
|
|
@@ -2981,17 +3722,20 @@
|
|
|
2981
3722
|
"relativePath": [
|
|
2982
3723
|
"dist",
|
|
2983
3724
|
"commands",
|
|
2984
|
-
"
|
|
2985
|
-
"
|
|
3725
|
+
"verify",
|
|
3726
|
+
"resend.js"
|
|
2986
3727
|
]
|
|
2987
3728
|
},
|
|
2988
|
-
"
|
|
3729
|
+
"verify:send": {
|
|
2989
3730
|
"aliases": [],
|
|
2990
3731
|
"args": {},
|
|
2991
|
-
"description": "
|
|
3732
|
+
"description": "Send an OTP verification code",
|
|
2992
3733
|
"examples": [
|
|
2993
|
-
"<%= config.bin %>
|
|
2994
|
-
"<%= config.bin %>
|
|
3734
|
+
"<%= config.bin %> verify send --to \"+1234567890\"",
|
|
3735
|
+
"<%= config.bin %> verify send --to \"+1234567890\" --app-name \"MyApp\"",
|
|
3736
|
+
"<%= config.bin %> verify send --to \"+1234567890\" --template tpl_preset_2fa",
|
|
3737
|
+
"<%= config.bin %> verify send --to \"+1234567890\" --profile vp_xxx",
|
|
3738
|
+
"<%= config.bin %> verify send --to \"+1234567890\" --code-length 8 --timeout 120"
|
|
2995
3739
|
],
|
|
2996
3740
|
"flags": {
|
|
2997
3741
|
"json": {
|
|
@@ -3006,49 +3750,57 @@
|
|
|
3006
3750
|
"name": "quiet",
|
|
3007
3751
|
"allowNo": false,
|
|
3008
3752
|
"type": "boolean"
|
|
3009
|
-
}
|
|
3010
|
-
},
|
|
3011
|
-
"hasDynamicHelp": false,
|
|
3012
|
-
"hiddenAliases": [],
|
|
3013
|
-
"id": "templates:list",
|
|
3014
|
-
"pluginAlias": "@sendly/cli",
|
|
3015
|
-
"pluginName": "@sendly/cli",
|
|
3016
|
-
"pluginType": "core",
|
|
3017
|
-
"strict": true,
|
|
3018
|
-
"isESM": true,
|
|
3019
|
-
"relativePath": [
|
|
3020
|
-
"dist",
|
|
3021
|
-
"commands",
|
|
3022
|
-
"templates",
|
|
3023
|
-
"list.js"
|
|
3024
|
-
]
|
|
3025
|
-
},
|
|
3026
|
-
"templates:presets": {
|
|
3027
|
-
"aliases": [],
|
|
3028
|
-
"args": {},
|
|
3029
|
-
"description": "List available preset templates",
|
|
3030
|
-
"examples": [
|
|
3031
|
-
"<%= config.bin %> templates presets",
|
|
3032
|
-
"<%= config.bin %> templates presets --json"
|
|
3033
|
-
],
|
|
3034
|
-
"flags": {
|
|
3035
|
-
"json": {
|
|
3036
|
-
"description": "Output in JSON format",
|
|
3037
|
-
"name": "json",
|
|
3038
|
-
"allowNo": false,
|
|
3039
|
-
"type": "boolean"
|
|
3040
3753
|
},
|
|
3041
|
-
"
|
|
3042
|
-
"char": "
|
|
3043
|
-
"description": "
|
|
3044
|
-
"name": "
|
|
3045
|
-
"
|
|
3046
|
-
"
|
|
3754
|
+
"to": {
|
|
3755
|
+
"char": "t",
|
|
3756
|
+
"description": "Recipient phone number (E.164 format)",
|
|
3757
|
+
"name": "to",
|
|
3758
|
+
"required": true,
|
|
3759
|
+
"hasDynamicHelp": false,
|
|
3760
|
+
"multiple": false,
|
|
3761
|
+
"type": "option"
|
|
3762
|
+
},
|
|
3763
|
+
"app-name": {
|
|
3764
|
+
"char": "a",
|
|
3765
|
+
"description": "App name shown in message (defaults to your business name)",
|
|
3766
|
+
"name": "app-name",
|
|
3767
|
+
"hasDynamicHelp": false,
|
|
3768
|
+
"multiple": false,
|
|
3769
|
+
"type": "option"
|
|
3770
|
+
},
|
|
3771
|
+
"template": {
|
|
3772
|
+
"description": "Template ID to use (defaults to tpl_preset_otp)",
|
|
3773
|
+
"name": "template",
|
|
3774
|
+
"hasDynamicHelp": false,
|
|
3775
|
+
"multiple": false,
|
|
3776
|
+
"type": "option"
|
|
3777
|
+
},
|
|
3778
|
+
"profile": {
|
|
3779
|
+
"char": "p",
|
|
3780
|
+
"description": "Verify profile ID for preconfigured settings",
|
|
3781
|
+
"name": "profile",
|
|
3782
|
+
"hasDynamicHelp": false,
|
|
3783
|
+
"multiple": false,
|
|
3784
|
+
"type": "option"
|
|
3785
|
+
},
|
|
3786
|
+
"code-length": {
|
|
3787
|
+
"description": "Length of OTP code (4-10, default: 6)",
|
|
3788
|
+
"name": "code-length",
|
|
3789
|
+
"hasDynamicHelp": false,
|
|
3790
|
+
"multiple": false,
|
|
3791
|
+
"type": "option"
|
|
3792
|
+
},
|
|
3793
|
+
"timeout": {
|
|
3794
|
+
"description": "Code validity in seconds (60-3600, default: 300)",
|
|
3795
|
+
"name": "timeout",
|
|
3796
|
+
"hasDynamicHelp": false,
|
|
3797
|
+
"multiple": false,
|
|
3798
|
+
"type": "option"
|
|
3047
3799
|
}
|
|
3048
3800
|
},
|
|
3049
3801
|
"hasDynamicHelp": false,
|
|
3050
3802
|
"hiddenAliases": [],
|
|
3051
|
-
"id": "
|
|
3803
|
+
"id": "verify:send",
|
|
3052
3804
|
"pluginAlias": "@sendly/cli",
|
|
3053
3805
|
"pluginName": "@sendly/cli",
|
|
3054
3806
|
"pluginType": "core",
|
|
@@ -3057,22 +3809,23 @@
|
|
|
3057
3809
|
"relativePath": [
|
|
3058
3810
|
"dist",
|
|
3059
3811
|
"commands",
|
|
3060
|
-
"
|
|
3061
|
-
"
|
|
3812
|
+
"verify",
|
|
3813
|
+
"send.js"
|
|
3062
3814
|
]
|
|
3063
3815
|
},
|
|
3064
|
-
"
|
|
3816
|
+
"verify:status": {
|
|
3065
3817
|
"aliases": [],
|
|
3066
3818
|
"args": {
|
|
3067
3819
|
"id": {
|
|
3068
|
-
"description": "
|
|
3820
|
+
"description": "Verification ID",
|
|
3069
3821
|
"name": "id",
|
|
3070
3822
|
"required": true
|
|
3071
3823
|
}
|
|
3072
3824
|
},
|
|
3073
|
-
"description": "
|
|
3825
|
+
"description": "Get verification status",
|
|
3074
3826
|
"examples": [
|
|
3075
|
-
"<%= config.bin %>
|
|
3827
|
+
"<%= config.bin %> verify status ver_xxx",
|
|
3828
|
+
"<%= config.bin %> verify status ver_xxx --json"
|
|
3076
3829
|
],
|
|
3077
3830
|
"flags": {
|
|
3078
3831
|
"json": {
|
|
@@ -3091,7 +3844,7 @@
|
|
|
3091
3844
|
},
|
|
3092
3845
|
"hasDynamicHelp": false,
|
|
3093
3846
|
"hiddenAliases": [],
|
|
3094
|
-
"id": "
|
|
3847
|
+
"id": "verify:status",
|
|
3095
3848
|
"pluginAlias": "@sendly/cli",
|
|
3096
3849
|
"pluginName": "@sendly/cli",
|
|
3097
3850
|
"pluginType": "core",
|
|
@@ -3100,8 +3853,8 @@
|
|
|
3100
3853
|
"relativePath": [
|
|
3101
3854
|
"dist",
|
|
3102
3855
|
"commands",
|
|
3103
|
-
"
|
|
3104
|
-
"
|
|
3856
|
+
"verify",
|
|
3857
|
+
"status.js"
|
|
3105
3858
|
]
|
|
3106
3859
|
},
|
|
3107
3860
|
"teams:create": {
|
|
@@ -3376,19 +4129,20 @@
|
|
|
3376
4129
|
"switch.js"
|
|
3377
4130
|
]
|
|
3378
4131
|
},
|
|
3379
|
-
"
|
|
4132
|
+
"templates:clone": {
|
|
3380
4133
|
"aliases": [],
|
|
3381
4134
|
"args": {
|
|
3382
4135
|
"id": {
|
|
3383
|
-
"description": "
|
|
4136
|
+
"description": "Template ID to clone",
|
|
3384
4137
|
"name": "id",
|
|
3385
4138
|
"required": true
|
|
3386
4139
|
}
|
|
3387
4140
|
},
|
|
3388
|
-
"description": "
|
|
4141
|
+
"description": "Clone a template",
|
|
3389
4142
|
"examples": [
|
|
3390
|
-
"<%= config.bin %>
|
|
3391
|
-
"<%= config.bin %>
|
|
4143
|
+
"<%= config.bin %> templates clone tpl_preset_otp",
|
|
4144
|
+
"<%= config.bin %> templates clone tpl_preset_otp --name \"My Custom OTP\"",
|
|
4145
|
+
"<%= config.bin %> templates clone tpl_xxx --json"
|
|
3392
4146
|
],
|
|
3393
4147
|
"flags": {
|
|
3394
4148
|
"json": {
|
|
@@ -3404,11 +4158,10 @@
|
|
|
3404
4158
|
"allowNo": false,
|
|
3405
4159
|
"type": "boolean"
|
|
3406
4160
|
},
|
|
3407
|
-
"
|
|
3408
|
-
"char": "
|
|
3409
|
-
"description": "
|
|
3410
|
-
"name": "
|
|
3411
|
-
"required": true,
|
|
4161
|
+
"name": {
|
|
4162
|
+
"char": "n",
|
|
4163
|
+
"description": "Name for the cloned template",
|
|
4164
|
+
"name": "name",
|
|
3412
4165
|
"hasDynamicHelp": false,
|
|
3413
4166
|
"multiple": false,
|
|
3414
4167
|
"type": "option"
|
|
@@ -3416,7 +4169,7 @@
|
|
|
3416
4169
|
},
|
|
3417
4170
|
"hasDynamicHelp": false,
|
|
3418
4171
|
"hiddenAliases": [],
|
|
3419
|
-
"id": "
|
|
4172
|
+
"id": "templates:clone",
|
|
3420
4173
|
"pluginAlias": "@sendly/cli",
|
|
3421
4174
|
"pluginName": "@sendly/cli",
|
|
3422
4175
|
"pluginType": "core",
|
|
@@ -3425,20 +4178,17 @@
|
|
|
3425
4178
|
"relativePath": [
|
|
3426
4179
|
"dist",
|
|
3427
4180
|
"commands",
|
|
3428
|
-
"
|
|
3429
|
-
"
|
|
4181
|
+
"templates",
|
|
4182
|
+
"clone.js"
|
|
3430
4183
|
]
|
|
3431
4184
|
},
|
|
3432
|
-
"
|
|
4185
|
+
"templates:create": {
|
|
3433
4186
|
"aliases": [],
|
|
3434
4187
|
"args": {},
|
|
3435
|
-
"description": "
|
|
4188
|
+
"description": "Create a new SMS template",
|
|
3436
4189
|
"examples": [
|
|
3437
|
-
"<%= config.bin %>
|
|
3438
|
-
"<%= config.bin %>
|
|
3439
|
-
"<%= config.bin %> verify list --page 2",
|
|
3440
|
-
"<%= config.bin %> verify list --status verified",
|
|
3441
|
-
"<%= config.bin %> verify list --json"
|
|
4190
|
+
"<%= config.bin %> templates create --name \"My OTP\" --text \"Your code is {{code}}\"",
|
|
4191
|
+
"<%= config.bin %> templates create --name \"Login\" --text \"{{code}} is your {{app_name}} login code\""
|
|
3442
4192
|
],
|
|
3443
4193
|
"flags": {
|
|
3444
4194
|
"json": {
|
|
@@ -3454,42 +4204,79 @@
|
|
|
3454
4204
|
"allowNo": false,
|
|
3455
4205
|
"type": "boolean"
|
|
3456
4206
|
},
|
|
3457
|
-
"
|
|
3458
|
-
"char": "
|
|
3459
|
-
"description": "
|
|
3460
|
-
"name": "
|
|
3461
|
-
"
|
|
4207
|
+
"name": {
|
|
4208
|
+
"char": "n",
|
|
4209
|
+
"description": "Template name",
|
|
4210
|
+
"name": "name",
|
|
4211
|
+
"required": true,
|
|
3462
4212
|
"hasDynamicHelp": false,
|
|
3463
4213
|
"multiple": false,
|
|
3464
4214
|
"type": "option"
|
|
3465
4215
|
},
|
|
3466
|
-
"
|
|
3467
|
-
"char": "
|
|
3468
|
-
"description": "
|
|
3469
|
-
"name": "
|
|
4216
|
+
"text": {
|
|
4217
|
+
"char": "t",
|
|
4218
|
+
"description": "Message text (use {{code}} and {{app_name}} variables)",
|
|
4219
|
+
"name": "text",
|
|
4220
|
+
"required": true,
|
|
3470
4221
|
"hasDynamicHelp": false,
|
|
3471
4222
|
"multiple": false,
|
|
3472
4223
|
"type": "option"
|
|
4224
|
+
}
|
|
4225
|
+
},
|
|
4226
|
+
"hasDynamicHelp": false,
|
|
4227
|
+
"hiddenAliases": [],
|
|
4228
|
+
"id": "templates:create",
|
|
4229
|
+
"pluginAlias": "@sendly/cli",
|
|
4230
|
+
"pluginName": "@sendly/cli",
|
|
4231
|
+
"pluginType": "core",
|
|
4232
|
+
"strict": true,
|
|
4233
|
+
"isESM": true,
|
|
4234
|
+
"relativePath": [
|
|
4235
|
+
"dist",
|
|
4236
|
+
"commands",
|
|
4237
|
+
"templates",
|
|
4238
|
+
"create.js"
|
|
4239
|
+
]
|
|
4240
|
+
},
|
|
4241
|
+
"templates:delete": {
|
|
4242
|
+
"aliases": [],
|
|
4243
|
+
"args": {
|
|
4244
|
+
"id": {
|
|
4245
|
+
"description": "Template ID",
|
|
4246
|
+
"name": "id",
|
|
4247
|
+
"required": true
|
|
4248
|
+
}
|
|
4249
|
+
},
|
|
4250
|
+
"description": "Delete a template",
|
|
4251
|
+
"examples": [
|
|
4252
|
+
"<%= config.bin %> templates delete tpl_xxx",
|
|
4253
|
+
"<%= config.bin %> templates delete tpl_xxx --force"
|
|
4254
|
+
],
|
|
4255
|
+
"flags": {
|
|
4256
|
+
"json": {
|
|
4257
|
+
"description": "Output in JSON format",
|
|
4258
|
+
"name": "json",
|
|
4259
|
+
"allowNo": false,
|
|
4260
|
+
"type": "boolean"
|
|
3473
4261
|
},
|
|
3474
|
-
"
|
|
3475
|
-
"
|
|
3476
|
-
"
|
|
3477
|
-
"
|
|
3478
|
-
"
|
|
3479
|
-
"type": "
|
|
4262
|
+
"quiet": {
|
|
4263
|
+
"char": "q",
|
|
4264
|
+
"description": "Minimal output",
|
|
4265
|
+
"name": "quiet",
|
|
4266
|
+
"allowNo": false,
|
|
4267
|
+
"type": "boolean"
|
|
3480
4268
|
},
|
|
3481
|
-
"
|
|
3482
|
-
"char": "
|
|
3483
|
-
"description": "
|
|
3484
|
-
"name": "
|
|
3485
|
-
"
|
|
3486
|
-
"
|
|
3487
|
-
"type": "option"
|
|
4269
|
+
"force": {
|
|
4270
|
+
"char": "f",
|
|
4271
|
+
"description": "Skip confirmation",
|
|
4272
|
+
"name": "force",
|
|
4273
|
+
"allowNo": false,
|
|
4274
|
+
"type": "boolean"
|
|
3488
4275
|
}
|
|
3489
4276
|
},
|
|
3490
4277
|
"hasDynamicHelp": false,
|
|
3491
4278
|
"hiddenAliases": [],
|
|
3492
|
-
"id": "
|
|
4279
|
+
"id": "templates:delete",
|
|
3493
4280
|
"pluginAlias": "@sendly/cli",
|
|
3494
4281
|
"pluginName": "@sendly/cli",
|
|
3495
4282
|
"pluginType": "core",
|
|
@@ -3498,23 +4285,23 @@
|
|
|
3498
4285
|
"relativePath": [
|
|
3499
4286
|
"dist",
|
|
3500
4287
|
"commands",
|
|
3501
|
-
"
|
|
3502
|
-
"
|
|
4288
|
+
"templates",
|
|
4289
|
+
"delete.js"
|
|
3503
4290
|
]
|
|
3504
4291
|
},
|
|
3505
|
-
"
|
|
4292
|
+
"templates:get": {
|
|
3506
4293
|
"aliases": [],
|
|
3507
4294
|
"args": {
|
|
3508
4295
|
"id": {
|
|
3509
|
-
"description": "
|
|
4296
|
+
"description": "Template ID",
|
|
3510
4297
|
"name": "id",
|
|
3511
4298
|
"required": true
|
|
3512
4299
|
}
|
|
3513
4300
|
},
|
|
3514
|
-
"description": "
|
|
4301
|
+
"description": "Get template details",
|
|
3515
4302
|
"examples": [
|
|
3516
|
-
"<%= config.bin %>
|
|
3517
|
-
"<%= config.bin %>
|
|
4303
|
+
"<%= config.bin %> templates get tpl_xxx",
|
|
4304
|
+
"<%= config.bin %> templates get tpl_preset_2fa"
|
|
3518
4305
|
],
|
|
3519
4306
|
"flags": {
|
|
3520
4307
|
"json": {
|
|
@@ -3533,7 +4320,7 @@
|
|
|
3533
4320
|
},
|
|
3534
4321
|
"hasDynamicHelp": false,
|
|
3535
4322
|
"hiddenAliases": [],
|
|
3536
|
-
"id": "
|
|
4323
|
+
"id": "templates:get",
|
|
3537
4324
|
"pluginAlias": "@sendly/cli",
|
|
3538
4325
|
"pluginName": "@sendly/cli",
|
|
3539
4326
|
"pluginType": "core",
|
|
@@ -3542,20 +4329,17 @@
|
|
|
3542
4329
|
"relativePath": [
|
|
3543
4330
|
"dist",
|
|
3544
4331
|
"commands",
|
|
3545
|
-
"
|
|
3546
|
-
"
|
|
4332
|
+
"templates",
|
|
4333
|
+
"get.js"
|
|
3547
4334
|
]
|
|
3548
4335
|
},
|
|
3549
|
-
"
|
|
4336
|
+
"templates:list": {
|
|
3550
4337
|
"aliases": [],
|
|
3551
4338
|
"args": {},
|
|
3552
|
-
"description": "
|
|
4339
|
+
"description": "List your SMS templates",
|
|
3553
4340
|
"examples": [
|
|
3554
|
-
"<%= config.bin %>
|
|
3555
|
-
"<%= config.bin %>
|
|
3556
|
-
"<%= config.bin %> verify send --to \"+1234567890\" --template tpl_preset_2fa",
|
|
3557
|
-
"<%= config.bin %> verify send --to \"+1234567890\" --profile vp_xxx",
|
|
3558
|
-
"<%= config.bin %> verify send --to \"+1234567890\" --code-length 8 --timeout 120"
|
|
4341
|
+
"<%= config.bin %> templates list",
|
|
4342
|
+
"<%= config.bin %> templates list --json"
|
|
3559
4343
|
],
|
|
3560
4344
|
"flags": {
|
|
3561
4345
|
"json": {
|
|
@@ -3570,57 +4354,49 @@
|
|
|
3570
4354
|
"name": "quiet",
|
|
3571
4355
|
"allowNo": false,
|
|
3572
4356
|
"type": "boolean"
|
|
4357
|
+
}
|
|
4358
|
+
},
|
|
4359
|
+
"hasDynamicHelp": false,
|
|
4360
|
+
"hiddenAliases": [],
|
|
4361
|
+
"id": "templates:list",
|
|
4362
|
+
"pluginAlias": "@sendly/cli",
|
|
4363
|
+
"pluginName": "@sendly/cli",
|
|
4364
|
+
"pluginType": "core",
|
|
4365
|
+
"strict": true,
|
|
4366
|
+
"isESM": true,
|
|
4367
|
+
"relativePath": [
|
|
4368
|
+
"dist",
|
|
4369
|
+
"commands",
|
|
4370
|
+
"templates",
|
|
4371
|
+
"list.js"
|
|
4372
|
+
]
|
|
4373
|
+
},
|
|
4374
|
+
"templates:presets": {
|
|
4375
|
+
"aliases": [],
|
|
4376
|
+
"args": {},
|
|
4377
|
+
"description": "List available preset templates",
|
|
4378
|
+
"examples": [
|
|
4379
|
+
"<%= config.bin %> templates presets",
|
|
4380
|
+
"<%= config.bin %> templates presets --json"
|
|
4381
|
+
],
|
|
4382
|
+
"flags": {
|
|
4383
|
+
"json": {
|
|
4384
|
+
"description": "Output in JSON format",
|
|
4385
|
+
"name": "json",
|
|
4386
|
+
"allowNo": false,
|
|
4387
|
+
"type": "boolean"
|
|
3573
4388
|
},
|
|
3574
|
-
"
|
|
3575
|
-
"char": "
|
|
3576
|
-
"description": "
|
|
3577
|
-
"name": "
|
|
3578
|
-
"
|
|
3579
|
-
"
|
|
3580
|
-
"multiple": false,
|
|
3581
|
-
"type": "option"
|
|
3582
|
-
},
|
|
3583
|
-
"app-name": {
|
|
3584
|
-
"char": "a",
|
|
3585
|
-
"description": "App name shown in message (defaults to your business name)",
|
|
3586
|
-
"name": "app-name",
|
|
3587
|
-
"hasDynamicHelp": false,
|
|
3588
|
-
"multiple": false,
|
|
3589
|
-
"type": "option"
|
|
3590
|
-
},
|
|
3591
|
-
"template": {
|
|
3592
|
-
"description": "Template ID to use (defaults to tpl_preset_otp)",
|
|
3593
|
-
"name": "template",
|
|
3594
|
-
"hasDynamicHelp": false,
|
|
3595
|
-
"multiple": false,
|
|
3596
|
-
"type": "option"
|
|
3597
|
-
},
|
|
3598
|
-
"profile": {
|
|
3599
|
-
"char": "p",
|
|
3600
|
-
"description": "Verify profile ID for preconfigured settings",
|
|
3601
|
-
"name": "profile",
|
|
3602
|
-
"hasDynamicHelp": false,
|
|
3603
|
-
"multiple": false,
|
|
3604
|
-
"type": "option"
|
|
3605
|
-
},
|
|
3606
|
-
"code-length": {
|
|
3607
|
-
"description": "Length of OTP code (4-10, default: 6)",
|
|
3608
|
-
"name": "code-length",
|
|
3609
|
-
"hasDynamicHelp": false,
|
|
3610
|
-
"multiple": false,
|
|
3611
|
-
"type": "option"
|
|
3612
|
-
},
|
|
3613
|
-
"timeout": {
|
|
3614
|
-
"description": "Code validity in seconds (60-3600, default: 300)",
|
|
3615
|
-
"name": "timeout",
|
|
3616
|
-
"hasDynamicHelp": false,
|
|
3617
|
-
"multiple": false,
|
|
3618
|
-
"type": "option"
|
|
4389
|
+
"quiet": {
|
|
4390
|
+
"char": "q",
|
|
4391
|
+
"description": "Minimal output",
|
|
4392
|
+
"name": "quiet",
|
|
4393
|
+
"allowNo": false,
|
|
4394
|
+
"type": "boolean"
|
|
3619
4395
|
}
|
|
3620
4396
|
},
|
|
3621
4397
|
"hasDynamicHelp": false,
|
|
3622
4398
|
"hiddenAliases": [],
|
|
3623
|
-
"id": "
|
|
4399
|
+
"id": "templates:presets",
|
|
3624
4400
|
"pluginAlias": "@sendly/cli",
|
|
3625
4401
|
"pluginName": "@sendly/cli",
|
|
3626
4402
|
"pluginType": "core",
|
|
@@ -3629,23 +4405,22 @@
|
|
|
3629
4405
|
"relativePath": [
|
|
3630
4406
|
"dist",
|
|
3631
4407
|
"commands",
|
|
3632
|
-
"
|
|
3633
|
-
"
|
|
4408
|
+
"templates",
|
|
4409
|
+
"presets.js"
|
|
3634
4410
|
]
|
|
3635
4411
|
},
|
|
3636
|
-
"
|
|
4412
|
+
"templates:publish": {
|
|
3637
4413
|
"aliases": [],
|
|
3638
4414
|
"args": {
|
|
3639
4415
|
"id": {
|
|
3640
|
-
"description": "
|
|
4416
|
+
"description": "Template ID",
|
|
3641
4417
|
"name": "id",
|
|
3642
4418
|
"required": true
|
|
3643
4419
|
}
|
|
3644
4420
|
},
|
|
3645
|
-
"description": "
|
|
4421
|
+
"description": "Publish a draft template (locks it for use)",
|
|
3646
4422
|
"examples": [
|
|
3647
|
-
"<%= config.bin %>
|
|
3648
|
-
"<%= config.bin %> verify status ver_xxx --json"
|
|
4423
|
+
"<%= config.bin %> templates publish tpl_xxx"
|
|
3649
4424
|
],
|
|
3650
4425
|
"flags": {
|
|
3651
4426
|
"json": {
|
|
@@ -3664,7 +4439,7 @@
|
|
|
3664
4439
|
},
|
|
3665
4440
|
"hasDynamicHelp": false,
|
|
3666
4441
|
"hiddenAliases": [],
|
|
3667
|
-
"id": "
|
|
4442
|
+
"id": "templates:publish",
|
|
3668
4443
|
"pluginAlias": "@sendly/cli",
|
|
3669
4444
|
"pluginName": "@sendly/cli",
|
|
3670
4445
|
"pluginType": "core",
|
|
@@ -3673,8 +4448,8 @@
|
|
|
3673
4448
|
"relativePath": [
|
|
3674
4449
|
"dist",
|
|
3675
4450
|
"commands",
|
|
3676
|
-
"
|
|
3677
|
-
"
|
|
4451
|
+
"templates",
|
|
4452
|
+
"publish.js"
|
|
3678
4453
|
]
|
|
3679
4454
|
},
|
|
3680
4455
|
"webhooks:create": {
|
|
@@ -4452,206 +5227,12 @@
|
|
|
4452
5227
|
"contactId": {
|
|
4453
5228
|
"description": "Contact ID to remove",
|
|
4454
5229
|
"name": "contactId",
|
|
4455
|
-
"required": true
|
|
4456
|
-
}
|
|
4457
|
-
},
|
|
4458
|
-
"description": "Remove a contact from a list",
|
|
4459
|
-
"examples": [
|
|
4460
|
-
"<%= config.bin %> contacts lists remove lst_xxx cnt_abc"
|
|
4461
|
-
],
|
|
4462
|
-
"flags": {
|
|
4463
|
-
"json": {
|
|
4464
|
-
"description": "Output in JSON format",
|
|
4465
|
-
"name": "json",
|
|
4466
|
-
"allowNo": false,
|
|
4467
|
-
"type": "boolean"
|
|
4468
|
-
},
|
|
4469
|
-
"quiet": {
|
|
4470
|
-
"char": "q",
|
|
4471
|
-
"description": "Minimal output",
|
|
4472
|
-
"name": "quiet",
|
|
4473
|
-
"allowNo": false,
|
|
4474
|
-
"type": "boolean"
|
|
4475
|
-
}
|
|
4476
|
-
},
|
|
4477
|
-
"hasDynamicHelp": false,
|
|
4478
|
-
"hiddenAliases": [],
|
|
4479
|
-
"id": "contacts:lists:remove",
|
|
4480
|
-
"pluginAlias": "@sendly/cli",
|
|
4481
|
-
"pluginName": "@sendly/cli",
|
|
4482
|
-
"pluginType": "core",
|
|
4483
|
-
"strict": true,
|
|
4484
|
-
"isESM": true,
|
|
4485
|
-
"relativePath": [
|
|
4486
|
-
"dist",
|
|
4487
|
-
"commands",
|
|
4488
|
-
"contacts",
|
|
4489
|
-
"lists",
|
|
4490
|
-
"remove.js"
|
|
4491
|
-
]
|
|
4492
|
-
},
|
|
4493
|
-
"contacts:lists:update": {
|
|
4494
|
-
"aliases": [],
|
|
4495
|
-
"args": {
|
|
4496
|
-
"id": {
|
|
4497
|
-
"description": "Contact list ID",
|
|
4498
|
-
"name": "id",
|
|
4499
|
-
"required": true
|
|
4500
|
-
}
|
|
4501
|
-
},
|
|
4502
|
-
"description": "Update a contact list",
|
|
4503
|
-
"examples": [
|
|
4504
|
-
"<%= config.bin %> contacts lists update lst_xxx --name \"VIP Customers\"",
|
|
4505
|
-
"<%= config.bin %> contacts lists update lst_xxx --description \"Updated desc\""
|
|
4506
|
-
],
|
|
4507
|
-
"flags": {
|
|
4508
|
-
"json": {
|
|
4509
|
-
"description": "Output in JSON format",
|
|
4510
|
-
"name": "json",
|
|
4511
|
-
"allowNo": false,
|
|
4512
|
-
"type": "boolean"
|
|
4513
|
-
},
|
|
4514
|
-
"quiet": {
|
|
4515
|
-
"char": "q",
|
|
4516
|
-
"description": "Minimal output",
|
|
4517
|
-
"name": "quiet",
|
|
4518
|
-
"allowNo": false,
|
|
4519
|
-
"type": "boolean"
|
|
4520
|
-
},
|
|
4521
|
-
"name": {
|
|
4522
|
-
"char": "n",
|
|
4523
|
-
"description": "List name",
|
|
4524
|
-
"name": "name",
|
|
4525
|
-
"hasDynamicHelp": false,
|
|
4526
|
-
"multiple": false,
|
|
4527
|
-
"type": "option"
|
|
4528
|
-
},
|
|
4529
|
-
"description": {
|
|
4530
|
-
"char": "d",
|
|
4531
|
-
"description": "List description",
|
|
4532
|
-
"name": "description",
|
|
4533
|
-
"hasDynamicHelp": false,
|
|
4534
|
-
"multiple": false,
|
|
4535
|
-
"type": "option"
|
|
4536
|
-
}
|
|
4537
|
-
},
|
|
4538
|
-
"hasDynamicHelp": false,
|
|
4539
|
-
"hiddenAliases": [],
|
|
4540
|
-
"id": "contacts:lists:update",
|
|
4541
|
-
"pluginAlias": "@sendly/cli",
|
|
4542
|
-
"pluginName": "@sendly/cli",
|
|
4543
|
-
"pluginType": "core",
|
|
4544
|
-
"strict": true,
|
|
4545
|
-
"isESM": true,
|
|
4546
|
-
"relativePath": [
|
|
4547
|
-
"dist",
|
|
4548
|
-
"commands",
|
|
4549
|
-
"contacts",
|
|
4550
|
-
"lists",
|
|
4551
|
-
"update.js"
|
|
4552
|
-
]
|
|
4553
|
-
},
|
|
4554
|
-
"enterprise:analytics:credits": {
|
|
4555
|
-
"aliases": [],
|
|
4556
|
-
"args": {},
|
|
4557
|
-
"description": "Get credit usage analytics over time",
|
|
4558
|
-
"examples": [
|
|
4559
|
-
"<%= config.bin %> enterprise analytics credits",
|
|
4560
|
-
"<%= config.bin %> enterprise analytics credits --period 30d",
|
|
4561
|
-
"<%= config.bin %> enterprise analytics credits --json"
|
|
4562
|
-
],
|
|
4563
|
-
"flags": {
|
|
4564
|
-
"json": {
|
|
4565
|
-
"description": "Output in JSON format",
|
|
4566
|
-
"name": "json",
|
|
4567
|
-
"allowNo": false,
|
|
4568
|
-
"type": "boolean"
|
|
4569
|
-
},
|
|
4570
|
-
"quiet": {
|
|
4571
|
-
"char": "q",
|
|
4572
|
-
"description": "Minimal output",
|
|
4573
|
-
"name": "quiet",
|
|
4574
|
-
"allowNo": false,
|
|
4575
|
-
"type": "boolean"
|
|
4576
|
-
},
|
|
4577
|
-
"period": {
|
|
4578
|
-
"char": "p",
|
|
4579
|
-
"description": "Time period (7d, 30d, 90d)",
|
|
4580
|
-
"name": "period",
|
|
4581
|
-
"default": "7d",
|
|
4582
|
-
"hasDynamicHelp": false,
|
|
4583
|
-
"multiple": false,
|
|
4584
|
-
"options": [
|
|
4585
|
-
"7d",
|
|
4586
|
-
"30d",
|
|
4587
|
-
"90d"
|
|
4588
|
-
],
|
|
4589
|
-
"type": "option"
|
|
4590
|
-
}
|
|
4591
|
-
},
|
|
4592
|
-
"hasDynamicHelp": false,
|
|
4593
|
-
"hiddenAliases": [],
|
|
4594
|
-
"id": "enterprise:analytics:credits",
|
|
4595
|
-
"pluginAlias": "@sendly/cli",
|
|
4596
|
-
"pluginName": "@sendly/cli",
|
|
4597
|
-
"pluginType": "core",
|
|
4598
|
-
"strict": true,
|
|
4599
|
-
"isESM": true,
|
|
4600
|
-
"relativePath": [
|
|
4601
|
-
"dist",
|
|
4602
|
-
"commands",
|
|
4603
|
-
"enterprise",
|
|
4604
|
-
"analytics",
|
|
4605
|
-
"credits.js"
|
|
4606
|
-
]
|
|
4607
|
-
},
|
|
4608
|
-
"enterprise:analytics:delivery": {
|
|
4609
|
-
"aliases": [],
|
|
4610
|
-
"args": {},
|
|
4611
|
-
"description": "Get delivery rate analytics by workspace",
|
|
4612
|
-
"examples": [
|
|
4613
|
-
"<%= config.bin %> enterprise analytics delivery",
|
|
4614
|
-
"<%= config.bin %> enterprise analytics delivery --json"
|
|
4615
|
-
],
|
|
4616
|
-
"flags": {
|
|
4617
|
-
"json": {
|
|
4618
|
-
"description": "Output in JSON format",
|
|
4619
|
-
"name": "json",
|
|
4620
|
-
"allowNo": false,
|
|
4621
|
-
"type": "boolean"
|
|
4622
|
-
},
|
|
4623
|
-
"quiet": {
|
|
4624
|
-
"char": "q",
|
|
4625
|
-
"description": "Minimal output",
|
|
4626
|
-
"name": "quiet",
|
|
4627
|
-
"allowNo": false,
|
|
4628
|
-
"type": "boolean"
|
|
4629
|
-
}
|
|
4630
|
-
},
|
|
4631
|
-
"hasDynamicHelp": false,
|
|
4632
|
-
"hiddenAliases": [],
|
|
4633
|
-
"id": "enterprise:analytics:delivery",
|
|
4634
|
-
"pluginAlias": "@sendly/cli",
|
|
4635
|
-
"pluginName": "@sendly/cli",
|
|
4636
|
-
"pluginType": "core",
|
|
4637
|
-
"strict": true,
|
|
4638
|
-
"isESM": true,
|
|
4639
|
-
"relativePath": [
|
|
4640
|
-
"dist",
|
|
4641
|
-
"commands",
|
|
4642
|
-
"enterprise",
|
|
4643
|
-
"analytics",
|
|
4644
|
-
"delivery.js"
|
|
4645
|
-
]
|
|
4646
|
-
},
|
|
4647
|
-
"enterprise:analytics:messages": {
|
|
4648
|
-
"aliases": [],
|
|
4649
|
-
"args": {},
|
|
4650
|
-
"description": "Get message analytics across all workspaces",
|
|
5230
|
+
"required": true
|
|
5231
|
+
}
|
|
5232
|
+
},
|
|
5233
|
+
"description": "Remove a contact from a list",
|
|
4651
5234
|
"examples": [
|
|
4652
|
-
"<%= config.bin %>
|
|
4653
|
-
"<%= config.bin %> enterprise analytics messages --period 30d",
|
|
4654
|
-
"<%= config.bin %> enterprise analytics messages --period 90d --json"
|
|
5235
|
+
"<%= config.bin %> contacts lists remove lst_xxx cnt_abc"
|
|
4655
5236
|
],
|
|
4656
5237
|
"flags": {
|
|
4657
5238
|
"json": {
|
|
@@ -4666,25 +5247,11 @@
|
|
|
4666
5247
|
"name": "quiet",
|
|
4667
5248
|
"allowNo": false,
|
|
4668
5249
|
"type": "boolean"
|
|
4669
|
-
},
|
|
4670
|
-
"period": {
|
|
4671
|
-
"char": "p",
|
|
4672
|
-
"description": "Time period (7d, 30d, 90d)",
|
|
4673
|
-
"name": "period",
|
|
4674
|
-
"default": "7d",
|
|
4675
|
-
"hasDynamicHelp": false,
|
|
4676
|
-
"multiple": false,
|
|
4677
|
-
"options": [
|
|
4678
|
-
"7d",
|
|
4679
|
-
"30d",
|
|
4680
|
-
"90d"
|
|
4681
|
-
],
|
|
4682
|
-
"type": "option"
|
|
4683
5250
|
}
|
|
4684
5251
|
},
|
|
4685
5252
|
"hasDynamicHelp": false,
|
|
4686
5253
|
"hiddenAliases": [],
|
|
4687
|
-
"id": "
|
|
5254
|
+
"id": "contacts:lists:remove",
|
|
4688
5255
|
"pluginAlias": "@sendly/cli",
|
|
4689
5256
|
"pluginName": "@sendly/cli",
|
|
4690
5257
|
"pluginType": "core",
|
|
@@ -4693,18 +5260,24 @@
|
|
|
4693
5260
|
"relativePath": [
|
|
4694
5261
|
"dist",
|
|
4695
5262
|
"commands",
|
|
4696
|
-
"
|
|
4697
|
-
"
|
|
4698
|
-
"
|
|
5263
|
+
"contacts",
|
|
5264
|
+
"lists",
|
|
5265
|
+
"remove.js"
|
|
4699
5266
|
]
|
|
4700
5267
|
},
|
|
4701
|
-
"
|
|
5268
|
+
"contacts:lists:update": {
|
|
4702
5269
|
"aliases": [],
|
|
4703
|
-
"args": {
|
|
4704
|
-
|
|
5270
|
+
"args": {
|
|
5271
|
+
"id": {
|
|
5272
|
+
"description": "Contact list ID",
|
|
5273
|
+
"name": "id",
|
|
5274
|
+
"required": true
|
|
5275
|
+
}
|
|
5276
|
+
},
|
|
5277
|
+
"description": "Update a contact list",
|
|
4705
5278
|
"examples": [
|
|
4706
|
-
"<%= config.bin %>
|
|
4707
|
-
"<%= config.bin %>
|
|
5279
|
+
"<%= config.bin %> contacts lists update lst_xxx --name \"VIP Customers\"",
|
|
5280
|
+
"<%= config.bin %> contacts lists update lst_xxx --description \"Updated desc\""
|
|
4708
5281
|
],
|
|
4709
5282
|
"flags": {
|
|
4710
5283
|
"json": {
|
|
@@ -4719,11 +5292,27 @@
|
|
|
4719
5292
|
"name": "quiet",
|
|
4720
5293
|
"allowNo": false,
|
|
4721
5294
|
"type": "boolean"
|
|
5295
|
+
},
|
|
5296
|
+
"name": {
|
|
5297
|
+
"char": "n",
|
|
5298
|
+
"description": "List name",
|
|
5299
|
+
"name": "name",
|
|
5300
|
+
"hasDynamicHelp": false,
|
|
5301
|
+
"multiple": false,
|
|
5302
|
+
"type": "option"
|
|
5303
|
+
},
|
|
5304
|
+
"description": {
|
|
5305
|
+
"char": "d",
|
|
5306
|
+
"description": "List description",
|
|
5307
|
+
"name": "description",
|
|
5308
|
+
"hasDynamicHelp": false,
|
|
5309
|
+
"multiple": false,
|
|
5310
|
+
"type": "option"
|
|
4722
5311
|
}
|
|
4723
5312
|
},
|
|
4724
5313
|
"hasDynamicHelp": false,
|
|
4725
5314
|
"hiddenAliases": [],
|
|
4726
|
-
"id": "
|
|
5315
|
+
"id": "contacts:lists:update",
|
|
4727
5316
|
"pluginAlias": "@sendly/cli",
|
|
4728
5317
|
"pluginName": "@sendly/cli",
|
|
4729
5318
|
"pluginType": "core",
|
|
@@ -4732,9 +5321,9 @@
|
|
|
4732
5321
|
"relativePath": [
|
|
4733
5322
|
"dist",
|
|
4734
5323
|
"commands",
|
|
4735
|
-
"
|
|
4736
|
-
"
|
|
4737
|
-
"
|
|
5324
|
+
"contacts",
|
|
5325
|
+
"lists",
|
|
5326
|
+
"update.js"
|
|
4738
5327
|
]
|
|
4739
5328
|
},
|
|
4740
5329
|
"enterprise:keys:create": {
|
|
@@ -5012,6 +5601,192 @@
|
|
|
5012
5601
|
"set.js"
|
|
5013
5602
|
]
|
|
5014
5603
|
},
|
|
5604
|
+
"enterprise:analytics:credits": {
|
|
5605
|
+
"aliases": [],
|
|
5606
|
+
"args": {},
|
|
5607
|
+
"description": "Get credit usage analytics over time",
|
|
5608
|
+
"examples": [
|
|
5609
|
+
"<%= config.bin %> enterprise analytics credits",
|
|
5610
|
+
"<%= config.bin %> enterprise analytics credits --period 30d",
|
|
5611
|
+
"<%= config.bin %> enterprise analytics credits --json"
|
|
5612
|
+
],
|
|
5613
|
+
"flags": {
|
|
5614
|
+
"json": {
|
|
5615
|
+
"description": "Output in JSON format",
|
|
5616
|
+
"name": "json",
|
|
5617
|
+
"allowNo": false,
|
|
5618
|
+
"type": "boolean"
|
|
5619
|
+
},
|
|
5620
|
+
"quiet": {
|
|
5621
|
+
"char": "q",
|
|
5622
|
+
"description": "Minimal output",
|
|
5623
|
+
"name": "quiet",
|
|
5624
|
+
"allowNo": false,
|
|
5625
|
+
"type": "boolean"
|
|
5626
|
+
},
|
|
5627
|
+
"period": {
|
|
5628
|
+
"char": "p",
|
|
5629
|
+
"description": "Time period (7d, 30d, 90d)",
|
|
5630
|
+
"name": "period",
|
|
5631
|
+
"default": "7d",
|
|
5632
|
+
"hasDynamicHelp": false,
|
|
5633
|
+
"multiple": false,
|
|
5634
|
+
"options": [
|
|
5635
|
+
"7d",
|
|
5636
|
+
"30d",
|
|
5637
|
+
"90d"
|
|
5638
|
+
],
|
|
5639
|
+
"type": "option"
|
|
5640
|
+
}
|
|
5641
|
+
},
|
|
5642
|
+
"hasDynamicHelp": false,
|
|
5643
|
+
"hiddenAliases": [],
|
|
5644
|
+
"id": "enterprise:analytics:credits",
|
|
5645
|
+
"pluginAlias": "@sendly/cli",
|
|
5646
|
+
"pluginName": "@sendly/cli",
|
|
5647
|
+
"pluginType": "core",
|
|
5648
|
+
"strict": true,
|
|
5649
|
+
"isESM": true,
|
|
5650
|
+
"relativePath": [
|
|
5651
|
+
"dist",
|
|
5652
|
+
"commands",
|
|
5653
|
+
"enterprise",
|
|
5654
|
+
"analytics",
|
|
5655
|
+
"credits.js"
|
|
5656
|
+
]
|
|
5657
|
+
},
|
|
5658
|
+
"enterprise:analytics:delivery": {
|
|
5659
|
+
"aliases": [],
|
|
5660
|
+
"args": {},
|
|
5661
|
+
"description": "Get delivery rate analytics by workspace",
|
|
5662
|
+
"examples": [
|
|
5663
|
+
"<%= config.bin %> enterprise analytics delivery",
|
|
5664
|
+
"<%= config.bin %> enterprise analytics delivery --json"
|
|
5665
|
+
],
|
|
5666
|
+
"flags": {
|
|
5667
|
+
"json": {
|
|
5668
|
+
"description": "Output in JSON format",
|
|
5669
|
+
"name": "json",
|
|
5670
|
+
"allowNo": false,
|
|
5671
|
+
"type": "boolean"
|
|
5672
|
+
},
|
|
5673
|
+
"quiet": {
|
|
5674
|
+
"char": "q",
|
|
5675
|
+
"description": "Minimal output",
|
|
5676
|
+
"name": "quiet",
|
|
5677
|
+
"allowNo": false,
|
|
5678
|
+
"type": "boolean"
|
|
5679
|
+
}
|
|
5680
|
+
},
|
|
5681
|
+
"hasDynamicHelp": false,
|
|
5682
|
+
"hiddenAliases": [],
|
|
5683
|
+
"id": "enterprise:analytics:delivery",
|
|
5684
|
+
"pluginAlias": "@sendly/cli",
|
|
5685
|
+
"pluginName": "@sendly/cli",
|
|
5686
|
+
"pluginType": "core",
|
|
5687
|
+
"strict": true,
|
|
5688
|
+
"isESM": true,
|
|
5689
|
+
"relativePath": [
|
|
5690
|
+
"dist",
|
|
5691
|
+
"commands",
|
|
5692
|
+
"enterprise",
|
|
5693
|
+
"analytics",
|
|
5694
|
+
"delivery.js"
|
|
5695
|
+
]
|
|
5696
|
+
},
|
|
5697
|
+
"enterprise:analytics:messages": {
|
|
5698
|
+
"aliases": [],
|
|
5699
|
+
"args": {},
|
|
5700
|
+
"description": "Get message analytics across all workspaces",
|
|
5701
|
+
"examples": [
|
|
5702
|
+
"<%= config.bin %> enterprise analytics messages",
|
|
5703
|
+
"<%= config.bin %> enterprise analytics messages --period 30d",
|
|
5704
|
+
"<%= config.bin %> enterprise analytics messages --period 90d --json"
|
|
5705
|
+
],
|
|
5706
|
+
"flags": {
|
|
5707
|
+
"json": {
|
|
5708
|
+
"description": "Output in JSON format",
|
|
5709
|
+
"name": "json",
|
|
5710
|
+
"allowNo": false,
|
|
5711
|
+
"type": "boolean"
|
|
5712
|
+
},
|
|
5713
|
+
"quiet": {
|
|
5714
|
+
"char": "q",
|
|
5715
|
+
"description": "Minimal output",
|
|
5716
|
+
"name": "quiet",
|
|
5717
|
+
"allowNo": false,
|
|
5718
|
+
"type": "boolean"
|
|
5719
|
+
},
|
|
5720
|
+
"period": {
|
|
5721
|
+
"char": "p",
|
|
5722
|
+
"description": "Time period (7d, 30d, 90d)",
|
|
5723
|
+
"name": "period",
|
|
5724
|
+
"default": "7d",
|
|
5725
|
+
"hasDynamicHelp": false,
|
|
5726
|
+
"multiple": false,
|
|
5727
|
+
"options": [
|
|
5728
|
+
"7d",
|
|
5729
|
+
"30d",
|
|
5730
|
+
"90d"
|
|
5731
|
+
],
|
|
5732
|
+
"type": "option"
|
|
5733
|
+
}
|
|
5734
|
+
},
|
|
5735
|
+
"hasDynamicHelp": false,
|
|
5736
|
+
"hiddenAliases": [],
|
|
5737
|
+
"id": "enterprise:analytics:messages",
|
|
5738
|
+
"pluginAlias": "@sendly/cli",
|
|
5739
|
+
"pluginName": "@sendly/cli",
|
|
5740
|
+
"pluginType": "core",
|
|
5741
|
+
"strict": true,
|
|
5742
|
+
"isESM": true,
|
|
5743
|
+
"relativePath": [
|
|
5744
|
+
"dist",
|
|
5745
|
+
"commands",
|
|
5746
|
+
"enterprise",
|
|
5747
|
+
"analytics",
|
|
5748
|
+
"messages.js"
|
|
5749
|
+
]
|
|
5750
|
+
},
|
|
5751
|
+
"enterprise:analytics:overview": {
|
|
5752
|
+
"aliases": [],
|
|
5753
|
+
"args": {},
|
|
5754
|
+
"description": "Get enterprise-wide analytics overview",
|
|
5755
|
+
"examples": [
|
|
5756
|
+
"<%= config.bin %> enterprise analytics overview",
|
|
5757
|
+
"<%= config.bin %> enterprise analytics overview --json"
|
|
5758
|
+
],
|
|
5759
|
+
"flags": {
|
|
5760
|
+
"json": {
|
|
5761
|
+
"description": "Output in JSON format",
|
|
5762
|
+
"name": "json",
|
|
5763
|
+
"allowNo": false,
|
|
5764
|
+
"type": "boolean"
|
|
5765
|
+
},
|
|
5766
|
+
"quiet": {
|
|
5767
|
+
"char": "q",
|
|
5768
|
+
"description": "Minimal output",
|
|
5769
|
+
"name": "quiet",
|
|
5770
|
+
"allowNo": false,
|
|
5771
|
+
"type": "boolean"
|
|
5772
|
+
}
|
|
5773
|
+
},
|
|
5774
|
+
"hasDynamicHelp": false,
|
|
5775
|
+
"hiddenAliases": [],
|
|
5776
|
+
"id": "enterprise:analytics:overview",
|
|
5777
|
+
"pluginAlias": "@sendly/cli",
|
|
5778
|
+
"pluginName": "@sendly/cli",
|
|
5779
|
+
"pluginType": "core",
|
|
5780
|
+
"strict": true,
|
|
5781
|
+
"isESM": true,
|
|
5782
|
+
"relativePath": [
|
|
5783
|
+
"dist",
|
|
5784
|
+
"commands",
|
|
5785
|
+
"enterprise",
|
|
5786
|
+
"analytics",
|
|
5787
|
+
"overview.js"
|
|
5788
|
+
]
|
|
5789
|
+
},
|
|
5015
5790
|
"enterprise:workspaces:create": {
|
|
5016
5791
|
"aliases": [],
|
|
5017
5792
|
"args": {},
|
|
@@ -5479,5 +6254,5 @@
|
|
|
5479
6254
|
]
|
|
5480
6255
|
}
|
|
5481
6256
|
},
|
|
5482
|
-
"version": "3.
|
|
6257
|
+
"version": "3.23.0"
|
|
5483
6258
|
}
|