@instantkom/cli 3.130.0 → 3.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/commands/tickets/reply.d.ts +22 -0
- package/dist/commands/tickets/reply.js +36 -0
- package/dist/commands/tickets/update.js +5 -3
- package/npm-shrinkwrap.json +1842 -4212
- package/oclif.manifest.json +869 -765
- package/package.json +12 -14
package/oclif.manifest.json
CHANGED
|
@@ -953,10 +953,10 @@
|
|
|
953
953
|
"update.js"
|
|
954
954
|
]
|
|
955
955
|
},
|
|
956
|
-
"
|
|
956
|
+
"ai:reply": {
|
|
957
957
|
"aliases": [],
|
|
958
958
|
"args": {},
|
|
959
|
-
"description": "
|
|
959
|
+
"description": "Generate AI reply suggestions for a message",
|
|
960
960
|
"flags": {
|
|
961
961
|
"api-key": {
|
|
962
962
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -1020,24 +1020,46 @@
|
|
|
1020
1020
|
"multiple": false,
|
|
1021
1021
|
"type": "option"
|
|
1022
1022
|
},
|
|
1023
|
-
"
|
|
1024
|
-
"description": "
|
|
1025
|
-
"name": "
|
|
1026
|
-
"
|
|
1023
|
+
"message-id": {
|
|
1024
|
+
"description": "Message ID to use as smart-reply anchor",
|
|
1025
|
+
"name": "message-id",
|
|
1026
|
+
"required": true,
|
|
1027
|
+
"hasDynamicHelp": false,
|
|
1028
|
+
"multiple": false,
|
|
1029
|
+
"type": "option"
|
|
1030
|
+
},
|
|
1031
|
+
"limit": {
|
|
1032
|
+
"description": "Number of suggestions to generate (1-5)",
|
|
1033
|
+
"name": "limit",
|
|
1034
|
+
"hasDynamicHelp": false,
|
|
1035
|
+
"multiple": false,
|
|
1036
|
+
"type": "option"
|
|
1037
|
+
},
|
|
1038
|
+
"context-length": {
|
|
1039
|
+
"description": "Number of recent messages to use as context (1-20)",
|
|
1040
|
+
"name": "context-length",
|
|
1041
|
+
"hasDynamicHelp": false,
|
|
1042
|
+
"multiple": false,
|
|
1043
|
+
"type": "option"
|
|
1044
|
+
},
|
|
1045
|
+
"style": {
|
|
1046
|
+
"description": "Response style",
|
|
1047
|
+
"name": "style",
|
|
1027
1048
|
"hasDynamicHelp": false,
|
|
1028
1049
|
"multiple": false,
|
|
1029
1050
|
"options": [
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1051
|
+
"professional",
|
|
1052
|
+
"friendly",
|
|
1053
|
+
"concise",
|
|
1054
|
+
"detailed",
|
|
1055
|
+
"empathetic"
|
|
1034
1056
|
],
|
|
1035
1057
|
"type": "option"
|
|
1036
1058
|
}
|
|
1037
1059
|
},
|
|
1038
1060
|
"hasDynamicHelp": false,
|
|
1039
1061
|
"hiddenAliases": [],
|
|
1040
|
-
"id": "
|
|
1062
|
+
"id": "ai:reply",
|
|
1041
1063
|
"pluginAlias": "@instantkom/cli",
|
|
1042
1064
|
"pluginName": "@instantkom/cli",
|
|
1043
1065
|
"pluginType": "core",
|
|
@@ -1047,14 +1069,14 @@
|
|
|
1047
1069
|
"relativePath": [
|
|
1048
1070
|
"dist",
|
|
1049
1071
|
"commands",
|
|
1050
|
-
"
|
|
1051
|
-
"
|
|
1072
|
+
"ai",
|
|
1073
|
+
"reply.js"
|
|
1052
1074
|
]
|
|
1053
1075
|
},
|
|
1054
|
-
"auth:
|
|
1076
|
+
"auth:login": {
|
|
1055
1077
|
"aliases": [],
|
|
1056
1078
|
"args": {},
|
|
1057
|
-
"description": "
|
|
1079
|
+
"description": "Authenticate with the instantKOM API via device authorization flow",
|
|
1058
1080
|
"flags": {
|
|
1059
1081
|
"api-key": {
|
|
1060
1082
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -1117,11 +1139,25 @@
|
|
|
1117
1139
|
"hasDynamicHelp": false,
|
|
1118
1140
|
"multiple": false,
|
|
1119
1141
|
"type": "option"
|
|
1142
|
+
},
|
|
1143
|
+
"scope": {
|
|
1144
|
+
"description": "Requested token scope",
|
|
1145
|
+
"name": "scope",
|
|
1146
|
+
"default": "read",
|
|
1147
|
+
"hasDynamicHelp": false,
|
|
1148
|
+
"multiple": false,
|
|
1149
|
+
"options": [
|
|
1150
|
+
"full",
|
|
1151
|
+
"send",
|
|
1152
|
+
"read",
|
|
1153
|
+
"admin"
|
|
1154
|
+
],
|
|
1155
|
+
"type": "option"
|
|
1120
1156
|
}
|
|
1121
1157
|
},
|
|
1122
1158
|
"hasDynamicHelp": false,
|
|
1123
1159
|
"hiddenAliases": [],
|
|
1124
|
-
"id": "auth:
|
|
1160
|
+
"id": "auth:login",
|
|
1125
1161
|
"pluginAlias": "@instantkom/cli",
|
|
1126
1162
|
"pluginName": "@instantkom/cli",
|
|
1127
1163
|
"pluginType": "core",
|
|
@@ -1132,13 +1168,13 @@
|
|
|
1132
1168
|
"dist",
|
|
1133
1169
|
"commands",
|
|
1134
1170
|
"auth",
|
|
1135
|
-
"
|
|
1171
|
+
"login.js"
|
|
1136
1172
|
]
|
|
1137
1173
|
},
|
|
1138
|
-
"
|
|
1174
|
+
"auth:logout": {
|
|
1139
1175
|
"aliases": [],
|
|
1140
1176
|
"args": {},
|
|
1141
|
-
"description": "
|
|
1177
|
+
"description": "Remove the stored API token for the current profile",
|
|
1142
1178
|
"flags": {
|
|
1143
1179
|
"api-key": {
|
|
1144
1180
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -1201,47 +1237,11 @@
|
|
|
1201
1237
|
"hasDynamicHelp": false,
|
|
1202
1238
|
"multiple": false,
|
|
1203
1239
|
"type": "option"
|
|
1204
|
-
},
|
|
1205
|
-
"message-id": {
|
|
1206
|
-
"description": "Message ID to use as smart-reply anchor",
|
|
1207
|
-
"name": "message-id",
|
|
1208
|
-
"required": true,
|
|
1209
|
-
"hasDynamicHelp": false,
|
|
1210
|
-
"multiple": false,
|
|
1211
|
-
"type": "option"
|
|
1212
|
-
},
|
|
1213
|
-
"limit": {
|
|
1214
|
-
"description": "Number of suggestions to generate (1-5)",
|
|
1215
|
-
"name": "limit",
|
|
1216
|
-
"hasDynamicHelp": false,
|
|
1217
|
-
"multiple": false,
|
|
1218
|
-
"type": "option"
|
|
1219
|
-
},
|
|
1220
|
-
"context-length": {
|
|
1221
|
-
"description": "Number of recent messages to use as context (1-20)",
|
|
1222
|
-
"name": "context-length",
|
|
1223
|
-
"hasDynamicHelp": false,
|
|
1224
|
-
"multiple": false,
|
|
1225
|
-
"type": "option"
|
|
1226
|
-
},
|
|
1227
|
-
"style": {
|
|
1228
|
-
"description": "Response style",
|
|
1229
|
-
"name": "style",
|
|
1230
|
-
"hasDynamicHelp": false,
|
|
1231
|
-
"multiple": false,
|
|
1232
|
-
"options": [
|
|
1233
|
-
"professional",
|
|
1234
|
-
"friendly",
|
|
1235
|
-
"concise",
|
|
1236
|
-
"detailed",
|
|
1237
|
-
"empathetic"
|
|
1238
|
-
],
|
|
1239
|
-
"type": "option"
|
|
1240
1240
|
}
|
|
1241
1241
|
},
|
|
1242
1242
|
"hasDynamicHelp": false,
|
|
1243
1243
|
"hiddenAliases": [],
|
|
1244
|
-
"id": "
|
|
1244
|
+
"id": "auth:logout",
|
|
1245
1245
|
"pluginAlias": "@instantkom/cli",
|
|
1246
1246
|
"pluginName": "@instantkom/cli",
|
|
1247
1247
|
"pluginType": "core",
|
|
@@ -1251,8 +1251,8 @@
|
|
|
1251
1251
|
"relativePath": [
|
|
1252
1252
|
"dist",
|
|
1253
1253
|
"commands",
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1254
|
+
"auth",
|
|
1255
|
+
"logout.js"
|
|
1256
1256
|
]
|
|
1257
1257
|
},
|
|
1258
1258
|
"autocomplete:script": {
|
|
@@ -2015,10 +2015,10 @@
|
|
|
2015
2015
|
"update.js"
|
|
2016
2016
|
]
|
|
2017
2017
|
},
|
|
2018
|
-
"
|
|
2018
|
+
"channels:create": {
|
|
2019
2019
|
"aliases": [],
|
|
2020
2020
|
"args": {},
|
|
2021
|
-
"description": "Create a
|
|
2021
|
+
"description": "Create a channel",
|
|
2022
2022
|
"flags": {
|
|
2023
2023
|
"api-key": {
|
|
2024
2024
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2082,92 +2082,47 @@
|
|
|
2082
2082
|
"multiple": false,
|
|
2083
2083
|
"type": "option"
|
|
2084
2084
|
},
|
|
2085
|
-
"
|
|
2086
|
-
"description": "Channel
|
|
2087
|
-
"name": "
|
|
2088
|
-
"hasDynamicHelp": false,
|
|
2089
|
-
"multiple": false,
|
|
2090
|
-
"type": "option"
|
|
2091
|
-
},
|
|
2092
|
-
"segment": {
|
|
2093
|
-
"description": "Segment ID within --channel",
|
|
2094
|
-
"name": "segment",
|
|
2095
|
-
"hasDynamicHelp": false,
|
|
2096
|
-
"multiple": false,
|
|
2097
|
-
"type": "option"
|
|
2098
|
-
},
|
|
2099
|
-
"target": {
|
|
2100
|
-
"description": "Target as channelId or channelId:segmentId; may be repeated",
|
|
2101
|
-
"name": "target",
|
|
2102
|
-
"hasDynamicHelp": false,
|
|
2103
|
-
"multiple": true,
|
|
2104
|
-
"type": "option"
|
|
2105
|
-
},
|
|
2106
|
-
"text": {
|
|
2107
|
-
"description": "Broadcast message text",
|
|
2108
|
-
"name": "text",
|
|
2085
|
+
"name": {
|
|
2086
|
+
"description": "Channel name",
|
|
2087
|
+
"name": "name",
|
|
2109
2088
|
"required": true,
|
|
2110
2089
|
"hasDynamicHelp": false,
|
|
2111
2090
|
"multiple": false,
|
|
2112
2091
|
"type": "option"
|
|
2113
2092
|
},
|
|
2114
|
-
"
|
|
2115
|
-
"description": "
|
|
2116
|
-
"name": "
|
|
2093
|
+
"gateway-type": {
|
|
2094
|
+
"description": "Gateway type ID",
|
|
2095
|
+
"name": "gateway-type",
|
|
2096
|
+
"required": true,
|
|
2117
2097
|
"hasDynamicHelp": false,
|
|
2118
2098
|
"multiple": false,
|
|
2119
2099
|
"type": "option"
|
|
2120
2100
|
},
|
|
2121
|
-
"
|
|
2122
|
-
"description": "
|
|
2123
|
-
"name": "
|
|
2124
|
-
"allowNo": false,
|
|
2125
|
-
"type": "boolean"
|
|
2126
|
-
},
|
|
2127
|
-
"idempotency-key": {
|
|
2128
|
-
"description": "Idempotency key forwarded as Idempotency-Key",
|
|
2129
|
-
"name": "idempotency-key",
|
|
2101
|
+
"status": {
|
|
2102
|
+
"description": "Channel lifecycle status",
|
|
2103
|
+
"name": "status",
|
|
2130
2104
|
"hasDynamicHelp": false,
|
|
2131
2105
|
"multiple": false,
|
|
2132
2106
|
"type": "option"
|
|
2133
2107
|
},
|
|
2134
|
-
"
|
|
2135
|
-
"description": "
|
|
2136
|
-
"name": "
|
|
2137
|
-
"hasDynamicHelp": false,
|
|
2138
|
-
"multiple": true,
|
|
2139
|
-
"type": "option"
|
|
2140
|
-
},
|
|
2141
|
-
"template-id": {
|
|
2142
|
-
"description": "WhatsApp template ID",
|
|
2143
|
-
"name": "template-id",
|
|
2108
|
+
"description": {
|
|
2109
|
+
"description": "Channel description",
|
|
2110
|
+
"name": "description",
|
|
2144
2111
|
"hasDynamicHelp": false,
|
|
2145
2112
|
"multiple": false,
|
|
2146
2113
|
"type": "option"
|
|
2147
2114
|
},
|
|
2148
|
-
"
|
|
2149
|
-
"description": "
|
|
2150
|
-
"name": "
|
|
2151
|
-
"default": "draft",
|
|
2115
|
+
"data": {
|
|
2116
|
+
"description": "Additional JSON object payload",
|
|
2117
|
+
"name": "data",
|
|
2152
2118
|
"hasDynamicHelp": false,
|
|
2153
2119
|
"multiple": false,
|
|
2154
|
-
"options": [
|
|
2155
|
-
"draft",
|
|
2156
|
-
"scheduled",
|
|
2157
|
-
"sending"
|
|
2158
|
-
],
|
|
2159
2120
|
"type": "option"
|
|
2160
|
-
},
|
|
2161
|
-
"auto-approve": {
|
|
2162
|
-
"description": "Auto-approve broadcast when allowed by API permissions",
|
|
2163
|
-
"name": "auto-approve",
|
|
2164
|
-
"allowNo": false,
|
|
2165
|
-
"type": "boolean"
|
|
2166
2121
|
}
|
|
2167
2122
|
},
|
|
2168
2123
|
"hasDynamicHelp": false,
|
|
2169
2124
|
"hiddenAliases": [],
|
|
2170
|
-
"id": "
|
|
2125
|
+
"id": "channels:create",
|
|
2171
2126
|
"pluginAlias": "@instantkom/cli",
|
|
2172
2127
|
"pluginName": "@instantkom/cli",
|
|
2173
2128
|
"pluginType": "core",
|
|
@@ -2177,20 +2132,20 @@
|
|
|
2177
2132
|
"relativePath": [
|
|
2178
2133
|
"dist",
|
|
2179
2134
|
"commands",
|
|
2180
|
-
"
|
|
2135
|
+
"channels",
|
|
2181
2136
|
"create.js"
|
|
2182
2137
|
]
|
|
2183
2138
|
},
|
|
2184
|
-
"
|
|
2139
|
+
"channels:get": {
|
|
2185
2140
|
"aliases": [],
|
|
2186
2141
|
"args": {
|
|
2187
2142
|
"id": {
|
|
2188
|
-
"description": "
|
|
2143
|
+
"description": "Channel ID",
|
|
2189
2144
|
"name": "id",
|
|
2190
2145
|
"required": true
|
|
2191
2146
|
}
|
|
2192
2147
|
},
|
|
2193
|
-
"description": "
|
|
2148
|
+
"description": "Get a channel by ID",
|
|
2194
2149
|
"flags": {
|
|
2195
2150
|
"api-key": {
|
|
2196
2151
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2257,7 +2212,7 @@
|
|
|
2257
2212
|
},
|
|
2258
2213
|
"hasDynamicHelp": false,
|
|
2259
2214
|
"hiddenAliases": [],
|
|
2260
|
-
"id": "
|
|
2215
|
+
"id": "channels:get",
|
|
2261
2216
|
"pluginAlias": "@instantkom/cli",
|
|
2262
2217
|
"pluginName": "@instantkom/cli",
|
|
2263
2218
|
"pluginType": "core",
|
|
@@ -2267,20 +2222,20 @@
|
|
|
2267
2222
|
"relativePath": [
|
|
2268
2223
|
"dist",
|
|
2269
2224
|
"commands",
|
|
2270
|
-
"
|
|
2271
|
-
"
|
|
2225
|
+
"channels",
|
|
2226
|
+
"get.js"
|
|
2272
2227
|
]
|
|
2273
2228
|
},
|
|
2274
|
-
"
|
|
2229
|
+
"channels:kpis": {
|
|
2275
2230
|
"aliases": [],
|
|
2276
2231
|
"args": {
|
|
2277
2232
|
"id": {
|
|
2278
|
-
"description": "
|
|
2233
|
+
"description": "Optional channel ID; omit for aggregated channel KPIs",
|
|
2279
2234
|
"name": "id",
|
|
2280
|
-
"required":
|
|
2235
|
+
"required": false
|
|
2281
2236
|
}
|
|
2282
2237
|
},
|
|
2283
|
-
"description": "Get
|
|
2238
|
+
"description": "Get channel KPIs",
|
|
2284
2239
|
"flags": {
|
|
2285
2240
|
"api-key": {
|
|
2286
2241
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2343,11 +2298,18 @@
|
|
|
2343
2298
|
"hasDynamicHelp": false,
|
|
2344
2299
|
"multiple": false,
|
|
2345
2300
|
"type": "option"
|
|
2301
|
+
},
|
|
2302
|
+
"period": {
|
|
2303
|
+
"description": "KPI period",
|
|
2304
|
+
"name": "period",
|
|
2305
|
+
"hasDynamicHelp": false,
|
|
2306
|
+
"multiple": false,
|
|
2307
|
+
"type": "option"
|
|
2346
2308
|
}
|
|
2347
2309
|
},
|
|
2348
2310
|
"hasDynamicHelp": false,
|
|
2349
2311
|
"hiddenAliases": [],
|
|
2350
|
-
"id": "
|
|
2312
|
+
"id": "channels:kpis",
|
|
2351
2313
|
"pluginAlias": "@instantkom/cli",
|
|
2352
2314
|
"pluginName": "@instantkom/cli",
|
|
2353
2315
|
"pluginType": "core",
|
|
@@ -2357,14 +2319,14 @@
|
|
|
2357
2319
|
"relativePath": [
|
|
2358
2320
|
"dist",
|
|
2359
2321
|
"commands",
|
|
2360
|
-
"
|
|
2361
|
-
"
|
|
2322
|
+
"channels",
|
|
2323
|
+
"kpis.js"
|
|
2362
2324
|
]
|
|
2363
2325
|
},
|
|
2364
|
-
"
|
|
2326
|
+
"channels:list": {
|
|
2365
2327
|
"aliases": [],
|
|
2366
2328
|
"args": {},
|
|
2367
|
-
"description": "List
|
|
2329
|
+
"description": "List channels",
|
|
2368
2330
|
"flags": {
|
|
2369
2331
|
"api-key": {
|
|
2370
2332
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2444,56 +2406,31 @@
|
|
|
2444
2406
|
"multiple": false,
|
|
2445
2407
|
"type": "option"
|
|
2446
2408
|
},
|
|
2447
|
-
"
|
|
2448
|
-
"description": "Filter by channel
|
|
2449
|
-
"name": "
|
|
2409
|
+
"status": {
|
|
2410
|
+
"description": "Filter by channel status",
|
|
2411
|
+
"name": "status",
|
|
2450
2412
|
"hasDynamicHelp": false,
|
|
2451
2413
|
"multiple": false,
|
|
2452
2414
|
"type": "option"
|
|
2453
2415
|
},
|
|
2454
|
-
"
|
|
2455
|
-
"description": "Filter by
|
|
2456
|
-
"name": "
|
|
2416
|
+
"gateway-type": {
|
|
2417
|
+
"description": "Filter by gateway type ID",
|
|
2418
|
+
"name": "gateway-type",
|
|
2457
2419
|
"hasDynamicHelp": false,
|
|
2458
2420
|
"multiple": false,
|
|
2459
2421
|
"type": "option"
|
|
2460
2422
|
},
|
|
2461
|
-
"
|
|
2462
|
-
"description": "
|
|
2463
|
-
"name": "
|
|
2423
|
+
"search": {
|
|
2424
|
+
"description": "Search by channel name",
|
|
2425
|
+
"name": "search",
|
|
2464
2426
|
"hasDynamicHelp": false,
|
|
2465
2427
|
"multiple": false,
|
|
2466
|
-
"options": [
|
|
2467
|
-
"text",
|
|
2468
|
-
"image",
|
|
2469
|
-
"video",
|
|
2470
|
-
"audio",
|
|
2471
|
-
"document"
|
|
2472
|
-
],
|
|
2473
|
-
"type": "option"
|
|
2474
|
-
},
|
|
2475
|
-
"search": {
|
|
2476
|
-
"description": "Search broadcasts",
|
|
2477
|
-
"name": "search",
|
|
2478
|
-
"hasDynamicHelp": false,
|
|
2479
|
-
"multiple": false,
|
|
2480
|
-
"type": "option"
|
|
2481
|
-
},
|
|
2482
|
-
"test": {
|
|
2483
|
-
"description": "Filter test flag: 0 or 1",
|
|
2484
|
-
"name": "test",
|
|
2485
|
-
"hasDynamicHelp": false,
|
|
2486
|
-
"multiple": false,
|
|
2487
|
-
"options": [
|
|
2488
|
-
"0",
|
|
2489
|
-
"1"
|
|
2490
|
-
],
|
|
2491
2428
|
"type": "option"
|
|
2492
2429
|
}
|
|
2493
2430
|
},
|
|
2494
2431
|
"hasDynamicHelp": false,
|
|
2495
2432
|
"hiddenAliases": [],
|
|
2496
|
-
"id": "
|
|
2433
|
+
"id": "channels:list",
|
|
2497
2434
|
"pluginAlias": "@instantkom/cli",
|
|
2498
2435
|
"pluginName": "@instantkom/cli",
|
|
2499
2436
|
"pluginType": "core",
|
|
@@ -2503,20 +2440,20 @@
|
|
|
2503
2440
|
"relativePath": [
|
|
2504
2441
|
"dist",
|
|
2505
2442
|
"commands",
|
|
2506
|
-
"
|
|
2443
|
+
"channels",
|
|
2507
2444
|
"list.js"
|
|
2508
2445
|
]
|
|
2509
2446
|
},
|
|
2510
|
-
"
|
|
2447
|
+
"channels:update": {
|
|
2511
2448
|
"aliases": [],
|
|
2512
2449
|
"args": {
|
|
2513
2450
|
"id": {
|
|
2514
|
-
"description": "
|
|
2451
|
+
"description": "Channel ID",
|
|
2515
2452
|
"name": "id",
|
|
2516
2453
|
"required": true
|
|
2517
2454
|
}
|
|
2518
2455
|
},
|
|
2519
|
-
"description": "
|
|
2456
|
+
"description": "Update a channel",
|
|
2520
2457
|
"flags": {
|
|
2521
2458
|
"api-key": {
|
|
2522
2459
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2579,11 +2516,39 @@
|
|
|
2579
2516
|
"hasDynamicHelp": false,
|
|
2580
2517
|
"multiple": false,
|
|
2581
2518
|
"type": "option"
|
|
2519
|
+
},
|
|
2520
|
+
"name": {
|
|
2521
|
+
"description": "Channel name",
|
|
2522
|
+
"name": "name",
|
|
2523
|
+
"hasDynamicHelp": false,
|
|
2524
|
+
"multiple": false,
|
|
2525
|
+
"type": "option"
|
|
2526
|
+
},
|
|
2527
|
+
"status": {
|
|
2528
|
+
"description": "Channel lifecycle status",
|
|
2529
|
+
"name": "status",
|
|
2530
|
+
"hasDynamicHelp": false,
|
|
2531
|
+
"multiple": false,
|
|
2532
|
+
"type": "option"
|
|
2533
|
+
},
|
|
2534
|
+
"description": {
|
|
2535
|
+
"description": "Channel description",
|
|
2536
|
+
"name": "description",
|
|
2537
|
+
"hasDynamicHelp": false,
|
|
2538
|
+
"multiple": false,
|
|
2539
|
+
"type": "option"
|
|
2540
|
+
},
|
|
2541
|
+
"data": {
|
|
2542
|
+
"description": "Additional JSON object payload",
|
|
2543
|
+
"name": "data",
|
|
2544
|
+
"hasDynamicHelp": false,
|
|
2545
|
+
"multiple": false,
|
|
2546
|
+
"type": "option"
|
|
2582
2547
|
}
|
|
2583
2548
|
},
|
|
2584
2549
|
"hasDynamicHelp": false,
|
|
2585
2550
|
"hiddenAliases": [],
|
|
2586
|
-
"id": "
|
|
2551
|
+
"id": "channels:update",
|
|
2587
2552
|
"pluginAlias": "@instantkom/cli",
|
|
2588
2553
|
"pluginName": "@instantkom/cli",
|
|
2589
2554
|
"pluginType": "core",
|
|
@@ -2593,20 +2558,20 @@
|
|
|
2593
2558
|
"relativePath": [
|
|
2594
2559
|
"dist",
|
|
2595
2560
|
"commands",
|
|
2596
|
-
"
|
|
2597
|
-
"
|
|
2561
|
+
"channels",
|
|
2562
|
+
"update.js"
|
|
2598
2563
|
]
|
|
2599
2564
|
},
|
|
2600
|
-
"
|
|
2565
|
+
"config:get": {
|
|
2601
2566
|
"aliases": [],
|
|
2602
2567
|
"args": {
|
|
2603
|
-
"
|
|
2604
|
-
"description": "
|
|
2605
|
-
"name": "
|
|
2568
|
+
"key": {
|
|
2569
|
+
"description": "Configuration key to retrieve",
|
|
2570
|
+
"name": "key",
|
|
2606
2571
|
"required": true
|
|
2607
2572
|
}
|
|
2608
2573
|
},
|
|
2609
|
-
"description": "
|
|
2574
|
+
"description": "Get a configuration value for the current profile",
|
|
2610
2575
|
"flags": {
|
|
2611
2576
|
"api-key": {
|
|
2612
2577
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2673,7 +2638,7 @@
|
|
|
2673
2638
|
},
|
|
2674
2639
|
"hasDynamicHelp": false,
|
|
2675
2640
|
"hiddenAliases": [],
|
|
2676
|
-
"id": "
|
|
2641
|
+
"id": "config:get",
|
|
2677
2642
|
"pluginAlias": "@instantkom/cli",
|
|
2678
2643
|
"pluginName": "@instantkom/cli",
|
|
2679
2644
|
"pluginType": "core",
|
|
@@ -2683,20 +2648,25 @@
|
|
|
2683
2648
|
"relativePath": [
|
|
2684
2649
|
"dist",
|
|
2685
2650
|
"commands",
|
|
2686
|
-
"
|
|
2687
|
-
"
|
|
2651
|
+
"config",
|
|
2652
|
+
"get.js"
|
|
2688
2653
|
]
|
|
2689
2654
|
},
|
|
2690
|
-
"
|
|
2655
|
+
"config:set": {
|
|
2691
2656
|
"aliases": [],
|
|
2692
2657
|
"args": {
|
|
2693
|
-
"
|
|
2694
|
-
"description": "
|
|
2695
|
-
"name": "
|
|
2658
|
+
"key": {
|
|
2659
|
+
"description": "Configuration key to set",
|
|
2660
|
+
"name": "key",
|
|
2661
|
+
"required": true
|
|
2662
|
+
},
|
|
2663
|
+
"value": {
|
|
2664
|
+
"description": "Value to assign",
|
|
2665
|
+
"name": "value",
|
|
2696
2666
|
"required": true
|
|
2697
2667
|
}
|
|
2698
2668
|
},
|
|
2699
|
-
"description": "
|
|
2669
|
+
"description": "Set a configuration value for the current profile",
|
|
2700
2670
|
"flags": {
|
|
2701
2671
|
"api-key": {
|
|
2702
2672
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -2759,69 +2729,93 @@
|
|
|
2759
2729
|
"hasDynamicHelp": false,
|
|
2760
2730
|
"multiple": false,
|
|
2761
2731
|
"type": "option"
|
|
2762
|
-
}
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
"hasDynamicHelp": false,
|
|
2735
|
+
"hiddenAliases": [],
|
|
2736
|
+
"id": "config:set",
|
|
2737
|
+
"pluginAlias": "@instantkom/cli",
|
|
2738
|
+
"pluginName": "@instantkom/cli",
|
|
2739
|
+
"pluginType": "core",
|
|
2740
|
+
"strict": true,
|
|
2741
|
+
"enableJsonFlag": false,
|
|
2742
|
+
"isESM": true,
|
|
2743
|
+
"relativePath": [
|
|
2744
|
+
"dist",
|
|
2745
|
+
"commands",
|
|
2746
|
+
"config",
|
|
2747
|
+
"set.js"
|
|
2748
|
+
]
|
|
2749
|
+
},
|
|
2750
|
+
"config:unset": {
|
|
2751
|
+
"aliases": [],
|
|
2752
|
+
"args": {
|
|
2753
|
+
"key": {
|
|
2754
|
+
"description": "Configuration key to remove",
|
|
2755
|
+
"name": "key",
|
|
2756
|
+
"required": true
|
|
2757
|
+
}
|
|
2758
|
+
},
|
|
2759
|
+
"description": "Remove a configuration key from the current profile",
|
|
2760
|
+
"flags": {
|
|
2761
|
+
"api-key": {
|
|
2762
|
+
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
2763
|
+
"env": "IKM_API_KEY",
|
|
2764
|
+
"helpGroup": "GLOBAL",
|
|
2765
|
+
"name": "api-key",
|
|
2773
2766
|
"hasDynamicHelp": false,
|
|
2774
2767
|
"multiple": false,
|
|
2775
2768
|
"type": "option"
|
|
2776
2769
|
},
|
|
2777
|
-
"
|
|
2778
|
-
"description": "
|
|
2779
|
-
"
|
|
2770
|
+
"format": {
|
|
2771
|
+
"description": "Output format: text, json, yaml, or table",
|
|
2772
|
+
"helpGroup": "GLOBAL",
|
|
2773
|
+
"name": "format",
|
|
2774
|
+
"default": "text",
|
|
2780
2775
|
"hasDynamicHelp": false,
|
|
2781
2776
|
"multiple": false,
|
|
2777
|
+
"options": [
|
|
2778
|
+
"text",
|
|
2779
|
+
"json",
|
|
2780
|
+
"yaml",
|
|
2781
|
+
"table"
|
|
2782
|
+
],
|
|
2782
2783
|
"type": "option"
|
|
2783
2784
|
},
|
|
2784
|
-
"
|
|
2785
|
-
"description": "
|
|
2786
|
-
"
|
|
2787
|
-
"
|
|
2788
|
-
"type": "boolean"
|
|
2789
|
-
},
|
|
2790
|
-
"locked": {
|
|
2791
|
-
"description": "Mark as locked",
|
|
2792
|
-
"name": "locked",
|
|
2785
|
+
"json": {
|
|
2786
|
+
"description": "Output in JSON format (alias for --format=json)",
|
|
2787
|
+
"helpGroup": "GLOBAL",
|
|
2788
|
+
"name": "json",
|
|
2793
2789
|
"allowNo": false,
|
|
2794
2790
|
"type": "boolean"
|
|
2795
2791
|
},
|
|
2796
|
-
"
|
|
2797
|
-
"description": "
|
|
2798
|
-
"
|
|
2792
|
+
"quiet": {
|
|
2793
|
+
"description": "Suppress all output except errors",
|
|
2794
|
+
"helpGroup": "GLOBAL",
|
|
2795
|
+
"name": "quiet",
|
|
2799
2796
|
"allowNo": false,
|
|
2800
2797
|
"type": "boolean"
|
|
2801
2798
|
},
|
|
2802
|
-
"
|
|
2803
|
-
"description": "
|
|
2804
|
-
"
|
|
2805
|
-
"
|
|
2806
|
-
"multiple": false,
|
|
2807
|
-
"type": "option"
|
|
2808
|
-
},
|
|
2809
|
-
"remove-media": {
|
|
2810
|
-
"description": "Remove existing media",
|
|
2811
|
-
"name": "remove-media",
|
|
2799
|
+
"no-color": {
|
|
2800
|
+
"description": "Disable color output",
|
|
2801
|
+
"helpGroup": "GLOBAL",
|
|
2802
|
+
"name": "no-color",
|
|
2812
2803
|
"allowNo": false,
|
|
2813
2804
|
"type": "boolean"
|
|
2814
2805
|
},
|
|
2815
|
-
"
|
|
2816
|
-
"description": "
|
|
2817
|
-
"
|
|
2806
|
+
"profile": {
|
|
2807
|
+
"description": "Named configuration profile to use",
|
|
2808
|
+
"helpGroup": "GLOBAL",
|
|
2809
|
+
"name": "profile",
|
|
2810
|
+
"default": "default",
|
|
2818
2811
|
"hasDynamicHelp": false,
|
|
2819
2812
|
"multiple": false,
|
|
2820
2813
|
"type": "option"
|
|
2821
2814
|
},
|
|
2822
|
-
"
|
|
2823
|
-
"description": "
|
|
2824
|
-
"
|
|
2815
|
+
"api-url": {
|
|
2816
|
+
"description": "Override the API base URL (e.g. for staging)",
|
|
2817
|
+
"helpGroup": "GLOBAL",
|
|
2818
|
+
"name": "api-url",
|
|
2825
2819
|
"hasDynamicHelp": false,
|
|
2826
2820
|
"multiple": false,
|
|
2827
2821
|
"type": "option"
|
|
@@ -2829,7 +2823,7 @@
|
|
|
2829
2823
|
},
|
|
2830
2824
|
"hasDynamicHelp": false,
|
|
2831
2825
|
"hiddenAliases": [],
|
|
2832
|
-
"id": "
|
|
2826
|
+
"id": "config:unset",
|
|
2833
2827
|
"pluginAlias": "@instantkom/cli",
|
|
2834
2828
|
"pluginName": "@instantkom/cli",
|
|
2835
2829
|
"pluginType": "core",
|
|
@@ -2839,8 +2833,8 @@
|
|
|
2839
2833
|
"relativePath": [
|
|
2840
2834
|
"dist",
|
|
2841
2835
|
"commands",
|
|
2842
|
-
"
|
|
2843
|
-
"
|
|
2836
|
+
"config",
|
|
2837
|
+
"unset.js"
|
|
2844
2838
|
]
|
|
2845
2839
|
},
|
|
2846
2840
|
"chats:get": {
|
|
@@ -3177,16 +3171,10 @@
|
|
|
3177
3171
|
"reply.js"
|
|
3178
3172
|
]
|
|
3179
3173
|
},
|
|
3180
|
-
"
|
|
3174
|
+
"broadcast:create": {
|
|
3181
3175
|
"aliases": [],
|
|
3182
|
-
"args": {
|
|
3183
|
-
|
|
3184
|
-
"description": "Configuration key to retrieve",
|
|
3185
|
-
"name": "key",
|
|
3186
|
-
"required": true
|
|
3187
|
-
}
|
|
3188
|
-
},
|
|
3189
|
-
"description": "Get a configuration value for the current profile",
|
|
3176
|
+
"args": {},
|
|
3177
|
+
"description": "Create a broadcast for channels or segments",
|
|
3190
3178
|
"flags": {
|
|
3191
3179
|
"api-key": {
|
|
3192
3180
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3249,106 +3237,93 @@
|
|
|
3249
3237
|
"hasDynamicHelp": false,
|
|
3250
3238
|
"multiple": false,
|
|
3251
3239
|
"type": "option"
|
|
3252
|
-
}
|
|
3253
|
-
},
|
|
3254
|
-
"hasDynamicHelp": false,
|
|
3255
|
-
"hiddenAliases": [],
|
|
3256
|
-
"id": "config:get",
|
|
3257
|
-
"pluginAlias": "@instantkom/cli",
|
|
3258
|
-
"pluginName": "@instantkom/cli",
|
|
3259
|
-
"pluginType": "core",
|
|
3260
|
-
"strict": true,
|
|
3261
|
-
"enableJsonFlag": false,
|
|
3262
|
-
"isESM": true,
|
|
3263
|
-
"relativePath": [
|
|
3264
|
-
"dist",
|
|
3265
|
-
"commands",
|
|
3266
|
-
"config",
|
|
3267
|
-
"get.js"
|
|
3268
|
-
]
|
|
3269
|
-
},
|
|
3270
|
-
"config:set": {
|
|
3271
|
-
"aliases": [],
|
|
3272
|
-
"args": {
|
|
3273
|
-
"key": {
|
|
3274
|
-
"description": "Configuration key to set",
|
|
3275
|
-
"name": "key",
|
|
3276
|
-
"required": true
|
|
3277
3240
|
},
|
|
3278
|
-
"
|
|
3279
|
-
"description": "
|
|
3280
|
-
"name": "
|
|
3281
|
-
"required": true
|
|
3282
|
-
}
|
|
3283
|
-
},
|
|
3284
|
-
"description": "Set a configuration value for the current profile",
|
|
3285
|
-
"flags": {
|
|
3286
|
-
"api-key": {
|
|
3287
|
-
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
3288
|
-
"env": "IKM_API_KEY",
|
|
3289
|
-
"helpGroup": "GLOBAL",
|
|
3290
|
-
"name": "api-key",
|
|
3241
|
+
"channel": {
|
|
3242
|
+
"description": "Channel ID target",
|
|
3243
|
+
"name": "channel",
|
|
3291
3244
|
"hasDynamicHelp": false,
|
|
3292
3245
|
"multiple": false,
|
|
3293
3246
|
"type": "option"
|
|
3294
3247
|
},
|
|
3295
|
-
"
|
|
3296
|
-
"description": "
|
|
3297
|
-
"
|
|
3298
|
-
"name": "format",
|
|
3299
|
-
"default": "text",
|
|
3248
|
+
"segment": {
|
|
3249
|
+
"description": "Segment ID within --channel",
|
|
3250
|
+
"name": "segment",
|
|
3300
3251
|
"hasDynamicHelp": false,
|
|
3301
3252
|
"multiple": false,
|
|
3302
|
-
"options": [
|
|
3303
|
-
"text",
|
|
3304
|
-
"json",
|
|
3305
|
-
"yaml",
|
|
3306
|
-
"table"
|
|
3307
|
-
],
|
|
3308
3253
|
"type": "option"
|
|
3309
3254
|
},
|
|
3310
|
-
"
|
|
3311
|
-
"description": "
|
|
3312
|
-
"
|
|
3313
|
-
"
|
|
3314
|
-
"
|
|
3315
|
-
"type": "
|
|
3255
|
+
"target": {
|
|
3256
|
+
"description": "Target as channelId or channelId:segmentId; may be repeated",
|
|
3257
|
+
"name": "target",
|
|
3258
|
+
"hasDynamicHelp": false,
|
|
3259
|
+
"multiple": true,
|
|
3260
|
+
"type": "option"
|
|
3316
3261
|
},
|
|
3317
|
-
"
|
|
3318
|
-
"description": "
|
|
3319
|
-
"
|
|
3320
|
-
"
|
|
3321
|
-
"
|
|
3322
|
-
"
|
|
3262
|
+
"text": {
|
|
3263
|
+
"description": "Broadcast message text",
|
|
3264
|
+
"name": "text",
|
|
3265
|
+
"required": true,
|
|
3266
|
+
"hasDynamicHelp": false,
|
|
3267
|
+
"multiple": false,
|
|
3268
|
+
"type": "option"
|
|
3323
3269
|
},
|
|
3324
|
-
"
|
|
3325
|
-
"description": "
|
|
3326
|
-
"
|
|
3327
|
-
"
|
|
3270
|
+
"send-at": {
|
|
3271
|
+
"description": "Schedule send for an ISO-8601 date-time",
|
|
3272
|
+
"name": "send-at",
|
|
3273
|
+
"hasDynamicHelp": false,
|
|
3274
|
+
"multiple": false,
|
|
3275
|
+
"type": "option"
|
|
3276
|
+
},
|
|
3277
|
+
"dry-run": {
|
|
3278
|
+
"description": "Validate and print the broadcast payload without mutating API calls",
|
|
3279
|
+
"name": "dry-run",
|
|
3328
3280
|
"allowNo": false,
|
|
3329
3281
|
"type": "boolean"
|
|
3330
3282
|
},
|
|
3331
|
-
"
|
|
3332
|
-
"description": "
|
|
3333
|
-
"
|
|
3334
|
-
"name": "profile",
|
|
3335
|
-
"default": "default",
|
|
3283
|
+
"idempotency-key": {
|
|
3284
|
+
"description": "Idempotency key forwarded as Idempotency-Key",
|
|
3285
|
+
"name": "idempotency-key",
|
|
3336
3286
|
"hasDynamicHelp": false,
|
|
3337
3287
|
"multiple": false,
|
|
3338
3288
|
"type": "option"
|
|
3339
3289
|
},
|
|
3340
|
-
"
|
|
3341
|
-
"description": "
|
|
3342
|
-
"
|
|
3343
|
-
"
|
|
3290
|
+
"media": {
|
|
3291
|
+
"description": "Media file path to upload",
|
|
3292
|
+
"name": "media",
|
|
3293
|
+
"hasDynamicHelp": false,
|
|
3294
|
+
"multiple": true,
|
|
3295
|
+
"type": "option"
|
|
3296
|
+
},
|
|
3297
|
+
"template-id": {
|
|
3298
|
+
"description": "WhatsApp template ID",
|
|
3299
|
+
"name": "template-id",
|
|
3344
3300
|
"hasDynamicHelp": false,
|
|
3345
3301
|
"multiple": false,
|
|
3346
3302
|
"type": "option"
|
|
3303
|
+
},
|
|
3304
|
+
"send-status": {
|
|
3305
|
+
"description": "Initial broadcast send status",
|
|
3306
|
+
"name": "send-status",
|
|
3307
|
+
"default": "draft",
|
|
3308
|
+
"hasDynamicHelp": false,
|
|
3309
|
+
"multiple": false,
|
|
3310
|
+
"options": [
|
|
3311
|
+
"draft",
|
|
3312
|
+
"scheduled",
|
|
3313
|
+
"sending"
|
|
3314
|
+
],
|
|
3315
|
+
"type": "option"
|
|
3316
|
+
},
|
|
3317
|
+
"auto-approve": {
|
|
3318
|
+
"description": "Auto-approve broadcast when allowed by API permissions",
|
|
3319
|
+
"name": "auto-approve",
|
|
3320
|
+
"allowNo": false,
|
|
3321
|
+
"type": "boolean"
|
|
3347
3322
|
}
|
|
3348
3323
|
},
|
|
3349
3324
|
"hasDynamicHelp": false,
|
|
3350
3325
|
"hiddenAliases": [],
|
|
3351
|
-
"id": "
|
|
3326
|
+
"id": "broadcast:create",
|
|
3352
3327
|
"pluginAlias": "@instantkom/cli",
|
|
3353
3328
|
"pluginName": "@instantkom/cli",
|
|
3354
3329
|
"pluginType": "core",
|
|
@@ -3358,20 +3333,20 @@
|
|
|
3358
3333
|
"relativePath": [
|
|
3359
3334
|
"dist",
|
|
3360
3335
|
"commands",
|
|
3361
|
-
"
|
|
3362
|
-
"
|
|
3336
|
+
"broadcast",
|
|
3337
|
+
"create.js"
|
|
3363
3338
|
]
|
|
3364
3339
|
},
|
|
3365
|
-
"
|
|
3340
|
+
"broadcast:delete": {
|
|
3366
3341
|
"aliases": [],
|
|
3367
3342
|
"args": {
|
|
3368
|
-
"
|
|
3369
|
-
"description": "
|
|
3370
|
-
"name": "
|
|
3343
|
+
"id": {
|
|
3344
|
+
"description": "broadcast ID",
|
|
3345
|
+
"name": "id",
|
|
3371
3346
|
"required": true
|
|
3372
3347
|
}
|
|
3373
3348
|
},
|
|
3374
|
-
"description": "
|
|
3349
|
+
"description": "Delete broadcast",
|
|
3375
3350
|
"flags": {
|
|
3376
3351
|
"api-key": {
|
|
3377
3352
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3438,7 +3413,7 @@
|
|
|
3438
3413
|
},
|
|
3439
3414
|
"hasDynamicHelp": false,
|
|
3440
3415
|
"hiddenAliases": [],
|
|
3441
|
-
"id": "
|
|
3416
|
+
"id": "broadcast:delete",
|
|
3442
3417
|
"pluginAlias": "@instantkom/cli",
|
|
3443
3418
|
"pluginName": "@instantkom/cli",
|
|
3444
3419
|
"pluginType": "core",
|
|
@@ -3448,14 +3423,20 @@
|
|
|
3448
3423
|
"relativePath": [
|
|
3449
3424
|
"dist",
|
|
3450
3425
|
"commands",
|
|
3451
|
-
"
|
|
3452
|
-
"
|
|
3426
|
+
"broadcast",
|
|
3427
|
+
"delete.js"
|
|
3453
3428
|
]
|
|
3454
3429
|
},
|
|
3455
|
-
"
|
|
3430
|
+
"broadcast:get": {
|
|
3456
3431
|
"aliases": [],
|
|
3457
|
-
"args": {
|
|
3458
|
-
|
|
3432
|
+
"args": {
|
|
3433
|
+
"id": {
|
|
3434
|
+
"description": "broadcast ID",
|
|
3435
|
+
"name": "id",
|
|
3436
|
+
"required": true
|
|
3437
|
+
}
|
|
3438
|
+
},
|
|
3439
|
+
"description": "Get broadcast by ID",
|
|
3459
3440
|
"flags": {
|
|
3460
3441
|
"api-key": {
|
|
3461
3442
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3518,48 +3499,11 @@
|
|
|
3518
3499
|
"hasDynamicHelp": false,
|
|
3519
3500
|
"multiple": false,
|
|
3520
3501
|
"type": "option"
|
|
3521
|
-
},
|
|
3522
|
-
"name": {
|
|
3523
|
-
"description": "Channel name",
|
|
3524
|
-
"name": "name",
|
|
3525
|
-
"required": true,
|
|
3526
|
-
"hasDynamicHelp": false,
|
|
3527
|
-
"multiple": false,
|
|
3528
|
-
"type": "option"
|
|
3529
|
-
},
|
|
3530
|
-
"gateway-type": {
|
|
3531
|
-
"description": "Gateway type ID",
|
|
3532
|
-
"name": "gateway-type",
|
|
3533
|
-
"required": true,
|
|
3534
|
-
"hasDynamicHelp": false,
|
|
3535
|
-
"multiple": false,
|
|
3536
|
-
"type": "option"
|
|
3537
|
-
},
|
|
3538
|
-
"status": {
|
|
3539
|
-
"description": "Channel lifecycle status",
|
|
3540
|
-
"name": "status",
|
|
3541
|
-
"hasDynamicHelp": false,
|
|
3542
|
-
"multiple": false,
|
|
3543
|
-
"type": "option"
|
|
3544
|
-
},
|
|
3545
|
-
"description": {
|
|
3546
|
-
"description": "Channel description",
|
|
3547
|
-
"name": "description",
|
|
3548
|
-
"hasDynamicHelp": false,
|
|
3549
|
-
"multiple": false,
|
|
3550
|
-
"type": "option"
|
|
3551
|
-
},
|
|
3552
|
-
"data": {
|
|
3553
|
-
"description": "Additional JSON object payload",
|
|
3554
|
-
"name": "data",
|
|
3555
|
-
"hasDynamicHelp": false,
|
|
3556
|
-
"multiple": false,
|
|
3557
|
-
"type": "option"
|
|
3558
3502
|
}
|
|
3559
3503
|
},
|
|
3560
3504
|
"hasDynamicHelp": false,
|
|
3561
3505
|
"hiddenAliases": [],
|
|
3562
|
-
"id": "
|
|
3506
|
+
"id": "broadcast:get",
|
|
3563
3507
|
"pluginAlias": "@instantkom/cli",
|
|
3564
3508
|
"pluginName": "@instantkom/cli",
|
|
3565
3509
|
"pluginType": "core",
|
|
@@ -3569,20 +3513,14 @@
|
|
|
3569
3513
|
"relativePath": [
|
|
3570
3514
|
"dist",
|
|
3571
3515
|
"commands",
|
|
3572
|
-
"
|
|
3573
|
-
"
|
|
3516
|
+
"broadcast",
|
|
3517
|
+
"get.js"
|
|
3574
3518
|
]
|
|
3575
3519
|
},
|
|
3576
|
-
"
|
|
3520
|
+
"broadcast:list": {
|
|
3577
3521
|
"aliases": [],
|
|
3578
|
-
"args": {
|
|
3579
|
-
|
|
3580
|
-
"description": "Channel ID",
|
|
3581
|
-
"name": "id",
|
|
3582
|
-
"required": true
|
|
3583
|
-
}
|
|
3584
|
-
},
|
|
3585
|
-
"description": "Get a channel by ID",
|
|
3522
|
+
"args": {},
|
|
3523
|
+
"description": "List broadcasts",
|
|
3586
3524
|
"flags": {
|
|
3587
3525
|
"api-key": {
|
|
3588
3526
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3645,11 +3583,73 @@
|
|
|
3645
3583
|
"hasDynamicHelp": false,
|
|
3646
3584
|
"multiple": false,
|
|
3647
3585
|
"type": "option"
|
|
3586
|
+
},
|
|
3587
|
+
"page": {
|
|
3588
|
+
"description": "Page number",
|
|
3589
|
+
"name": "page",
|
|
3590
|
+
"default": 1,
|
|
3591
|
+
"hasDynamicHelp": false,
|
|
3592
|
+
"multiple": false,
|
|
3593
|
+
"type": "option"
|
|
3594
|
+
},
|
|
3595
|
+
"limit": {
|
|
3596
|
+
"description": "Items per page",
|
|
3597
|
+
"name": "limit",
|
|
3598
|
+
"default": 20,
|
|
3599
|
+
"hasDynamicHelp": false,
|
|
3600
|
+
"multiple": false,
|
|
3601
|
+
"type": "option"
|
|
3602
|
+
},
|
|
3603
|
+
"channel": {
|
|
3604
|
+
"description": "Filter by channel ID",
|
|
3605
|
+
"name": "channel",
|
|
3606
|
+
"hasDynamicHelp": false,
|
|
3607
|
+
"multiple": false,
|
|
3608
|
+
"type": "option"
|
|
3609
|
+
},
|
|
3610
|
+
"send-status": {
|
|
3611
|
+
"description": "Filter by send status",
|
|
3612
|
+
"name": "send-status",
|
|
3613
|
+
"hasDynamicHelp": false,
|
|
3614
|
+
"multiple": false,
|
|
3615
|
+
"type": "option"
|
|
3616
|
+
},
|
|
3617
|
+
"type": {
|
|
3618
|
+
"description": "Broadcast type",
|
|
3619
|
+
"name": "type",
|
|
3620
|
+
"hasDynamicHelp": false,
|
|
3621
|
+
"multiple": false,
|
|
3622
|
+
"options": [
|
|
3623
|
+
"text",
|
|
3624
|
+
"image",
|
|
3625
|
+
"video",
|
|
3626
|
+
"audio",
|
|
3627
|
+
"document"
|
|
3628
|
+
],
|
|
3629
|
+
"type": "option"
|
|
3630
|
+
},
|
|
3631
|
+
"search": {
|
|
3632
|
+
"description": "Search broadcasts",
|
|
3633
|
+
"name": "search",
|
|
3634
|
+
"hasDynamicHelp": false,
|
|
3635
|
+
"multiple": false,
|
|
3636
|
+
"type": "option"
|
|
3637
|
+
},
|
|
3638
|
+
"test": {
|
|
3639
|
+
"description": "Filter test flag: 0 or 1",
|
|
3640
|
+
"name": "test",
|
|
3641
|
+
"hasDynamicHelp": false,
|
|
3642
|
+
"multiple": false,
|
|
3643
|
+
"options": [
|
|
3644
|
+
"0",
|
|
3645
|
+
"1"
|
|
3646
|
+
],
|
|
3647
|
+
"type": "option"
|
|
3648
3648
|
}
|
|
3649
3649
|
},
|
|
3650
3650
|
"hasDynamicHelp": false,
|
|
3651
3651
|
"hiddenAliases": [],
|
|
3652
|
-
"id": "
|
|
3652
|
+
"id": "broadcast:list",
|
|
3653
3653
|
"pluginAlias": "@instantkom/cli",
|
|
3654
3654
|
"pluginName": "@instantkom/cli",
|
|
3655
3655
|
"pluginType": "core",
|
|
@@ -3659,20 +3659,20 @@
|
|
|
3659
3659
|
"relativePath": [
|
|
3660
3660
|
"dist",
|
|
3661
3661
|
"commands",
|
|
3662
|
-
"
|
|
3663
|
-
"
|
|
3662
|
+
"broadcast",
|
|
3663
|
+
"list.js"
|
|
3664
3664
|
]
|
|
3665
3665
|
},
|
|
3666
|
-
"
|
|
3666
|
+
"broadcast:send": {
|
|
3667
3667
|
"aliases": [],
|
|
3668
3668
|
"args": {
|
|
3669
3669
|
"id": {
|
|
3670
|
-
"description": "
|
|
3670
|
+
"description": "Broadcast ID",
|
|
3671
3671
|
"name": "id",
|
|
3672
|
-
"required":
|
|
3672
|
+
"required": true
|
|
3673
3673
|
}
|
|
3674
3674
|
},
|
|
3675
|
-
"description": "
|
|
3675
|
+
"description": "Send a broadcast immediately",
|
|
3676
3676
|
"flags": {
|
|
3677
3677
|
"api-key": {
|
|
3678
3678
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3735,18 +3735,11 @@
|
|
|
3735
3735
|
"hasDynamicHelp": false,
|
|
3736
3736
|
"multiple": false,
|
|
3737
3737
|
"type": "option"
|
|
3738
|
-
},
|
|
3739
|
-
"period": {
|
|
3740
|
-
"description": "KPI period",
|
|
3741
|
-
"name": "period",
|
|
3742
|
-
"hasDynamicHelp": false,
|
|
3743
|
-
"multiple": false,
|
|
3744
|
-
"type": "option"
|
|
3745
3738
|
}
|
|
3746
3739
|
},
|
|
3747
3740
|
"hasDynamicHelp": false,
|
|
3748
3741
|
"hiddenAliases": [],
|
|
3749
|
-
"id": "
|
|
3742
|
+
"id": "broadcast:send",
|
|
3750
3743
|
"pluginAlias": "@instantkom/cli",
|
|
3751
3744
|
"pluginName": "@instantkom/cli",
|
|
3752
3745
|
"pluginType": "core",
|
|
@@ -3756,14 +3749,20 @@
|
|
|
3756
3749
|
"relativePath": [
|
|
3757
3750
|
"dist",
|
|
3758
3751
|
"commands",
|
|
3759
|
-
"
|
|
3760
|
-
"
|
|
3752
|
+
"broadcast",
|
|
3753
|
+
"send.js"
|
|
3761
3754
|
]
|
|
3762
3755
|
},
|
|
3763
|
-
"
|
|
3756
|
+
"broadcast:status": {
|
|
3764
3757
|
"aliases": [],
|
|
3765
|
-
"args": {
|
|
3766
|
-
|
|
3758
|
+
"args": {
|
|
3759
|
+
"id": {
|
|
3760
|
+
"description": "Broadcast ID",
|
|
3761
|
+
"name": "id",
|
|
3762
|
+
"required": true
|
|
3763
|
+
}
|
|
3764
|
+
},
|
|
3765
|
+
"description": "Show broadcast send status",
|
|
3767
3766
|
"flags": {
|
|
3768
3767
|
"api-key": {
|
|
3769
3768
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3801,65 +3800,28 @@
|
|
|
3801
3800
|
"helpGroup": "GLOBAL",
|
|
3802
3801
|
"name": "quiet",
|
|
3803
3802
|
"allowNo": false,
|
|
3804
|
-
"type": "boolean"
|
|
3805
|
-
},
|
|
3806
|
-
"no-color": {
|
|
3807
|
-
"description": "Disable color output",
|
|
3808
|
-
"helpGroup": "GLOBAL",
|
|
3809
|
-
"name": "no-color",
|
|
3810
|
-
"allowNo": false,
|
|
3811
|
-
"type": "boolean"
|
|
3812
|
-
},
|
|
3813
|
-
"profile": {
|
|
3814
|
-
"description": "Named configuration profile to use",
|
|
3815
|
-
"helpGroup": "GLOBAL",
|
|
3816
|
-
"name": "profile",
|
|
3817
|
-
"default": "default",
|
|
3818
|
-
"hasDynamicHelp": false,
|
|
3819
|
-
"multiple": false,
|
|
3820
|
-
"type": "option"
|
|
3821
|
-
},
|
|
3822
|
-
"api-url": {
|
|
3823
|
-
"description": "Override the API base URL (e.g. for staging)",
|
|
3824
|
-
"helpGroup": "GLOBAL",
|
|
3825
|
-
"name": "api-url",
|
|
3826
|
-
"hasDynamicHelp": false,
|
|
3827
|
-
"multiple": false,
|
|
3828
|
-
"type": "option"
|
|
3829
|
-
},
|
|
3830
|
-
"page": {
|
|
3831
|
-
"description": "Page number",
|
|
3832
|
-
"name": "page",
|
|
3833
|
-
"default": 1,
|
|
3834
|
-
"hasDynamicHelp": false,
|
|
3835
|
-
"multiple": false,
|
|
3836
|
-
"type": "option"
|
|
3837
|
-
},
|
|
3838
|
-
"limit": {
|
|
3839
|
-
"description": "Items per page",
|
|
3840
|
-
"name": "limit",
|
|
3841
|
-
"default": 20,
|
|
3842
|
-
"hasDynamicHelp": false,
|
|
3843
|
-
"multiple": false,
|
|
3844
|
-
"type": "option"
|
|
3845
|
-
},
|
|
3846
|
-
"status": {
|
|
3847
|
-
"description": "Filter by channel status",
|
|
3848
|
-
"name": "status",
|
|
3849
|
-
"hasDynamicHelp": false,
|
|
3850
|
-
"multiple": false,
|
|
3851
|
-
"type": "option"
|
|
3803
|
+
"type": "boolean"
|
|
3852
3804
|
},
|
|
3853
|
-
"
|
|
3854
|
-
"description": "
|
|
3855
|
-
"
|
|
3805
|
+
"no-color": {
|
|
3806
|
+
"description": "Disable color output",
|
|
3807
|
+
"helpGroup": "GLOBAL",
|
|
3808
|
+
"name": "no-color",
|
|
3809
|
+
"allowNo": false,
|
|
3810
|
+
"type": "boolean"
|
|
3811
|
+
},
|
|
3812
|
+
"profile": {
|
|
3813
|
+
"description": "Named configuration profile to use",
|
|
3814
|
+
"helpGroup": "GLOBAL",
|
|
3815
|
+
"name": "profile",
|
|
3816
|
+
"default": "default",
|
|
3856
3817
|
"hasDynamicHelp": false,
|
|
3857
3818
|
"multiple": false,
|
|
3858
3819
|
"type": "option"
|
|
3859
3820
|
},
|
|
3860
|
-
"
|
|
3861
|
-
"description": "
|
|
3862
|
-
"
|
|
3821
|
+
"api-url": {
|
|
3822
|
+
"description": "Override the API base URL (e.g. for staging)",
|
|
3823
|
+
"helpGroup": "GLOBAL",
|
|
3824
|
+
"name": "api-url",
|
|
3863
3825
|
"hasDynamicHelp": false,
|
|
3864
3826
|
"multiple": false,
|
|
3865
3827
|
"type": "option"
|
|
@@ -3867,7 +3829,7 @@
|
|
|
3867
3829
|
},
|
|
3868
3830
|
"hasDynamicHelp": false,
|
|
3869
3831
|
"hiddenAliases": [],
|
|
3870
|
-
"id": "
|
|
3832
|
+
"id": "broadcast:status",
|
|
3871
3833
|
"pluginAlias": "@instantkom/cli",
|
|
3872
3834
|
"pluginName": "@instantkom/cli",
|
|
3873
3835
|
"pluginType": "core",
|
|
@@ -3877,20 +3839,20 @@
|
|
|
3877
3839
|
"relativePath": [
|
|
3878
3840
|
"dist",
|
|
3879
3841
|
"commands",
|
|
3880
|
-
"
|
|
3881
|
-
"
|
|
3842
|
+
"broadcast",
|
|
3843
|
+
"status.js"
|
|
3882
3844
|
]
|
|
3883
3845
|
},
|
|
3884
|
-
"
|
|
3846
|
+
"broadcast:update": {
|
|
3885
3847
|
"aliases": [],
|
|
3886
3848
|
"args": {
|
|
3887
3849
|
"id": {
|
|
3888
|
-
"description": "
|
|
3850
|
+
"description": "Broadcast ID",
|
|
3889
3851
|
"name": "id",
|
|
3890
3852
|
"required": true
|
|
3891
3853
|
}
|
|
3892
3854
|
},
|
|
3893
|
-
"description": "Update a
|
|
3855
|
+
"description": "Update a broadcast",
|
|
3894
3856
|
"flags": {
|
|
3895
3857
|
"api-key": {
|
|
3896
3858
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -3954,23 +3916,61 @@
|
|
|
3954
3916
|
"multiple": false,
|
|
3955
3917
|
"type": "option"
|
|
3956
3918
|
},
|
|
3957
|
-
"
|
|
3958
|
-
"description": "
|
|
3959
|
-
"name": "
|
|
3919
|
+
"text": {
|
|
3920
|
+
"description": "Broadcast message text",
|
|
3921
|
+
"name": "text",
|
|
3960
3922
|
"hasDynamicHelp": false,
|
|
3961
3923
|
"multiple": false,
|
|
3962
3924
|
"type": "option"
|
|
3963
3925
|
},
|
|
3964
|
-
"status": {
|
|
3965
|
-
"description": "
|
|
3966
|
-
"name": "status",
|
|
3926
|
+
"send-status": {
|
|
3927
|
+
"description": "Send status",
|
|
3928
|
+
"name": "send-status",
|
|
3967
3929
|
"hasDynamicHelp": false,
|
|
3968
3930
|
"multiple": false,
|
|
3969
3931
|
"type": "option"
|
|
3970
3932
|
},
|
|
3971
|
-
"
|
|
3972
|
-
"description": "
|
|
3973
|
-
"name": "
|
|
3933
|
+
"scheduled-at": {
|
|
3934
|
+
"description": "Unix timestamp for scheduled send",
|
|
3935
|
+
"name": "scheduled-at",
|
|
3936
|
+
"hasDynamicHelp": false,
|
|
3937
|
+
"multiple": false,
|
|
3938
|
+
"type": "option"
|
|
3939
|
+
},
|
|
3940
|
+
"approved": {
|
|
3941
|
+
"description": "Mark as approved",
|
|
3942
|
+
"name": "approved",
|
|
3943
|
+
"allowNo": false,
|
|
3944
|
+
"type": "boolean"
|
|
3945
|
+
},
|
|
3946
|
+
"locked": {
|
|
3947
|
+
"description": "Mark as locked",
|
|
3948
|
+
"name": "locked",
|
|
3949
|
+
"allowNo": false,
|
|
3950
|
+
"type": "boolean"
|
|
3951
|
+
},
|
|
3952
|
+
"test": {
|
|
3953
|
+
"description": "Mark as test broadcast",
|
|
3954
|
+
"name": "test",
|
|
3955
|
+
"allowNo": false,
|
|
3956
|
+
"type": "boolean"
|
|
3957
|
+
},
|
|
3958
|
+
"template-id": {
|
|
3959
|
+
"description": "Template ID",
|
|
3960
|
+
"name": "template-id",
|
|
3961
|
+
"hasDynamicHelp": false,
|
|
3962
|
+
"multiple": false,
|
|
3963
|
+
"type": "option"
|
|
3964
|
+
},
|
|
3965
|
+
"remove-media": {
|
|
3966
|
+
"description": "Remove existing media",
|
|
3967
|
+
"name": "remove-media",
|
|
3968
|
+
"allowNo": false,
|
|
3969
|
+
"type": "boolean"
|
|
3970
|
+
},
|
|
3971
|
+
"header-footer": {
|
|
3972
|
+
"description": "Header/footer JSON array",
|
|
3973
|
+
"name": "header-footer",
|
|
3974
3974
|
"hasDynamicHelp": false,
|
|
3975
3975
|
"multiple": false,
|
|
3976
3976
|
"type": "option"
|
|
@@ -3985,7 +3985,7 @@
|
|
|
3985
3985
|
},
|
|
3986
3986
|
"hasDynamicHelp": false,
|
|
3987
3987
|
"hiddenAliases": [],
|
|
3988
|
-
"id": "
|
|
3988
|
+
"id": "broadcast:update",
|
|
3989
3989
|
"pluginAlias": "@instantkom/cli",
|
|
3990
3990
|
"pluginName": "@instantkom/cli",
|
|
3991
3991
|
"pluginType": "core",
|
|
@@ -3995,7 +3995,7 @@
|
|
|
3995
3995
|
"relativePath": [
|
|
3996
3996
|
"dist",
|
|
3997
3997
|
"commands",
|
|
3998
|
-
"
|
|
3998
|
+
"broadcast",
|
|
3999
3999
|
"update.js"
|
|
4000
4000
|
]
|
|
4001
4001
|
},
|
|
@@ -8150,10 +8150,10 @@
|
|
|
8150
8150
|
"update.js"
|
|
8151
8151
|
]
|
|
8152
8152
|
},
|
|
8153
|
-
"
|
|
8153
|
+
"tags:create": {
|
|
8154
8154
|
"aliases": [],
|
|
8155
8155
|
"args": {},
|
|
8156
|
-
"description": "Create a
|
|
8156
|
+
"description": "Create a tag",
|
|
8157
8157
|
"flags": {
|
|
8158
8158
|
"api-key": {
|
|
8159
8159
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8217,54 +8217,23 @@
|
|
|
8217
8217
|
"multiple": false,
|
|
8218
8218
|
"type": "option"
|
|
8219
8219
|
},
|
|
8220
|
-
"
|
|
8221
|
-
"description": "
|
|
8222
|
-
"name": "
|
|
8223
|
-
"required": true,
|
|
8224
|
-
"hasDynamicHelp": false,
|
|
8225
|
-
"multiple": false,
|
|
8226
|
-
"type": "option"
|
|
8227
|
-
},
|
|
8228
|
-
"first-name": {
|
|
8229
|
-
"description": "First name",
|
|
8230
|
-
"name": "first-name",
|
|
8231
|
-
"required": true,
|
|
8232
|
-
"hasDynamicHelp": false,
|
|
8233
|
-
"multiple": false,
|
|
8234
|
-
"type": "option"
|
|
8235
|
-
},
|
|
8236
|
-
"last-name": {
|
|
8237
|
-
"description": "Last name",
|
|
8238
|
-
"name": "last-name",
|
|
8239
|
-
"required": true,
|
|
8240
|
-
"hasDynamicHelp": false,
|
|
8241
|
-
"multiple": false,
|
|
8242
|
-
"type": "option"
|
|
8243
|
-
},
|
|
8244
|
-
"password": {
|
|
8245
|
-
"description": "Initial password",
|
|
8246
|
-
"name": "password",
|
|
8220
|
+
"name": {
|
|
8221
|
+
"description": "Tag name",
|
|
8222
|
+
"name": "name",
|
|
8247
8223
|
"required": true,
|
|
8248
8224
|
"hasDynamicHelp": false,
|
|
8249
8225
|
"multiple": false,
|
|
8250
8226
|
"type": "option"
|
|
8251
8227
|
},
|
|
8252
|
-
"
|
|
8253
|
-
"description": "
|
|
8254
|
-
"name": "
|
|
8255
|
-
"hasDynamicHelp": false,
|
|
8256
|
-
"multiple": false,
|
|
8257
|
-
"type": "option"
|
|
8258
|
-
},
|
|
8259
|
-
"company": {
|
|
8260
|
-
"description": "Company name",
|
|
8261
|
-
"name": "company",
|
|
8228
|
+
"description": {
|
|
8229
|
+
"description": "Tag description",
|
|
8230
|
+
"name": "description",
|
|
8262
8231
|
"hasDynamicHelp": false,
|
|
8263
8232
|
"multiple": false,
|
|
8264
8233
|
"type": "option"
|
|
8265
8234
|
},
|
|
8266
8235
|
"color": {
|
|
8267
|
-
"description": "
|
|
8236
|
+
"description": "Tag color as HEX",
|
|
8268
8237
|
"name": "color",
|
|
8269
8238
|
"hasDynamicHelp": false,
|
|
8270
8239
|
"multiple": false,
|
|
@@ -8287,7 +8256,7 @@
|
|
|
8287
8256
|
},
|
|
8288
8257
|
"hasDynamicHelp": false,
|
|
8289
8258
|
"hiddenAliases": [],
|
|
8290
|
-
"id": "
|
|
8259
|
+
"id": "tags:create",
|
|
8291
8260
|
"pluginAlias": "@instantkom/cli",
|
|
8292
8261
|
"pluginName": "@instantkom/cli",
|
|
8293
8262
|
"pluginType": "core",
|
|
@@ -8297,20 +8266,20 @@
|
|
|
8297
8266
|
"relativePath": [
|
|
8298
8267
|
"dist",
|
|
8299
8268
|
"commands",
|
|
8300
|
-
"
|
|
8269
|
+
"tags",
|
|
8301
8270
|
"create.js"
|
|
8302
8271
|
]
|
|
8303
8272
|
},
|
|
8304
|
-
"
|
|
8273
|
+
"tags:delete": {
|
|
8305
8274
|
"aliases": [],
|
|
8306
8275
|
"args": {
|
|
8307
8276
|
"id": {
|
|
8308
|
-
"description": "
|
|
8277
|
+
"description": "tag ID",
|
|
8309
8278
|
"name": "id",
|
|
8310
8279
|
"required": true
|
|
8311
8280
|
}
|
|
8312
8281
|
},
|
|
8313
|
-
"description": "Delete
|
|
8282
|
+
"description": "Delete tag",
|
|
8314
8283
|
"flags": {
|
|
8315
8284
|
"api-key": {
|
|
8316
8285
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8377,7 +8346,7 @@
|
|
|
8377
8346
|
},
|
|
8378
8347
|
"hasDynamicHelp": false,
|
|
8379
8348
|
"hiddenAliases": [],
|
|
8380
|
-
"id": "
|
|
8349
|
+
"id": "tags:delete",
|
|
8381
8350
|
"pluginAlias": "@instantkom/cli",
|
|
8382
8351
|
"pluginName": "@instantkom/cli",
|
|
8383
8352
|
"pluginType": "core",
|
|
@@ -8387,14 +8356,14 @@
|
|
|
8387
8356
|
"relativePath": [
|
|
8388
8357
|
"dist",
|
|
8389
8358
|
"commands",
|
|
8390
|
-
"
|
|
8359
|
+
"tags",
|
|
8391
8360
|
"delete.js"
|
|
8392
8361
|
]
|
|
8393
8362
|
},
|
|
8394
|
-
"
|
|
8363
|
+
"tags:export": {
|
|
8395
8364
|
"aliases": [],
|
|
8396
8365
|
"args": {},
|
|
8397
|
-
"description": "
|
|
8366
|
+
"description": "Export tags to a file",
|
|
8398
8367
|
"flags": {
|
|
8399
8368
|
"api-key": {
|
|
8400
8369
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8406,17 +8375,14 @@
|
|
|
8406
8375
|
"type": "option"
|
|
8407
8376
|
},
|
|
8408
8377
|
"format": {
|
|
8409
|
-
"description": "
|
|
8410
|
-
"helpGroup": "GLOBAL",
|
|
8378
|
+
"description": "Export format",
|
|
8411
8379
|
"name": "format",
|
|
8412
|
-
"default": "
|
|
8380
|
+
"default": "csv",
|
|
8413
8381
|
"hasDynamicHelp": false,
|
|
8414
8382
|
"multiple": false,
|
|
8415
8383
|
"options": [
|
|
8416
|
-
"
|
|
8417
|
-
"json"
|
|
8418
|
-
"yaml",
|
|
8419
|
-
"table"
|
|
8384
|
+
"csv",
|
|
8385
|
+
"json"
|
|
8420
8386
|
],
|
|
8421
8387
|
"type": "option"
|
|
8422
8388
|
},
|
|
@@ -8457,11 +8423,19 @@
|
|
|
8457
8423
|
"hasDynamicHelp": false,
|
|
8458
8424
|
"multiple": false,
|
|
8459
8425
|
"type": "option"
|
|
8426
|
+
},
|
|
8427
|
+
"file": {
|
|
8428
|
+
"description": "Output file path",
|
|
8429
|
+
"name": "file",
|
|
8430
|
+
"required": true,
|
|
8431
|
+
"hasDynamicHelp": false,
|
|
8432
|
+
"multiple": false,
|
|
8433
|
+
"type": "option"
|
|
8460
8434
|
}
|
|
8461
8435
|
},
|
|
8462
8436
|
"hasDynamicHelp": false,
|
|
8463
8437
|
"hiddenAliases": [],
|
|
8464
|
-
"id": "
|
|
8438
|
+
"id": "tags:export",
|
|
8465
8439
|
"pluginAlias": "@instantkom/cli",
|
|
8466
8440
|
"pluginName": "@instantkom/cli",
|
|
8467
8441
|
"pluginType": "core",
|
|
@@ -8471,14 +8445,20 @@
|
|
|
8471
8445
|
"relativePath": [
|
|
8472
8446
|
"dist",
|
|
8473
8447
|
"commands",
|
|
8474
|
-
"
|
|
8475
|
-
"
|
|
8448
|
+
"tags",
|
|
8449
|
+
"export.js"
|
|
8476
8450
|
]
|
|
8477
8451
|
},
|
|
8478
|
-
"tags:
|
|
8452
|
+
"tags:get": {
|
|
8479
8453
|
"aliases": [],
|
|
8480
|
-
"args": {
|
|
8481
|
-
|
|
8454
|
+
"args": {
|
|
8455
|
+
"id": {
|
|
8456
|
+
"description": "tag ID",
|
|
8457
|
+
"name": "id",
|
|
8458
|
+
"required": true
|
|
8459
|
+
}
|
|
8460
|
+
},
|
|
8461
|
+
"description": "Get tag by ID",
|
|
8482
8462
|
"flags": {
|
|
8483
8463
|
"api-key": {
|
|
8484
8464
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8541,47 +8521,11 @@
|
|
|
8541
8521
|
"hasDynamicHelp": false,
|
|
8542
8522
|
"multiple": false,
|
|
8543
8523
|
"type": "option"
|
|
8544
|
-
},
|
|
8545
|
-
"name": {
|
|
8546
|
-
"description": "Tag name",
|
|
8547
|
-
"name": "name",
|
|
8548
|
-
"required": true,
|
|
8549
|
-
"hasDynamicHelp": false,
|
|
8550
|
-
"multiple": false,
|
|
8551
|
-
"type": "option"
|
|
8552
|
-
},
|
|
8553
|
-
"description": {
|
|
8554
|
-
"description": "Tag description",
|
|
8555
|
-
"name": "description",
|
|
8556
|
-
"hasDynamicHelp": false,
|
|
8557
|
-
"multiple": false,
|
|
8558
|
-
"type": "option"
|
|
8559
|
-
},
|
|
8560
|
-
"color": {
|
|
8561
|
-
"description": "Tag color as HEX",
|
|
8562
|
-
"name": "color",
|
|
8563
|
-
"hasDynamicHelp": false,
|
|
8564
|
-
"multiple": false,
|
|
8565
|
-
"type": "option"
|
|
8566
|
-
},
|
|
8567
|
-
"folder": {
|
|
8568
|
-
"description": "Object folder ID",
|
|
8569
|
-
"name": "folder",
|
|
8570
|
-
"hasDynamicHelp": false,
|
|
8571
|
-
"multiple": false,
|
|
8572
|
-
"type": "option"
|
|
8573
|
-
},
|
|
8574
|
-
"data": {
|
|
8575
|
-
"description": "Additional JSON object payload",
|
|
8576
|
-
"name": "data",
|
|
8577
|
-
"hasDynamicHelp": false,
|
|
8578
|
-
"multiple": false,
|
|
8579
|
-
"type": "option"
|
|
8580
8524
|
}
|
|
8581
8525
|
},
|
|
8582
8526
|
"hasDynamicHelp": false,
|
|
8583
8527
|
"hiddenAliases": [],
|
|
8584
|
-
"id": "tags:
|
|
8528
|
+
"id": "tags:get",
|
|
8585
8529
|
"pluginAlias": "@instantkom/cli",
|
|
8586
8530
|
"pluginName": "@instantkom/cli",
|
|
8587
8531
|
"pluginType": "core",
|
|
@@ -8592,19 +8536,13 @@
|
|
|
8592
8536
|
"dist",
|
|
8593
8537
|
"commands",
|
|
8594
8538
|
"tags",
|
|
8595
|
-
"
|
|
8539
|
+
"get.js"
|
|
8596
8540
|
]
|
|
8597
8541
|
},
|
|
8598
|
-
"tags:
|
|
8542
|
+
"tags:import": {
|
|
8599
8543
|
"aliases": [],
|
|
8600
|
-
"args": {
|
|
8601
|
-
|
|
8602
|
-
"description": "tag ID",
|
|
8603
|
-
"name": "id",
|
|
8604
|
-
"required": true
|
|
8605
|
-
}
|
|
8606
|
-
},
|
|
8607
|
-
"description": "Delete tag",
|
|
8544
|
+
"args": {},
|
|
8545
|
+
"description": "Import tags from JSON",
|
|
8608
8546
|
"flags": {
|
|
8609
8547
|
"api-key": {
|
|
8610
8548
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8667,11 +8605,25 @@
|
|
|
8667
8605
|
"hasDynamicHelp": false,
|
|
8668
8606
|
"multiple": false,
|
|
8669
8607
|
"type": "option"
|
|
8608
|
+
},
|
|
8609
|
+
"file": {
|
|
8610
|
+
"description": "JSON file path",
|
|
8611
|
+
"name": "file",
|
|
8612
|
+
"required": true,
|
|
8613
|
+
"hasDynamicHelp": false,
|
|
8614
|
+
"multiple": false,
|
|
8615
|
+
"type": "option"
|
|
8616
|
+
},
|
|
8617
|
+
"skip-duplicates": {
|
|
8618
|
+
"description": "Skip duplicate tags",
|
|
8619
|
+
"name": "skip-duplicates",
|
|
8620
|
+
"allowNo": true,
|
|
8621
|
+
"type": "boolean"
|
|
8670
8622
|
}
|
|
8671
8623
|
},
|
|
8672
8624
|
"hasDynamicHelp": false,
|
|
8673
8625
|
"hiddenAliases": [],
|
|
8674
|
-
"id": "tags:
|
|
8626
|
+
"id": "tags:import",
|
|
8675
8627
|
"pluginAlias": "@instantkom/cli",
|
|
8676
8628
|
"pluginName": "@instantkom/cli",
|
|
8677
8629
|
"pluginType": "core",
|
|
@@ -8682,13 +8634,13 @@
|
|
|
8682
8634
|
"dist",
|
|
8683
8635
|
"commands",
|
|
8684
8636
|
"tags",
|
|
8685
|
-
"
|
|
8637
|
+
"import.js"
|
|
8686
8638
|
]
|
|
8687
8639
|
},
|
|
8688
|
-
"tags:
|
|
8640
|
+
"tags:list": {
|
|
8689
8641
|
"aliases": [],
|
|
8690
8642
|
"args": {},
|
|
8691
|
-
"description": "
|
|
8643
|
+
"description": "List tags",
|
|
8692
8644
|
"flags": {
|
|
8693
8645
|
"api-key": {
|
|
8694
8646
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8700,14 +8652,17 @@
|
|
|
8700
8652
|
"type": "option"
|
|
8701
8653
|
},
|
|
8702
8654
|
"format": {
|
|
8703
|
-
"description": "
|
|
8655
|
+
"description": "Output format: text, json, yaml, or table",
|
|
8656
|
+
"helpGroup": "GLOBAL",
|
|
8704
8657
|
"name": "format",
|
|
8705
|
-
"default": "
|
|
8658
|
+
"default": "text",
|
|
8706
8659
|
"hasDynamicHelp": false,
|
|
8707
8660
|
"multiple": false,
|
|
8708
8661
|
"options": [
|
|
8709
|
-
"
|
|
8710
|
-
"json"
|
|
8662
|
+
"text",
|
|
8663
|
+
"json",
|
|
8664
|
+
"yaml",
|
|
8665
|
+
"table"
|
|
8711
8666
|
],
|
|
8712
8667
|
"type": "option"
|
|
8713
8668
|
},
|
|
@@ -8749,10 +8704,32 @@
|
|
|
8749
8704
|
"multiple": false,
|
|
8750
8705
|
"type": "option"
|
|
8751
8706
|
},
|
|
8752
|
-
"
|
|
8753
|
-
"description": "
|
|
8754
|
-
"name": "
|
|
8755
|
-
"
|
|
8707
|
+
"page": {
|
|
8708
|
+
"description": "Page number",
|
|
8709
|
+
"name": "page",
|
|
8710
|
+
"default": 1,
|
|
8711
|
+
"hasDynamicHelp": false,
|
|
8712
|
+
"multiple": false,
|
|
8713
|
+
"type": "option"
|
|
8714
|
+
},
|
|
8715
|
+
"limit": {
|
|
8716
|
+
"description": "Items per page",
|
|
8717
|
+
"name": "limit",
|
|
8718
|
+
"default": 20,
|
|
8719
|
+
"hasDynamicHelp": false,
|
|
8720
|
+
"multiple": false,
|
|
8721
|
+
"type": "option"
|
|
8722
|
+
},
|
|
8723
|
+
"search": {
|
|
8724
|
+
"description": "Search by name",
|
|
8725
|
+
"name": "search",
|
|
8726
|
+
"hasDynamicHelp": false,
|
|
8727
|
+
"multiple": false,
|
|
8728
|
+
"type": "option"
|
|
8729
|
+
},
|
|
8730
|
+
"color": {
|
|
8731
|
+
"description": "Filter by color",
|
|
8732
|
+
"name": "color",
|
|
8756
8733
|
"hasDynamicHelp": false,
|
|
8757
8734
|
"multiple": false,
|
|
8758
8735
|
"type": "option"
|
|
@@ -8760,7 +8737,7 @@
|
|
|
8760
8737
|
},
|
|
8761
8738
|
"hasDynamicHelp": false,
|
|
8762
8739
|
"hiddenAliases": [],
|
|
8763
|
-
"id": "tags:
|
|
8740
|
+
"id": "tags:list",
|
|
8764
8741
|
"pluginAlias": "@instantkom/cli",
|
|
8765
8742
|
"pluginName": "@instantkom/cli",
|
|
8766
8743
|
"pluginType": "core",
|
|
@@ -8771,19 +8748,19 @@
|
|
|
8771
8748
|
"dist",
|
|
8772
8749
|
"commands",
|
|
8773
8750
|
"tags",
|
|
8774
|
-
"
|
|
8751
|
+
"list.js"
|
|
8775
8752
|
]
|
|
8776
8753
|
},
|
|
8777
|
-
"tags:
|
|
8754
|
+
"tags:update": {
|
|
8778
8755
|
"aliases": [],
|
|
8779
8756
|
"args": {
|
|
8780
8757
|
"id": {
|
|
8781
|
-
"description": "
|
|
8758
|
+
"description": "Tag ID",
|
|
8782
8759
|
"name": "id",
|
|
8783
8760
|
"required": true
|
|
8784
8761
|
}
|
|
8785
8762
|
},
|
|
8786
|
-
"description": "
|
|
8763
|
+
"description": "Update a tag",
|
|
8787
8764
|
"flags": {
|
|
8788
8765
|
"api-key": {
|
|
8789
8766
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8846,11 +8823,46 @@
|
|
|
8846
8823
|
"hasDynamicHelp": false,
|
|
8847
8824
|
"multiple": false,
|
|
8848
8825
|
"type": "option"
|
|
8826
|
+
},
|
|
8827
|
+
"name": {
|
|
8828
|
+
"description": "Tag name",
|
|
8829
|
+
"name": "name",
|
|
8830
|
+
"hasDynamicHelp": false,
|
|
8831
|
+
"multiple": false,
|
|
8832
|
+
"type": "option"
|
|
8833
|
+
},
|
|
8834
|
+
"description": {
|
|
8835
|
+
"description": "Tag description",
|
|
8836
|
+
"name": "description",
|
|
8837
|
+
"hasDynamicHelp": false,
|
|
8838
|
+
"multiple": false,
|
|
8839
|
+
"type": "option"
|
|
8840
|
+
},
|
|
8841
|
+
"color": {
|
|
8842
|
+
"description": "Tag color as HEX",
|
|
8843
|
+
"name": "color",
|
|
8844
|
+
"hasDynamicHelp": false,
|
|
8845
|
+
"multiple": false,
|
|
8846
|
+
"type": "option"
|
|
8847
|
+
},
|
|
8848
|
+
"folder": {
|
|
8849
|
+
"description": "Object folder ID",
|
|
8850
|
+
"name": "folder",
|
|
8851
|
+
"hasDynamicHelp": false,
|
|
8852
|
+
"multiple": false,
|
|
8853
|
+
"type": "option"
|
|
8854
|
+
},
|
|
8855
|
+
"data": {
|
|
8856
|
+
"description": "Additional JSON object payload",
|
|
8857
|
+
"name": "data",
|
|
8858
|
+
"hasDynamicHelp": false,
|
|
8859
|
+
"multiple": false,
|
|
8860
|
+
"type": "option"
|
|
8849
8861
|
}
|
|
8850
8862
|
},
|
|
8851
8863
|
"hasDynamicHelp": false,
|
|
8852
8864
|
"hiddenAliases": [],
|
|
8853
|
-
"id": "tags:
|
|
8865
|
+
"id": "tags:update",
|
|
8854
8866
|
"pluginAlias": "@instantkom/cli",
|
|
8855
8867
|
"pluginName": "@instantkom/cli",
|
|
8856
8868
|
"pluginType": "core",
|
|
@@ -8861,13 +8873,13 @@
|
|
|
8861
8873
|
"dist",
|
|
8862
8874
|
"commands",
|
|
8863
8875
|
"tags",
|
|
8864
|
-
"
|
|
8876
|
+
"update.js"
|
|
8865
8877
|
]
|
|
8866
8878
|
},
|
|
8867
|
-
"tags:import": {
|
|
8879
|
+
"tags:validate-import": {
|
|
8868
8880
|
"aliases": [],
|
|
8869
8881
|
"args": {},
|
|
8870
|
-
"description": "
|
|
8882
|
+
"description": "Validate tags import JSON",
|
|
8871
8883
|
"flags": {
|
|
8872
8884
|
"api-key": {
|
|
8873
8885
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -8938,17 +8950,11 @@
|
|
|
8938
8950
|
"hasDynamicHelp": false,
|
|
8939
8951
|
"multiple": false,
|
|
8940
8952
|
"type": "option"
|
|
8941
|
-
},
|
|
8942
|
-
"skip-duplicates": {
|
|
8943
|
-
"description": "Skip duplicate tags",
|
|
8944
|
-
"name": "skip-duplicates",
|
|
8945
|
-
"allowNo": true,
|
|
8946
|
-
"type": "boolean"
|
|
8947
8953
|
}
|
|
8948
8954
|
},
|
|
8949
8955
|
"hasDynamicHelp": false,
|
|
8950
8956
|
"hiddenAliases": [],
|
|
8951
|
-
"id": "tags:import",
|
|
8957
|
+
"id": "tags:validate-import",
|
|
8952
8958
|
"pluginAlias": "@instantkom/cli",
|
|
8953
8959
|
"pluginName": "@instantkom/cli",
|
|
8954
8960
|
"pluginType": "core",
|
|
@@ -8959,13 +8965,13 @@
|
|
|
8959
8965
|
"dist",
|
|
8960
8966
|
"commands",
|
|
8961
8967
|
"tags",
|
|
8962
|
-
"import.js"
|
|
8968
|
+
"validate-import.js"
|
|
8963
8969
|
]
|
|
8964
8970
|
},
|
|
8965
|
-
"
|
|
8971
|
+
"team:create": {
|
|
8966
8972
|
"aliases": [],
|
|
8967
8973
|
"args": {},
|
|
8968
|
-
"description": "
|
|
8974
|
+
"description": "Create a team member",
|
|
8969
8975
|
"flags": {
|
|
8970
8976
|
"api-key": {
|
|
8971
8977
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -9029,40 +9035,77 @@
|
|
|
9029
9035
|
"multiple": false,
|
|
9030
9036
|
"type": "option"
|
|
9031
9037
|
},
|
|
9032
|
-
"
|
|
9033
|
-
"description": "
|
|
9034
|
-
"name": "
|
|
9035
|
-
"
|
|
9038
|
+
"email": {
|
|
9039
|
+
"description": "Email address",
|
|
9040
|
+
"name": "email",
|
|
9041
|
+
"required": true,
|
|
9036
9042
|
"hasDynamicHelp": false,
|
|
9037
9043
|
"multiple": false,
|
|
9038
9044
|
"type": "option"
|
|
9039
9045
|
},
|
|
9040
|
-
"
|
|
9041
|
-
"description": "
|
|
9042
|
-
"name": "
|
|
9043
|
-
"
|
|
9046
|
+
"first-name": {
|
|
9047
|
+
"description": "First name",
|
|
9048
|
+
"name": "first-name",
|
|
9049
|
+
"required": true,
|
|
9044
9050
|
"hasDynamicHelp": false,
|
|
9045
9051
|
"multiple": false,
|
|
9046
9052
|
"type": "option"
|
|
9047
9053
|
},
|
|
9048
|
-
"
|
|
9049
|
-
"description": "
|
|
9050
|
-
"name": "
|
|
9054
|
+
"last-name": {
|
|
9055
|
+
"description": "Last name",
|
|
9056
|
+
"name": "last-name",
|
|
9057
|
+
"required": true,
|
|
9058
|
+
"hasDynamicHelp": false,
|
|
9059
|
+
"multiple": false,
|
|
9060
|
+
"type": "option"
|
|
9061
|
+
},
|
|
9062
|
+
"password": {
|
|
9063
|
+
"description": "Initial password",
|
|
9064
|
+
"name": "password",
|
|
9065
|
+
"required": true,
|
|
9066
|
+
"hasDynamicHelp": false,
|
|
9067
|
+
"multiple": false,
|
|
9068
|
+
"type": "option"
|
|
9069
|
+
},
|
|
9070
|
+
"phone": {
|
|
9071
|
+
"description": "Phone number",
|
|
9072
|
+
"name": "phone",
|
|
9073
|
+
"hasDynamicHelp": false,
|
|
9074
|
+
"multiple": false,
|
|
9075
|
+
"type": "option"
|
|
9076
|
+
},
|
|
9077
|
+
"company": {
|
|
9078
|
+
"description": "Company name",
|
|
9079
|
+
"name": "company",
|
|
9051
9080
|
"hasDynamicHelp": false,
|
|
9052
9081
|
"multiple": false,
|
|
9053
9082
|
"type": "option"
|
|
9054
9083
|
},
|
|
9055
9084
|
"color": {
|
|
9056
|
-
"description": "
|
|
9085
|
+
"description": "Color as HEX",
|
|
9057
9086
|
"name": "color",
|
|
9058
9087
|
"hasDynamicHelp": false,
|
|
9059
9088
|
"multiple": false,
|
|
9060
9089
|
"type": "option"
|
|
9090
|
+
},
|
|
9091
|
+
"folder": {
|
|
9092
|
+
"description": "Object folder ID",
|
|
9093
|
+
"name": "folder",
|
|
9094
|
+
"hasDynamicHelp": false,
|
|
9095
|
+
"multiple": false,
|
|
9096
|
+
"type": "option"
|
|
9097
|
+
},
|
|
9098
|
+
"data": {
|
|
9099
|
+
"description": "Additional JSON object payload",
|
|
9100
|
+
"name": "data",
|
|
9101
|
+
"hasDynamicHelp": false,
|
|
9102
|
+
"multiple": false,
|
|
9103
|
+
"type": "option"
|
|
9061
9104
|
}
|
|
9062
9105
|
},
|
|
9063
9106
|
"hasDynamicHelp": false,
|
|
9064
9107
|
"hiddenAliases": [],
|
|
9065
|
-
"id": "
|
|
9108
|
+
"id": "team:create",
|
|
9066
9109
|
"pluginAlias": "@instantkom/cli",
|
|
9067
9110
|
"pluginName": "@instantkom/cli",
|
|
9068
9111
|
"pluginType": "core",
|
|
@@ -9072,20 +9115,20 @@
|
|
|
9072
9115
|
"relativePath": [
|
|
9073
9116
|
"dist",
|
|
9074
9117
|
"commands",
|
|
9075
|
-
"
|
|
9076
|
-
"
|
|
9118
|
+
"team",
|
|
9119
|
+
"create.js"
|
|
9077
9120
|
]
|
|
9078
9121
|
},
|
|
9079
|
-
"
|
|
9122
|
+
"team:delete": {
|
|
9080
9123
|
"aliases": [],
|
|
9081
9124
|
"args": {
|
|
9082
9125
|
"id": {
|
|
9083
|
-
"description": "
|
|
9126
|
+
"description": "Team member ID",
|
|
9084
9127
|
"name": "id",
|
|
9085
9128
|
"required": true
|
|
9086
9129
|
}
|
|
9087
9130
|
},
|
|
9088
|
-
"description": "
|
|
9131
|
+
"description": "Delete a team member",
|
|
9089
9132
|
"flags": {
|
|
9090
9133
|
"api-key": {
|
|
9091
9134
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -9148,46 +9191,11 @@
|
|
|
9148
9191
|
"hasDynamicHelp": false,
|
|
9149
9192
|
"multiple": false,
|
|
9150
9193
|
"type": "option"
|
|
9151
|
-
},
|
|
9152
|
-
"name": {
|
|
9153
|
-
"description": "Tag name",
|
|
9154
|
-
"name": "name",
|
|
9155
|
-
"hasDynamicHelp": false,
|
|
9156
|
-
"multiple": false,
|
|
9157
|
-
"type": "option"
|
|
9158
|
-
},
|
|
9159
|
-
"description": {
|
|
9160
|
-
"description": "Tag description",
|
|
9161
|
-
"name": "description",
|
|
9162
|
-
"hasDynamicHelp": false,
|
|
9163
|
-
"multiple": false,
|
|
9164
|
-
"type": "option"
|
|
9165
|
-
},
|
|
9166
|
-
"color": {
|
|
9167
|
-
"description": "Tag color as HEX",
|
|
9168
|
-
"name": "color",
|
|
9169
|
-
"hasDynamicHelp": false,
|
|
9170
|
-
"multiple": false,
|
|
9171
|
-
"type": "option"
|
|
9172
|
-
},
|
|
9173
|
-
"folder": {
|
|
9174
|
-
"description": "Object folder ID",
|
|
9175
|
-
"name": "folder",
|
|
9176
|
-
"hasDynamicHelp": false,
|
|
9177
|
-
"multiple": false,
|
|
9178
|
-
"type": "option"
|
|
9179
|
-
},
|
|
9180
|
-
"data": {
|
|
9181
|
-
"description": "Additional JSON object payload",
|
|
9182
|
-
"name": "data",
|
|
9183
|
-
"hasDynamicHelp": false,
|
|
9184
|
-
"multiple": false,
|
|
9185
|
-
"type": "option"
|
|
9186
9194
|
}
|
|
9187
9195
|
},
|
|
9188
9196
|
"hasDynamicHelp": false,
|
|
9189
9197
|
"hiddenAliases": [],
|
|
9190
|
-
"id": "
|
|
9198
|
+
"id": "team:delete",
|
|
9191
9199
|
"pluginAlias": "@instantkom/cli",
|
|
9192
9200
|
"pluginName": "@instantkom/cli",
|
|
9193
9201
|
"pluginType": "core",
|
|
@@ -9197,14 +9205,14 @@
|
|
|
9197
9205
|
"relativePath": [
|
|
9198
9206
|
"dist",
|
|
9199
9207
|
"commands",
|
|
9200
|
-
"
|
|
9201
|
-
"
|
|
9208
|
+
"team",
|
|
9209
|
+
"delete.js"
|
|
9202
9210
|
]
|
|
9203
9211
|
},
|
|
9204
|
-
"
|
|
9212
|
+
"team:list": {
|
|
9205
9213
|
"aliases": [],
|
|
9206
9214
|
"args": {},
|
|
9207
|
-
"description": "
|
|
9215
|
+
"description": "List team members",
|
|
9208
9216
|
"flags": {
|
|
9209
9217
|
"api-key": {
|
|
9210
9218
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -9267,19 +9275,11 @@
|
|
|
9267
9275
|
"hasDynamicHelp": false,
|
|
9268
9276
|
"multiple": false,
|
|
9269
9277
|
"type": "option"
|
|
9270
|
-
},
|
|
9271
|
-
"file": {
|
|
9272
|
-
"description": "JSON file path",
|
|
9273
|
-
"name": "file",
|
|
9274
|
-
"required": true,
|
|
9275
|
-
"hasDynamicHelp": false,
|
|
9276
|
-
"multiple": false,
|
|
9277
|
-
"type": "option"
|
|
9278
9278
|
}
|
|
9279
9279
|
},
|
|
9280
9280
|
"hasDynamicHelp": false,
|
|
9281
9281
|
"hiddenAliases": [],
|
|
9282
|
-
"id": "
|
|
9282
|
+
"id": "team:list",
|
|
9283
9283
|
"pluginAlias": "@instantkom/cli",
|
|
9284
9284
|
"pluginName": "@instantkom/cli",
|
|
9285
9285
|
"pluginType": "core",
|
|
@@ -9288,9 +9288,9 @@
|
|
|
9288
9288
|
"isESM": true,
|
|
9289
9289
|
"relativePath": [
|
|
9290
9290
|
"dist",
|
|
9291
|
-
"commands",
|
|
9292
|
-
"
|
|
9293
|
-
"
|
|
9291
|
+
"commands",
|
|
9292
|
+
"team",
|
|
9293
|
+
"list.js"
|
|
9294
9294
|
]
|
|
9295
9295
|
},
|
|
9296
9296
|
"templates:create": {
|
|
@@ -11323,6 +11323,110 @@
|
|
|
11323
11323
|
"list.js"
|
|
11324
11324
|
]
|
|
11325
11325
|
},
|
|
11326
|
+
"tickets:reply": {
|
|
11327
|
+
"aliases": [],
|
|
11328
|
+
"args": {
|
|
11329
|
+
"id": {
|
|
11330
|
+
"description": "Ticket ID",
|
|
11331
|
+
"name": "id",
|
|
11332
|
+
"required": true
|
|
11333
|
+
}
|
|
11334
|
+
},
|
|
11335
|
+
"description": "Send a real support reply on a ticket. Delivers the message to the customer and records it in both the ticket history and the Nachrichtenprotokoll. Provide raw body text only; the ticket system auto-prepends the personalised salutation and auto-appends the localised footer for email-channel tickets. Adding your own greetings causes duplicated headers/footers.",
|
|
11336
|
+
"flags": {
|
|
11337
|
+
"api-key": {
|
|
11338
|
+
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
11339
|
+
"env": "IKM_API_KEY",
|
|
11340
|
+
"helpGroup": "GLOBAL",
|
|
11341
|
+
"name": "api-key",
|
|
11342
|
+
"hasDynamicHelp": false,
|
|
11343
|
+
"multiple": false,
|
|
11344
|
+
"type": "option"
|
|
11345
|
+
},
|
|
11346
|
+
"format": {
|
|
11347
|
+
"description": "Output format: text, json, yaml, or table",
|
|
11348
|
+
"helpGroup": "GLOBAL",
|
|
11349
|
+
"name": "format",
|
|
11350
|
+
"default": "text",
|
|
11351
|
+
"hasDynamicHelp": false,
|
|
11352
|
+
"multiple": false,
|
|
11353
|
+
"options": [
|
|
11354
|
+
"text",
|
|
11355
|
+
"json",
|
|
11356
|
+
"yaml",
|
|
11357
|
+
"table"
|
|
11358
|
+
],
|
|
11359
|
+
"type": "option"
|
|
11360
|
+
},
|
|
11361
|
+
"json": {
|
|
11362
|
+
"description": "Output in JSON format (alias for --format=json)",
|
|
11363
|
+
"helpGroup": "GLOBAL",
|
|
11364
|
+
"name": "json",
|
|
11365
|
+
"allowNo": false,
|
|
11366
|
+
"type": "boolean"
|
|
11367
|
+
},
|
|
11368
|
+
"quiet": {
|
|
11369
|
+
"description": "Suppress all output except errors",
|
|
11370
|
+
"helpGroup": "GLOBAL",
|
|
11371
|
+
"name": "quiet",
|
|
11372
|
+
"allowNo": false,
|
|
11373
|
+
"type": "boolean"
|
|
11374
|
+
},
|
|
11375
|
+
"no-color": {
|
|
11376
|
+
"description": "Disable color output",
|
|
11377
|
+
"helpGroup": "GLOBAL",
|
|
11378
|
+
"name": "no-color",
|
|
11379
|
+
"allowNo": false,
|
|
11380
|
+
"type": "boolean"
|
|
11381
|
+
},
|
|
11382
|
+
"profile": {
|
|
11383
|
+
"description": "Named configuration profile to use",
|
|
11384
|
+
"helpGroup": "GLOBAL",
|
|
11385
|
+
"name": "profile",
|
|
11386
|
+
"default": "default",
|
|
11387
|
+
"hasDynamicHelp": false,
|
|
11388
|
+
"multiple": false,
|
|
11389
|
+
"type": "option"
|
|
11390
|
+
},
|
|
11391
|
+
"api-url": {
|
|
11392
|
+
"description": "Override the API base URL (e.g. for staging)",
|
|
11393
|
+
"helpGroup": "GLOBAL",
|
|
11394
|
+
"name": "api-url",
|
|
11395
|
+
"hasDynamicHelp": false,
|
|
11396
|
+
"multiple": false,
|
|
11397
|
+
"type": "option"
|
|
11398
|
+
},
|
|
11399
|
+
"message": {
|
|
11400
|
+
"description": "Reply body (raw text, no salutation or sign-off)",
|
|
11401
|
+
"name": "message",
|
|
11402
|
+
"required": true,
|
|
11403
|
+
"hasDynamicHelp": false,
|
|
11404
|
+
"multiple": false,
|
|
11405
|
+
"type": "option"
|
|
11406
|
+
},
|
|
11407
|
+
"close": {
|
|
11408
|
+
"description": "Close the ticket after sending the reply",
|
|
11409
|
+
"name": "close",
|
|
11410
|
+
"allowNo": false,
|
|
11411
|
+
"type": "boolean"
|
|
11412
|
+
}
|
|
11413
|
+
},
|
|
11414
|
+
"hasDynamicHelp": false,
|
|
11415
|
+
"hiddenAliases": [],
|
|
11416
|
+
"id": "tickets:reply",
|
|
11417
|
+
"pluginAlias": "@instantkom/cli",
|
|
11418
|
+
"pluginName": "@instantkom/cli",
|
|
11419
|
+
"pluginType": "core",
|
|
11420
|
+
"strict": true,
|
|
11421
|
+
"enableJsonFlag": false,
|
|
11422
|
+
"isESM": true,
|
|
11423
|
+
"relativePath": [
|
|
11424
|
+
"dist",
|
|
11425
|
+
"commands",
|
|
11426
|
+
"tickets",
|
|
11427
|
+
"reply.js"
|
|
11428
|
+
]
|
|
11429
|
+
},
|
|
11326
11430
|
"tickets:update": {
|
|
11327
11431
|
"aliases": [],
|
|
11328
11432
|
"args": {
|
|
@@ -11433,7 +11537,7 @@
|
|
|
11433
11537
|
"type": "option"
|
|
11434
11538
|
},
|
|
11435
11539
|
"notify": {
|
|
11436
|
-
"description": "
|
|
11540
|
+
"description": "Trigger the legacy notification chain for transitions that have one. On --assigned-to change: fires TICKET_ASSIGN (assignee email plus optional customer reply via tickets_assign_reply_sts). On --status closed transition: fires TICKET_CLOSE (optional customer reply via tickets_close_reply_sts). Defaults to true. Use --no-notify for silent updates.",
|
|
11437
11541
|
"name": "notify",
|
|
11438
11542
|
"allowNo": true,
|
|
11439
11543
|
"type": "boolean"
|
|
@@ -13400,7 +13504,7 @@
|
|
|
13400
13504
|
"remove.js"
|
|
13401
13505
|
]
|
|
13402
13506
|
},
|
|
13403
|
-
"contacts:
|
|
13507
|
+
"contacts:custom-fields:delete-value": {
|
|
13404
13508
|
"aliases": [],
|
|
13405
13509
|
"args": {
|
|
13406
13510
|
"contactId": {
|
|
@@ -13408,13 +13512,13 @@
|
|
|
13408
13512
|
"name": "contactId",
|
|
13409
13513
|
"required": true
|
|
13410
13514
|
},
|
|
13411
|
-
"
|
|
13412
|
-
"description": "
|
|
13413
|
-
"name": "
|
|
13515
|
+
"fieldId": {
|
|
13516
|
+
"description": "Custom field ID",
|
|
13517
|
+
"name": "fieldId",
|
|
13414
13518
|
"required": true
|
|
13415
13519
|
}
|
|
13416
13520
|
},
|
|
13417
|
-
"description": "
|
|
13521
|
+
"description": "Delete one custom field value from a contact",
|
|
13418
13522
|
"flags": {
|
|
13419
13523
|
"api-key": {
|
|
13420
13524
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13481,7 +13585,7 @@
|
|
|
13481
13585
|
},
|
|
13482
13586
|
"hasDynamicHelp": false,
|
|
13483
13587
|
"hiddenAliases": [],
|
|
13484
|
-
"id": "contacts:
|
|
13588
|
+
"id": "contacts:custom-fields:delete-value",
|
|
13485
13589
|
"pluginAlias": "@instantkom/cli",
|
|
13486
13590
|
"pluginName": "@instantkom/cli",
|
|
13487
13591
|
"pluginType": "core",
|
|
@@ -13492,11 +13596,11 @@
|
|
|
13492
13596
|
"dist",
|
|
13493
13597
|
"commands",
|
|
13494
13598
|
"contacts",
|
|
13495
|
-
"
|
|
13496
|
-
"
|
|
13599
|
+
"custom-fields",
|
|
13600
|
+
"delete-value.js"
|
|
13497
13601
|
]
|
|
13498
13602
|
},
|
|
13499
|
-
"contacts:
|
|
13603
|
+
"contacts:custom-fields:list": {
|
|
13500
13604
|
"aliases": [],
|
|
13501
13605
|
"args": {
|
|
13502
13606
|
"contactId": {
|
|
@@ -13505,7 +13609,7 @@
|
|
|
13505
13609
|
"required": true
|
|
13506
13610
|
}
|
|
13507
13611
|
},
|
|
13508
|
-
"description": "List
|
|
13612
|
+
"description": "List custom field values for a contact",
|
|
13509
13613
|
"flags": {
|
|
13510
13614
|
"api-key": {
|
|
13511
13615
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13572,7 +13676,7 @@
|
|
|
13572
13676
|
},
|
|
13573
13677
|
"hasDynamicHelp": false,
|
|
13574
13678
|
"hiddenAliases": [],
|
|
13575
|
-
"id": "contacts:
|
|
13679
|
+
"id": "contacts:custom-fields:list",
|
|
13576
13680
|
"pluginAlias": "@instantkom/cli",
|
|
13577
13681
|
"pluginName": "@instantkom/cli",
|
|
13578
13682
|
"pluginType": "core",
|
|
@@ -13583,11 +13687,11 @@
|
|
|
13583
13687
|
"dist",
|
|
13584
13688
|
"commands",
|
|
13585
13689
|
"contacts",
|
|
13586
|
-
"
|
|
13690
|
+
"custom-fields",
|
|
13587
13691
|
"list.js"
|
|
13588
13692
|
]
|
|
13589
13693
|
},
|
|
13590
|
-
"contacts:
|
|
13694
|
+
"contacts:custom-fields:set-value": {
|
|
13591
13695
|
"aliases": [],
|
|
13592
13696
|
"args": {
|
|
13593
13697
|
"contactId": {
|
|
@@ -13595,13 +13699,13 @@
|
|
|
13595
13699
|
"name": "contactId",
|
|
13596
13700
|
"required": true
|
|
13597
13701
|
},
|
|
13598
|
-
"
|
|
13599
|
-
"description": "
|
|
13600
|
-
"name": "
|
|
13702
|
+
"fieldId": {
|
|
13703
|
+
"description": "Custom field ID",
|
|
13704
|
+
"name": "fieldId",
|
|
13601
13705
|
"required": true
|
|
13602
13706
|
}
|
|
13603
13707
|
},
|
|
13604
|
-
"description": "
|
|
13708
|
+
"description": "Set one custom field value for a contact",
|
|
13605
13709
|
"flags": {
|
|
13606
13710
|
"api-key": {
|
|
13607
13711
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13664,11 +13768,19 @@
|
|
|
13664
13768
|
"hasDynamicHelp": false,
|
|
13665
13769
|
"multiple": false,
|
|
13666
13770
|
"type": "option"
|
|
13771
|
+
},
|
|
13772
|
+
"value": {
|
|
13773
|
+
"description": "Custom field value",
|
|
13774
|
+
"name": "value",
|
|
13775
|
+
"required": true,
|
|
13776
|
+
"hasDynamicHelp": false,
|
|
13777
|
+
"multiple": false,
|
|
13778
|
+
"type": "option"
|
|
13667
13779
|
}
|
|
13668
13780
|
},
|
|
13669
13781
|
"hasDynamicHelp": false,
|
|
13670
13782
|
"hiddenAliases": [],
|
|
13671
|
-
"id": "contacts:
|
|
13783
|
+
"id": "contacts:custom-fields:set-value",
|
|
13672
13784
|
"pluginAlias": "@instantkom/cli",
|
|
13673
13785
|
"pluginName": "@instantkom/cli",
|
|
13674
13786
|
"pluginType": "core",
|
|
@@ -13679,25 +13791,20 @@
|
|
|
13679
13791
|
"dist",
|
|
13680
13792
|
"commands",
|
|
13681
13793
|
"contacts",
|
|
13682
|
-
"
|
|
13683
|
-
"
|
|
13794
|
+
"custom-fields",
|
|
13795
|
+
"set-value.js"
|
|
13684
13796
|
]
|
|
13685
13797
|
},
|
|
13686
|
-
"contacts:custom-fields:
|
|
13798
|
+
"contacts:custom-fields:set": {
|
|
13687
13799
|
"aliases": [],
|
|
13688
13800
|
"args": {
|
|
13689
13801
|
"contactId": {
|
|
13690
13802
|
"description": "Contact ID",
|
|
13691
13803
|
"name": "contactId",
|
|
13692
13804
|
"required": true
|
|
13693
|
-
},
|
|
13694
|
-
"fieldId": {
|
|
13695
|
-
"description": "Custom field ID",
|
|
13696
|
-
"name": "fieldId",
|
|
13697
|
-
"required": true
|
|
13698
13805
|
}
|
|
13699
13806
|
},
|
|
13700
|
-
"description": "
|
|
13807
|
+
"description": "Set multiple custom field values for a contact",
|
|
13701
13808
|
"flags": {
|
|
13702
13809
|
"api-key": {
|
|
13703
13810
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13760,11 +13867,32 @@
|
|
|
13760
13867
|
"hasDynamicHelp": false,
|
|
13761
13868
|
"multiple": false,
|
|
13762
13869
|
"type": "option"
|
|
13870
|
+
},
|
|
13871
|
+
"values": {
|
|
13872
|
+
"description": "JSON object with field keys as property names",
|
|
13873
|
+
"name": "values",
|
|
13874
|
+
"hasDynamicHelp": false,
|
|
13875
|
+
"multiple": false,
|
|
13876
|
+
"type": "option"
|
|
13877
|
+
},
|
|
13878
|
+
"file": {
|
|
13879
|
+
"description": "Path to a JSON file with field keys as property names",
|
|
13880
|
+
"name": "file",
|
|
13881
|
+
"hasDynamicHelp": false,
|
|
13882
|
+
"multiple": false,
|
|
13883
|
+
"type": "option"
|
|
13884
|
+
},
|
|
13885
|
+
"data": {
|
|
13886
|
+
"description": "Additional JSON object payload",
|
|
13887
|
+
"name": "data",
|
|
13888
|
+
"hasDynamicHelp": false,
|
|
13889
|
+
"multiple": false,
|
|
13890
|
+
"type": "option"
|
|
13763
13891
|
}
|
|
13764
13892
|
},
|
|
13765
13893
|
"hasDynamicHelp": false,
|
|
13766
13894
|
"hiddenAliases": [],
|
|
13767
|
-
"id": "contacts:custom-fields:
|
|
13895
|
+
"id": "contacts:custom-fields:set",
|
|
13768
13896
|
"pluginAlias": "@instantkom/cli",
|
|
13769
13897
|
"pluginName": "@instantkom/cli",
|
|
13770
13898
|
"pluginType": "core",
|
|
@@ -13776,19 +13904,24 @@
|
|
|
13776
13904
|
"commands",
|
|
13777
13905
|
"contacts",
|
|
13778
13906
|
"custom-fields",
|
|
13779
|
-
"
|
|
13907
|
+
"set.js"
|
|
13780
13908
|
]
|
|
13781
13909
|
},
|
|
13782
|
-
"contacts:
|
|
13910
|
+
"contacts:tags:add": {
|
|
13783
13911
|
"aliases": [],
|
|
13784
13912
|
"args": {
|
|
13785
13913
|
"contactId": {
|
|
13786
13914
|
"description": "Contact ID",
|
|
13787
13915
|
"name": "contactId",
|
|
13788
13916
|
"required": true
|
|
13917
|
+
},
|
|
13918
|
+
"tagId": {
|
|
13919
|
+
"description": "Tag ID",
|
|
13920
|
+
"name": "tagId",
|
|
13921
|
+
"required": true
|
|
13789
13922
|
}
|
|
13790
13923
|
},
|
|
13791
|
-
"description": "
|
|
13924
|
+
"description": "Assign a tag to a contact",
|
|
13792
13925
|
"flags": {
|
|
13793
13926
|
"api-key": {
|
|
13794
13927
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13855,7 +13988,7 @@
|
|
|
13855
13988
|
},
|
|
13856
13989
|
"hasDynamicHelp": false,
|
|
13857
13990
|
"hiddenAliases": [],
|
|
13858
|
-
"id": "contacts:
|
|
13991
|
+
"id": "contacts:tags:add",
|
|
13859
13992
|
"pluginAlias": "@instantkom/cli",
|
|
13860
13993
|
"pluginName": "@instantkom/cli",
|
|
13861
13994
|
"pluginType": "core",
|
|
@@ -13866,25 +13999,20 @@
|
|
|
13866
13999
|
"dist",
|
|
13867
14000
|
"commands",
|
|
13868
14001
|
"contacts",
|
|
13869
|
-
"
|
|
13870
|
-
"
|
|
14002
|
+
"tags",
|
|
14003
|
+
"add.js"
|
|
13871
14004
|
]
|
|
13872
14005
|
},
|
|
13873
|
-
"contacts:
|
|
14006
|
+
"contacts:tags:list": {
|
|
13874
14007
|
"aliases": [],
|
|
13875
14008
|
"args": {
|
|
13876
14009
|
"contactId": {
|
|
13877
14010
|
"description": "Contact ID",
|
|
13878
14011
|
"name": "contactId",
|
|
13879
14012
|
"required": true
|
|
13880
|
-
},
|
|
13881
|
-
"fieldId": {
|
|
13882
|
-
"description": "Custom field ID",
|
|
13883
|
-
"name": "fieldId",
|
|
13884
|
-
"required": true
|
|
13885
14013
|
}
|
|
13886
14014
|
},
|
|
13887
|
-
"description": "
|
|
14015
|
+
"description": "List tags assigned to a contact",
|
|
13888
14016
|
"flags": {
|
|
13889
14017
|
"api-key": {
|
|
13890
14018
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -13947,19 +14075,11 @@
|
|
|
13947
14075
|
"hasDynamicHelp": false,
|
|
13948
14076
|
"multiple": false,
|
|
13949
14077
|
"type": "option"
|
|
13950
|
-
},
|
|
13951
|
-
"value": {
|
|
13952
|
-
"description": "Custom field value",
|
|
13953
|
-
"name": "value",
|
|
13954
|
-
"required": true,
|
|
13955
|
-
"hasDynamicHelp": false,
|
|
13956
|
-
"multiple": false,
|
|
13957
|
-
"type": "option"
|
|
13958
14078
|
}
|
|
13959
14079
|
},
|
|
13960
14080
|
"hasDynamicHelp": false,
|
|
13961
14081
|
"hiddenAliases": [],
|
|
13962
|
-
"id": "contacts:
|
|
14082
|
+
"id": "contacts:tags:list",
|
|
13963
14083
|
"pluginAlias": "@instantkom/cli",
|
|
13964
14084
|
"pluginName": "@instantkom/cli",
|
|
13965
14085
|
"pluginType": "core",
|
|
@@ -13970,20 +14090,25 @@
|
|
|
13970
14090
|
"dist",
|
|
13971
14091
|
"commands",
|
|
13972
14092
|
"contacts",
|
|
13973
|
-
"
|
|
13974
|
-
"
|
|
14093
|
+
"tags",
|
|
14094
|
+
"list.js"
|
|
13975
14095
|
]
|
|
13976
14096
|
},
|
|
13977
|
-
"contacts:
|
|
14097
|
+
"contacts:tags:remove": {
|
|
13978
14098
|
"aliases": [],
|
|
13979
14099
|
"args": {
|
|
13980
14100
|
"contactId": {
|
|
13981
14101
|
"description": "Contact ID",
|
|
13982
14102
|
"name": "contactId",
|
|
13983
14103
|
"required": true
|
|
14104
|
+
},
|
|
14105
|
+
"tagId": {
|
|
14106
|
+
"description": "Tag ID",
|
|
14107
|
+
"name": "tagId",
|
|
14108
|
+
"required": true
|
|
13984
14109
|
}
|
|
13985
14110
|
},
|
|
13986
|
-
"description": "
|
|
14111
|
+
"description": "Remove a tag from a contact",
|
|
13987
14112
|
"flags": {
|
|
13988
14113
|
"api-key": {
|
|
13989
14114
|
"description": "API key for authentication (discouraged: prefer IKM_API_KEY env or keychain). Visible in shell history.",
|
|
@@ -14046,32 +14171,11 @@
|
|
|
14046
14171
|
"hasDynamicHelp": false,
|
|
14047
14172
|
"multiple": false,
|
|
14048
14173
|
"type": "option"
|
|
14049
|
-
},
|
|
14050
|
-
"values": {
|
|
14051
|
-
"description": "JSON object with field keys as property names",
|
|
14052
|
-
"name": "values",
|
|
14053
|
-
"hasDynamicHelp": false,
|
|
14054
|
-
"multiple": false,
|
|
14055
|
-
"type": "option"
|
|
14056
|
-
},
|
|
14057
|
-
"file": {
|
|
14058
|
-
"description": "Path to a JSON file with field keys as property names",
|
|
14059
|
-
"name": "file",
|
|
14060
|
-
"hasDynamicHelp": false,
|
|
14061
|
-
"multiple": false,
|
|
14062
|
-
"type": "option"
|
|
14063
|
-
},
|
|
14064
|
-
"data": {
|
|
14065
|
-
"description": "Additional JSON object payload",
|
|
14066
|
-
"name": "data",
|
|
14067
|
-
"hasDynamicHelp": false,
|
|
14068
|
-
"multiple": false,
|
|
14069
|
-
"type": "option"
|
|
14070
14174
|
}
|
|
14071
14175
|
},
|
|
14072
14176
|
"hasDynamicHelp": false,
|
|
14073
14177
|
"hiddenAliases": [],
|
|
14074
|
-
"id": "contacts:
|
|
14178
|
+
"id": "contacts:tags:remove",
|
|
14075
14179
|
"pluginAlias": "@instantkom/cli",
|
|
14076
14180
|
"pluginName": "@instantkom/cli",
|
|
14077
14181
|
"pluginType": "core",
|
|
@@ -14082,8 +14186,8 @@
|
|
|
14082
14186
|
"dist",
|
|
14083
14187
|
"commands",
|
|
14084
14188
|
"contacts",
|
|
14085
|
-
"
|
|
14086
|
-
"
|
|
14189
|
+
"tags",
|
|
14190
|
+
"remove.js"
|
|
14087
14191
|
]
|
|
14088
14192
|
},
|
|
14089
14193
|
"flow:edges:create": {
|
|
@@ -16248,5 +16352,5 @@
|
|
|
16248
16352
|
]
|
|
16249
16353
|
}
|
|
16250
16354
|
},
|
|
16251
|
-
"version": "3.
|
|
16355
|
+
"version": "3.132.0"
|
|
16252
16356
|
}
|