@outlit/tools 1.0.0 → 2.1.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/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  declare const contractVersion: 1;
2
- declare const publicToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_list_integrations", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_sync_status", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings"];
2
+ declare const publicToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
3
3
  declare const publicToolContracts: {
4
4
  readonly outlit_list_customers: {
5
5
  readonly toolName: "outlit_list_customers";
@@ -413,7 +413,7 @@ declare const publicToolContracts: {
413
413
  readonly commandVersion: 1;
414
414
  readonly ownerDomain: "users";
415
415
  readonly title: "List Workspace Users";
416
- readonly description: "Browse internal workspace users such as CSMs, managers, account owners, and admins. Use this to discover who owns customers before composing dynamic reports across account books.";
416
+ readonly description: "List active workspace members who resolve to local Outlit users. Use this to discover exact user IDs for customer ownership and access commands or to browse account ownership.";
417
417
  readonly inputSchema: {
418
418
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
419
419
  readonly type: "object";
@@ -434,7 +434,7 @@ declare const publicToolContracts: {
434
434
  readonly maxLength: 500;
435
435
  };
436
436
  readonly hasOwnedCustomers: {
437
- readonly description: "When true, return only workspace users who own at least one customer";
437
+ readonly description: "When true, return only members who own customers; when false, return only members who own none";
438
438
  readonly type: "boolean";
439
439
  };
440
440
  readonly limit: {
@@ -1080,6 +1080,331 @@ declare const publicToolContracts: {
1080
1080
  readonly additionalProperties: false;
1081
1081
  };
1082
1082
  };
1083
+ readonly outlit_get_customer_relationship: {
1084
+ readonly toolName: "outlit_get_customer_relationship";
1085
+ readonly commandId: "customer.relationship.get";
1086
+ readonly commandVersion: 1;
1087
+ readonly ownerDomain: "customers";
1088
+ readonly title: "Get Customer Relationship";
1089
+ readonly description: "Get the bounded, evidence-backed relationship shown on a customer page. Returns a summary, categorized current statements with ISO observed-at timestamps when supported, source labels, and the compiled summary timestamp when available without raw facts, quotes, or internal status.";
1090
+ readonly inputSchema: {
1091
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1092
+ readonly type: "object";
1093
+ readonly properties: {
1094
+ readonly customer: {
1095
+ readonly type: "string";
1096
+ readonly minLength: 1;
1097
+ readonly maxLength: 500;
1098
+ readonly description: "Customer ID, domain, or exact customer name to look up";
1099
+ };
1100
+ };
1101
+ readonly required: readonly ["customer"];
1102
+ readonly additionalProperties: false;
1103
+ };
1104
+ readonly outputSchema: {
1105
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1106
+ readonly type: "object";
1107
+ readonly properties: {
1108
+ readonly customer: {
1109
+ readonly type: "object";
1110
+ readonly properties: {
1111
+ readonly id: {
1112
+ readonly type: "string";
1113
+ };
1114
+ readonly name: {
1115
+ readonly anyOf: readonly [{
1116
+ readonly type: "string";
1117
+ }, {
1118
+ readonly type: "null";
1119
+ }];
1120
+ };
1121
+ readonly domain: {
1122
+ readonly anyOf: readonly [{
1123
+ readonly type: "string";
1124
+ }, {
1125
+ readonly type: "null";
1126
+ }];
1127
+ };
1128
+ };
1129
+ readonly required: readonly ["id", "name", "domain"];
1130
+ readonly additionalProperties: false;
1131
+ };
1132
+ readonly relationship: {
1133
+ readonly type: "object";
1134
+ readonly properties: {
1135
+ readonly summary: {
1136
+ readonly anyOf: readonly [{
1137
+ readonly type: "string";
1138
+ readonly minLength: 1;
1139
+ readonly maxLength: 240;
1140
+ }, {
1141
+ readonly type: "null";
1142
+ }];
1143
+ };
1144
+ readonly items: {
1145
+ readonly maxItems: 8;
1146
+ readonly type: "array";
1147
+ readonly items: {
1148
+ readonly type: "object";
1149
+ readonly properties: {
1150
+ readonly category: {
1151
+ readonly type: "string";
1152
+ readonly minLength: 1;
1153
+ readonly maxLength: 120;
1154
+ };
1155
+ readonly statement: {
1156
+ readonly type: "string";
1157
+ readonly minLength: 1;
1158
+ readonly maxLength: 500;
1159
+ };
1160
+ readonly observedAt: {
1161
+ readonly anyOf: readonly [{
1162
+ readonly type: "string";
1163
+ readonly format: "date-time";
1164
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
1165
+ }, {
1166
+ readonly type: "null";
1167
+ }];
1168
+ };
1169
+ readonly sourceLabels: {
1170
+ readonly maxItems: 4;
1171
+ readonly type: "array";
1172
+ readonly items: {
1173
+ readonly type: "string";
1174
+ readonly minLength: 1;
1175
+ readonly maxLength: 100;
1176
+ };
1177
+ };
1178
+ };
1179
+ readonly required: readonly ["category", "statement", "observedAt", "sourceLabels"];
1180
+ readonly additionalProperties: false;
1181
+ };
1182
+ };
1183
+ readonly updatedAt: {
1184
+ readonly anyOf: readonly [{
1185
+ readonly type: "string";
1186
+ readonly format: "date-time";
1187
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
1188
+ }, {
1189
+ readonly type: "null";
1190
+ }];
1191
+ };
1192
+ };
1193
+ readonly required: readonly ["summary", "items", "updatedAt"];
1194
+ readonly additionalProperties: false;
1195
+ };
1196
+ };
1197
+ readonly required: readonly ["customer", "relationship"];
1198
+ readonly additionalProperties: false;
1199
+ };
1200
+ };
1201
+ readonly outlit_assign_customer_owner: {
1202
+ readonly toolName: "outlit_assign_customer_owner";
1203
+ readonly commandId: "customer.owner.assign";
1204
+ readonly commandVersion: 1;
1205
+ readonly ownerDomain: "customers";
1206
+ readonly title: "Assign Customer Owner";
1207
+ readonly description: "Assign an active workspace member as this customer’s primary owner. The former owner keeps Editor access.";
1208
+ readonly inputSchema: {
1209
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1210
+ readonly type: "object";
1211
+ readonly properties: {
1212
+ readonly customerId: {
1213
+ readonly type: "string";
1214
+ readonly format: "uuid";
1215
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
1216
+ };
1217
+ readonly targetUserId: {
1218
+ readonly type: "string";
1219
+ readonly minLength: 1;
1220
+ readonly maxLength: 500;
1221
+ };
1222
+ };
1223
+ readonly required: readonly ["customerId", "targetUserId"];
1224
+ };
1225
+ readonly outputSchema: {
1226
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1227
+ readonly type: "object";
1228
+ readonly properties: {
1229
+ readonly customerId: {
1230
+ readonly type: "string";
1231
+ };
1232
+ readonly ownerId: {
1233
+ readonly type: "string";
1234
+ };
1235
+ readonly previousOwnerId: {
1236
+ readonly anyOf: readonly [{
1237
+ readonly type: "string";
1238
+ }, {
1239
+ readonly type: "null";
1240
+ }];
1241
+ };
1242
+ };
1243
+ readonly required: readonly ["customerId", "ownerId", "previousOwnerId"];
1244
+ readonly additionalProperties: false;
1245
+ };
1246
+ };
1247
+ readonly outlit_grant_customer_access: {
1248
+ readonly toolName: "outlit_grant_customer_access";
1249
+ readonly commandId: "customer.access.grant";
1250
+ readonly commandVersion: 1;
1251
+ readonly ownerDomain: "customers";
1252
+ readonly title: "Grant Customer Access";
1253
+ readonly description: "Share a customer with an active workspace member as a Viewer or Editor. The customer ID must be exact.";
1254
+ readonly inputSchema: {
1255
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1256
+ readonly type: "object";
1257
+ readonly properties: {
1258
+ readonly customerId: {
1259
+ readonly type: "string";
1260
+ readonly format: "uuid";
1261
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
1262
+ };
1263
+ readonly targetUserId: {
1264
+ readonly type: "string";
1265
+ readonly minLength: 1;
1266
+ readonly maxLength: 500;
1267
+ };
1268
+ readonly role: {
1269
+ readonly type: "string";
1270
+ readonly enum: readonly ["VIEWER", "EDITOR"];
1271
+ };
1272
+ };
1273
+ readonly required: readonly ["customerId", "targetUserId", "role"];
1274
+ };
1275
+ readonly outputSchema: {
1276
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1277
+ readonly type: "object";
1278
+ readonly properties: {
1279
+ readonly access: {
1280
+ readonly type: "object";
1281
+ readonly properties: {
1282
+ readonly customerId: {
1283
+ readonly type: "string";
1284
+ };
1285
+ readonly userId: {
1286
+ readonly type: "string";
1287
+ };
1288
+ readonly role: {
1289
+ readonly type: "string";
1290
+ readonly enum: readonly ["VIEWER", "EDITOR"];
1291
+ };
1292
+ readonly grantedById: {
1293
+ readonly anyOf: readonly [{
1294
+ readonly type: "string";
1295
+ }, {
1296
+ readonly type: "null";
1297
+ }];
1298
+ };
1299
+ };
1300
+ readonly required: readonly ["customerId", "userId", "role", "grantedById"];
1301
+ readonly additionalProperties: false;
1302
+ };
1303
+ };
1304
+ readonly required: readonly ["access"];
1305
+ readonly additionalProperties: false;
1306
+ };
1307
+ };
1308
+ readonly outlit_update_customer_access: {
1309
+ readonly toolName: "outlit_update_customer_access";
1310
+ readonly commandId: "customer.access.update";
1311
+ readonly commandVersion: 1;
1312
+ readonly ownerDomain: "customers";
1313
+ readonly title: "Update Customer Access";
1314
+ readonly description: "Change an existing customer collaborator between Viewer and Editor.";
1315
+ readonly inputSchema: {
1316
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1317
+ readonly type: "object";
1318
+ readonly properties: {
1319
+ readonly customerId: {
1320
+ readonly type: "string";
1321
+ readonly format: "uuid";
1322
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
1323
+ };
1324
+ readonly targetUserId: {
1325
+ readonly type: "string";
1326
+ readonly minLength: 1;
1327
+ readonly maxLength: 500;
1328
+ };
1329
+ readonly role: {
1330
+ readonly type: "string";
1331
+ readonly enum: readonly ["VIEWER", "EDITOR"];
1332
+ };
1333
+ };
1334
+ readonly required: readonly ["customerId", "targetUserId", "role"];
1335
+ };
1336
+ readonly outputSchema: {
1337
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1338
+ readonly type: "object";
1339
+ readonly properties: {
1340
+ readonly access: {
1341
+ readonly type: "object";
1342
+ readonly properties: {
1343
+ readonly customerId: {
1344
+ readonly type: "string";
1345
+ };
1346
+ readonly userId: {
1347
+ readonly type: "string";
1348
+ };
1349
+ readonly role: {
1350
+ readonly type: "string";
1351
+ readonly enum: readonly ["VIEWER", "EDITOR"];
1352
+ };
1353
+ readonly grantedById: {
1354
+ readonly anyOf: readonly [{
1355
+ readonly type: "string";
1356
+ }, {
1357
+ readonly type: "null";
1358
+ }];
1359
+ };
1360
+ };
1361
+ readonly required: readonly ["customerId", "userId", "role", "grantedById"];
1362
+ readonly additionalProperties: false;
1363
+ };
1364
+ };
1365
+ readonly required: readonly ["access"];
1366
+ readonly additionalProperties: false;
1367
+ };
1368
+ };
1369
+ readonly outlit_revoke_customer_access: {
1370
+ readonly toolName: "outlit_revoke_customer_access";
1371
+ readonly commandId: "customer.access.revoke";
1372
+ readonly commandVersion: 1;
1373
+ readonly ownerDomain: "customers";
1374
+ readonly title: "Revoke Customer Access";
1375
+ readonly description: "Remove a collaborator’s explicit access to a customer.";
1376
+ readonly inputSchema: {
1377
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1378
+ readonly type: "object";
1379
+ readonly properties: {
1380
+ readonly customerId: {
1381
+ readonly type: "string";
1382
+ readonly format: "uuid";
1383
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
1384
+ };
1385
+ readonly targetUserId: {
1386
+ readonly type: "string";
1387
+ readonly minLength: 1;
1388
+ readonly maxLength: 500;
1389
+ };
1390
+ };
1391
+ readonly required: readonly ["customerId", "targetUserId"];
1392
+ };
1393
+ readonly outputSchema: {
1394
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
1395
+ readonly type: "object";
1396
+ readonly properties: {
1397
+ readonly customerId: {
1398
+ readonly type: "string";
1399
+ };
1400
+ readonly userId: {
1401
+ readonly type: "string";
1402
+ };
1403
+ };
1404
+ readonly required: readonly ["customerId", "userId"];
1405
+ readonly additionalProperties: false;
1406
+ };
1407
+ };
1083
1408
  readonly outlit_get_timeline: {
1084
1409
  readonly toolName: "outlit_get_timeline";
1085
1410
  readonly commandId: "timeline.get";
@@ -1118,13 +1443,13 @@ declare const publicToolContracts: {
1118
1443
  readonly enum: readonly ["7d", "14d", "30d", "90d", "all"];
1119
1444
  };
1120
1445
  readonly startDate: {
1121
- readonly description: "Start of time window (ISO 8601, e.g. '2025-01-01T00:00:00Z'). Cannot be used with timeframe.";
1446
+ readonly description: "Start of time window, inclusive (ISO 8601 UTC, e.g. '2025-01-01T00:00:00.000Z'). Cannot be used with timeframe.";
1122
1447
  readonly type: "string";
1123
1448
  readonly format: "date-time";
1124
1449
  readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
1125
1450
  };
1126
1451
  readonly endDate: {
1127
- readonly description: "End of time window (ISO 8601, e.g. '2025-01-31T23:59:59Z'). Cannot be used with timeframe.";
1452
+ readonly description: "End of time window, inclusive of the instant it names (ISO 8601 UTC, e.g. '2025-01-31T23:59:59.999Z'). Use millisecond precision: timestamps are stored to the millisecond, so '...T23:59:59Z' includes only the first instant of that second and excludes the rest of it. Cannot be used with timeframe.";
1128
1453
  readonly type: "string";
1129
1454
  readonly format: "date-time";
1130
1455
  readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
@@ -4932,86 +5257,10 @@ declare const publicToolContracts: {
4932
5257
  readonly additionalProperties: false;
4933
5258
  };
4934
5259
  };
4935
- readonly outlit_list_integrations: {
4936
- readonly toolName: "outlit_list_integrations";
4937
- readonly commandId: "integration.list";
4938
- readonly commandVersion: 1;
4939
- readonly ownerDomain: "integrations";
4940
- readonly title: "List Integrations";
4941
- readonly description: "List available integrations and safe connection health for the current actor.";
4942
- readonly inputSchema: {
4943
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
4944
- readonly type: "object";
4945
- readonly properties: {
4946
- readonly connectedOnly: {
4947
- readonly default: false;
4948
- readonly type: "boolean";
4949
- };
4950
- };
4951
- readonly additionalProperties: false;
4952
- };
4953
- readonly outputSchema: {
4954
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
4955
- readonly type: "object";
4956
- readonly properties: {
4957
- readonly integrations: {
4958
- readonly type: "array";
4959
- readonly items: {
4960
- readonly type: "object";
4961
- readonly properties: {
4962
- readonly provider: {
4963
- readonly type: "string";
4964
- readonly minLength: 1;
4965
- readonly maxLength: 80;
4966
- };
4967
- readonly name: {
4968
- readonly type: "string";
4969
- readonly minLength: 1;
4970
- readonly maxLength: 120;
4971
- };
4972
- readonly category: {
4973
- readonly type: "string";
4974
- readonly enum: readonly ["crm", "communication", "storage", "calls", "calendar", "analytics", "billing", "support"];
4975
- };
4976
- readonly status: {
4977
- readonly type: "string";
4978
- readonly enum: readonly ["available", "connected", "setup_required"];
4979
- };
4980
- readonly lastDataReceivedAt: {
4981
- readonly anyOf: readonly [{
4982
- readonly type: "string";
4983
- readonly format: "date-time";
4984
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
4985
- }, {
4986
- readonly type: "null";
4987
- }];
4988
- };
4989
- readonly syncStatus: {
4990
- readonly anyOf: readonly [{
4991
- readonly type: "string";
4992
- readonly minLength: 1;
4993
- readonly maxLength: 80;
4994
- }, {
4995
- readonly type: "null";
4996
- }];
4997
- };
4998
- readonly hasSyncError: {
4999
- readonly type: "boolean";
5000
- };
5001
- };
5002
- readonly required: readonly ["provider", "name", "category", "status", "lastDataReceivedAt", "syncStatus", "hasSyncError"];
5003
- readonly additionalProperties: false;
5004
- };
5005
- };
5006
- };
5007
- readonly required: readonly ["integrations"];
5008
- readonly additionalProperties: false;
5009
- };
5010
- };
5011
5260
  readonly outlit_get_integration_capabilities: {
5012
5261
  readonly toolName: "outlit_get_integration_capabilities";
5013
5262
  readonly commandId: "integration.capabilities.get";
5014
- readonly commandVersion: 1;
5263
+ readonly commandVersion: 2;
5015
5264
  readonly ownerDomain: "integrations";
5016
5265
  readonly title: "Get Integration Capabilities";
5017
5266
  readonly description: "Describe safe integration setup modes without exposing credential fields or provider configuration.";
@@ -5066,6 +5315,10 @@ declare const publicToolContracts: {
5066
5315
  readonly additionalProperties: false;
5067
5316
  };
5068
5317
  };
5318
+ readonly preferredSetupVersion: {
5319
+ readonly type: "number";
5320
+ readonly const: 1;
5321
+ };
5069
5322
  };
5070
5323
  readonly required: readonly ["providers"];
5071
5324
  readonly additionalProperties: false;
@@ -5177,404 +5430,2596 @@ declare const publicToolContracts: {
5177
5430
  readonly additionalProperties: false;
5178
5431
  };
5179
5432
  };
5180
- readonly outlit_get_integration_sync_status: {
5181
- readonly toolName: "outlit_get_integration_sync_status";
5182
- readonly commandId: "integration.sync_status.get";
5183
- readonly commandVersion: 1;
5433
+ readonly outlit_get_integration_status: {
5434
+ readonly toolName: "outlit_get_integration_status";
5435
+ readonly commandId: "integration.status.get";
5436
+ readonly commandVersion: 2;
5184
5437
  readonly ownerDomain: "integrations";
5185
- readonly title: "Get Integration Sync Status";
5186
- readonly description: "Get safe model-level sync status for a connection visible to the current actor.";
5438
+ readonly title: "Get Integration Status";
5439
+ readonly description: "Get the configuration-readiness status for one integration or the public integration catalog.";
5187
5440
  readonly inputSchema: {
5188
5441
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5189
5442
  readonly type: "object";
5190
5443
  readonly properties: {
5191
5444
  readonly provider: {
5192
5445
  readonly type: "string";
5193
- readonly minLength: 1;
5194
- readonly maxLength: 80;
5446
+ readonly enum: readonly ["salesforce", "hubspot", "attio", "slack", "google-calendar", "google-mail", "granola", "gong", "fireflies", "pylon", "stripe", "mixpanel", "posthog", "supabase", "clerk"];
5195
5447
  };
5196
5448
  };
5197
- readonly required: readonly ["provider"];
5198
5449
  readonly additionalProperties: false;
5199
5450
  };
5200
5451
  readonly outputSchema: {
5201
5452
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5202
5453
  readonly type: "object";
5203
5454
  readonly properties: {
5204
- readonly provider: {
5205
- readonly type: "string";
5206
- readonly minLength: 1;
5207
- readonly maxLength: 80;
5208
- };
5209
- readonly name: {
5210
- readonly type: "string";
5211
- readonly minLength: 1;
5212
- readonly maxLength: 120;
5213
- };
5214
- readonly category: {
5215
- readonly type: "string";
5216
- readonly enum: readonly ["crm", "communication", "storage", "calls", "calendar", "analytics", "billing", "support"];
5217
- };
5218
- readonly status: {
5219
- readonly type: "string";
5220
- readonly enum: readonly ["not_connected", "connected"];
5221
- };
5222
- readonly syncs: {
5455
+ readonly integrations: {
5223
5456
  readonly type: "array";
5224
5457
  readonly items: {
5225
5458
  readonly type: "object";
5226
5459
  readonly properties: {
5227
- readonly model: {
5460
+ readonly provider: {
5228
5461
  readonly type: "string";
5229
5462
  readonly minLength: 1;
5230
- readonly maxLength: 120;
5463
+ readonly maxLength: 80;
5231
5464
  };
5232
- readonly status: {
5465
+ readonly name: {
5233
5466
  readonly type: "string";
5234
5467
  readonly minLength: 1;
5235
- readonly maxLength: 80;
5468
+ readonly maxLength: 120;
5236
5469
  };
5237
- readonly lastSyncedAt: {
5238
- readonly anyOf: readonly [{
5239
- readonly type: "string";
5240
- readonly format: "date-time";
5241
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5242
- }, {
5243
- readonly type: "null";
5244
- }];
5470
+ readonly category: {
5471
+ readonly type: "string";
5472
+ readonly enum: readonly ["crm", "communication", "storage", "calls", "calendar", "analytics", "billing", "support"];
5245
5473
  };
5246
- readonly hasError: {
5247
- readonly type: "boolean";
5474
+ readonly status: {
5475
+ readonly type: "string";
5476
+ readonly enum: readonly ["not_connected", "awaiting_auth", "setup_required", "ready", "requires_intervention"];
5248
5477
  };
5249
5478
  };
5250
- readonly required: readonly ["model", "status", "lastSyncedAt", "hasError"];
5479
+ readonly required: readonly ["provider", "name", "category", "status"];
5251
5480
  readonly additionalProperties: false;
5252
5481
  };
5253
5482
  };
5254
5483
  };
5255
- readonly required: readonly ["provider", "name", "category", "status", "syncs"];
5484
+ readonly required: readonly ["integrations"];
5256
5485
  readonly additionalProperties: false;
5257
5486
  };
5258
5487
  };
5259
- readonly outlit_get_customer_activation: {
5260
- readonly toolName: "outlit_get_customer_activation";
5261
- readonly commandId: "customer_activation.get";
5488
+ readonly outlit_setup_integration: {
5489
+ readonly toolName: "outlit_setup_integration";
5490
+ readonly commandId: "integration.setup.run";
5262
5491
  readonly commandVersion: 1;
5263
- readonly ownerDomain: "customer_activation";
5264
- readonly title: "Get Customer Activation";
5265
- readonly description: "Get the product event currently configured to activate customers and users.";
5492
+ readonly ownerDomain: "integrations";
5493
+ readonly title: "Set Up Integration";
5494
+ readonly description: "Continue integration setup through validated credentials, safe configuration, or a trusted browser handoff.";
5266
5495
  readonly inputSchema: {
5267
5496
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5268
- readonly type: "object";
5269
- readonly properties: {};
5270
- readonly additionalProperties: false;
5271
- };
5272
- readonly outputSchema: {
5273
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5274
- readonly type: "object";
5275
- readonly properties: {
5276
- readonly activation: {
5277
- readonly type: "object";
5278
- readonly properties: {
5279
- readonly eventName: {
5280
- readonly anyOf: readonly [{
5497
+ readonly anyOf: readonly [{
5498
+ readonly type: "object";
5499
+ readonly properties: {
5500
+ readonly provider: {
5501
+ readonly type: "string";
5502
+ readonly enum: readonly ["salesforce", "hubspot", "attio"];
5503
+ };
5504
+ readonly configuration: {
5505
+ readonly type: "object";
5506
+ readonly properties: {
5507
+ readonly kind: {
5281
5508
  readonly type: "string";
5282
- readonly minLength: 1;
5283
- readonly maxLength: 191;
5284
- }, {
5285
- readonly type: "null";
5286
- }];
5509
+ readonly const: "crm_mapping";
5510
+ };
5511
+ readonly mappings: {
5512
+ readonly minItems: 1;
5513
+ readonly type: "array";
5514
+ readonly items: {
5515
+ readonly type: "object";
5516
+ readonly properties: {
5517
+ readonly pipelineId: {
5518
+ readonly type: "string";
5519
+ readonly minLength: 1;
5520
+ };
5521
+ readonly pipelineName: {
5522
+ readonly type: "string";
5523
+ };
5524
+ readonly mappings: {
5525
+ readonly type: "array";
5526
+ readonly items: {
5527
+ readonly type: "object";
5528
+ readonly properties: {
5529
+ readonly outlitStage: {
5530
+ readonly type: "string";
5531
+ readonly enum: readonly ["Created", "Quoting", "Negotiation", "Won", "Lost"];
5532
+ };
5533
+ readonly crmStages: {
5534
+ readonly type: "array";
5535
+ readonly items: {
5536
+ readonly type: "object";
5537
+ readonly properties: {
5538
+ readonly id: {
5539
+ readonly type: "string";
5540
+ readonly minLength: 1;
5541
+ };
5542
+ readonly name: {
5543
+ readonly type: "string";
5544
+ };
5545
+ };
5546
+ readonly required: readonly ["id", "name"];
5547
+ readonly additionalProperties: false;
5548
+ };
5549
+ };
5550
+ };
5551
+ readonly required: readonly ["outlitStage", "crmStages"];
5552
+ readonly additionalProperties: false;
5553
+ };
5554
+ };
5555
+ };
5556
+ readonly required: readonly ["pipelineId", "pipelineName", "mappings"];
5557
+ readonly additionalProperties: false;
5558
+ };
5559
+ };
5560
+ readonly confirm: {
5561
+ readonly type: "boolean";
5562
+ readonly const: true;
5563
+ };
5287
5564
  };
5565
+ readonly required: readonly ["kind", "mappings", "confirm"];
5566
+ readonly additionalProperties: false;
5288
5567
  };
5289
- readonly required: readonly ["eventName"];
5290
- readonly additionalProperties: false;
5291
- };
5292
- };
5293
- readonly required: readonly ["activation"];
5294
- readonly additionalProperties: false;
5295
- };
5296
- };
5297
- readonly outlit_preview_customer_activation: {
5298
- readonly toolName: "outlit_preview_customer_activation";
5299
- readonly commandId: "customer_activation.preview";
5300
- readonly commandVersion: 1;
5301
- readonly ownerDomain: "customer_activation";
5302
- readonly title: "Preview Customer Activation";
5303
- readonly description: "Preview the bounded recent impact of choosing a product event for customer activation without changing configuration.";
5304
- readonly inputSchema: {
5305
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5306
- readonly type: "object";
5307
- readonly properties: {
5308
- readonly eventName: {
5309
- readonly type: "string";
5310
- readonly minLength: 1;
5311
- readonly maxLength: 191;
5312
5568
  };
5313
- readonly lookbackDays: {
5314
- readonly default: 30;
5315
- readonly type: "integer";
5316
- readonly minimum: 1;
5317
- readonly maximum: 90;
5569
+ readonly required: readonly ["provider"];
5570
+ readonly additionalProperties: false;
5571
+ }, {
5572
+ readonly type: "object";
5573
+ readonly properties: {
5574
+ readonly provider: {
5575
+ readonly type: "string";
5576
+ readonly enum: readonly ["slack", "google-calendar", "google-mail", "gong"];
5577
+ };
5318
5578
  };
5319
- readonly exampleLimit: {
5320
- readonly default: 10;
5321
- readonly type: "integer";
5322
- readonly minimum: 1;
5323
- readonly maximum: 20;
5579
+ readonly required: readonly ["provider"];
5580
+ readonly additionalProperties: false;
5581
+ }, {
5582
+ readonly type: "object";
5583
+ readonly properties: {
5584
+ readonly provider: {
5585
+ readonly type: "string";
5586
+ readonly const: "stripe";
5587
+ };
5588
+ readonly connectionMode: {
5589
+ readonly type: "string";
5590
+ readonly const: "oauth";
5591
+ };
5324
5592
  };
5325
- };
5326
- readonly required: readonly ["eventName"];
5327
- readonly additionalProperties: false;
5328
- };
5329
- readonly outputSchema: {
5330
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5331
- readonly type: "object";
5332
- readonly properties: {
5333
- readonly preview: {
5334
- readonly type: "object";
5335
- readonly properties: {
5336
- readonly eventName: {
5337
- readonly type: "string";
5338
- readonly minLength: 1;
5339
- readonly maxLength: 191;
5340
- };
5341
- readonly evaluatedFrom: {
5342
- readonly type: "string";
5343
- readonly format: "date-time";
5344
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5593
+ readonly required: readonly ["provider"];
5594
+ readonly additionalProperties: false;
5595
+ }, {
5596
+ readonly type: "object";
5597
+ readonly properties: {
5598
+ readonly provider: {
5599
+ readonly type: "string";
5600
+ readonly const: "stripe";
5601
+ };
5602
+ readonly connectionMode: {
5603
+ readonly type: "string";
5604
+ readonly const: "restricted_key";
5605
+ };
5606
+ readonly credentials: {
5607
+ readonly type: "object";
5608
+ readonly properties: {
5609
+ readonly apiKey: {
5610
+ readonly type: "string";
5611
+ readonly minLength: 1;
5612
+ readonly pattern: "^rk_.*";
5613
+ };
5345
5614
  };
5346
- readonly evaluatedTo: {
5347
- readonly type: "string";
5348
- readonly format: "date-time";
5349
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5350
- };
5351
- readonly evaluatedEventCount: {
5352
- readonly type: "integer";
5353
- readonly minimum: 0;
5354
- readonly maximum: 9007199254740991;
5355
- };
5356
- readonly matchedCustomerCount: {
5357
- readonly type: "integer";
5358
- readonly minimum: 0;
5359
- readonly maximum: 9007199254740991;
5360
- };
5361
- readonly alreadyActivatedCustomerCount: {
5362
- readonly type: "integer";
5363
- readonly minimum: 0;
5364
- readonly maximum: 9007199254740991;
5365
- };
5366
- readonly wouldActivateCustomerCount: {
5367
- readonly type: "integer";
5368
- readonly minimum: 0;
5369
- readonly maximum: 9007199254740991;
5370
- };
5371
- readonly evaluatedContactOccurrenceCount: {
5372
- readonly type: "integer";
5373
- readonly minimum: 0;
5374
- readonly maximum: 9007199254740991;
5375
- };
5376
- readonly matchedContactCount: {
5377
- readonly type: "integer";
5378
- readonly minimum: 0;
5379
- readonly maximum: 9007199254740991;
5615
+ readonly required: readonly ["apiKey"];
5616
+ readonly additionalProperties: false;
5617
+ };
5618
+ };
5619
+ readonly required: readonly ["provider", "connectionMode"];
5620
+ readonly additionalProperties: false;
5621
+ }, {
5622
+ readonly type: "object";
5623
+ readonly properties: {
5624
+ readonly provider: {
5625
+ readonly type: "string";
5626
+ readonly const: "granola";
5627
+ };
5628
+ readonly credentials: {
5629
+ readonly type: "object";
5630
+ readonly properties: {
5631
+ readonly apiKey: {
5632
+ readonly type: "string";
5633
+ readonly minLength: 1;
5634
+ };
5635
+ readonly authScope: {
5636
+ readonly default: "personal";
5637
+ readonly type: "string";
5638
+ readonly enum: readonly ["personal", "enterprise"];
5639
+ };
5640
+ readonly enterpriseKeyAcknowledged: {
5641
+ readonly default: false;
5642
+ readonly type: "boolean";
5643
+ };
5380
5644
  };
5381
- readonly alreadyActivatedContactCount: {
5382
- readonly type: "integer";
5383
- readonly minimum: 0;
5384
- readonly maximum: 9007199254740991;
5645
+ readonly required: readonly ["apiKey"];
5646
+ readonly additionalProperties: false;
5647
+ };
5648
+ };
5649
+ readonly required: readonly ["provider"];
5650
+ readonly additionalProperties: false;
5651
+ }, {
5652
+ readonly type: "object";
5653
+ readonly properties: {
5654
+ readonly provider: {
5655
+ readonly type: "string";
5656
+ readonly const: "fireflies";
5657
+ };
5658
+ readonly credentials: {
5659
+ readonly type: "object";
5660
+ readonly properties: {
5661
+ readonly apiKey: {
5662
+ readonly type: "string";
5663
+ readonly minLength: 1;
5664
+ };
5385
5665
  };
5386
- readonly wouldActivateContactCount: {
5387
- readonly type: "integer";
5388
- readonly minimum: 0;
5389
- readonly maximum: 9007199254740991;
5666
+ readonly required: readonly ["apiKey"];
5667
+ readonly additionalProperties: false;
5668
+ };
5669
+ };
5670
+ readonly required: readonly ["provider"];
5671
+ readonly additionalProperties: false;
5672
+ }, {
5673
+ readonly type: "object";
5674
+ readonly properties: {
5675
+ readonly provider: {
5676
+ readonly type: "string";
5677
+ readonly const: "pylon";
5678
+ };
5679
+ readonly credentials: {
5680
+ readonly type: "object";
5681
+ readonly properties: {
5682
+ readonly apiToken: {
5683
+ readonly type: "string";
5684
+ readonly minLength: 1;
5685
+ };
5390
5686
  };
5391
- readonly contactTruncated: {
5392
- readonly type: "boolean";
5687
+ readonly required: readonly ["apiToken"];
5688
+ readonly additionalProperties: false;
5689
+ };
5690
+ };
5691
+ readonly required: readonly ["provider"];
5692
+ readonly additionalProperties: false;
5693
+ }, {
5694
+ readonly type: "object";
5695
+ readonly properties: {
5696
+ readonly provider: {
5697
+ readonly type: "string";
5698
+ readonly const: "mixpanel";
5699
+ };
5700
+ readonly credentials: {
5701
+ readonly type: "object";
5702
+ readonly properties: {
5703
+ readonly username: {
5704
+ readonly type: "string";
5705
+ readonly minLength: 1;
5706
+ };
5707
+ readonly secret: {
5708
+ readonly type: "string";
5709
+ readonly minLength: 1;
5710
+ };
5711
+ readonly projectId: {
5712
+ readonly type: "string";
5713
+ readonly minLength: 1;
5714
+ readonly maxLength: 64;
5715
+ };
5716
+ readonly region: {
5717
+ readonly type: "string";
5718
+ readonly enum: readonly ["us", "eu", "in"];
5719
+ };
5393
5720
  };
5394
- readonly customerTruncated: {
5395
- readonly type: "boolean";
5721
+ readonly required: readonly ["username", "secret", "projectId", "region"];
5722
+ readonly additionalProperties: false;
5723
+ };
5724
+ readonly configuration: {
5725
+ readonly type: "object";
5726
+ readonly properties: {
5727
+ readonly kind: {
5728
+ readonly type: "string";
5729
+ readonly const: "mixpanel_mapping";
5730
+ };
5731
+ readonly mapping: {
5732
+ readonly oneOf: readonly [{
5733
+ readonly type: "object";
5734
+ readonly properties: {
5735
+ readonly mode: {
5736
+ readonly type: "string";
5737
+ readonly const: "group_key";
5738
+ };
5739
+ readonly groupKey: {
5740
+ readonly type: "string";
5741
+ readonly minLength: 1;
5742
+ };
5743
+ };
5744
+ readonly required: readonly ["mode", "groupKey"];
5745
+ readonly additionalProperties: false;
5746
+ }, {
5747
+ readonly type: "object";
5748
+ readonly properties: {
5749
+ readonly mode: {
5750
+ readonly type: "string";
5751
+ readonly const: "event_property";
5752
+ };
5753
+ readonly propertyName: {
5754
+ readonly type: "string";
5755
+ readonly minLength: 1;
5756
+ };
5757
+ };
5758
+ readonly required: readonly ["mode", "propertyName"];
5759
+ readonly additionalProperties: false;
5760
+ }, {
5761
+ readonly type: "object";
5762
+ readonly properties: {
5763
+ readonly mode: {
5764
+ readonly type: "string";
5765
+ readonly const: "email_domain";
5766
+ };
5767
+ };
5768
+ readonly required: readonly ["mode"];
5769
+ readonly additionalProperties: false;
5770
+ }];
5771
+ };
5772
+ readonly confirm: {
5773
+ readonly type: "boolean";
5774
+ readonly const: true;
5775
+ };
5396
5776
  };
5397
- readonly truncated: {
5398
- readonly type: "boolean";
5777
+ readonly required: readonly ["kind", "mapping", "confirm"];
5778
+ readonly additionalProperties: false;
5779
+ };
5780
+ };
5781
+ readonly required: readonly ["provider"];
5782
+ readonly additionalProperties: false;
5783
+ }, {
5784
+ readonly type: "object";
5785
+ readonly properties: {
5786
+ readonly provider: {
5787
+ readonly type: "string";
5788
+ readonly const: "posthog";
5789
+ };
5790
+ readonly credentials: {
5791
+ readonly type: "object";
5792
+ readonly properties: {
5793
+ readonly apiKey: {
5794
+ readonly type: "string";
5795
+ readonly minLength: 10;
5796
+ readonly pattern: "^phx_.*";
5797
+ };
5798
+ readonly region: {
5799
+ readonly type: "string";
5800
+ readonly enum: readonly ["us", "eu"];
5801
+ };
5802
+ readonly projectId: {
5803
+ readonly type: "string";
5804
+ readonly minLength: 1;
5805
+ readonly pattern: "^\\d+$";
5806
+ };
5399
5807
  };
5400
- readonly examples: {
5401
- readonly type: "array";
5402
- readonly items: {
5403
- readonly type: "object";
5404
- readonly properties: {
5405
- readonly customer: {
5808
+ readonly required: readonly ["apiKey", "region", "projectId"];
5809
+ readonly additionalProperties: false;
5810
+ };
5811
+ };
5812
+ readonly required: readonly ["provider"];
5813
+ readonly additionalProperties: false;
5814
+ }, {
5815
+ readonly type: "object";
5816
+ readonly properties: {
5817
+ readonly provider: {
5818
+ readonly type: "string";
5819
+ readonly enum: readonly ["clerk", "supabase"];
5820
+ };
5821
+ };
5822
+ readonly required: readonly ["provider"];
5823
+ readonly additionalProperties: false;
5824
+ }];
5825
+ };
5826
+ readonly outputSchema: {
5827
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5828
+ readonly type: "object";
5829
+ readonly properties: {
5830
+ readonly provider: {
5831
+ readonly type: "string";
5832
+ readonly enum: readonly ["salesforce", "hubspot", "attio", "slack", "google-calendar", "google-mail", "granola", "gong", "fireflies", "pylon", "stripe", "mixpanel", "posthog", "supabase", "clerk"];
5833
+ };
5834
+ readonly name: {
5835
+ readonly type: "string";
5836
+ readonly minLength: 1;
5837
+ readonly maxLength: 120;
5838
+ };
5839
+ readonly category: {
5840
+ readonly type: "string";
5841
+ readonly enum: readonly ["crm", "communication", "storage", "calls", "calendar", "analytics", "billing", "support"];
5842
+ };
5843
+ readonly status: {
5844
+ readonly type: "string";
5845
+ readonly enum: readonly ["not_connected", "awaiting_auth", "setup_required", "ready", "requires_intervention"];
5846
+ };
5847
+ readonly next: {
5848
+ readonly anyOf: readonly [{
5849
+ readonly anyOf: readonly [{
5850
+ readonly type: "object";
5851
+ readonly properties: {
5852
+ readonly kind: {
5853
+ readonly type: "string";
5854
+ readonly const: "browser_handoff";
5855
+ };
5856
+ readonly purpose: {
5857
+ readonly type: "string";
5858
+ readonly enum: readonly ["authentication", "recovery", "external_setup"];
5859
+ };
5860
+ readonly url: {
5861
+ readonly type: "string";
5862
+ readonly format: "uri";
5863
+ };
5864
+ readonly sessionId: {
5865
+ readonly anyOf: readonly [{
5866
+ readonly type: "string";
5867
+ readonly format: "uuid";
5868
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
5869
+ }, {
5870
+ readonly type: "null";
5871
+ }];
5872
+ };
5873
+ readonly expiresAt: {
5874
+ readonly anyOf: readonly [{
5875
+ readonly type: "string";
5876
+ readonly format: "date-time";
5877
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5878
+ }, {
5879
+ readonly type: "null";
5880
+ }];
5881
+ };
5882
+ };
5883
+ readonly required: readonly ["kind", "purpose", "url", "sessionId", "expiresAt"];
5884
+ readonly additionalProperties: false;
5885
+ }, {
5886
+ readonly type: "object";
5887
+ readonly properties: {
5888
+ readonly kind: {
5889
+ readonly type: "string";
5890
+ readonly const: "crm_mapping";
5891
+ };
5892
+ readonly recommendation: {
5893
+ readonly minItems: 1;
5894
+ readonly type: "array";
5895
+ readonly items: {
5406
5896
  readonly type: "object";
5407
5897
  readonly properties: {
5408
- readonly id: {
5898
+ readonly pipelineId: {
5409
5899
  readonly type: "string";
5410
5900
  readonly minLength: 1;
5411
5901
  };
5412
- readonly name: {
5902
+ readonly pipelineName: {
5413
5903
  readonly type: "string";
5414
- readonly minLength: 1;
5415
5904
  };
5416
- readonly domain: {
5417
- readonly type: "string";
5418
- readonly minLength: 1;
5905
+ readonly mappings: {
5906
+ readonly type: "array";
5907
+ readonly items: {
5908
+ readonly type: "object";
5909
+ readonly properties: {
5910
+ readonly outlitStage: {
5911
+ readonly type: "string";
5912
+ readonly enum: readonly ["Created", "Quoting", "Negotiation", "Won", "Lost"];
5913
+ };
5914
+ readonly crmStages: {
5915
+ readonly type: "array";
5916
+ readonly items: {
5917
+ readonly type: "object";
5918
+ readonly properties: {
5919
+ readonly id: {
5920
+ readonly type: "string";
5921
+ readonly minLength: 1;
5922
+ };
5923
+ readonly name: {
5924
+ readonly type: "string";
5925
+ };
5926
+ };
5927
+ readonly required: readonly ["id", "name"];
5928
+ readonly additionalProperties: false;
5929
+ };
5930
+ };
5931
+ };
5932
+ readonly required: readonly ["outlitStage", "crmStages"];
5933
+ readonly additionalProperties: false;
5934
+ };
5935
+ };
5936
+ };
5937
+ readonly required: readonly ["pipelineId", "pipelineName", "mappings"];
5938
+ readonly additionalProperties: false;
5939
+ };
5940
+ };
5941
+ };
5942
+ readonly required: readonly ["kind", "recommendation"];
5943
+ readonly additionalProperties: false;
5944
+ }, {
5945
+ readonly type: "object";
5946
+ readonly properties: {
5947
+ readonly kind: {
5948
+ readonly type: "string";
5949
+ readonly const: "mixpanel_mapping";
5950
+ };
5951
+ readonly preview: {
5952
+ readonly type: "object";
5953
+ readonly properties: {
5954
+ readonly sampleSize: {
5955
+ readonly type: "integer";
5956
+ readonly minimum: 0;
5957
+ readonly maximum: 9007199254740991;
5958
+ };
5959
+ readonly sampleWindowStartAt: {
5960
+ readonly type: "string";
5961
+ readonly format: "date-time";
5962
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5963
+ };
5964
+ readonly sampleWindowEndAt: {
5965
+ readonly type: "string";
5966
+ readonly format: "date-time";
5967
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5968
+ };
5969
+ readonly accountKeyCoveragePct: {
5970
+ readonly type: "number";
5971
+ readonly minimum: 0;
5972
+ readonly maximum: 100;
5973
+ };
5974
+ readonly emailOrDomainCoveragePct: {
5975
+ readonly type: "number";
5976
+ readonly minimum: 0;
5977
+ readonly maximum: 100;
5978
+ };
5979
+ readonly unmappedPct: {
5980
+ readonly type: "number";
5981
+ readonly minimum: 0;
5982
+ readonly maximum: 100;
5983
+ };
5984
+ readonly matchedCustomerCount: {
5985
+ readonly type: "integer";
5986
+ readonly minimum: 0;
5987
+ readonly maximum: 9007199254740991;
5988
+ };
5989
+ readonly opaqueOnlyUnmappedCount: {
5990
+ readonly type: "integer";
5991
+ readonly minimum: 0;
5992
+ readonly maximum: 9007199254740991;
5993
+ };
5994
+ readonly candidateAccountKeys: {
5995
+ readonly type: "array";
5996
+ readonly items: {
5997
+ readonly type: "object";
5998
+ readonly properties: {
5999
+ readonly key: {
6000
+ readonly type: "string";
6001
+ };
6002
+ readonly count: {
6003
+ readonly type: "integer";
6004
+ readonly minimum: 0;
6005
+ readonly maximum: 9007199254740991;
6006
+ };
6007
+ readonly coveragePct: {
6008
+ readonly type: "number";
6009
+ readonly minimum: 0;
6010
+ readonly maximum: 100;
6011
+ };
6012
+ };
6013
+ readonly required: readonly ["key", "count", "coveragePct"];
6014
+ readonly additionalProperties: false;
6015
+ };
6016
+ };
6017
+ readonly unmappedReasons: {
6018
+ readonly type: "array";
6019
+ readonly items: {
6020
+ readonly type: "object";
6021
+ readonly properties: {
6022
+ readonly reason: {
6023
+ readonly type: "string";
6024
+ readonly enum: readonly ["missing_account_key", "missing_email_or_domain", "no_matching_customer"];
6025
+ };
6026
+ readonly count: {
6027
+ readonly type: "integer";
6028
+ readonly minimum: 0;
6029
+ readonly maximum: 9007199254740991;
6030
+ };
6031
+ };
6032
+ readonly required: readonly ["reason", "count"];
6033
+ readonly additionalProperties: false;
6034
+ };
6035
+ };
6036
+ readonly warnings: {
6037
+ readonly type: "array";
6038
+ readonly items: {
6039
+ readonly type: "string";
6040
+ };
6041
+ };
6042
+ };
6043
+ readonly required: readonly ["sampleSize", "sampleWindowStartAt", "sampleWindowEndAt", "accountKeyCoveragePct", "emailOrDomainCoveragePct", "unmappedPct", "matchedCustomerCount", "opaqueOnlyUnmappedCount", "candidateAccountKeys", "unmappedReasons", "warnings"];
6044
+ readonly additionalProperties: false;
6045
+ };
6046
+ };
6047
+ readonly required: readonly ["kind", "preview"];
6048
+ readonly additionalProperties: false;
6049
+ }];
6050
+ }, {
6051
+ readonly type: "null";
6052
+ }];
6053
+ };
6054
+ readonly error: {
6055
+ readonly anyOf: readonly [{
6056
+ readonly type: "object";
6057
+ readonly properties: {
6058
+ readonly code: {
6059
+ readonly type: "string";
6060
+ readonly enum: readonly ["OWNER_REQUIRED", "CONNECTION_CONFLICT", "CREDENTIAL_REQUIRED", "CREDENTIAL_REJECTED", "LEGACY_CONNECTION_REQUIRED", "HANDOFF_UNAVAILABLE", "TRANSIENT_FAILURE"];
6061
+ };
6062
+ readonly message: {
6063
+ readonly type: "string";
6064
+ };
6065
+ readonly retryable: {
6066
+ readonly type: "boolean";
6067
+ };
6068
+ };
6069
+ readonly required: readonly ["code", "message", "retryable"];
6070
+ readonly additionalProperties: false;
6071
+ }, {
6072
+ readonly type: "null";
6073
+ }];
6074
+ };
6075
+ };
6076
+ readonly required: readonly ["provider", "name", "category", "status", "next", "error"];
6077
+ readonly additionalProperties: false;
6078
+ };
6079
+ };
6080
+ readonly outlit_get_customer_activation: {
6081
+ readonly toolName: "outlit_get_customer_activation";
6082
+ readonly commandId: "customer_activation.get";
6083
+ readonly commandVersion: 1;
6084
+ readonly ownerDomain: "customer_activation";
6085
+ readonly title: "Get Customer Activation";
6086
+ readonly description: "Get the product event currently configured to activate customers and users.";
6087
+ readonly inputSchema: {
6088
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6089
+ readonly type: "object";
6090
+ readonly properties: {};
6091
+ readonly additionalProperties: false;
6092
+ };
6093
+ readonly outputSchema: {
6094
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6095
+ readonly type: "object";
6096
+ readonly properties: {
6097
+ readonly activation: {
6098
+ readonly type: "object";
6099
+ readonly properties: {
6100
+ readonly eventName: {
6101
+ readonly anyOf: readonly [{
6102
+ readonly type: "string";
6103
+ readonly minLength: 1;
6104
+ readonly maxLength: 191;
6105
+ }, {
6106
+ readonly type: "null";
6107
+ }];
6108
+ };
6109
+ };
6110
+ readonly required: readonly ["eventName"];
6111
+ readonly additionalProperties: false;
6112
+ };
6113
+ };
6114
+ readonly required: readonly ["activation"];
6115
+ readonly additionalProperties: false;
6116
+ };
6117
+ };
6118
+ readonly outlit_preview_customer_activation: {
6119
+ readonly toolName: "outlit_preview_customer_activation";
6120
+ readonly commandId: "customer_activation.preview";
6121
+ readonly commandVersion: 1;
6122
+ readonly ownerDomain: "customer_activation";
6123
+ readonly title: "Preview Customer Activation";
6124
+ readonly description: "Preview the bounded recent impact of choosing a product event for customer activation without changing configuration.";
6125
+ readonly inputSchema: {
6126
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6127
+ readonly type: "object";
6128
+ readonly properties: {
6129
+ readonly eventName: {
6130
+ readonly type: "string";
6131
+ readonly minLength: 1;
6132
+ readonly maxLength: 191;
6133
+ };
6134
+ readonly lookbackDays: {
6135
+ readonly default: 30;
6136
+ readonly type: "integer";
6137
+ readonly minimum: 1;
6138
+ readonly maximum: 90;
6139
+ };
6140
+ readonly exampleLimit: {
6141
+ readonly default: 10;
6142
+ readonly type: "integer";
6143
+ readonly minimum: 1;
6144
+ readonly maximum: 20;
6145
+ };
6146
+ };
6147
+ readonly required: readonly ["eventName"];
6148
+ readonly additionalProperties: false;
6149
+ };
6150
+ readonly outputSchema: {
6151
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6152
+ readonly type: "object";
6153
+ readonly properties: {
6154
+ readonly preview: {
6155
+ readonly type: "object";
6156
+ readonly properties: {
6157
+ readonly eventName: {
6158
+ readonly type: "string";
6159
+ readonly minLength: 1;
6160
+ readonly maxLength: 191;
6161
+ };
6162
+ readonly evaluatedFrom: {
6163
+ readonly type: "string";
6164
+ readonly format: "date-time";
6165
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
6166
+ };
6167
+ readonly evaluatedTo: {
6168
+ readonly type: "string";
6169
+ readonly format: "date-time";
6170
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
6171
+ };
6172
+ readonly evaluatedEventCount: {
6173
+ readonly type: "integer";
6174
+ readonly minimum: 0;
6175
+ readonly maximum: 9007199254740991;
6176
+ };
6177
+ readonly matchedCustomerCount: {
6178
+ readonly type: "integer";
6179
+ readonly minimum: 0;
6180
+ readonly maximum: 9007199254740991;
6181
+ };
6182
+ readonly alreadyActivatedCustomerCount: {
6183
+ readonly type: "integer";
6184
+ readonly minimum: 0;
6185
+ readonly maximum: 9007199254740991;
6186
+ };
6187
+ readonly wouldActivateCustomerCount: {
6188
+ readonly type: "integer";
6189
+ readonly minimum: 0;
6190
+ readonly maximum: 9007199254740991;
6191
+ };
6192
+ readonly evaluatedContactOccurrenceCount: {
6193
+ readonly type: "integer";
6194
+ readonly minimum: 0;
6195
+ readonly maximum: 9007199254740991;
6196
+ };
6197
+ readonly matchedContactCount: {
6198
+ readonly type: "integer";
6199
+ readonly minimum: 0;
6200
+ readonly maximum: 9007199254740991;
6201
+ };
6202
+ readonly alreadyActivatedContactCount: {
6203
+ readonly type: "integer";
6204
+ readonly minimum: 0;
6205
+ readonly maximum: 9007199254740991;
6206
+ };
6207
+ readonly wouldActivateContactCount: {
6208
+ readonly type: "integer";
6209
+ readonly minimum: 0;
6210
+ readonly maximum: 9007199254740991;
6211
+ };
6212
+ readonly contactTruncated: {
6213
+ readonly type: "boolean";
6214
+ };
6215
+ readonly customerTruncated: {
6216
+ readonly type: "boolean";
6217
+ };
6218
+ readonly truncated: {
6219
+ readonly type: "boolean";
6220
+ };
6221
+ readonly examples: {
6222
+ readonly type: "array";
6223
+ readonly items: {
6224
+ readonly type: "object";
6225
+ readonly properties: {
6226
+ readonly customer: {
6227
+ readonly type: "object";
6228
+ readonly properties: {
6229
+ readonly id: {
6230
+ readonly type: "string";
6231
+ readonly minLength: 1;
6232
+ };
6233
+ readonly name: {
6234
+ readonly type: "string";
6235
+ readonly minLength: 1;
6236
+ };
6237
+ readonly domain: {
6238
+ readonly type: "string";
6239
+ readonly minLength: 1;
6240
+ };
6241
+ };
6242
+ readonly required: readonly ["id", "name", "domain"];
6243
+ readonly additionalProperties: false;
6244
+ };
6245
+ readonly activatedAt: {
6246
+ readonly anyOf: readonly [{
6247
+ readonly type: "string";
6248
+ readonly format: "date-time";
6249
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
6250
+ }, {
6251
+ readonly type: "null";
6252
+ }];
6253
+ };
6254
+ readonly firstMatchedAt: {
6255
+ readonly type: "string";
6256
+ readonly format: "date-time";
6257
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
6258
+ };
6259
+ readonly eventId: {
6260
+ readonly type: "string";
6261
+ readonly format: "uuid";
6262
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
6263
+ };
6264
+ };
6265
+ readonly required: readonly ["customer", "activatedAt", "firstMatchedAt", "eventId"];
6266
+ readonly additionalProperties: false;
6267
+ };
6268
+ };
6269
+ };
6270
+ readonly required: readonly ["eventName", "evaluatedFrom", "evaluatedTo", "evaluatedEventCount", "matchedCustomerCount", "alreadyActivatedCustomerCount", "wouldActivateCustomerCount", "evaluatedContactOccurrenceCount", "matchedContactCount", "alreadyActivatedContactCount", "wouldActivateContactCount", "contactTruncated", "customerTruncated", "truncated", "examples"];
6271
+ readonly additionalProperties: false;
6272
+ };
6273
+ };
6274
+ readonly required: readonly ["preview"];
6275
+ readonly additionalProperties: false;
6276
+ };
6277
+ };
6278
+ readonly outlit_update_customer_activation: {
6279
+ readonly toolName: "outlit_update_customer_activation";
6280
+ readonly commandId: "customer_activation.update";
6281
+ readonly commandVersion: 1;
6282
+ readonly ownerDomain: "customer_activation";
6283
+ readonly title: "Update Customer Activation";
6284
+ readonly description: "Set the product event used for future customer activation, or disable event-based activation with null. This does not backfill history.";
6285
+ readonly inputSchema: {
6286
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6287
+ readonly type: "object";
6288
+ readonly properties: {
6289
+ readonly eventName: {
6290
+ readonly anyOf: readonly [{
6291
+ readonly type: "string";
6292
+ readonly minLength: 1;
6293
+ readonly maxLength: 191;
6294
+ }, {
6295
+ readonly type: "null";
6296
+ }];
6297
+ };
6298
+ };
6299
+ readonly required: readonly ["eventName"];
6300
+ readonly additionalProperties: false;
6301
+ };
6302
+ readonly outputSchema: {
6303
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6304
+ readonly type: "object";
6305
+ readonly properties: {
6306
+ readonly activation: {
6307
+ readonly type: "object";
6308
+ readonly properties: {
6309
+ readonly eventName: {
6310
+ readonly anyOf: readonly [{
6311
+ readonly type: "string";
6312
+ readonly minLength: 1;
6313
+ readonly maxLength: 191;
6314
+ }, {
6315
+ readonly type: "null";
6316
+ }];
6317
+ };
6318
+ };
6319
+ readonly required: readonly ["eventName"];
6320
+ readonly additionalProperties: false;
6321
+ };
6322
+ readonly changed: {
6323
+ readonly type: "boolean";
6324
+ };
6325
+ };
6326
+ readonly required: readonly ["activation", "changed"];
6327
+ readonly additionalProperties: false;
6328
+ };
6329
+ };
6330
+ readonly outlit_get_workspace_settings: {
6331
+ readonly toolName: "outlit_get_workspace_settings";
6332
+ readonly commandId: "settings.get";
6333
+ readonly commandVersion: 1;
6334
+ readonly ownerDomain: "settings";
6335
+ readonly title: "Get Workspace Settings";
6336
+ readonly description: "Get the workspace default timezone used by time-based product behavior.";
6337
+ readonly inputSchema: {
6338
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6339
+ readonly type: "object";
6340
+ readonly properties: {};
6341
+ readonly additionalProperties: false;
6342
+ };
6343
+ readonly outputSchema: {
6344
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6345
+ readonly type: "object";
6346
+ readonly properties: {
6347
+ readonly settings: {
6348
+ readonly type: "object";
6349
+ readonly properties: {
6350
+ readonly defaultTimezone: {
6351
+ readonly type: "string";
6352
+ readonly minLength: 1;
6353
+ };
6354
+ };
6355
+ readonly required: readonly ["defaultTimezone"];
6356
+ readonly additionalProperties: false;
6357
+ };
6358
+ };
6359
+ readonly required: readonly ["settings"];
6360
+ readonly additionalProperties: false;
6361
+ };
6362
+ };
6363
+ readonly outlit_update_workspace_settings: {
6364
+ readonly toolName: "outlit_update_workspace_settings";
6365
+ readonly commandId: "settings.update";
6366
+ readonly commandVersion: 1;
6367
+ readonly ownerDomain: "settings";
6368
+ readonly title: "Update Workspace Settings";
6369
+ readonly description: "Update the workspace default timezone using a valid IANA timezone.";
6370
+ readonly inputSchema: {
6371
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6372
+ readonly type: "object";
6373
+ readonly properties: {
6374
+ readonly defaultTimezone: {
6375
+ readonly type: "string";
6376
+ readonly minLength: 1;
6377
+ };
6378
+ };
6379
+ readonly required: readonly ["defaultTimezone"];
6380
+ readonly additionalProperties: false;
6381
+ };
6382
+ readonly outputSchema: {
6383
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6384
+ readonly type: "object";
6385
+ readonly properties: {
6386
+ readonly settings: {
6387
+ readonly type: "object";
6388
+ readonly properties: {
6389
+ readonly defaultTimezone: {
6390
+ readonly type: "string";
6391
+ readonly minLength: 1;
6392
+ };
6393
+ };
6394
+ readonly required: readonly ["defaultTimezone"];
6395
+ readonly additionalProperties: false;
6396
+ };
6397
+ };
6398
+ readonly required: readonly ["settings"];
6399
+ readonly additionalProperties: false;
6400
+ };
6401
+ };
6402
+ readonly outlit_list_features: {
6403
+ readonly toolName: "outlit_list_features";
6404
+ readonly commandId: "value_feature_workspace.get";
6405
+ readonly commandVersion: 1;
6406
+ readonly ownerDomain: "value_features";
6407
+ readonly title: "List Features";
6408
+ readonly description: "List configured features, exact historical usage, eligible sources, and observed event candidates.";
6409
+ readonly inputSchema: {
6410
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6411
+ readonly type: "object";
6412
+ readonly properties: {
6413
+ readonly sourceKey: {
6414
+ readonly type: "string";
6415
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6416
+ };
6417
+ readonly weeks: {
6418
+ readonly default: 12;
6419
+ readonly type: "integer";
6420
+ readonly minimum: 1;
6421
+ readonly maximum: 53;
6422
+ };
6423
+ readonly candidateLimit: {
6424
+ readonly default: 100;
6425
+ readonly type: "integer";
6426
+ readonly minimum: 1;
6427
+ readonly maximum: 100;
6428
+ };
6429
+ };
6430
+ readonly additionalProperties: false;
6431
+ };
6432
+ readonly outputSchema: {
6433
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6434
+ readonly type: "object";
6435
+ readonly properties: {
6436
+ readonly sources: {
6437
+ readonly type: "array";
6438
+ readonly items: {
6439
+ readonly type: "object";
6440
+ readonly properties: {
6441
+ readonly sourceKey: {
6442
+ readonly type: "string";
6443
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6444
+ };
6445
+ readonly provider: {
6446
+ readonly type: "string";
6447
+ readonly enum: readonly ["outlit_sdk", "posthog", "mixpanel"];
6448
+ };
6449
+ readonly label: {
6450
+ readonly type: "string";
6451
+ readonly minLength: 1;
6452
+ readonly maxLength: 255;
6453
+ };
6454
+ readonly readiness: {
6455
+ readonly type: "string";
6456
+ readonly enum: readonly ["READY", "WARMING", "BLOCKED"];
6457
+ };
6458
+ };
6459
+ readonly required: readonly ["sourceKey", "provider", "label", "readiness"];
6460
+ readonly additionalProperties: false;
6461
+ };
6462
+ };
6463
+ readonly selectedSourceKey: {
6464
+ readonly anyOf: readonly [{
6465
+ readonly type: "string";
6466
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6467
+ }, {
6468
+ readonly type: "null";
6469
+ }];
6470
+ };
6471
+ readonly workspaceActiveFeatureCount: {
6472
+ readonly type: "integer";
6473
+ readonly minimum: 0;
6474
+ readonly maximum: 9007199254740991;
6475
+ };
6476
+ readonly features: {
6477
+ readonly maxItems: 100;
6478
+ readonly type: "array";
6479
+ readonly items: {
6480
+ readonly type: "object";
6481
+ readonly properties: {
6482
+ readonly id: {
6483
+ readonly type: "string";
6484
+ readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
6485
+ };
6486
+ readonly revision: {
6487
+ readonly type: "string";
6488
+ readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
6489
+ };
6490
+ readonly sourceKey: {
6491
+ readonly type: "string";
6492
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6493
+ };
6494
+ readonly featureKey: {
6495
+ readonly type: "string";
6496
+ readonly maxLength: 64;
6497
+ readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
6498
+ };
6499
+ readonly name: {
6500
+ readonly type: "string";
6501
+ readonly minLength: 1;
6502
+ readonly maxLength: 255;
6503
+ };
6504
+ readonly rule: {
6505
+ readonly type: "object";
6506
+ readonly properties: {
6507
+ readonly eventName: {
6508
+ readonly type: "string";
6509
+ readonly minLength: 1;
6510
+ readonly maxLength: 191;
6511
+ };
6512
+ readonly propertyFilters: {
6513
+ readonly maxItems: 5;
6514
+ readonly type: "array";
6515
+ readonly items: {
6516
+ readonly oneOf: readonly [{
6517
+ readonly type: "object";
6518
+ readonly properties: {
6519
+ readonly property: {
6520
+ readonly type: "string";
6521
+ readonly minLength: 1;
6522
+ readonly maxLength: 191;
6523
+ };
6524
+ readonly operator: {
6525
+ readonly type: "string";
6526
+ readonly const: "equals";
6527
+ };
6528
+ readonly value: {
6529
+ readonly oneOf: readonly [{
6530
+ readonly type: "object";
6531
+ readonly properties: {
6532
+ readonly type: {
6533
+ readonly type: "string";
6534
+ readonly const: "string";
6535
+ };
6536
+ readonly value: {
6537
+ readonly type: "string";
6538
+ readonly maxLength: 191;
6539
+ };
6540
+ };
6541
+ readonly required: readonly ["type", "value"];
6542
+ readonly additionalProperties: false;
6543
+ }, {
6544
+ readonly type: "object";
6545
+ readonly properties: {
6546
+ readonly type: {
6547
+ readonly type: "string";
6548
+ readonly const: "number";
6549
+ };
6550
+ readonly value: {
6551
+ readonly type: "number";
6552
+ readonly minimum: -9007199254740991;
6553
+ readonly maximum: 9007199254740991;
6554
+ };
6555
+ };
6556
+ readonly required: readonly ["type", "value"];
6557
+ readonly additionalProperties: false;
6558
+ }, {
6559
+ readonly type: "object";
6560
+ readonly properties: {
6561
+ readonly type: {
6562
+ readonly type: "string";
6563
+ readonly const: "boolean";
6564
+ };
6565
+ readonly value: {
6566
+ readonly type: "boolean";
6567
+ };
6568
+ };
6569
+ readonly required: readonly ["type", "value"];
6570
+ readonly additionalProperties: false;
6571
+ }];
6572
+ };
6573
+ };
6574
+ readonly required: readonly ["property", "operator", "value"];
6575
+ readonly additionalProperties: false;
6576
+ }, {
6577
+ readonly type: "object";
6578
+ readonly properties: {
6579
+ readonly property: {
6580
+ readonly type: "string";
6581
+ readonly minLength: 1;
6582
+ readonly maxLength: 191;
6583
+ };
6584
+ readonly operator: {
6585
+ readonly type: "string";
6586
+ readonly const: "exists";
6587
+ };
6588
+ };
6589
+ readonly required: readonly ["property", "operator"];
6590
+ readonly additionalProperties: false;
6591
+ }];
6592
+ };
6593
+ };
6594
+ };
6595
+ readonly required: readonly ["eventName", "propertyFilters"];
6596
+ readonly additionalProperties: false;
6597
+ };
6598
+ readonly evidence: {
6599
+ readonly oneOf: readonly [{
6600
+ readonly type: "object";
6601
+ readonly properties: {
6602
+ readonly window: {
6603
+ readonly type: "object";
6604
+ readonly properties: {
6605
+ readonly startAt: {
6606
+ readonly type: "string";
6607
+ readonly format: "date-time";
6608
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6609
+ };
6610
+ readonly endAt: {
6611
+ readonly type: "string";
6612
+ readonly format: "date-time";
6613
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6614
+ };
6615
+ };
6616
+ readonly required: readonly ["startAt", "endAt"];
6617
+ readonly additionalProperties: false;
6618
+ };
6619
+ readonly coverage: {
6620
+ readonly type: "string";
6621
+ readonly enum: readonly ["complete", "partial"];
6622
+ };
6623
+ readonly eventCount: {
6624
+ readonly type: "integer";
6625
+ readonly minimum: 0;
6626
+ readonly maximum: 9007199254740991;
6627
+ };
6628
+ readonly activeDays: {
6629
+ readonly type: "integer";
6630
+ readonly minimum: 0;
6631
+ readonly maximum: 9007199254740991;
6632
+ };
6633
+ readonly activeWeeks: {
6634
+ readonly type: "integer";
6635
+ readonly minimum: 0;
6636
+ readonly maximum: 53;
6637
+ };
6638
+ readonly firstObservedAt: {
6639
+ readonly anyOf: readonly [{
6640
+ readonly type: "string";
6641
+ readonly format: "date-time";
6642
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6643
+ }, {
6644
+ readonly type: "null";
6645
+ }];
6646
+ };
6647
+ readonly lastObservedAt: {
6648
+ readonly anyOf: readonly [{
6649
+ readonly type: "string";
6650
+ readonly format: "date-time";
6651
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6652
+ }, {
6653
+ readonly type: "null";
6654
+ }];
6655
+ };
6656
+ readonly distinctCustomers: {
6657
+ readonly type: "integer";
6658
+ readonly minimum: 0;
6659
+ readonly maximum: 9007199254740991;
6660
+ };
6661
+ };
6662
+ readonly required: readonly ["window", "coverage", "eventCount", "activeDays", "activeWeeks", "firstObservedAt", "lastObservedAt", "distinctCustomers"];
6663
+ readonly additionalProperties: false;
6664
+ }, {
6665
+ readonly type: "object";
6666
+ readonly properties: {
6667
+ readonly window: {
6668
+ readonly type: "object";
6669
+ readonly properties: {
6670
+ readonly startAt: {
6671
+ readonly type: "string";
6672
+ readonly format: "date-time";
6673
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6674
+ };
6675
+ readonly endAt: {
6676
+ readonly type: "string";
6677
+ readonly format: "date-time";
6678
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
6679
+ };
6680
+ };
6681
+ readonly required: readonly ["startAt", "endAt"];
6682
+ readonly additionalProperties: false;
6683
+ };
6684
+ readonly coverage: {
6685
+ readonly type: "string";
6686
+ readonly const: "unavailable";
6687
+ };
6688
+ readonly reason: {
6689
+ readonly type: "string";
6690
+ readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
6691
+ };
6692
+ };
6693
+ readonly required: readonly ["window", "coverage", "reason"];
6694
+ readonly additionalProperties: false;
6695
+ }];
6696
+ };
6697
+ };
6698
+ readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule", "evidence"];
6699
+ readonly additionalProperties: false;
6700
+ };
6701
+ };
6702
+ readonly candidates: {
6703
+ readonly oneOf: readonly [{
6704
+ readonly type: "object";
6705
+ readonly properties: {
6706
+ readonly status: {
6707
+ readonly type: "string";
6708
+ readonly const: "ready";
6709
+ };
6710
+ readonly items: {
6711
+ readonly maxItems: 100;
6712
+ readonly type: "array";
6713
+ readonly items: {
6714
+ readonly type: "object";
6715
+ readonly properties: {
6716
+ readonly eventName: {
6717
+ readonly type: "string";
6718
+ readonly minLength: 1;
6719
+ readonly maxLength: 191;
6720
+ };
6721
+ readonly eventCount: {
6722
+ readonly type: "integer";
6723
+ readonly minimum: 0;
6724
+ readonly maximum: 9007199254740991;
6725
+ };
6726
+ readonly distinctCustomers: {
6727
+ readonly type: "integer";
6728
+ readonly minimum: 0;
6729
+ readonly maximum: 9007199254740991;
6730
+ };
6731
+ readonly activeWeeks: {
6732
+ readonly type: "integer";
6733
+ readonly minimum: 1;
6734
+ readonly maximum: 53;
6735
+ };
6736
+ readonly propertyKeys: {
6737
+ readonly maxItems: 10;
6738
+ readonly type: "array";
6739
+ readonly items: {
6740
+ readonly type: "string";
6741
+ readonly minLength: 1;
6742
+ readonly maxLength: 191;
6743
+ };
6744
+ };
6745
+ };
6746
+ readonly required: readonly ["eventName", "eventCount", "distinctCustomers", "activeWeeks", "propertyKeys"];
6747
+ readonly additionalProperties: false;
6748
+ };
6749
+ };
6750
+ readonly truncated: {
6751
+ readonly type: "boolean";
6752
+ };
6753
+ };
6754
+ readonly required: readonly ["status", "items", "truncated"];
6755
+ readonly additionalProperties: false;
6756
+ }, {
6757
+ readonly type: "object";
6758
+ readonly properties: {
6759
+ readonly status: {
6760
+ readonly type: "string";
6761
+ readonly const: "partial";
6762
+ };
6763
+ readonly items: {
6764
+ readonly maxItems: 100;
6765
+ readonly type: "array";
6766
+ readonly items: {
6767
+ readonly type: "object";
6768
+ readonly properties: {
6769
+ readonly eventName: {
6770
+ readonly type: "string";
6771
+ readonly minLength: 1;
6772
+ readonly maxLength: 191;
6773
+ };
6774
+ readonly eventCount: {
6775
+ readonly type: "integer";
6776
+ readonly minimum: 0;
6777
+ readonly maximum: 9007199254740991;
6778
+ };
6779
+ readonly distinctCustomers: {
6780
+ readonly type: "integer";
6781
+ readonly minimum: 0;
6782
+ readonly maximum: 9007199254740991;
6783
+ };
6784
+ readonly activeWeeks: {
6785
+ readonly type: "integer";
6786
+ readonly minimum: 1;
6787
+ readonly maximum: 53;
6788
+ };
6789
+ readonly propertyKeys: {
6790
+ readonly maxItems: 10;
6791
+ readonly type: "array";
6792
+ readonly items: {
6793
+ readonly type: "string";
6794
+ readonly minLength: 1;
6795
+ readonly maxLength: 191;
6796
+ };
6797
+ };
6798
+ };
6799
+ readonly required: readonly ["eventName", "eventCount", "distinctCustomers", "activeWeeks", "propertyKeys"];
6800
+ readonly additionalProperties: false;
6801
+ };
6802
+ };
6803
+ readonly truncated: {
6804
+ readonly type: "boolean";
6805
+ };
6806
+ };
6807
+ readonly required: readonly ["status", "items", "truncated"];
6808
+ readonly additionalProperties: false;
6809
+ }, {
6810
+ readonly type: "object";
6811
+ readonly properties: {
6812
+ readonly status: {
6813
+ readonly type: "string";
6814
+ readonly const: "unavailable";
6815
+ };
6816
+ readonly reason: {
6817
+ readonly type: "string";
6818
+ readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
6819
+ };
6820
+ };
6821
+ readonly required: readonly ["status", "reason"];
6822
+ readonly additionalProperties: false;
6823
+ }];
6824
+ };
6825
+ };
6826
+ readonly required: readonly ["sources", "selectedSourceKey", "workspaceActiveFeatureCount", "features", "candidates"];
6827
+ readonly additionalProperties: false;
6828
+ };
6829
+ };
6830
+ readonly outlit_create_feature: {
6831
+ readonly toolName: "outlit_create_feature";
6832
+ readonly commandId: "value_feature.create";
6833
+ readonly commandVersion: 1;
6834
+ readonly ownerDomain: "value_features";
6835
+ readonly title: "Create Feature";
6836
+ readonly description: "Create or idempotently return one customer-value Feature observed by one event rule.";
6837
+ readonly inputSchema: {
6838
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6839
+ readonly type: "object";
6840
+ readonly properties: {
6841
+ readonly sourceKey: {
6842
+ readonly type: "string";
6843
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6844
+ };
6845
+ readonly eventName: {
6846
+ readonly type: "string";
6847
+ readonly minLength: 1;
6848
+ readonly maxLength: 191;
6849
+ };
6850
+ readonly featureKey: {
6851
+ readonly type: "string";
6852
+ readonly maxLength: 64;
6853
+ readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
6854
+ };
6855
+ readonly name: {
6856
+ readonly type: "string";
6857
+ readonly minLength: 1;
6858
+ readonly maxLength: 255;
6859
+ };
6860
+ readonly propertyFilters: {
6861
+ readonly default: readonly [];
6862
+ readonly maxItems: 5;
6863
+ readonly type: "array";
6864
+ readonly items: {
6865
+ readonly oneOf: readonly [{
6866
+ readonly type: "object";
6867
+ readonly properties: {
6868
+ readonly property: {
6869
+ readonly type: "string";
6870
+ readonly minLength: 1;
6871
+ readonly maxLength: 191;
6872
+ };
6873
+ readonly operator: {
6874
+ readonly type: "string";
6875
+ readonly const: "equals";
6876
+ };
6877
+ readonly value: {
6878
+ readonly oneOf: readonly [{
6879
+ readonly type: "object";
6880
+ readonly properties: {
6881
+ readonly type: {
6882
+ readonly type: "string";
6883
+ readonly const: "string";
6884
+ };
6885
+ readonly value: {
6886
+ readonly type: "string";
6887
+ readonly maxLength: 191;
6888
+ };
6889
+ };
6890
+ readonly required: readonly ["type", "value"];
6891
+ readonly additionalProperties: false;
6892
+ }, {
6893
+ readonly type: "object";
6894
+ readonly properties: {
6895
+ readonly type: {
6896
+ readonly type: "string";
6897
+ readonly const: "number";
6898
+ };
6899
+ readonly value: {
6900
+ readonly type: "number";
6901
+ readonly minimum: -9007199254740991;
6902
+ readonly maximum: 9007199254740991;
6903
+ };
6904
+ };
6905
+ readonly required: readonly ["type", "value"];
6906
+ readonly additionalProperties: false;
6907
+ }, {
6908
+ readonly type: "object";
6909
+ readonly properties: {
6910
+ readonly type: {
6911
+ readonly type: "string";
6912
+ readonly const: "boolean";
6913
+ };
6914
+ readonly value: {
6915
+ readonly type: "boolean";
6916
+ };
6917
+ };
6918
+ readonly required: readonly ["type", "value"];
6919
+ readonly additionalProperties: false;
6920
+ }];
6921
+ };
6922
+ };
6923
+ readonly required: readonly ["property", "operator", "value"];
6924
+ readonly additionalProperties: false;
6925
+ }, {
6926
+ readonly type: "object";
6927
+ readonly properties: {
6928
+ readonly property: {
6929
+ readonly type: "string";
6930
+ readonly minLength: 1;
6931
+ readonly maxLength: 191;
6932
+ };
6933
+ readonly operator: {
6934
+ readonly type: "string";
6935
+ readonly const: "exists";
6936
+ };
6937
+ };
6938
+ readonly required: readonly ["property", "operator"];
6939
+ readonly additionalProperties: false;
6940
+ }];
6941
+ };
6942
+ };
6943
+ };
6944
+ readonly required: readonly ["sourceKey", "eventName", "featureKey", "name"];
6945
+ readonly additionalProperties: false;
6946
+ };
6947
+ readonly outputSchema: {
6948
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
6949
+ readonly type: "object";
6950
+ readonly properties: {
6951
+ readonly created: {
6952
+ readonly type: "boolean";
6953
+ };
6954
+ readonly feature: {
6955
+ readonly type: "object";
6956
+ readonly properties: {
6957
+ readonly id: {
6958
+ readonly type: "string";
6959
+ readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
6960
+ };
6961
+ readonly revision: {
6962
+ readonly type: "string";
6963
+ readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
6964
+ };
6965
+ readonly sourceKey: {
6966
+ readonly type: "string";
6967
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
6968
+ };
6969
+ readonly featureKey: {
6970
+ readonly type: "string";
6971
+ readonly maxLength: 64;
6972
+ readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
6973
+ };
6974
+ readonly name: {
6975
+ readonly type: "string";
6976
+ readonly minLength: 1;
6977
+ readonly maxLength: 255;
6978
+ };
6979
+ readonly rule: {
6980
+ readonly type: "object";
6981
+ readonly properties: {
6982
+ readonly eventName: {
6983
+ readonly type: "string";
6984
+ readonly minLength: 1;
6985
+ readonly maxLength: 191;
6986
+ };
6987
+ readonly propertyFilters: {
6988
+ readonly maxItems: 5;
6989
+ readonly type: "array";
6990
+ readonly items: {
6991
+ readonly oneOf: readonly [{
6992
+ readonly type: "object";
6993
+ readonly properties: {
6994
+ readonly property: {
6995
+ readonly type: "string";
6996
+ readonly minLength: 1;
6997
+ readonly maxLength: 191;
6998
+ };
6999
+ readonly operator: {
7000
+ readonly type: "string";
7001
+ readonly const: "equals";
7002
+ };
7003
+ readonly value: {
7004
+ readonly oneOf: readonly [{
7005
+ readonly type: "object";
7006
+ readonly properties: {
7007
+ readonly type: {
7008
+ readonly type: "string";
7009
+ readonly const: "string";
7010
+ };
7011
+ readonly value: {
7012
+ readonly type: "string";
7013
+ readonly maxLength: 191;
7014
+ };
7015
+ };
7016
+ readonly required: readonly ["type", "value"];
7017
+ readonly additionalProperties: false;
7018
+ }, {
7019
+ readonly type: "object";
7020
+ readonly properties: {
7021
+ readonly type: {
7022
+ readonly type: "string";
7023
+ readonly const: "number";
7024
+ };
7025
+ readonly value: {
7026
+ readonly type: "number";
7027
+ readonly minimum: -9007199254740991;
7028
+ readonly maximum: 9007199254740991;
7029
+ };
7030
+ };
7031
+ readonly required: readonly ["type", "value"];
7032
+ readonly additionalProperties: false;
7033
+ }, {
7034
+ readonly type: "object";
7035
+ readonly properties: {
7036
+ readonly type: {
7037
+ readonly type: "string";
7038
+ readonly const: "boolean";
7039
+ };
7040
+ readonly value: {
7041
+ readonly type: "boolean";
7042
+ };
7043
+ };
7044
+ readonly required: readonly ["type", "value"];
7045
+ readonly additionalProperties: false;
7046
+ }];
7047
+ };
7048
+ };
7049
+ readonly required: readonly ["property", "operator", "value"];
7050
+ readonly additionalProperties: false;
7051
+ }, {
7052
+ readonly type: "object";
7053
+ readonly properties: {
7054
+ readonly property: {
7055
+ readonly type: "string";
7056
+ readonly minLength: 1;
7057
+ readonly maxLength: 191;
7058
+ };
7059
+ readonly operator: {
7060
+ readonly type: "string";
7061
+ readonly const: "exists";
7062
+ };
7063
+ };
7064
+ readonly required: readonly ["property", "operator"];
7065
+ readonly additionalProperties: false;
7066
+ }];
7067
+ };
7068
+ };
7069
+ };
7070
+ readonly required: readonly ["eventName", "propertyFilters"];
7071
+ readonly additionalProperties: false;
7072
+ };
7073
+ };
7074
+ readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule"];
7075
+ readonly additionalProperties: false;
7076
+ };
7077
+ };
7078
+ readonly required: readonly ["created", "feature"];
7079
+ readonly additionalProperties: false;
7080
+ };
7081
+ };
7082
+ readonly outlit_archive_feature: {
7083
+ readonly toolName: "outlit_archive_feature";
7084
+ readonly commandId: "value_feature.archive";
7085
+ readonly commandVersion: 1;
7086
+ readonly ownerDomain: "value_features";
7087
+ readonly title: "Archive Feature";
7088
+ readonly description: "Archive a Feature when at least one other active Feature remains.";
7089
+ readonly inputSchema: {
7090
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
7091
+ readonly type: "object";
7092
+ readonly properties: {
7093
+ readonly id: {
7094
+ readonly type: "string";
7095
+ readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
7096
+ };
7097
+ readonly revision: {
7098
+ readonly type: "string";
7099
+ readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
7100
+ };
7101
+ };
7102
+ readonly required: readonly ["id", "revision"];
7103
+ readonly additionalProperties: false;
7104
+ };
7105
+ readonly outputSchema: {
7106
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
7107
+ readonly type: "object";
7108
+ readonly properties: {
7109
+ readonly archived: {
7110
+ readonly type: "boolean";
7111
+ readonly const: true;
7112
+ };
7113
+ readonly feature: {
7114
+ readonly type: "object";
7115
+ readonly properties: {
7116
+ readonly id: {
7117
+ readonly type: "string";
7118
+ readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
7119
+ };
7120
+ readonly revision: {
7121
+ readonly type: "string";
7122
+ readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
7123
+ };
7124
+ };
7125
+ readonly required: readonly ["id", "revision"];
7126
+ readonly additionalProperties: false;
7127
+ };
7128
+ };
7129
+ readonly required: readonly ["archived", "feature"];
7130
+ readonly additionalProperties: false;
7131
+ };
7132
+ };
7133
+ readonly outlit_get_customer_features: {
7134
+ readonly toolName: "outlit_get_customer_features";
7135
+ readonly commandId: "customer_feature_usage.get";
7136
+ readonly commandVersion: 1;
7137
+ readonly ownerDomain: "value_features";
7138
+ readonly title: "Get Customer Features";
7139
+ readonly description: "Read exact historical feature-usage evidence for one authorized customer.";
7140
+ readonly inputSchema: {
7141
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
7142
+ readonly type: "object";
7143
+ readonly properties: {
7144
+ readonly customer: {
7145
+ readonly type: "string";
7146
+ readonly minLength: 1;
7147
+ readonly maxLength: 500;
7148
+ };
7149
+ readonly weeks: {
7150
+ readonly default: 12;
7151
+ readonly type: "integer";
7152
+ readonly minimum: 1;
7153
+ readonly maximum: 53;
7154
+ };
7155
+ readonly includeWeeklyUsage: {
7156
+ readonly default: false;
7157
+ readonly type: "boolean";
7158
+ };
7159
+ };
7160
+ readonly required: readonly ["customer"];
7161
+ readonly additionalProperties: false;
7162
+ };
7163
+ readonly outputSchema: {
7164
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
7165
+ readonly type: "object";
7166
+ readonly properties: {
7167
+ readonly customer: {
7168
+ readonly type: "object";
7169
+ readonly properties: {
7170
+ readonly id: {
7171
+ readonly type: "string";
7172
+ readonly minLength: 1;
7173
+ readonly maxLength: 191;
7174
+ };
7175
+ readonly name: {
7176
+ readonly type: "string";
7177
+ readonly minLength: 1;
7178
+ readonly maxLength: 255;
7179
+ };
7180
+ };
7181
+ readonly required: readonly ["id", "name"];
7182
+ readonly additionalProperties: false;
7183
+ };
7184
+ readonly features: {
7185
+ readonly maxItems: 100;
7186
+ readonly type: "array";
7187
+ readonly items: {
7188
+ readonly type: "object";
7189
+ readonly properties: {
7190
+ readonly id: {
7191
+ readonly type: "string";
7192
+ readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
7193
+ };
7194
+ readonly revision: {
7195
+ readonly type: "string";
7196
+ readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
7197
+ };
7198
+ readonly sourceKey: {
7199
+ readonly type: "string";
7200
+ readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
7201
+ };
7202
+ readonly featureKey: {
7203
+ readonly type: "string";
7204
+ readonly maxLength: 64;
7205
+ readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
7206
+ };
7207
+ readonly name: {
7208
+ readonly type: "string";
7209
+ readonly minLength: 1;
7210
+ readonly maxLength: 255;
7211
+ };
7212
+ readonly rule: {
7213
+ readonly type: "object";
7214
+ readonly properties: {
7215
+ readonly eventName: {
7216
+ readonly type: "string";
7217
+ readonly minLength: 1;
7218
+ readonly maxLength: 191;
7219
+ };
7220
+ readonly propertyFilters: {
7221
+ readonly maxItems: 5;
7222
+ readonly type: "array";
7223
+ readonly items: {
7224
+ readonly oneOf: readonly [{
7225
+ readonly type: "object";
7226
+ readonly properties: {
7227
+ readonly property: {
7228
+ readonly type: "string";
7229
+ readonly minLength: 1;
7230
+ readonly maxLength: 191;
7231
+ };
7232
+ readonly operator: {
7233
+ readonly type: "string";
7234
+ readonly const: "equals";
7235
+ };
7236
+ readonly value: {
7237
+ readonly oneOf: readonly [{
7238
+ readonly type: "object";
7239
+ readonly properties: {
7240
+ readonly type: {
7241
+ readonly type: "string";
7242
+ readonly const: "string";
7243
+ };
7244
+ readonly value: {
7245
+ readonly type: "string";
7246
+ readonly maxLength: 191;
7247
+ };
7248
+ };
7249
+ readonly required: readonly ["type", "value"];
7250
+ readonly additionalProperties: false;
7251
+ }, {
7252
+ readonly type: "object";
7253
+ readonly properties: {
7254
+ readonly type: {
7255
+ readonly type: "string";
7256
+ readonly const: "number";
7257
+ };
7258
+ readonly value: {
7259
+ readonly type: "number";
7260
+ readonly minimum: -9007199254740991;
7261
+ readonly maximum: 9007199254740991;
7262
+ };
7263
+ };
7264
+ readonly required: readonly ["type", "value"];
7265
+ readonly additionalProperties: false;
7266
+ }, {
7267
+ readonly type: "object";
7268
+ readonly properties: {
7269
+ readonly type: {
7270
+ readonly type: "string";
7271
+ readonly const: "boolean";
7272
+ };
7273
+ readonly value: {
7274
+ readonly type: "boolean";
7275
+ };
7276
+ };
7277
+ readonly required: readonly ["type", "value"];
7278
+ readonly additionalProperties: false;
7279
+ }];
7280
+ };
7281
+ };
7282
+ readonly required: readonly ["property", "operator", "value"];
7283
+ readonly additionalProperties: false;
7284
+ }, {
7285
+ readonly type: "object";
7286
+ readonly properties: {
7287
+ readonly property: {
7288
+ readonly type: "string";
7289
+ readonly minLength: 1;
7290
+ readonly maxLength: 191;
7291
+ };
7292
+ readonly operator: {
7293
+ readonly type: "string";
7294
+ readonly const: "exists";
7295
+ };
7296
+ };
7297
+ readonly required: readonly ["property", "operator"];
7298
+ readonly additionalProperties: false;
7299
+ }];
7300
+ };
7301
+ };
7302
+ };
7303
+ readonly required: readonly ["eventName", "propertyFilters"];
7304
+ readonly additionalProperties: false;
7305
+ };
7306
+ readonly evidence: {
7307
+ readonly oneOf: readonly [{
7308
+ readonly type: "object";
7309
+ readonly properties: {
7310
+ readonly window: {
7311
+ readonly type: "object";
7312
+ readonly properties: {
7313
+ readonly startAt: {
7314
+ readonly type: "string";
7315
+ readonly format: "date-time";
7316
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7317
+ };
7318
+ readonly endAt: {
7319
+ readonly type: "string";
7320
+ readonly format: "date-time";
7321
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7322
+ };
7323
+ };
7324
+ readonly required: readonly ["startAt", "endAt"];
7325
+ readonly additionalProperties: false;
7326
+ };
7327
+ readonly coverage: {
7328
+ readonly type: "string";
7329
+ readonly enum: readonly ["complete", "partial"];
7330
+ };
7331
+ readonly eventCount: {
7332
+ readonly type: "integer";
7333
+ readonly minimum: 0;
7334
+ readonly maximum: 9007199254740991;
7335
+ };
7336
+ readonly activeDays: {
7337
+ readonly type: "integer";
7338
+ readonly minimum: 0;
7339
+ readonly maximum: 9007199254740991;
7340
+ };
7341
+ readonly activeWeeks: {
7342
+ readonly type: "integer";
7343
+ readonly minimum: 0;
7344
+ readonly maximum: 53;
7345
+ };
7346
+ readonly firstObservedAt: {
7347
+ readonly anyOf: readonly [{
7348
+ readonly type: "string";
7349
+ readonly format: "date-time";
7350
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7351
+ }, {
7352
+ readonly type: "null";
7353
+ }];
7354
+ };
7355
+ readonly lastObservedAt: {
7356
+ readonly anyOf: readonly [{
7357
+ readonly type: "string";
7358
+ readonly format: "date-time";
7359
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7360
+ }, {
7361
+ readonly type: "null";
7362
+ }];
7363
+ };
7364
+ readonly weeklyUsage: {
7365
+ readonly maxItems: 53;
7366
+ readonly type: "array";
7367
+ readonly items: {
7368
+ readonly oneOf: readonly [{
7369
+ readonly type: "object";
7370
+ readonly properties: {
7371
+ readonly weekStartAt: {
7372
+ readonly type: "string";
7373
+ readonly format: "date-time";
7374
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7375
+ };
7376
+ readonly coverage: {
7377
+ readonly type: "string";
7378
+ readonly enum: readonly ["complete", "partial"];
7379
+ };
7380
+ readonly eventCount: {
7381
+ readonly type: "integer";
7382
+ readonly minimum: 0;
7383
+ readonly maximum: 9007199254740991;
7384
+ };
7385
+ readonly activeDays: {
7386
+ readonly type: "integer";
7387
+ readonly minimum: 0;
7388
+ readonly maximum: 7;
7389
+ };
7390
+ };
7391
+ readonly required: readonly ["weekStartAt", "coverage", "eventCount", "activeDays"];
7392
+ readonly additionalProperties: false;
7393
+ }, {
7394
+ readonly type: "object";
7395
+ readonly properties: {
7396
+ readonly weekStartAt: {
7397
+ readonly type: "string";
7398
+ readonly format: "date-time";
7399
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7400
+ };
7401
+ readonly coverage: {
7402
+ readonly type: "string";
7403
+ readonly const: "unavailable";
7404
+ };
7405
+ };
7406
+ readonly required: readonly ["weekStartAt", "coverage"];
7407
+ readonly additionalProperties: false;
7408
+ }];
7409
+ };
7410
+ };
7411
+ };
7412
+ readonly required: readonly ["window", "coverage", "eventCount", "activeDays", "activeWeeks", "firstObservedAt", "lastObservedAt"];
7413
+ readonly additionalProperties: false;
7414
+ }, {
7415
+ readonly type: "object";
7416
+ readonly properties: {
7417
+ readonly window: {
7418
+ readonly type: "object";
7419
+ readonly properties: {
7420
+ readonly startAt: {
7421
+ readonly type: "string";
7422
+ readonly format: "date-time";
7423
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7424
+ };
7425
+ readonly endAt: {
7426
+ readonly type: "string";
7427
+ readonly format: "date-time";
7428
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$";
7429
+ };
5419
7430
  };
7431
+ readonly required: readonly ["startAt", "endAt"];
7432
+ readonly additionalProperties: false;
5420
7433
  };
5421
- readonly required: readonly ["id", "name", "domain"];
5422
- readonly additionalProperties: false;
5423
- };
5424
- readonly activatedAt: {
5425
- readonly anyOf: readonly [{
7434
+ readonly coverage: {
5426
7435
  readonly type: "string";
5427
- readonly format: "date-time";
5428
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5429
- }, {
5430
- readonly type: "null";
5431
- }];
5432
- };
5433
- readonly firstMatchedAt: {
5434
- readonly type: "string";
5435
- readonly format: "date-time";
5436
- readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
5437
- };
5438
- readonly eventId: {
5439
- readonly type: "string";
5440
- readonly format: "uuid";
5441
- readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
7436
+ readonly const: "unavailable";
7437
+ };
7438
+ readonly reason: {
7439
+ readonly type: "string";
7440
+ readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
7441
+ };
5442
7442
  };
5443
- };
5444
- readonly required: readonly ["customer", "activatedAt", "firstMatchedAt", "eventId"];
5445
- readonly additionalProperties: false;
7443
+ readonly required: readonly ["window", "coverage", "reason"];
7444
+ readonly additionalProperties: false;
7445
+ }];
5446
7446
  };
5447
7447
  };
7448
+ readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule", "evidence"];
7449
+ readonly additionalProperties: false;
5448
7450
  };
5449
- readonly required: readonly ["eventName", "evaluatedFrom", "evaluatedTo", "evaluatedEventCount", "matchedCustomerCount", "alreadyActivatedCustomerCount", "wouldActivateCustomerCount", "evaluatedContactOccurrenceCount", "matchedContactCount", "alreadyActivatedContactCount", "wouldActivateContactCount", "contactTruncated", "customerTruncated", "truncated", "examples"];
5450
- readonly additionalProperties: false;
5451
7451
  };
5452
7452
  };
5453
- readonly required: readonly ["preview"];
7453
+ readonly required: readonly ["customer", "features"];
5454
7454
  readonly additionalProperties: false;
5455
7455
  };
5456
7456
  };
5457
- readonly outlit_update_customer_activation: {
5458
- readonly toolName: "outlit_update_customer_activation";
5459
- readonly commandId: "customer_activation.update";
7457
+ readonly outlit_list_attention_items: {
7458
+ readonly toolName: "outlit_list_attention_items";
7459
+ readonly commandId: "attention.list";
5460
7460
  readonly commandVersion: 1;
5461
- readonly ownerDomain: "customer_activation";
5462
- readonly title: "Update Customer Activation";
5463
- readonly description: "Set the product event used for future customer activation, or disable event-based activation with null. This does not backfill history.";
7461
+ readonly ownerDomain: "attention";
7462
+ readonly title: "List Attention Items";
7463
+ readonly description: "List authorized open or resolved Attention items. Returns bounded customer identity, current priority, ARR importance, lifecycle timestamps, and a prepared-action URL without evidence bodies or internal agent state.";
5464
7464
  readonly inputSchema: {
5465
7465
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5466
7466
  readonly type: "object";
5467
7467
  readonly properties: {
5468
- readonly eventName: {
5469
- readonly anyOf: readonly [{
5470
- readonly type: "string";
5471
- readonly minLength: 1;
5472
- readonly maxLength: 191;
5473
- }, {
5474
- readonly type: "null";
5475
- }];
7468
+ readonly status: {
7469
+ readonly description: "Attention lifecycle to list (default: open)";
7470
+ readonly default: "open";
7471
+ readonly type: "string";
7472
+ readonly enum: readonly ["open", "resolved"];
7473
+ };
7474
+ readonly customerId: {
7475
+ readonly description: "Filter by exact customer ID";
7476
+ readonly type: "string";
7477
+ readonly format: "uuid";
7478
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
7479
+ };
7480
+ readonly limit: {
7481
+ readonly description: "Results per page (default: 25, max: 100)";
7482
+ readonly default: 25;
7483
+ readonly type: "integer";
7484
+ readonly minimum: 1;
7485
+ readonly maximum: 100;
7486
+ };
7487
+ readonly cursor: {
7488
+ readonly description: "Opaque cursor from a previous response with the same filters";
7489
+ readonly type: "string";
7490
+ readonly minLength: 1;
7491
+ readonly maxLength: 2000;
5476
7492
  };
5477
7493
  };
5478
- readonly required: readonly ["eventName"];
5479
7494
  readonly additionalProperties: false;
5480
7495
  };
5481
7496
  readonly outputSchema: {
5482
7497
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5483
7498
  readonly type: "object";
5484
7499
  readonly properties: {
5485
- readonly activation: {
5486
- readonly type: "object";
5487
- readonly properties: {
5488
- readonly eventName: {
5489
- readonly anyOf: readonly [{
7500
+ readonly items: {
7501
+ readonly maxItems: 100;
7502
+ readonly type: "array";
7503
+ readonly items: {
7504
+ readonly type: "object";
7505
+ readonly properties: {
7506
+ readonly id: {
5490
7507
  readonly type: "string";
5491
7508
  readonly minLength: 1;
5492
- readonly maxLength: 191;
5493
- }, {
5494
- readonly type: "null";
5495
- }];
7509
+ readonly maxLength: 500;
7510
+ };
7511
+ readonly customer: {
7512
+ readonly type: "object";
7513
+ readonly properties: {
7514
+ readonly id: {
7515
+ readonly type: "string";
7516
+ readonly minLength: 1;
7517
+ readonly maxLength: 500;
7518
+ };
7519
+ readonly name: {
7520
+ readonly type: "string";
7521
+ readonly minLength: 1;
7522
+ readonly maxLength: 500;
7523
+ };
7524
+ readonly domain: {
7525
+ readonly type: "string";
7526
+ readonly maxLength: 253;
7527
+ };
7528
+ readonly ownerName: {
7529
+ readonly anyOf: readonly [{
7530
+ readonly type: "string";
7531
+ readonly minLength: 1;
7532
+ readonly maxLength: 500;
7533
+ }, {
7534
+ readonly type: "null";
7535
+ }];
7536
+ };
7537
+ };
7538
+ readonly required: readonly ["id", "name", "domain", "ownerName"];
7539
+ readonly additionalProperties: false;
7540
+ };
7541
+ readonly title: {
7542
+ readonly type: "string";
7543
+ readonly minLength: 1;
7544
+ readonly maxLength: 240;
7545
+ };
7546
+ readonly priority: {
7547
+ readonly type: "string";
7548
+ readonly enum: readonly ["NORMAL", "HIGH", "URGENT"];
7549
+ };
7550
+ readonly evidenceCount: {
7551
+ readonly type: "integer";
7552
+ readonly minimum: 0;
7553
+ readonly maximum: 50;
7554
+ };
7555
+ readonly lifecycle: {
7556
+ readonly type: "object";
7557
+ readonly properties: {
7558
+ readonly status: {
7559
+ readonly type: "string";
7560
+ readonly enum: readonly ["open", "resolved"];
7561
+ };
7562
+ readonly customerVisibleAt: {
7563
+ readonly type: "string";
7564
+ readonly format: "date-time";
7565
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7566
+ };
7567
+ readonly resolvedAt: {
7568
+ readonly anyOf: readonly [{
7569
+ readonly type: "string";
7570
+ readonly format: "date-time";
7571
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7572
+ }, {
7573
+ readonly type: "null";
7574
+ }];
7575
+ };
7576
+ readonly reopenedAt: {
7577
+ readonly anyOf: readonly [{
7578
+ readonly type: "string";
7579
+ readonly format: "date-time";
7580
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7581
+ }, {
7582
+ readonly type: "null";
7583
+ }];
7584
+ };
7585
+ readonly createdAt: {
7586
+ readonly type: "string";
7587
+ readonly format: "date-time";
7588
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7589
+ };
7590
+ readonly updatedAt: {
7591
+ readonly type: "string";
7592
+ readonly format: "date-time";
7593
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7594
+ };
7595
+ readonly materialUpdateAt: {
7596
+ readonly anyOf: readonly [{
7597
+ readonly type: "string";
7598
+ readonly format: "date-time";
7599
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7600
+ }, {
7601
+ readonly type: "null";
7602
+ }];
7603
+ };
7604
+ };
7605
+ readonly required: readonly ["status", "customerVisibleAt", "resolvedAt", "reopenedAt", "createdAt", "updatedAt", "materialUpdateAt"];
7606
+ readonly additionalProperties: false;
7607
+ };
7608
+ readonly accountImportance: {
7609
+ readonly type: "object";
7610
+ readonly properties: {
7611
+ readonly arrCents: {
7612
+ readonly anyOf: readonly [{
7613
+ readonly type: "number";
7614
+ readonly minimum: 0;
7615
+ }, {
7616
+ readonly type: "null";
7617
+ }];
7618
+ };
7619
+ readonly currency: {
7620
+ readonly anyOf: readonly [{
7621
+ readonly type: "string";
7622
+ readonly pattern: "^[A-Z]{3}$";
7623
+ }, {
7624
+ readonly type: "null";
7625
+ }];
7626
+ };
7627
+ readonly arrShareWithinCurrency: {
7628
+ readonly anyOf: readonly [{
7629
+ readonly type: "number";
7630
+ readonly minimum: 0;
7631
+ readonly maximum: 1;
7632
+ }, {
7633
+ readonly type: "null";
7634
+ }];
7635
+ readonly description: "Organization ARR share among customers using the same currency";
7636
+ };
7637
+ readonly arrPercentileWithinCurrency: {
7638
+ readonly anyOf: readonly [{
7639
+ readonly type: "number";
7640
+ readonly minimum: 0;
7641
+ readonly maximum: 100;
7642
+ }, {
7643
+ readonly type: "null";
7644
+ }];
7645
+ readonly description: "ARR percentile among customers using the same currency";
7646
+ };
7647
+ readonly segments: {
7648
+ readonly maxItems: 50;
7649
+ readonly type: "array";
7650
+ readonly items: {
7651
+ readonly type: "string";
7652
+ readonly minLength: 1;
7653
+ readonly maxLength: 240;
7654
+ };
7655
+ };
7656
+ };
7657
+ readonly required: readonly ["arrCents", "currency", "arrShareWithinCurrency", "arrPercentileWithinCurrency", "segments"];
7658
+ readonly additionalProperties: false;
7659
+ };
7660
+ readonly preparedActionUrl: {
7661
+ readonly anyOf: readonly [{
7662
+ readonly type: "string";
7663
+ readonly maxLength: 2000;
7664
+ readonly format: "uri";
7665
+ }, {
7666
+ readonly type: "null";
7667
+ }];
7668
+ };
5496
7669
  };
7670
+ readonly required: readonly ["id", "customer", "title", "priority", "evidenceCount", "lifecycle", "accountImportance", "preparedActionUrl"];
7671
+ readonly additionalProperties: false;
5497
7672
  };
5498
- readonly required: readonly ["eventName"];
5499
- readonly additionalProperties: false;
5500
- };
5501
- readonly changed: {
5502
- readonly type: "boolean";
5503
7673
  };
5504
- };
5505
- readonly required: readonly ["activation", "changed"];
5506
- readonly additionalProperties: false;
5507
- };
5508
- };
5509
- readonly outlit_get_workspace_settings: {
5510
- readonly toolName: "outlit_get_workspace_settings";
5511
- readonly commandId: "settings.get";
5512
- readonly commandVersion: 1;
5513
- readonly ownerDomain: "settings";
5514
- readonly title: "Get Workspace Settings";
5515
- readonly description: "Get the workspace default timezone used by time-based product behavior.";
5516
- readonly inputSchema: {
5517
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5518
- readonly type: "object";
5519
- readonly properties: {};
5520
- readonly additionalProperties: false;
5521
- };
5522
- readonly outputSchema: {
5523
- readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5524
- readonly type: "object";
5525
- readonly properties: {
5526
- readonly settings: {
7674
+ readonly pagination: {
5527
7675
  readonly type: "object";
5528
7676
  readonly properties: {
5529
- readonly defaultTimezone: {
5530
- readonly type: "string";
5531
- readonly minLength: 1;
7677
+ readonly hasMore: {
7678
+ readonly type: "boolean";
7679
+ };
7680
+ readonly nextCursor: {
7681
+ readonly anyOf: readonly [{
7682
+ readonly type: "string";
7683
+ readonly minLength: 1;
7684
+ readonly maxLength: 2000;
7685
+ }, {
7686
+ readonly type: "null";
7687
+ }];
7688
+ };
7689
+ readonly total: {
7690
+ readonly type: "integer";
7691
+ readonly minimum: 0;
7692
+ readonly maximum: 9007199254740991;
5532
7693
  };
5533
7694
  };
5534
- readonly required: readonly ["defaultTimezone"];
7695
+ readonly required: readonly ["hasMore", "nextCursor", "total"];
5535
7696
  readonly additionalProperties: false;
5536
7697
  };
5537
7698
  };
5538
- readonly required: readonly ["settings"];
7699
+ readonly required: readonly ["items", "pagination"];
5539
7700
  readonly additionalProperties: false;
5540
7701
  };
5541
7702
  };
5542
- readonly outlit_update_workspace_settings: {
5543
- readonly toolName: "outlit_update_workspace_settings";
5544
- readonly commandId: "settings.update";
7703
+ readonly outlit_get_attention_item: {
7704
+ readonly toolName: "outlit_get_attention_item";
7705
+ readonly commandId: "attention.get";
5545
7706
  readonly commandVersion: 1;
5546
- readonly ownerDomain: "settings";
5547
- readonly title: "Update Workspace Settings";
5548
- readonly description: "Update the workspace default timezone using a valid IANA timezone.";
7707
+ readonly ownerDomain: "attention";
7708
+ readonly title: "Get Attention Item";
7709
+ readonly description: "Get one authorized Attention item with its bounded current assessment, timeline, evidence summaries, and prepared-action URL. Does not return evidence IDs, quotes, email drafts, or internal agent state.";
5549
7710
  readonly inputSchema: {
5550
7711
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5551
7712
  readonly type: "object";
5552
7713
  readonly properties: {
5553
- readonly defaultTimezone: {
7714
+ readonly id: {
5554
7715
  readonly type: "string";
5555
- readonly minLength: 1;
7716
+ readonly format: "uuid";
7717
+ readonly pattern: "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$";
7718
+ readonly description: "Exact Attention item ID";
5556
7719
  };
5557
7720
  };
5558
- readonly required: readonly ["defaultTimezone"];
7721
+ readonly required: readonly ["id"];
5559
7722
  readonly additionalProperties: false;
5560
7723
  };
5561
7724
  readonly outputSchema: {
5562
7725
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5563
7726
  readonly type: "object";
5564
7727
  readonly properties: {
5565
- readonly settings: {
7728
+ readonly id: {
7729
+ readonly type: "string";
7730
+ readonly minLength: 1;
7731
+ readonly maxLength: 500;
7732
+ };
7733
+ readonly customer: {
5566
7734
  readonly type: "object";
5567
7735
  readonly properties: {
5568
- readonly defaultTimezone: {
7736
+ readonly id: {
7737
+ readonly type: "string";
7738
+ readonly minLength: 1;
7739
+ readonly maxLength: 500;
7740
+ };
7741
+ readonly name: {
5569
7742
  readonly type: "string";
5570
7743
  readonly minLength: 1;
7744
+ readonly maxLength: 500;
7745
+ };
7746
+ readonly domain: {
7747
+ readonly type: "string";
7748
+ readonly maxLength: 253;
7749
+ };
7750
+ readonly ownerName: {
7751
+ readonly anyOf: readonly [{
7752
+ readonly type: "string";
7753
+ readonly minLength: 1;
7754
+ readonly maxLength: 500;
7755
+ }, {
7756
+ readonly type: "null";
7757
+ }];
5571
7758
  };
5572
7759
  };
5573
- readonly required: readonly ["defaultTimezone"];
7760
+ readonly required: readonly ["id", "name", "domain", "ownerName"];
7761
+ readonly additionalProperties: false;
7762
+ };
7763
+ readonly title: {
7764
+ readonly type: "string";
7765
+ readonly minLength: 1;
7766
+ readonly maxLength: 240;
7767
+ };
7768
+ readonly priority: {
7769
+ readonly type: "string";
7770
+ readonly enum: readonly ["NORMAL", "HIGH", "URGENT"];
7771
+ };
7772
+ readonly evidenceCount: {
7773
+ readonly type: "integer";
7774
+ readonly minimum: 0;
7775
+ readonly maximum: 50;
7776
+ };
7777
+ readonly lifecycle: {
7778
+ readonly type: "object";
7779
+ readonly properties: {
7780
+ readonly status: {
7781
+ readonly type: "string";
7782
+ readonly enum: readonly ["open", "resolved"];
7783
+ };
7784
+ readonly customerVisibleAt: {
7785
+ readonly type: "string";
7786
+ readonly format: "date-time";
7787
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7788
+ };
7789
+ readonly resolvedAt: {
7790
+ readonly anyOf: readonly [{
7791
+ readonly type: "string";
7792
+ readonly format: "date-time";
7793
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7794
+ }, {
7795
+ readonly type: "null";
7796
+ }];
7797
+ };
7798
+ readonly reopenedAt: {
7799
+ readonly anyOf: readonly [{
7800
+ readonly type: "string";
7801
+ readonly format: "date-time";
7802
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7803
+ }, {
7804
+ readonly type: "null";
7805
+ }];
7806
+ };
7807
+ readonly createdAt: {
7808
+ readonly type: "string";
7809
+ readonly format: "date-time";
7810
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7811
+ };
7812
+ readonly updatedAt: {
7813
+ readonly type: "string";
7814
+ readonly format: "date-time";
7815
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7816
+ };
7817
+ readonly materialUpdateAt: {
7818
+ readonly anyOf: readonly [{
7819
+ readonly type: "string";
7820
+ readonly format: "date-time";
7821
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7822
+ }, {
7823
+ readonly type: "null";
7824
+ }];
7825
+ };
7826
+ };
7827
+ readonly required: readonly ["status", "customerVisibleAt", "resolvedAt", "reopenedAt", "createdAt", "updatedAt", "materialUpdateAt"];
7828
+ readonly additionalProperties: false;
7829
+ };
7830
+ readonly accountImportance: {
7831
+ readonly type: "object";
7832
+ readonly properties: {
7833
+ readonly arrCents: {
7834
+ readonly anyOf: readonly [{
7835
+ readonly type: "number";
7836
+ readonly minimum: 0;
7837
+ }, {
7838
+ readonly type: "null";
7839
+ }];
7840
+ };
7841
+ readonly currency: {
7842
+ readonly anyOf: readonly [{
7843
+ readonly type: "string";
7844
+ readonly pattern: "^[A-Z]{3}$";
7845
+ }, {
7846
+ readonly type: "null";
7847
+ }];
7848
+ };
7849
+ readonly arrShareWithinCurrency: {
7850
+ readonly anyOf: readonly [{
7851
+ readonly type: "number";
7852
+ readonly minimum: 0;
7853
+ readonly maximum: 1;
7854
+ }, {
7855
+ readonly type: "null";
7856
+ }];
7857
+ readonly description: "Organization ARR share among customers using the same currency";
7858
+ };
7859
+ readonly arrPercentileWithinCurrency: {
7860
+ readonly anyOf: readonly [{
7861
+ readonly type: "number";
7862
+ readonly minimum: 0;
7863
+ readonly maximum: 100;
7864
+ }, {
7865
+ readonly type: "null";
7866
+ }];
7867
+ readonly description: "ARR percentile among customers using the same currency";
7868
+ };
7869
+ readonly segments: {
7870
+ readonly maxItems: 50;
7871
+ readonly type: "array";
7872
+ readonly items: {
7873
+ readonly type: "string";
7874
+ readonly minLength: 1;
7875
+ readonly maxLength: 240;
7876
+ };
7877
+ };
7878
+ };
7879
+ readonly required: readonly ["arrCents", "currency", "arrShareWithinCurrency", "arrPercentileWithinCurrency", "segments"];
5574
7880
  readonly additionalProperties: false;
5575
7881
  };
7882
+ readonly preparedActionUrl: {
7883
+ readonly anyOf: readonly [{
7884
+ readonly type: "string";
7885
+ readonly maxLength: 2000;
7886
+ readonly format: "uri";
7887
+ }, {
7888
+ readonly type: "null";
7889
+ }];
7890
+ };
7891
+ readonly whatChanged: {
7892
+ readonly type: "string";
7893
+ readonly minLength: 1;
7894
+ readonly maxLength: 8000;
7895
+ };
7896
+ readonly whyItMatters: {
7897
+ readonly type: "string";
7898
+ readonly minLength: 1;
7899
+ readonly maxLength: 8000;
7900
+ };
7901
+ readonly uncertainty: {
7902
+ readonly anyOf: readonly [{
7903
+ readonly type: "string";
7904
+ readonly minLength: 1;
7905
+ readonly maxLength: 8000;
7906
+ }, {
7907
+ readonly type: "null";
7908
+ }];
7909
+ };
7910
+ readonly priorityReason: {
7911
+ readonly type: "string";
7912
+ readonly minLength: 1;
7913
+ readonly maxLength: 8000;
7914
+ };
7915
+ readonly timeline: {
7916
+ readonly maxItems: 20;
7917
+ readonly type: "array";
7918
+ readonly items: {
7919
+ readonly type: "object";
7920
+ readonly properties: {
7921
+ readonly title: {
7922
+ readonly type: "string";
7923
+ readonly minLength: 1;
7924
+ readonly maxLength: 240;
7925
+ };
7926
+ readonly explanation: {
7927
+ readonly type: "string";
7928
+ readonly minLength: 1;
7929
+ readonly maxLength: 4000;
7930
+ };
7931
+ readonly observedAt: {
7932
+ readonly type: "string";
7933
+ readonly format: "date-time";
7934
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7935
+ };
7936
+ };
7937
+ readonly required: readonly ["title", "explanation", "observedAt"];
7938
+ readonly additionalProperties: false;
7939
+ };
7940
+ };
7941
+ readonly evidence: {
7942
+ readonly maxItems: 20;
7943
+ readonly type: "array";
7944
+ readonly items: {
7945
+ readonly type: "object";
7946
+ readonly properties: {
7947
+ readonly role: {
7948
+ readonly type: "string";
7949
+ readonly enum: readonly ["supporting", "contradictory", "context"];
7950
+ };
7951
+ readonly kind: {
7952
+ readonly type: "string";
7953
+ readonly enum: readonly ["metric", "communication", "record", "event"];
7954
+ };
7955
+ readonly title: {
7956
+ readonly type: "string";
7957
+ readonly minLength: 1;
7958
+ readonly maxLength: 500;
7959
+ };
7960
+ readonly observedAt: {
7961
+ readonly anyOf: readonly [{
7962
+ readonly type: "string";
7963
+ readonly format: "date-time";
7964
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7965
+ }, {
7966
+ readonly type: "null";
7967
+ }];
7968
+ };
7969
+ readonly window: {
7970
+ readonly anyOf: readonly [{
7971
+ readonly type: "object";
7972
+ readonly properties: {
7973
+ readonly start: {
7974
+ readonly type: "string";
7975
+ readonly format: "date-time";
7976
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7977
+ };
7978
+ readonly end: {
7979
+ readonly type: "string";
7980
+ readonly format: "date-time";
7981
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
7982
+ };
7983
+ };
7984
+ readonly required: readonly ["start", "end"];
7985
+ readonly additionalProperties: false;
7986
+ }, {
7987
+ readonly type: "null";
7988
+ }];
7989
+ };
7990
+ readonly sourceLabel: {
7991
+ readonly type: "string";
7992
+ readonly minLength: 1;
7993
+ readonly maxLength: 240;
7994
+ };
7995
+ };
7996
+ readonly required: readonly ["role", "kind", "title", "observedAt", "window", "sourceLabel"];
7997
+ readonly additionalProperties: false;
7998
+ };
7999
+ };
8000
+ readonly latestUpdate: {
8001
+ readonly anyOf: readonly [{
8002
+ readonly type: "object";
8003
+ readonly properties: {
8004
+ readonly updatedAt: {
8005
+ readonly type: "string";
8006
+ readonly format: "date-time";
8007
+ readonly pattern: "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$";
8008
+ };
8009
+ readonly summary: {
8010
+ readonly type: "string";
8011
+ readonly minLength: 1;
8012
+ readonly maxLength: 8000;
8013
+ };
8014
+ };
8015
+ readonly required: readonly ["updatedAt", "summary"];
8016
+ readonly additionalProperties: false;
8017
+ }, {
8018
+ readonly type: "null";
8019
+ }];
8020
+ };
5576
8021
  };
5577
- readonly required: readonly ["settings"];
8022
+ readonly required: readonly ["id", "customer", "title", "priority", "evidenceCount", "lifecycle", "accountImportance", "preparedActionUrl", "whatChanged", "whyItMatters", "uncertainty", "priorityReason", "timeline", "evidence", "latestUpdate"];
5578
8023
  readonly additionalProperties: false;
5579
8024
  };
5580
8025
  };
@@ -5595,7 +8040,8 @@ declare const publicOpenApiTransports: readonly [{
5595
8040
  declare const consumerToolPolicies: {
5596
8041
  readonly default: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context"];
5597
8042
  readonly analytical: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema"];
5598
- readonly cli: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_list_integrations", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_sync_status", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings"];
8043
+ readonly pi: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
8044
+ readonly cli: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
5599
8045
  };
5600
8046
  declare const toolGatewayTransport: {
5601
8047
  readonly method: "POST";
@@ -5612,7 +8058,7 @@ declare const apiKeyValidationTransport: {
5612
8058
  };
5613
8059
  readonly publicResponseStatuses: readonly [200, 401, 503];
5614
8060
  };
5615
- declare const apiKeyGrants: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage"];
8061
+ declare const apiKeyGrants: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "behavior_metrics:manage", "integrations:connect_own", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage", "customer_access:manage"];
5616
8062
  declare const apiKeyValidationSuccessSchema: {
5617
8063
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
5618
8064
  readonly type: "object";
@@ -5699,7 +8145,7 @@ declare const apiKeyValidationSuccessSchema: {
5699
8145
  readonly type: "array";
5700
8146
  readonly items: {
5701
8147
  readonly type: "string";
5702
- readonly enum: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage"];
8148
+ readonly enum: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "behavior_metrics:manage", "integrations:connect_own", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage", "customer_access:manage"];
5703
8149
  };
5704
8150
  };
5705
8151
  readonly createdAt: {
@@ -5732,7 +8178,7 @@ declare const apiKeyValidationSuccessSchema: {
5732
8178
  readonly type: "array";
5733
8179
  readonly items: {
5734
8180
  readonly type: "string";
5735
- readonly enum: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage"];
8181
+ readonly enum: readonly ["customer_intelligence:read", "workspace_members:read", "analytics:read", "destinations:manage", "behavior_metrics:manage", "integrations:connect_own", "integrations:manage", "activation:read", "activation:manage", "workspace_settings:read", "workspace_settings:manage", "customer_access:manage"];
5736
8182
  };
5737
8183
  };
5738
8184
  };
@@ -6496,7 +8942,7 @@ declare const userJourneyStages: readonly ["DISCOVERED", "SIGNED_UP", "ACTIVATED
6496
8942
  declare const userListOrderFields: readonly ["last_activity_at", "first_seen_at", "email"];
6497
8943
  declare const workspaceUserListOrderFields: readonly ["name", "email", "owned_customer_count"];
6498
8944
  declare const schemaTables: readonly ["activity", "customers", "users", "revenue"];
6499
- declare const sdkConsumerContractHash: "1f8804d6d2d3aa562d46872bc118a43b9a5d8531b834ce10c0f01b3659f5b6b2";
8945
+ declare const sdkConsumerContractHash: "b5ae0da99791dfe29fff680e3c7320fd333d81d4b68ad09824791dd7e993d266";
6500
8946
 
6501
8947
  type JsonSchema = Readonly<Record<string, unknown>>;
6502
8948
  type PublicToolName = (typeof publicToolNames)[number];
@@ -6504,7 +8950,7 @@ type PublicToolContract = (typeof publicToolContracts)[PublicToolName];
6504
8950
  type CustomerSourceType = (typeof customerSourceTypes)[number];
6505
8951
  type CustomerSourceTypeInput = (typeof customerSourceTypeInputs)[number];
6506
8952
  declare function isPublicToolName(value: string): value is PublicToolName;
6507
- declare function getPublicToolContract(name: PublicToolName): PublicToolContract;
8953
+ declare function getPublicToolContract<TName extends PublicToolName>(name: TName): (typeof publicToolContracts)[TName];
6508
8954
  declare function normalizeCustomerSourceType(value: string): CustomerSourceType | null;
6509
8955
  type SearchArgsLike = {
6510
8956
  query?: string;
@@ -6575,6 +9021,20 @@ type CustomerListResult = PublicToolResult<"outlit_list_customers">;
6575
9021
  type CustomerListItem = CustomerListResult["items"][number];
6576
9022
  type CustomerDetailResult = PublicToolResult<"outlit_get_customer">;
6577
9023
  type CustomerDetail = CustomerDetailResult["customer"];
9024
+ type CustomerRelationshipResult = PublicToolResult<"outlit_get_customer_relationship">;
9025
+ type CustomerRelationship = CustomerRelationshipResult["relationship"];
9026
+ type AttentionListResult = PublicToolResult<"outlit_list_attention_items">;
9027
+ type AttentionItemSummary = AttentionListResult["items"][number];
9028
+ type AttentionItemResult = PublicToolResult<"outlit_get_attention_item">;
9029
+ type AttentionItem = AttentionItemResult;
9030
+ type FeatureListResult = PublicToolResult<"outlit_list_features">;
9031
+ type Feature = FeatureListResult["features"][number];
9032
+ type FeatureCreateResult = PublicToolResult<"outlit_create_feature">;
9033
+ type FeatureDefinition = FeatureCreateResult["feature"];
9034
+ type FeatureArchiveResult = PublicToolResult<"outlit_archive_feature">;
9035
+ type FeatureRef = FeatureArchiveResult["feature"];
9036
+ type CustomerFeaturesResult = PublicToolResult<"outlit_get_customer_features">;
9037
+ type CustomerFeature = CustomerFeaturesResult["features"][number];
6578
9038
  interface CustomerAnalyticsRow {
6579
9039
  activated_at: string | null;
6580
9040
  [column: string]: unknown;
@@ -6605,7 +9065,9 @@ declare function isOutlitToolsApiError(error: unknown): error is OutlitToolsApiE
6605
9065
  type OutlitToolsClient = {
6606
9066
  key: string;
6607
9067
  baseUrl: string;
6608
- callTool<TToolName extends PublicToolName>(toolName: TToolName, input?: Record<string, unknown>): Promise<PublicToolResult<TToolName>>;
9068
+ callTool<TToolName extends PublicToolName>(toolName: TToolName, input?: Record<string, unknown>, options?: {
9069
+ signal?: AbortSignal;
9070
+ }): Promise<PublicToolResult<TToolName>>;
6609
9071
  };
6610
9072
  declare function createOutlitClient(options: OutlitToolsClientOptions): OutlitToolsClient;
6611
9073
  type RuntimeJsonSchema = {
@@ -6618,14 +9080,23 @@ type RuntimeJsonSchema = {
6618
9080
  readonly properties?: Readonly<Record<string, RuntimeJsonSchema>>;
6619
9081
  readonly required?: readonly string[];
6620
9082
  readonly additionalProperties?: boolean | RuntimeJsonSchema;
9083
+ readonly minLength?: number;
9084
+ readonly maxLength?: number;
9085
+ readonly pattern?: string;
9086
+ readonly minItems?: number;
9087
+ readonly maxItems?: number;
9088
+ readonly minimum?: number;
9089
+ readonly maximum?: number;
6621
9090
  };
6622
9091
  declare function matchesGeneratedJsonSchema<TSchema extends RuntimeJsonSchema>(value: unknown, schema: TSchema): value is JsonSchemaValue<TSchema>;
6623
9092
 
6624
9093
  declare const defaultToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context"];
6625
9094
  declare const analyticalToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema"];
6626
- declare const cliToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_list_integrations", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_sync_status", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings"];
6627
- declare const allPublicToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_list_integrations", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_sync_status", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings"];
9095
+ declare const piToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
9096
+ declare const cliToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
9097
+ declare const allPublicToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_customer_relationship", "outlit_assign_customer_owner", "outlit_grant_customer_access", "outlit_update_customer_access", "outlit_revoke_customer_access", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_list_destinations", "outlit_get_destination", "outlit_create_destination", "outlit_update_destination", "outlit_enable_destination", "outlit_disable_destination", "outlit_archive_destination", "outlit_get_integration_capabilities", "outlit_begin_integration_setup", "outlit_get_integration_setup_status", "outlit_get_integration_status", "outlit_setup_integration", "outlit_get_customer_activation", "outlit_preview_customer_activation", "outlit_update_customer_activation", "outlit_get_workspace_settings", "outlit_update_workspace_settings", "outlit_list_features", "outlit_create_feature", "outlit_archive_feature", "outlit_get_customer_features", "outlit_list_attention_items", "outlit_get_attention_item"];
6628
9098
  type CliToolName = (typeof cliToolNames)[number];
9099
+ type PiToolName = (typeof piToolNames)[number];
6629
9100
  declare const sqlToolNames: ("outlit_list_customers" | "outlit_list_users" | "outlit_get_customer" | "outlit_get_timeline" | "outlit_list_facts" | "outlit_get_fact" | "outlit_get_source" | "outlit_list_sources" | "outlit_search_customer_context" | "outlit_query" | "outlit_schema")[];
6630
9101
 
6631
- export { type ApiKeyValidationFailure, type ApiKeyValidationSuccess, type CliToolName, type CustomerAnalyticsRow, type CustomerContextSearchInput, type CustomerDetail, type CustomerDetailResult, type CustomerListItem, type CustomerListResult, type CustomerSourceType, type CustomerSourceTypeInput, DEFAULT_OUTLIT_API_URL, type JsonSchema, type JsonSchemaValue, OutlitToolsApiError, type OutlitToolsClient, type OutlitToolsClientOptions, type OutlitToolsFetch, type PublicToolContract, type PublicToolName, type PublicToolResult, type RuntimeJsonSchema, type SearchArgsLike, type ToolGatewayErrorCode, type ToolGatewayErrorEnvelope, allPublicToolNames, analyticalToolNames, apiKeyGrants, apiKeyValidationFailureSchema, apiKeyValidationSuccessSchema, apiKeyValidationTransport, cliToolNames, consumerToolPolicies, contractVersion, createOutlitClient, customerActivityWindows, customerBillingStatuses, customerFactCategories, customerFactIncludes, customerFactStatuses, customerFactTypes, customerIncludeSections, customerListOrderFields, customerSourceTypeAliasMap, customerSourceTypeAliases, customerSourceTypeInputs, customerSourceTypes, customerTimeframes, defaultToolNames, getPublicToolContract, ingestTransport, isOutlitToolsApiError, isPublicToolName, matchesGeneratedJsonSchema, normalizeCustomerSourceType, publicOpenApiTransports, publicToolContracts, publicToolNames, resolveCustomerContextSearchInput, schemaTables, sdkConsumerContractHash, sqlToolNames, timelineChannels, timelineTimeframes, toolGatewayErrorCodes, toolGatewayErrorSchema, toolGatewayTransport, unsupportedCustomerFactTypes, userJourneyStages, userListOrderFields, workspaceUserListOrderFields };
9102
+ export { type ApiKeyValidationFailure, type ApiKeyValidationSuccess, type AttentionItem, type AttentionItemResult, type AttentionItemSummary, type AttentionListResult, type CliToolName, type CustomerAnalyticsRow, type CustomerContextSearchInput, type CustomerDetail, type CustomerDetailResult, type CustomerFeature, type CustomerFeaturesResult, type CustomerListItem, type CustomerListResult, type CustomerRelationship, type CustomerRelationshipResult, type CustomerSourceType, type CustomerSourceTypeInput, DEFAULT_OUTLIT_API_URL, type Feature, type FeatureArchiveResult, type FeatureCreateResult, type FeatureDefinition, type FeatureListResult, type FeatureRef, type JsonSchema, type JsonSchemaValue, OutlitToolsApiError, type OutlitToolsClient, type OutlitToolsClientOptions, type OutlitToolsFetch, type PiToolName, type PublicToolContract, type PublicToolName, type PublicToolResult, type RuntimeJsonSchema, type SearchArgsLike, type ToolGatewayErrorCode, type ToolGatewayErrorEnvelope, allPublicToolNames, analyticalToolNames, apiKeyGrants, apiKeyValidationFailureSchema, apiKeyValidationSuccessSchema, apiKeyValidationTransport, cliToolNames, consumerToolPolicies, contractVersion, createOutlitClient, customerActivityWindows, customerBillingStatuses, customerFactCategories, customerFactIncludes, customerFactStatuses, customerFactTypes, customerIncludeSections, customerListOrderFields, customerSourceTypeAliasMap, customerSourceTypeAliases, customerSourceTypeInputs, customerSourceTypes, customerTimeframes, defaultToolNames, getPublicToolContract, ingestTransport, isOutlitToolsApiError, isPublicToolName, matchesGeneratedJsonSchema, normalizeCustomerSourceType, piToolNames, publicOpenApiTransports, publicToolContracts, publicToolNames, resolveCustomerContextSearchInput, schemaTables, sdkConsumerContractHash, sqlToolNames, timelineChannels, timelineTimeframes, toolGatewayErrorCodes, toolGatewayErrorSchema, toolGatewayTransport, unsupportedCustomerFactTypes, userJourneyStages, userListOrderFields, workspaceUserListOrderFields };