@sendly/cli 3.32.0 → 3.34.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/webhooks/backfill.d.ts +17 -0
- package/dist/commands/webhooks/backfill.js +73 -0
- package/dist/commands/webhooks/redeliver.d.ts +18 -0
- package/dist/commands/webhooks/redeliver.js +78 -0
- package/dist/commands/webhooks/reset-circuit.d.ts +13 -0
- package/dist/commands/webhooks/reset-circuit.js +44 -0
- package/oclif.manifest.json +595 -396
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -987,6 +987,153 @@
|
|
|
987
987
|
"update.js"
|
|
988
988
|
]
|
|
989
989
|
},
|
|
990
|
+
"config:get": {
|
|
991
|
+
"aliases": [],
|
|
992
|
+
"args": {
|
|
993
|
+
"key": {
|
|
994
|
+
"description": "Configuration key",
|
|
995
|
+
"name": "key",
|
|
996
|
+
"options": [
|
|
997
|
+
"environment",
|
|
998
|
+
"baseUrl",
|
|
999
|
+
"defaultFormat",
|
|
1000
|
+
"colorEnabled"
|
|
1001
|
+
],
|
|
1002
|
+
"required": true
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"description": "Get a configuration value",
|
|
1006
|
+
"examples": [
|
|
1007
|
+
"<%= config.bin %> config get environment",
|
|
1008
|
+
"<%= config.bin %> config get baseUrl"
|
|
1009
|
+
],
|
|
1010
|
+
"flags": {
|
|
1011
|
+
"json": {
|
|
1012
|
+
"description": "Output in JSON format",
|
|
1013
|
+
"name": "json",
|
|
1014
|
+
"allowNo": false,
|
|
1015
|
+
"type": "boolean"
|
|
1016
|
+
},
|
|
1017
|
+
"quiet": {
|
|
1018
|
+
"char": "q",
|
|
1019
|
+
"description": "Minimal output",
|
|
1020
|
+
"name": "quiet",
|
|
1021
|
+
"allowNo": false,
|
|
1022
|
+
"type": "boolean"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"hasDynamicHelp": false,
|
|
1026
|
+
"hiddenAliases": [],
|
|
1027
|
+
"id": "config:get",
|
|
1028
|
+
"pluginAlias": "@sendly/cli",
|
|
1029
|
+
"pluginName": "@sendly/cli",
|
|
1030
|
+
"pluginType": "core",
|
|
1031
|
+
"strict": true,
|
|
1032
|
+
"enableJsonFlag": false,
|
|
1033
|
+
"isESM": true,
|
|
1034
|
+
"relativePath": [
|
|
1035
|
+
"dist",
|
|
1036
|
+
"commands",
|
|
1037
|
+
"config",
|
|
1038
|
+
"get.js"
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
"config:list": {
|
|
1042
|
+
"aliases": [],
|
|
1043
|
+
"args": {},
|
|
1044
|
+
"description": "List all configuration values",
|
|
1045
|
+
"examples": [
|
|
1046
|
+
"<%= config.bin %> config list",
|
|
1047
|
+
"<%= config.bin %> config list --json"
|
|
1048
|
+
],
|
|
1049
|
+
"flags": {
|
|
1050
|
+
"json": {
|
|
1051
|
+
"description": "Output in JSON format",
|
|
1052
|
+
"name": "json",
|
|
1053
|
+
"allowNo": false,
|
|
1054
|
+
"type": "boolean"
|
|
1055
|
+
},
|
|
1056
|
+
"quiet": {
|
|
1057
|
+
"char": "q",
|
|
1058
|
+
"description": "Minimal output",
|
|
1059
|
+
"name": "quiet",
|
|
1060
|
+
"allowNo": false,
|
|
1061
|
+
"type": "boolean"
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1064
|
+
"hasDynamicHelp": false,
|
|
1065
|
+
"hiddenAliases": [],
|
|
1066
|
+
"id": "config:list",
|
|
1067
|
+
"pluginAlias": "@sendly/cli",
|
|
1068
|
+
"pluginName": "@sendly/cli",
|
|
1069
|
+
"pluginType": "core",
|
|
1070
|
+
"strict": true,
|
|
1071
|
+
"enableJsonFlag": false,
|
|
1072
|
+
"isESM": true,
|
|
1073
|
+
"relativePath": [
|
|
1074
|
+
"dist",
|
|
1075
|
+
"commands",
|
|
1076
|
+
"config",
|
|
1077
|
+
"list.js"
|
|
1078
|
+
]
|
|
1079
|
+
},
|
|
1080
|
+
"config:set": {
|
|
1081
|
+
"aliases": [],
|
|
1082
|
+
"args": {
|
|
1083
|
+
"key": {
|
|
1084
|
+
"description": "Configuration key",
|
|
1085
|
+
"name": "key",
|
|
1086
|
+
"options": [
|
|
1087
|
+
"environment",
|
|
1088
|
+
"baseUrl",
|
|
1089
|
+
"defaultFormat",
|
|
1090
|
+
"colorEnabled"
|
|
1091
|
+
],
|
|
1092
|
+
"required": true
|
|
1093
|
+
},
|
|
1094
|
+
"value": {
|
|
1095
|
+
"description": "Configuration value",
|
|
1096
|
+
"name": "value",
|
|
1097
|
+
"required": true
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
"description": "Set a configuration value",
|
|
1101
|
+
"examples": [
|
|
1102
|
+
"<%= config.bin %> config set environment live",
|
|
1103
|
+
"<%= config.bin %> config set defaultFormat json",
|
|
1104
|
+
"<%= config.bin %> config set baseUrl https://api.sendly.live"
|
|
1105
|
+
],
|
|
1106
|
+
"flags": {
|
|
1107
|
+
"json": {
|
|
1108
|
+
"description": "Output in JSON format",
|
|
1109
|
+
"name": "json",
|
|
1110
|
+
"allowNo": false,
|
|
1111
|
+
"type": "boolean"
|
|
1112
|
+
},
|
|
1113
|
+
"quiet": {
|
|
1114
|
+
"char": "q",
|
|
1115
|
+
"description": "Minimal output",
|
|
1116
|
+
"name": "quiet",
|
|
1117
|
+
"allowNo": false,
|
|
1118
|
+
"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
|
+
},
|
|
990
1137
|
"contacts:bulk-mark-valid": {
|
|
991
1138
|
"aliases": [],
|
|
992
1139
|
"args": {},
|
|
@@ -2003,25 +2150,13 @@
|
|
|
2003
2150
|
"update.js"
|
|
2004
2151
|
]
|
|
2005
2152
|
},
|
|
2006
|
-
"
|
|
2153
|
+
"credits:balance": {
|
|
2007
2154
|
"aliases": [],
|
|
2008
|
-
"args": {
|
|
2009
|
-
|
|
2010
|
-
"description": "Configuration key",
|
|
2011
|
-
"name": "key",
|
|
2012
|
-
"options": [
|
|
2013
|
-
"environment",
|
|
2014
|
-
"baseUrl",
|
|
2015
|
-
"defaultFormat",
|
|
2016
|
-
"colorEnabled"
|
|
2017
|
-
],
|
|
2018
|
-
"required": true
|
|
2019
|
-
}
|
|
2020
|
-
},
|
|
2021
|
-
"description": "Get a configuration value",
|
|
2155
|
+
"args": {},
|
|
2156
|
+
"description": "Check your credit balance",
|
|
2022
2157
|
"examples": [
|
|
2023
|
-
"<%= config.bin %>
|
|
2024
|
-
"<%= config.bin %>
|
|
2158
|
+
"<%= config.bin %> credits balance",
|
|
2159
|
+
"<%= config.bin %> credits balance --json"
|
|
2025
2160
|
],
|
|
2026
2161
|
"flags": {
|
|
2027
2162
|
"json": {
|
|
@@ -2040,27 +2175,27 @@
|
|
|
2040
2175
|
},
|
|
2041
2176
|
"hasDynamicHelp": false,
|
|
2042
2177
|
"hiddenAliases": [],
|
|
2043
|
-
"id": "
|
|
2178
|
+
"id": "credits:balance",
|
|
2044
2179
|
"pluginAlias": "@sendly/cli",
|
|
2045
2180
|
"pluginName": "@sendly/cli",
|
|
2046
2181
|
"pluginType": "core",
|
|
2047
2182
|
"strict": true,
|
|
2048
|
-
"enableJsonFlag": false,
|
|
2049
2183
|
"isESM": true,
|
|
2050
2184
|
"relativePath": [
|
|
2051
2185
|
"dist",
|
|
2052
2186
|
"commands",
|
|
2053
|
-
"
|
|
2054
|
-
"
|
|
2187
|
+
"credits",
|
|
2188
|
+
"balance.js"
|
|
2055
2189
|
]
|
|
2056
2190
|
},
|
|
2057
|
-
"
|
|
2191
|
+
"credits:history": {
|
|
2058
2192
|
"aliases": [],
|
|
2059
2193
|
"args": {},
|
|
2060
|
-
"description": "
|
|
2194
|
+
"description": "View credit transaction history",
|
|
2061
2195
|
"examples": [
|
|
2062
|
-
"<%= config.bin %>
|
|
2063
|
-
"<%= config.bin %>
|
|
2196
|
+
"<%= config.bin %> credits history",
|
|
2197
|
+
"<%= config.bin %> credits history --limit 10",
|
|
2198
|
+
"<%= config.bin %> credits history --json"
|
|
2064
2199
|
],
|
|
2065
2200
|
"flags": {
|
|
2066
2201
|
"json": {
|
|
@@ -2075,49 +2210,40 @@
|
|
|
2075
2210
|
"name": "quiet",
|
|
2076
2211
|
"allowNo": false,
|
|
2077
2212
|
"type": "boolean"
|
|
2213
|
+
},
|
|
2214
|
+
"limit": {
|
|
2215
|
+
"char": "l",
|
|
2216
|
+
"description": "Number of transactions to show",
|
|
2217
|
+
"name": "limit",
|
|
2218
|
+
"default": 20,
|
|
2219
|
+
"hasDynamicHelp": false,
|
|
2220
|
+
"multiple": false,
|
|
2221
|
+
"type": "option"
|
|
2078
2222
|
}
|
|
2079
2223
|
},
|
|
2080
2224
|
"hasDynamicHelp": false,
|
|
2081
2225
|
"hiddenAliases": [],
|
|
2082
|
-
"id": "
|
|
2226
|
+
"id": "credits:history",
|
|
2083
2227
|
"pluginAlias": "@sendly/cli",
|
|
2084
2228
|
"pluginName": "@sendly/cli",
|
|
2085
2229
|
"pluginType": "core",
|
|
2086
2230
|
"strict": true,
|
|
2087
|
-
"enableJsonFlag": false,
|
|
2088
2231
|
"isESM": true,
|
|
2089
2232
|
"relativePath": [
|
|
2090
2233
|
"dist",
|
|
2091
2234
|
"commands",
|
|
2092
|
-
"
|
|
2093
|
-
"
|
|
2235
|
+
"credits",
|
|
2236
|
+
"history.js"
|
|
2094
2237
|
]
|
|
2095
2238
|
},
|
|
2096
|
-
"
|
|
2239
|
+
"credits:transfer": {
|
|
2097
2240
|
"aliases": [],
|
|
2098
|
-
"args": {
|
|
2099
|
-
|
|
2100
|
-
"description": "Configuration key",
|
|
2101
|
-
"name": "key",
|
|
2102
|
-
"options": [
|
|
2103
|
-
"environment",
|
|
2104
|
-
"baseUrl",
|
|
2105
|
-
"defaultFormat",
|
|
2106
|
-
"colorEnabled"
|
|
2107
|
-
],
|
|
2108
|
-
"required": true
|
|
2109
|
-
},
|
|
2110
|
-
"value": {
|
|
2111
|
-
"description": "Configuration value",
|
|
2112
|
-
"name": "value",
|
|
2113
|
-
"required": true
|
|
2114
|
-
}
|
|
2115
|
-
},
|
|
2116
|
-
"description": "Set a configuration value",
|
|
2241
|
+
"args": {},
|
|
2242
|
+
"description": "Transfer credits between workspaces",
|
|
2117
2243
|
"examples": [
|
|
2118
|
-
"<%= config.bin %>
|
|
2119
|
-
"<%= config.bin %>
|
|
2120
|
-
"<%= config.bin %>
|
|
2244
|
+
"<%= config.bin %> credits transfer --to org_abc123 --amount 500",
|
|
2245
|
+
"<%= config.bin %> credits transfer --amount 1000",
|
|
2246
|
+
"<%= config.bin %> credits transfer --to org_abc123 --amount 500 --yes"
|
|
2121
2247
|
],
|
|
2122
2248
|
"flags": {
|
|
2123
2249
|
"json": {
|
|
@@ -2132,159 +2258,33 @@
|
|
|
2132
2258
|
"name": "quiet",
|
|
2133
2259
|
"allowNo": false,
|
|
2134
2260
|
"type": "boolean"
|
|
2261
|
+
},
|
|
2262
|
+
"to": {
|
|
2263
|
+
"description": "Target workspace ID to transfer credits to",
|
|
2264
|
+
"name": "to",
|
|
2265
|
+
"hasDynamicHelp": false,
|
|
2266
|
+
"multiple": false,
|
|
2267
|
+
"type": "option"
|
|
2268
|
+
},
|
|
2269
|
+
"amount": {
|
|
2270
|
+
"char": "a",
|
|
2271
|
+
"description": "Number of credits to transfer",
|
|
2272
|
+
"name": "amount",
|
|
2273
|
+
"hasDynamicHelp": false,
|
|
2274
|
+
"multiple": false,
|
|
2275
|
+
"type": "option"
|
|
2276
|
+
},
|
|
2277
|
+
"yes": {
|
|
2278
|
+
"char": "y",
|
|
2279
|
+
"description": "Skip confirmation prompt",
|
|
2280
|
+
"name": "yes",
|
|
2281
|
+
"allowNo": false,
|
|
2282
|
+
"type": "boolean"
|
|
2135
2283
|
}
|
|
2136
2284
|
},
|
|
2137
2285
|
"hasDynamicHelp": false,
|
|
2138
2286
|
"hiddenAliases": [],
|
|
2139
|
-
"id": "
|
|
2140
|
-
"pluginAlias": "@sendly/cli",
|
|
2141
|
-
"pluginName": "@sendly/cli",
|
|
2142
|
-
"pluginType": "core",
|
|
2143
|
-
"strict": true,
|
|
2144
|
-
"enableJsonFlag": false,
|
|
2145
|
-
"isESM": true,
|
|
2146
|
-
"relativePath": [
|
|
2147
|
-
"dist",
|
|
2148
|
-
"commands",
|
|
2149
|
-
"config",
|
|
2150
|
-
"set.js"
|
|
2151
|
-
]
|
|
2152
|
-
},
|
|
2153
|
-
"credits:balance": {
|
|
2154
|
-
"aliases": [],
|
|
2155
|
-
"args": {},
|
|
2156
|
-
"description": "Check your credit balance",
|
|
2157
|
-
"examples": [
|
|
2158
|
-
"<%= config.bin %> credits balance",
|
|
2159
|
-
"<%= config.bin %> credits balance --json"
|
|
2160
|
-
],
|
|
2161
|
-
"flags": {
|
|
2162
|
-
"json": {
|
|
2163
|
-
"description": "Output in JSON format",
|
|
2164
|
-
"name": "json",
|
|
2165
|
-
"allowNo": false,
|
|
2166
|
-
"type": "boolean"
|
|
2167
|
-
},
|
|
2168
|
-
"quiet": {
|
|
2169
|
-
"char": "q",
|
|
2170
|
-
"description": "Minimal output",
|
|
2171
|
-
"name": "quiet",
|
|
2172
|
-
"allowNo": false,
|
|
2173
|
-
"type": "boolean"
|
|
2174
|
-
}
|
|
2175
|
-
},
|
|
2176
|
-
"hasDynamicHelp": false,
|
|
2177
|
-
"hiddenAliases": [],
|
|
2178
|
-
"id": "credits:balance",
|
|
2179
|
-
"pluginAlias": "@sendly/cli",
|
|
2180
|
-
"pluginName": "@sendly/cli",
|
|
2181
|
-
"pluginType": "core",
|
|
2182
|
-
"strict": true,
|
|
2183
|
-
"isESM": true,
|
|
2184
|
-
"relativePath": [
|
|
2185
|
-
"dist",
|
|
2186
|
-
"commands",
|
|
2187
|
-
"credits",
|
|
2188
|
-
"balance.js"
|
|
2189
|
-
]
|
|
2190
|
-
},
|
|
2191
|
-
"credits:history": {
|
|
2192
|
-
"aliases": [],
|
|
2193
|
-
"args": {},
|
|
2194
|
-
"description": "View credit transaction history",
|
|
2195
|
-
"examples": [
|
|
2196
|
-
"<%= config.bin %> credits history",
|
|
2197
|
-
"<%= config.bin %> credits history --limit 10",
|
|
2198
|
-
"<%= config.bin %> credits history --json"
|
|
2199
|
-
],
|
|
2200
|
-
"flags": {
|
|
2201
|
-
"json": {
|
|
2202
|
-
"description": "Output in JSON format",
|
|
2203
|
-
"name": "json",
|
|
2204
|
-
"allowNo": false,
|
|
2205
|
-
"type": "boolean"
|
|
2206
|
-
},
|
|
2207
|
-
"quiet": {
|
|
2208
|
-
"char": "q",
|
|
2209
|
-
"description": "Minimal output",
|
|
2210
|
-
"name": "quiet",
|
|
2211
|
-
"allowNo": false,
|
|
2212
|
-
"type": "boolean"
|
|
2213
|
-
},
|
|
2214
|
-
"limit": {
|
|
2215
|
-
"char": "l",
|
|
2216
|
-
"description": "Number of transactions to show",
|
|
2217
|
-
"name": "limit",
|
|
2218
|
-
"default": 20,
|
|
2219
|
-
"hasDynamicHelp": false,
|
|
2220
|
-
"multiple": false,
|
|
2221
|
-
"type": "option"
|
|
2222
|
-
}
|
|
2223
|
-
},
|
|
2224
|
-
"hasDynamicHelp": false,
|
|
2225
|
-
"hiddenAliases": [],
|
|
2226
|
-
"id": "credits:history",
|
|
2227
|
-
"pluginAlias": "@sendly/cli",
|
|
2228
|
-
"pluginName": "@sendly/cli",
|
|
2229
|
-
"pluginType": "core",
|
|
2230
|
-
"strict": true,
|
|
2231
|
-
"isESM": true,
|
|
2232
|
-
"relativePath": [
|
|
2233
|
-
"dist",
|
|
2234
|
-
"commands",
|
|
2235
|
-
"credits",
|
|
2236
|
-
"history.js"
|
|
2237
|
-
]
|
|
2238
|
-
},
|
|
2239
|
-
"credits:transfer": {
|
|
2240
|
-
"aliases": [],
|
|
2241
|
-
"args": {},
|
|
2242
|
-
"description": "Transfer credits between workspaces",
|
|
2243
|
-
"examples": [
|
|
2244
|
-
"<%= config.bin %> credits transfer --to org_abc123 --amount 500",
|
|
2245
|
-
"<%= config.bin %> credits transfer --amount 1000",
|
|
2246
|
-
"<%= config.bin %> credits transfer --to org_abc123 --amount 500 --yes"
|
|
2247
|
-
],
|
|
2248
|
-
"flags": {
|
|
2249
|
-
"json": {
|
|
2250
|
-
"description": "Output in JSON format",
|
|
2251
|
-
"name": "json",
|
|
2252
|
-
"allowNo": false,
|
|
2253
|
-
"type": "boolean"
|
|
2254
|
-
},
|
|
2255
|
-
"quiet": {
|
|
2256
|
-
"char": "q",
|
|
2257
|
-
"description": "Minimal output",
|
|
2258
|
-
"name": "quiet",
|
|
2259
|
-
"allowNo": false,
|
|
2260
|
-
"type": "boolean"
|
|
2261
|
-
},
|
|
2262
|
-
"to": {
|
|
2263
|
-
"description": "Target workspace ID to transfer credits to",
|
|
2264
|
-
"name": "to",
|
|
2265
|
-
"hasDynamicHelp": false,
|
|
2266
|
-
"multiple": false,
|
|
2267
|
-
"type": "option"
|
|
2268
|
-
},
|
|
2269
|
-
"amount": {
|
|
2270
|
-
"char": "a",
|
|
2271
|
-
"description": "Number of credits to transfer",
|
|
2272
|
-
"name": "amount",
|
|
2273
|
-
"hasDynamicHelp": false,
|
|
2274
|
-
"multiple": false,
|
|
2275
|
-
"type": "option"
|
|
2276
|
-
},
|
|
2277
|
-
"yes": {
|
|
2278
|
-
"char": "y",
|
|
2279
|
-
"description": "Skip confirmation prompt",
|
|
2280
|
-
"name": "yes",
|
|
2281
|
-
"allowNo": false,
|
|
2282
|
-
"type": "boolean"
|
|
2283
|
-
}
|
|
2284
|
-
},
|
|
2285
|
-
"hasDynamicHelp": false,
|
|
2286
|
-
"hiddenAliases": [],
|
|
2287
|
-
"id": "credits:transfer",
|
|
2287
|
+
"id": "credits:transfer",
|
|
2288
2288
|
"pluginAlias": "@sendly/cli",
|
|
2289
2289
|
"pluginName": "@sendly/cli",
|
|
2290
2290
|
"pluginType": "core",
|
|
@@ -5536,6 +5536,80 @@
|
|
|
5536
5536
|
"status.js"
|
|
5537
5537
|
]
|
|
5538
5538
|
},
|
|
5539
|
+
"webhooks:backfill": {
|
|
5540
|
+
"aliases": [],
|
|
5541
|
+
"args": {
|
|
5542
|
+
"id": {
|
|
5543
|
+
"description": "Webhook ID",
|
|
5544
|
+
"name": "id",
|
|
5545
|
+
"required": true
|
|
5546
|
+
}
|
|
5547
|
+
},
|
|
5548
|
+
"description": "Synthesize missed webhook events from the message log. Use when an outage left events with no audit row.",
|
|
5549
|
+
"examples": [
|
|
5550
|
+
"<%= config.bin %> webhooks backfill whk_abc123",
|
|
5551
|
+
"<%= config.bin %> webhooks backfill whk_abc123 --since 2026-05-01T00:00:00Z --limit 5000",
|
|
5552
|
+
"<%= config.bin %> webhooks backfill whk_abc123 --event-types message.delivered,message.failed"
|
|
5553
|
+
],
|
|
5554
|
+
"flags": {
|
|
5555
|
+
"json": {
|
|
5556
|
+
"description": "Output in JSON format",
|
|
5557
|
+
"name": "json",
|
|
5558
|
+
"allowNo": false,
|
|
5559
|
+
"type": "boolean"
|
|
5560
|
+
},
|
|
5561
|
+
"quiet": {
|
|
5562
|
+
"char": "q",
|
|
5563
|
+
"description": "Minimal output",
|
|
5564
|
+
"name": "quiet",
|
|
5565
|
+
"allowNo": false,
|
|
5566
|
+
"type": "boolean"
|
|
5567
|
+
},
|
|
5568
|
+
"since": {
|
|
5569
|
+
"description": "Earliest message time (ISO-8601). Default: now − 24h.",
|
|
5570
|
+
"name": "since",
|
|
5571
|
+
"hasDynamicHelp": false,
|
|
5572
|
+
"multiple": false,
|
|
5573
|
+
"type": "option"
|
|
5574
|
+
},
|
|
5575
|
+
"until": {
|
|
5576
|
+
"description": "Latest message time (ISO-8601). Default: now.",
|
|
5577
|
+
"name": "until",
|
|
5578
|
+
"hasDynamicHelp": false,
|
|
5579
|
+
"multiple": false,
|
|
5580
|
+
"type": "option"
|
|
5581
|
+
},
|
|
5582
|
+
"event-types": {
|
|
5583
|
+
"description": "Comma-separated event types to backfill (message.sent, message.delivered, message.failed)",
|
|
5584
|
+
"name": "event-types",
|
|
5585
|
+
"hasDynamicHelp": false,
|
|
5586
|
+
"multiple": false,
|
|
5587
|
+
"type": "option"
|
|
5588
|
+
},
|
|
5589
|
+
"limit": {
|
|
5590
|
+
"description": "Maximum events to synthesize (max 10000)",
|
|
5591
|
+
"name": "limit",
|
|
5592
|
+
"default": 1000,
|
|
5593
|
+
"hasDynamicHelp": false,
|
|
5594
|
+
"multiple": false,
|
|
5595
|
+
"type": "option"
|
|
5596
|
+
}
|
|
5597
|
+
},
|
|
5598
|
+
"hasDynamicHelp": false,
|
|
5599
|
+
"hiddenAliases": [],
|
|
5600
|
+
"id": "webhooks:backfill",
|
|
5601
|
+
"pluginAlias": "@sendly/cli",
|
|
5602
|
+
"pluginName": "@sendly/cli",
|
|
5603
|
+
"pluginType": "core",
|
|
5604
|
+
"strict": true,
|
|
5605
|
+
"isESM": true,
|
|
5606
|
+
"relativePath": [
|
|
5607
|
+
"dist",
|
|
5608
|
+
"commands",
|
|
5609
|
+
"webhooks",
|
|
5610
|
+
"backfill.js"
|
|
5611
|
+
]
|
|
5612
|
+
},
|
|
5539
5613
|
"webhooks:create": {
|
|
5540
5614
|
"aliases": [],
|
|
5541
5615
|
"args": {},
|
|
@@ -5867,7 +5941,7 @@
|
|
|
5867
5941
|
"listen.js"
|
|
5868
5942
|
]
|
|
5869
5943
|
},
|
|
5870
|
-
"webhooks:
|
|
5944
|
+
"webhooks:redeliver": {
|
|
5871
5945
|
"aliases": [],
|
|
5872
5946
|
"args": {
|
|
5873
5947
|
"id": {
|
|
@@ -5876,11 +5950,11 @@
|
|
|
5876
5950
|
"required": true
|
|
5877
5951
|
}
|
|
5878
5952
|
},
|
|
5879
|
-
"description": "
|
|
5953
|
+
"description": "Replay failed or cancelled webhook deliveries from the audit log. Reset the circuit first if it's open.",
|
|
5880
5954
|
"examples": [
|
|
5881
|
-
"<%= config.bin %> webhooks
|
|
5882
|
-
"<%= config.bin %> webhooks
|
|
5883
|
-
"<%= config.bin %> webhooks
|
|
5955
|
+
"<%= config.bin %> webhooks redeliver whk_abc123",
|
|
5956
|
+
"<%= config.bin %> webhooks redeliver whk_abc123 --since 2026-05-01T00:00:00Z --limit 5000",
|
|
5957
|
+
"<%= config.bin %> webhooks redeliver whk_abc123 --event-types message.delivered,message.failed"
|
|
5884
5958
|
],
|
|
5885
5959
|
"flags": {
|
|
5886
5960
|
"json": {
|
|
@@ -5896,17 +5970,46 @@
|
|
|
5896
5970
|
"allowNo": false,
|
|
5897
5971
|
"type": "boolean"
|
|
5898
5972
|
},
|
|
5899
|
-
"
|
|
5900
|
-
"
|
|
5901
|
-
"
|
|
5902
|
-
"
|
|
5903
|
-
"
|
|
5904
|
-
"type": "
|
|
5973
|
+
"since": {
|
|
5974
|
+
"description": "Earliest delivery time (ISO-8601). Default: now − 24h.",
|
|
5975
|
+
"name": "since",
|
|
5976
|
+
"hasDynamicHelp": false,
|
|
5977
|
+
"multiple": false,
|
|
5978
|
+
"type": "option"
|
|
5979
|
+
},
|
|
5980
|
+
"until": {
|
|
5981
|
+
"description": "Latest delivery time (ISO-8601). Default: now.",
|
|
5982
|
+
"name": "until",
|
|
5983
|
+
"hasDynamicHelp": false,
|
|
5984
|
+
"multiple": false,
|
|
5985
|
+
"type": "option"
|
|
5986
|
+
},
|
|
5987
|
+
"event-types": {
|
|
5988
|
+
"description": "Comma-separated event types to filter on",
|
|
5989
|
+
"name": "event-types",
|
|
5990
|
+
"hasDynamicHelp": false,
|
|
5991
|
+
"multiple": false,
|
|
5992
|
+
"type": "option"
|
|
5993
|
+
},
|
|
5994
|
+
"statuses": {
|
|
5995
|
+
"description": "Comma-separated delivery statuses to replay. Default: failed,cancelled",
|
|
5996
|
+
"name": "statuses",
|
|
5997
|
+
"hasDynamicHelp": false,
|
|
5998
|
+
"multiple": false,
|
|
5999
|
+
"type": "option"
|
|
6000
|
+
},
|
|
6001
|
+
"limit": {
|
|
6002
|
+
"description": "Maximum deliveries to requeue (max 10000)",
|
|
6003
|
+
"name": "limit",
|
|
6004
|
+
"default": 1000,
|
|
6005
|
+
"hasDynamicHelp": false,
|
|
6006
|
+
"multiple": false,
|
|
6007
|
+
"type": "option"
|
|
5905
6008
|
}
|
|
5906
6009
|
},
|
|
5907
6010
|
"hasDynamicHelp": false,
|
|
5908
6011
|
"hiddenAliases": [],
|
|
5909
|
-
"id": "webhooks:
|
|
6012
|
+
"id": "webhooks:redeliver",
|
|
5910
6013
|
"pluginAlias": "@sendly/cli",
|
|
5911
6014
|
"pluginName": "@sendly/cli",
|
|
5912
6015
|
"pluginType": "core",
|
|
@@ -5916,22 +6019,22 @@
|
|
|
5916
6019
|
"dist",
|
|
5917
6020
|
"commands",
|
|
5918
6021
|
"webhooks",
|
|
5919
|
-
"
|
|
6022
|
+
"redeliver.js"
|
|
5920
6023
|
]
|
|
5921
6024
|
},
|
|
5922
|
-
"webhooks:
|
|
6025
|
+
"webhooks:reset-circuit": {
|
|
5923
6026
|
"aliases": [],
|
|
5924
6027
|
"args": {
|
|
5925
6028
|
"id": {
|
|
5926
|
-
"description": "Webhook ID
|
|
6029
|
+
"description": "Webhook ID",
|
|
5927
6030
|
"name": "id",
|
|
5928
6031
|
"required": true
|
|
5929
6032
|
}
|
|
5930
6033
|
},
|
|
5931
|
-
"description": "
|
|
6034
|
+
"description": "Reset the circuit breaker for a webhook",
|
|
5932
6035
|
"examples": [
|
|
5933
|
-
"<%= config.bin %> webhooks
|
|
5934
|
-
"<%= config.bin %> webhooks
|
|
6036
|
+
"<%= config.bin %> webhooks reset-circuit whk_abc123",
|
|
6037
|
+
"<%= config.bin %> webhooks reset-circuit whk_abc123 --json"
|
|
5935
6038
|
],
|
|
5936
6039
|
"flags": {
|
|
5937
6040
|
"json": {
|
|
@@ -5950,7 +6053,7 @@
|
|
|
5950
6053
|
},
|
|
5951
6054
|
"hasDynamicHelp": false,
|
|
5952
6055
|
"hiddenAliases": [],
|
|
5953
|
-
"id": "webhooks:
|
|
6056
|
+
"id": "webhooks:reset-circuit",
|
|
5954
6057
|
"pluginAlias": "@sendly/cli",
|
|
5955
6058
|
"pluginName": "@sendly/cli",
|
|
5956
6059
|
"pluginType": "core",
|
|
@@ -5960,22 +6063,118 @@
|
|
|
5960
6063
|
"dist",
|
|
5961
6064
|
"commands",
|
|
5962
6065
|
"webhooks",
|
|
5963
|
-
"
|
|
6066
|
+
"reset-circuit.js"
|
|
5964
6067
|
]
|
|
5965
6068
|
},
|
|
5966
|
-
"webhooks:
|
|
6069
|
+
"webhooks:rotate-secret": {
|
|
5967
6070
|
"aliases": [],
|
|
5968
6071
|
"args": {
|
|
5969
6072
|
"id": {
|
|
5970
|
-
"description": "Webhook ID
|
|
6073
|
+
"description": "Webhook ID",
|
|
5971
6074
|
"name": "id",
|
|
5972
6075
|
"required": true
|
|
5973
6076
|
}
|
|
5974
6077
|
},
|
|
5975
|
-
"description": "
|
|
6078
|
+
"description": "Rotate webhook secret",
|
|
5976
6079
|
"examples": [
|
|
5977
|
-
"<%= config.bin %> webhooks
|
|
5978
|
-
"<%= config.bin %> webhooks
|
|
6080
|
+
"<%= config.bin %> webhooks rotate-secret whk_abc123",
|
|
6081
|
+
"<%= config.bin %> webhooks rotate-secret whk_abc123 --yes",
|
|
6082
|
+
"<%= config.bin %> webhooks rotate-secret whk_abc123 --json"
|
|
6083
|
+
],
|
|
6084
|
+
"flags": {
|
|
6085
|
+
"json": {
|
|
6086
|
+
"description": "Output in JSON format",
|
|
6087
|
+
"name": "json",
|
|
6088
|
+
"allowNo": false,
|
|
6089
|
+
"type": "boolean"
|
|
6090
|
+
},
|
|
6091
|
+
"quiet": {
|
|
6092
|
+
"char": "q",
|
|
6093
|
+
"description": "Minimal output",
|
|
6094
|
+
"name": "quiet",
|
|
6095
|
+
"allowNo": false,
|
|
6096
|
+
"type": "boolean"
|
|
6097
|
+
},
|
|
6098
|
+
"yes": {
|
|
6099
|
+
"char": "y",
|
|
6100
|
+
"description": "Skip confirmation prompt",
|
|
6101
|
+
"name": "yes",
|
|
6102
|
+
"allowNo": false,
|
|
6103
|
+
"type": "boolean"
|
|
6104
|
+
}
|
|
6105
|
+
},
|
|
6106
|
+
"hasDynamicHelp": false,
|
|
6107
|
+
"hiddenAliases": [],
|
|
6108
|
+
"id": "webhooks:rotate-secret",
|
|
6109
|
+
"pluginAlias": "@sendly/cli",
|
|
6110
|
+
"pluginName": "@sendly/cli",
|
|
6111
|
+
"pluginType": "core",
|
|
6112
|
+
"strict": true,
|
|
6113
|
+
"isESM": true,
|
|
6114
|
+
"relativePath": [
|
|
6115
|
+
"dist",
|
|
6116
|
+
"commands",
|
|
6117
|
+
"webhooks",
|
|
6118
|
+
"rotate-secret.js"
|
|
6119
|
+
]
|
|
6120
|
+
},
|
|
6121
|
+
"webhooks:test": {
|
|
6122
|
+
"aliases": [],
|
|
6123
|
+
"args": {
|
|
6124
|
+
"id": {
|
|
6125
|
+
"description": "Webhook ID to test",
|
|
6126
|
+
"name": "id",
|
|
6127
|
+
"required": true
|
|
6128
|
+
}
|
|
6129
|
+
},
|
|
6130
|
+
"description": "Send a test event to a webhook",
|
|
6131
|
+
"examples": [
|
|
6132
|
+
"<%= config.bin %> webhooks test whk_abc123",
|
|
6133
|
+
"<%= config.bin %> webhooks test whk_abc123 --json"
|
|
6134
|
+
],
|
|
6135
|
+
"flags": {
|
|
6136
|
+
"json": {
|
|
6137
|
+
"description": "Output in JSON format",
|
|
6138
|
+
"name": "json",
|
|
6139
|
+
"allowNo": false,
|
|
6140
|
+
"type": "boolean"
|
|
6141
|
+
},
|
|
6142
|
+
"quiet": {
|
|
6143
|
+
"char": "q",
|
|
6144
|
+
"description": "Minimal output",
|
|
6145
|
+
"name": "quiet",
|
|
6146
|
+
"allowNo": false,
|
|
6147
|
+
"type": "boolean"
|
|
6148
|
+
}
|
|
6149
|
+
},
|
|
6150
|
+
"hasDynamicHelp": false,
|
|
6151
|
+
"hiddenAliases": [],
|
|
6152
|
+
"id": "webhooks:test",
|
|
6153
|
+
"pluginAlias": "@sendly/cli",
|
|
6154
|
+
"pluginName": "@sendly/cli",
|
|
6155
|
+
"pluginType": "core",
|
|
6156
|
+
"strict": true,
|
|
6157
|
+
"isESM": true,
|
|
6158
|
+
"relativePath": [
|
|
6159
|
+
"dist",
|
|
6160
|
+
"commands",
|
|
6161
|
+
"webhooks",
|
|
6162
|
+
"test.js"
|
|
6163
|
+
]
|
|
6164
|
+
},
|
|
6165
|
+
"webhooks:update": {
|
|
6166
|
+
"aliases": [],
|
|
6167
|
+
"args": {
|
|
6168
|
+
"id": {
|
|
6169
|
+
"description": "Webhook ID to update",
|
|
6170
|
+
"name": "id",
|
|
6171
|
+
"required": true
|
|
6172
|
+
}
|
|
6173
|
+
},
|
|
6174
|
+
"description": "Update a webhook",
|
|
6175
|
+
"examples": [
|
|
6176
|
+
"<%= config.bin %> webhooks update whk_abc123 --url https://newdomain.com/webhook",
|
|
6177
|
+
"<%= config.bin %> webhooks update whk_abc123 --events message.delivered,message.failed",
|
|
5979
6178
|
"<%= config.bin %> webhooks update whk_abc123 --description \"Updated production webhook\"",
|
|
5980
6179
|
"<%= config.bin %> webhooks update whk_abc123 --active false",
|
|
5981
6180
|
"<%= config.bin %> webhooks update whk_abc123 --url https://newdomain.com/webhook --events message.sent --json"
|
|
@@ -6596,6 +6795,175 @@
|
|
|
6596
6795
|
"overview.js"
|
|
6597
6796
|
]
|
|
6598
6797
|
},
|
|
6798
|
+
"enterprise:keys:create": {
|
|
6799
|
+
"aliases": [],
|
|
6800
|
+
"args": {
|
|
6801
|
+
"workspaceId": {
|
|
6802
|
+
"description": "Workspace ID",
|
|
6803
|
+
"name": "workspaceId",
|
|
6804
|
+
"required": true
|
|
6805
|
+
}
|
|
6806
|
+
},
|
|
6807
|
+
"description": "Create an API key for an enterprise workspace",
|
|
6808
|
+
"examples": [
|
|
6809
|
+
"<%= config.bin %> enterprise keys create org_abc123 --name \"Production\"",
|
|
6810
|
+
"<%= config.bin %> enterprise keys create org_abc123 --name \"CI\" --type test"
|
|
6811
|
+
],
|
|
6812
|
+
"flags": {
|
|
6813
|
+
"json": {
|
|
6814
|
+
"description": "Output in JSON format",
|
|
6815
|
+
"name": "json",
|
|
6816
|
+
"allowNo": false,
|
|
6817
|
+
"type": "boolean"
|
|
6818
|
+
},
|
|
6819
|
+
"quiet": {
|
|
6820
|
+
"char": "q",
|
|
6821
|
+
"description": "Minimal output",
|
|
6822
|
+
"name": "quiet",
|
|
6823
|
+
"allowNo": false,
|
|
6824
|
+
"type": "boolean"
|
|
6825
|
+
},
|
|
6826
|
+
"name": {
|
|
6827
|
+
"char": "n",
|
|
6828
|
+
"description": "Name for the API key",
|
|
6829
|
+
"name": "name",
|
|
6830
|
+
"required": true,
|
|
6831
|
+
"hasDynamicHelp": false,
|
|
6832
|
+
"multiple": false,
|
|
6833
|
+
"type": "option"
|
|
6834
|
+
},
|
|
6835
|
+
"type": {
|
|
6836
|
+
"char": "t",
|
|
6837
|
+
"description": "Key type (test or live)",
|
|
6838
|
+
"name": "type",
|
|
6839
|
+
"default": "live",
|
|
6840
|
+
"hasDynamicHelp": false,
|
|
6841
|
+
"multiple": false,
|
|
6842
|
+
"options": [
|
|
6843
|
+
"test",
|
|
6844
|
+
"live"
|
|
6845
|
+
],
|
|
6846
|
+
"type": "option"
|
|
6847
|
+
}
|
|
6848
|
+
},
|
|
6849
|
+
"hasDynamicHelp": false,
|
|
6850
|
+
"hiddenAliases": [],
|
|
6851
|
+
"id": "enterprise:keys:create",
|
|
6852
|
+
"pluginAlias": "@sendly/cli",
|
|
6853
|
+
"pluginName": "@sendly/cli",
|
|
6854
|
+
"pluginType": "core",
|
|
6855
|
+
"strict": true,
|
|
6856
|
+
"isESM": true,
|
|
6857
|
+
"relativePath": [
|
|
6858
|
+
"dist",
|
|
6859
|
+
"commands",
|
|
6860
|
+
"enterprise",
|
|
6861
|
+
"keys",
|
|
6862
|
+
"create.js"
|
|
6863
|
+
]
|
|
6864
|
+
},
|
|
6865
|
+
"enterprise:keys:list": {
|
|
6866
|
+
"aliases": [],
|
|
6867
|
+
"args": {
|
|
6868
|
+
"workspaceId": {
|
|
6869
|
+
"description": "Workspace ID",
|
|
6870
|
+
"name": "workspaceId",
|
|
6871
|
+
"required": true
|
|
6872
|
+
}
|
|
6873
|
+
},
|
|
6874
|
+
"description": "List API keys for an enterprise workspace",
|
|
6875
|
+
"examples": [
|
|
6876
|
+
"<%= config.bin %> enterprise keys list org_abc123",
|
|
6877
|
+
"<%= config.bin %> enterprise keys list org_abc123 --json"
|
|
6878
|
+
],
|
|
6879
|
+
"flags": {
|
|
6880
|
+
"json": {
|
|
6881
|
+
"description": "Output in JSON format",
|
|
6882
|
+
"name": "json",
|
|
6883
|
+
"allowNo": false,
|
|
6884
|
+
"type": "boolean"
|
|
6885
|
+
},
|
|
6886
|
+
"quiet": {
|
|
6887
|
+
"char": "q",
|
|
6888
|
+
"description": "Minimal output",
|
|
6889
|
+
"name": "quiet",
|
|
6890
|
+
"allowNo": false,
|
|
6891
|
+
"type": "boolean"
|
|
6892
|
+
}
|
|
6893
|
+
},
|
|
6894
|
+
"hasDynamicHelp": false,
|
|
6895
|
+
"hiddenAliases": [],
|
|
6896
|
+
"id": "enterprise:keys:list",
|
|
6897
|
+
"pluginAlias": "@sendly/cli",
|
|
6898
|
+
"pluginName": "@sendly/cli",
|
|
6899
|
+
"pluginType": "core",
|
|
6900
|
+
"strict": true,
|
|
6901
|
+
"isESM": true,
|
|
6902
|
+
"relativePath": [
|
|
6903
|
+
"dist",
|
|
6904
|
+
"commands",
|
|
6905
|
+
"enterprise",
|
|
6906
|
+
"keys",
|
|
6907
|
+
"list.js"
|
|
6908
|
+
]
|
|
6909
|
+
},
|
|
6910
|
+
"enterprise:keys:revoke": {
|
|
6911
|
+
"aliases": [],
|
|
6912
|
+
"args": {
|
|
6913
|
+
"workspaceId": {
|
|
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",
|
|
6925
|
+
"examples": [
|
|
6926
|
+
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz",
|
|
6927
|
+
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz --yes"
|
|
6928
|
+
],
|
|
6929
|
+
"flags": {
|
|
6930
|
+
"json": {
|
|
6931
|
+
"description": "Output in JSON format",
|
|
6932
|
+
"name": "json",
|
|
6933
|
+
"allowNo": false,
|
|
6934
|
+
"type": "boolean"
|
|
6935
|
+
},
|
|
6936
|
+
"quiet": {
|
|
6937
|
+
"char": "q",
|
|
6938
|
+
"description": "Minimal output",
|
|
6939
|
+
"name": "quiet",
|
|
6940
|
+
"allowNo": false,
|
|
6941
|
+
"type": "boolean"
|
|
6942
|
+
},
|
|
6943
|
+
"yes": {
|
|
6944
|
+
"char": "y",
|
|
6945
|
+
"description": "Skip confirmation prompt",
|
|
6946
|
+
"name": "yes",
|
|
6947
|
+
"allowNo": false,
|
|
6948
|
+
"type": "boolean"
|
|
6949
|
+
}
|
|
6950
|
+
},
|
|
6951
|
+
"hasDynamicHelp": false,
|
|
6952
|
+
"hiddenAliases": [],
|
|
6953
|
+
"id": "enterprise:keys:revoke",
|
|
6954
|
+
"pluginAlias": "@sendly/cli",
|
|
6955
|
+
"pluginName": "@sendly/cli",
|
|
6956
|
+
"pluginType": "core",
|
|
6957
|
+
"strict": true,
|
|
6958
|
+
"isESM": true,
|
|
6959
|
+
"relativePath": [
|
|
6960
|
+
"dist",
|
|
6961
|
+
"commands",
|
|
6962
|
+
"enterprise",
|
|
6963
|
+
"keys",
|
|
6964
|
+
"revoke.js"
|
|
6965
|
+
]
|
|
6966
|
+
},
|
|
6599
6967
|
"enterprise:quota:get": {
|
|
6600
6968
|
"aliases": [],
|
|
6601
6969
|
"args": {
|
|
@@ -7167,176 +7535,7 @@
|
|
|
7167
7535
|
"workspaces",
|
|
7168
7536
|
"suspend.js"
|
|
7169
7537
|
]
|
|
7170
|
-
},
|
|
7171
|
-
"enterprise:keys:create": {
|
|
7172
|
-
"aliases": [],
|
|
7173
|
-
"args": {
|
|
7174
|
-
"workspaceId": {
|
|
7175
|
-
"description": "Workspace ID",
|
|
7176
|
-
"name": "workspaceId",
|
|
7177
|
-
"required": true
|
|
7178
|
-
}
|
|
7179
|
-
},
|
|
7180
|
-
"description": "Create an API key for an enterprise workspace",
|
|
7181
|
-
"examples": [
|
|
7182
|
-
"<%= config.bin %> enterprise keys create org_abc123 --name \"Production\"",
|
|
7183
|
-
"<%= config.bin %> enterprise keys create org_abc123 --name \"CI\" --type test"
|
|
7184
|
-
],
|
|
7185
|
-
"flags": {
|
|
7186
|
-
"json": {
|
|
7187
|
-
"description": "Output in JSON format",
|
|
7188
|
-
"name": "json",
|
|
7189
|
-
"allowNo": false,
|
|
7190
|
-
"type": "boolean"
|
|
7191
|
-
},
|
|
7192
|
-
"quiet": {
|
|
7193
|
-
"char": "q",
|
|
7194
|
-
"description": "Minimal output",
|
|
7195
|
-
"name": "quiet",
|
|
7196
|
-
"allowNo": false,
|
|
7197
|
-
"type": "boolean"
|
|
7198
|
-
},
|
|
7199
|
-
"name": {
|
|
7200
|
-
"char": "n",
|
|
7201
|
-
"description": "Name for the API key",
|
|
7202
|
-
"name": "name",
|
|
7203
|
-
"required": true,
|
|
7204
|
-
"hasDynamicHelp": false,
|
|
7205
|
-
"multiple": false,
|
|
7206
|
-
"type": "option"
|
|
7207
|
-
},
|
|
7208
|
-
"type": {
|
|
7209
|
-
"char": "t",
|
|
7210
|
-
"description": "Key type (test or live)",
|
|
7211
|
-
"name": "type",
|
|
7212
|
-
"default": "live",
|
|
7213
|
-
"hasDynamicHelp": false,
|
|
7214
|
-
"multiple": false,
|
|
7215
|
-
"options": [
|
|
7216
|
-
"test",
|
|
7217
|
-
"live"
|
|
7218
|
-
],
|
|
7219
|
-
"type": "option"
|
|
7220
|
-
}
|
|
7221
|
-
},
|
|
7222
|
-
"hasDynamicHelp": false,
|
|
7223
|
-
"hiddenAliases": [],
|
|
7224
|
-
"id": "enterprise:keys:create",
|
|
7225
|
-
"pluginAlias": "@sendly/cli",
|
|
7226
|
-
"pluginName": "@sendly/cli",
|
|
7227
|
-
"pluginType": "core",
|
|
7228
|
-
"strict": true,
|
|
7229
|
-
"isESM": true,
|
|
7230
|
-
"relativePath": [
|
|
7231
|
-
"dist",
|
|
7232
|
-
"commands",
|
|
7233
|
-
"enterprise",
|
|
7234
|
-
"keys",
|
|
7235
|
-
"create.js"
|
|
7236
|
-
]
|
|
7237
|
-
},
|
|
7238
|
-
"enterprise:keys:list": {
|
|
7239
|
-
"aliases": [],
|
|
7240
|
-
"args": {
|
|
7241
|
-
"workspaceId": {
|
|
7242
|
-
"description": "Workspace ID",
|
|
7243
|
-
"name": "workspaceId",
|
|
7244
|
-
"required": true
|
|
7245
|
-
}
|
|
7246
|
-
},
|
|
7247
|
-
"description": "List API keys for an enterprise workspace",
|
|
7248
|
-
"examples": [
|
|
7249
|
-
"<%= config.bin %> enterprise keys list org_abc123",
|
|
7250
|
-
"<%= config.bin %> enterprise keys list org_abc123 --json"
|
|
7251
|
-
],
|
|
7252
|
-
"flags": {
|
|
7253
|
-
"json": {
|
|
7254
|
-
"description": "Output in JSON format",
|
|
7255
|
-
"name": "json",
|
|
7256
|
-
"allowNo": false,
|
|
7257
|
-
"type": "boolean"
|
|
7258
|
-
},
|
|
7259
|
-
"quiet": {
|
|
7260
|
-
"char": "q",
|
|
7261
|
-
"description": "Minimal output",
|
|
7262
|
-
"name": "quiet",
|
|
7263
|
-
"allowNo": false,
|
|
7264
|
-
"type": "boolean"
|
|
7265
|
-
}
|
|
7266
|
-
},
|
|
7267
|
-
"hasDynamicHelp": false,
|
|
7268
|
-
"hiddenAliases": [],
|
|
7269
|
-
"id": "enterprise:keys:list",
|
|
7270
|
-
"pluginAlias": "@sendly/cli",
|
|
7271
|
-
"pluginName": "@sendly/cli",
|
|
7272
|
-
"pluginType": "core",
|
|
7273
|
-
"strict": true,
|
|
7274
|
-
"isESM": true,
|
|
7275
|
-
"relativePath": [
|
|
7276
|
-
"dist",
|
|
7277
|
-
"commands",
|
|
7278
|
-
"enterprise",
|
|
7279
|
-
"keys",
|
|
7280
|
-
"list.js"
|
|
7281
|
-
]
|
|
7282
|
-
},
|
|
7283
|
-
"enterprise:keys:revoke": {
|
|
7284
|
-
"aliases": [],
|
|
7285
|
-
"args": {
|
|
7286
|
-
"workspaceId": {
|
|
7287
|
-
"description": "Workspace ID",
|
|
7288
|
-
"name": "workspaceId",
|
|
7289
|
-
"required": true
|
|
7290
|
-
},
|
|
7291
|
-
"keyId": {
|
|
7292
|
-
"description": "API key ID to revoke",
|
|
7293
|
-
"name": "keyId",
|
|
7294
|
-
"required": true
|
|
7295
|
-
}
|
|
7296
|
-
},
|
|
7297
|
-
"description": "Revoke an API key for an enterprise workspace",
|
|
7298
|
-
"examples": [
|
|
7299
|
-
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz",
|
|
7300
|
-
"<%= config.bin %> enterprise keys revoke org_abc123 key_xyz --yes"
|
|
7301
|
-
],
|
|
7302
|
-
"flags": {
|
|
7303
|
-
"json": {
|
|
7304
|
-
"description": "Output in JSON format",
|
|
7305
|
-
"name": "json",
|
|
7306
|
-
"allowNo": false,
|
|
7307
|
-
"type": "boolean"
|
|
7308
|
-
},
|
|
7309
|
-
"quiet": {
|
|
7310
|
-
"char": "q",
|
|
7311
|
-
"description": "Minimal output",
|
|
7312
|
-
"name": "quiet",
|
|
7313
|
-
"allowNo": false,
|
|
7314
|
-
"type": "boolean"
|
|
7315
|
-
},
|
|
7316
|
-
"yes": {
|
|
7317
|
-
"char": "y",
|
|
7318
|
-
"description": "Skip confirmation prompt",
|
|
7319
|
-
"name": "yes",
|
|
7320
|
-
"allowNo": false,
|
|
7321
|
-
"type": "boolean"
|
|
7322
|
-
}
|
|
7323
|
-
},
|
|
7324
|
-
"hasDynamicHelp": false,
|
|
7325
|
-
"hiddenAliases": [],
|
|
7326
|
-
"id": "enterprise:keys:revoke",
|
|
7327
|
-
"pluginAlias": "@sendly/cli",
|
|
7328
|
-
"pluginName": "@sendly/cli",
|
|
7329
|
-
"pluginType": "core",
|
|
7330
|
-
"strict": true,
|
|
7331
|
-
"isESM": true,
|
|
7332
|
-
"relativePath": [
|
|
7333
|
-
"dist",
|
|
7334
|
-
"commands",
|
|
7335
|
-
"enterprise",
|
|
7336
|
-
"keys",
|
|
7337
|
-
"revoke.js"
|
|
7338
|
-
]
|
|
7339
7538
|
}
|
|
7340
7539
|
},
|
|
7341
|
-
"version": "3.
|
|
7540
|
+
"version": "3.34.0"
|
|
7342
7541
|
}
|