@outlit/tools 2.0.0 → 2.1.1
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.cjs +2182 -374
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1674 -296
- package/dist/index.d.ts +1674 -296
- package/dist/index.js +2182 -374
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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_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", "
|
|
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";
|
|
@@ -375,8 +375,37 @@ declare const publicToolContracts: {
|
|
|
375
375
|
readonly type: "null";
|
|
376
376
|
}];
|
|
377
377
|
};
|
|
378
|
+
readonly relationshipRole: {
|
|
379
|
+
readonly anyOf: readonly [{
|
|
380
|
+
readonly type: "string";
|
|
381
|
+
}, {
|
|
382
|
+
readonly type: "null";
|
|
383
|
+
}];
|
|
384
|
+
};
|
|
385
|
+
readonly jobTitle: {
|
|
386
|
+
readonly anyOf: readonly [{
|
|
387
|
+
readonly type: "string";
|
|
388
|
+
}, {
|
|
389
|
+
readonly type: "null";
|
|
390
|
+
}];
|
|
391
|
+
};
|
|
392
|
+
readonly department: {
|
|
393
|
+
readonly anyOf: readonly [{
|
|
394
|
+
readonly type: "string";
|
|
395
|
+
}, {
|
|
396
|
+
readonly type: "null";
|
|
397
|
+
}];
|
|
398
|
+
};
|
|
399
|
+
readonly employmentStartDate: {
|
|
400
|
+
readonly anyOf: readonly [{
|
|
401
|
+
readonly type: "string";
|
|
402
|
+
readonly pattern: "^\\d{4}-\\d{2}-\\d{2}$";
|
|
403
|
+
}, {
|
|
404
|
+
readonly type: "null";
|
|
405
|
+
}];
|
|
406
|
+
};
|
|
378
407
|
};
|
|
379
|
-
readonly required: readonly ["id", "email", "name", "customerId", "customerName", "customerDomain", "journeyStage", "lastActivityAt", "daysSinceActivity"];
|
|
408
|
+
readonly required: readonly ["id", "email", "name", "customerId", "customerName", "customerDomain", "journeyStage", "lastActivityAt", "daysSinceActivity", "relationshipRole", "jobTitle", "department", "employmentStartDate"];
|
|
380
409
|
readonly additionalProperties: false;
|
|
381
410
|
};
|
|
382
411
|
};
|
|
@@ -692,8 +721,37 @@ declare const publicToolContracts: {
|
|
|
692
721
|
readonly type: "null";
|
|
693
722
|
}];
|
|
694
723
|
};
|
|
724
|
+
readonly relationshipRole: {
|
|
725
|
+
readonly anyOf: readonly [{
|
|
726
|
+
readonly type: "string";
|
|
727
|
+
}, {
|
|
728
|
+
readonly type: "null";
|
|
729
|
+
}];
|
|
730
|
+
};
|
|
731
|
+
readonly jobTitle: {
|
|
732
|
+
readonly anyOf: readonly [{
|
|
733
|
+
readonly type: "string";
|
|
734
|
+
}, {
|
|
735
|
+
readonly type: "null";
|
|
736
|
+
}];
|
|
737
|
+
};
|
|
738
|
+
readonly department: {
|
|
739
|
+
readonly anyOf: readonly [{
|
|
740
|
+
readonly type: "string";
|
|
741
|
+
}, {
|
|
742
|
+
readonly type: "null";
|
|
743
|
+
}];
|
|
744
|
+
};
|
|
745
|
+
readonly employmentStartDate: {
|
|
746
|
+
readonly anyOf: readonly [{
|
|
747
|
+
readonly type: "string";
|
|
748
|
+
readonly pattern: "^\\d{4}-\\d{2}-\\d{2}$";
|
|
749
|
+
}, {
|
|
750
|
+
readonly type: "null";
|
|
751
|
+
}];
|
|
752
|
+
};
|
|
695
753
|
};
|
|
696
|
-
readonly required: readonly ["id", "email", "name", "journeyStage", "lastActivityAt"];
|
|
754
|
+
readonly required: readonly ["id", "email", "name", "journeyStage", "lastActivityAt", "relationshipRole", "jobTitle", "department", "employmentStartDate"];
|
|
697
755
|
readonly additionalProperties: false;
|
|
698
756
|
};
|
|
699
757
|
};
|
|
@@ -1080,6 +1138,124 @@ declare const publicToolContracts: {
|
|
|
1080
1138
|
readonly additionalProperties: false;
|
|
1081
1139
|
};
|
|
1082
1140
|
};
|
|
1141
|
+
readonly outlit_get_customer_relationship: {
|
|
1142
|
+
readonly toolName: "outlit_get_customer_relationship";
|
|
1143
|
+
readonly commandId: "customer.relationship.get";
|
|
1144
|
+
readonly commandVersion: 1;
|
|
1145
|
+
readonly ownerDomain: "customers";
|
|
1146
|
+
readonly title: "Get Customer Relationship";
|
|
1147
|
+
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.";
|
|
1148
|
+
readonly inputSchema: {
|
|
1149
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
1150
|
+
readonly type: "object";
|
|
1151
|
+
readonly properties: {
|
|
1152
|
+
readonly customer: {
|
|
1153
|
+
readonly type: "string";
|
|
1154
|
+
readonly minLength: 1;
|
|
1155
|
+
readonly maxLength: 500;
|
|
1156
|
+
readonly description: "Customer ID, domain, or exact customer name to look up";
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
readonly required: readonly ["customer"];
|
|
1160
|
+
readonly additionalProperties: false;
|
|
1161
|
+
};
|
|
1162
|
+
readonly outputSchema: {
|
|
1163
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
1164
|
+
readonly type: "object";
|
|
1165
|
+
readonly properties: {
|
|
1166
|
+
readonly customer: {
|
|
1167
|
+
readonly type: "object";
|
|
1168
|
+
readonly properties: {
|
|
1169
|
+
readonly id: {
|
|
1170
|
+
readonly type: "string";
|
|
1171
|
+
};
|
|
1172
|
+
readonly name: {
|
|
1173
|
+
readonly anyOf: readonly [{
|
|
1174
|
+
readonly type: "string";
|
|
1175
|
+
}, {
|
|
1176
|
+
readonly type: "null";
|
|
1177
|
+
}];
|
|
1178
|
+
};
|
|
1179
|
+
readonly domain: {
|
|
1180
|
+
readonly anyOf: readonly [{
|
|
1181
|
+
readonly type: "string";
|
|
1182
|
+
}, {
|
|
1183
|
+
readonly type: "null";
|
|
1184
|
+
}];
|
|
1185
|
+
};
|
|
1186
|
+
};
|
|
1187
|
+
readonly required: readonly ["id", "name", "domain"];
|
|
1188
|
+
readonly additionalProperties: false;
|
|
1189
|
+
};
|
|
1190
|
+
readonly relationship: {
|
|
1191
|
+
readonly type: "object";
|
|
1192
|
+
readonly properties: {
|
|
1193
|
+
readonly summary: {
|
|
1194
|
+
readonly anyOf: readonly [{
|
|
1195
|
+
readonly type: "string";
|
|
1196
|
+
readonly minLength: 1;
|
|
1197
|
+
readonly maxLength: 240;
|
|
1198
|
+
}, {
|
|
1199
|
+
readonly type: "null";
|
|
1200
|
+
}];
|
|
1201
|
+
};
|
|
1202
|
+
readonly items: {
|
|
1203
|
+
readonly maxItems: 8;
|
|
1204
|
+
readonly type: "array";
|
|
1205
|
+
readonly items: {
|
|
1206
|
+
readonly type: "object";
|
|
1207
|
+
readonly properties: {
|
|
1208
|
+
readonly category: {
|
|
1209
|
+
readonly type: "string";
|
|
1210
|
+
readonly minLength: 1;
|
|
1211
|
+
readonly maxLength: 120;
|
|
1212
|
+
};
|
|
1213
|
+
readonly statement: {
|
|
1214
|
+
readonly type: "string";
|
|
1215
|
+
readonly minLength: 1;
|
|
1216
|
+
readonly maxLength: 500;
|
|
1217
|
+
};
|
|
1218
|
+
readonly observedAt: {
|
|
1219
|
+
readonly anyOf: readonly [{
|
|
1220
|
+
readonly type: "string";
|
|
1221
|
+
readonly format: "date-time";
|
|
1222
|
+
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))$";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly type: "null";
|
|
1225
|
+
}];
|
|
1226
|
+
};
|
|
1227
|
+
readonly sourceLabels: {
|
|
1228
|
+
readonly maxItems: 4;
|
|
1229
|
+
readonly type: "array";
|
|
1230
|
+
readonly items: {
|
|
1231
|
+
readonly type: "string";
|
|
1232
|
+
readonly minLength: 1;
|
|
1233
|
+
readonly maxLength: 100;
|
|
1234
|
+
};
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
readonly required: readonly ["category", "statement", "observedAt", "sourceLabels"];
|
|
1238
|
+
readonly additionalProperties: false;
|
|
1239
|
+
};
|
|
1240
|
+
};
|
|
1241
|
+
readonly updatedAt: {
|
|
1242
|
+
readonly anyOf: readonly [{
|
|
1243
|
+
readonly type: "string";
|
|
1244
|
+
readonly format: "date-time";
|
|
1245
|
+
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))$";
|
|
1246
|
+
}, {
|
|
1247
|
+
readonly type: "null";
|
|
1248
|
+
}];
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
readonly required: readonly ["summary", "items", "updatedAt"];
|
|
1252
|
+
readonly additionalProperties: false;
|
|
1253
|
+
};
|
|
1254
|
+
};
|
|
1255
|
+
readonly required: readonly ["customer", "relationship"];
|
|
1256
|
+
readonly additionalProperties: false;
|
|
1257
|
+
};
|
|
1258
|
+
};
|
|
1083
1259
|
readonly outlit_assign_customer_owner: {
|
|
1084
1260
|
readonly toolName: "outlit_assign_customer_owner";
|
|
1085
1261
|
readonly commandId: "customer.owner.assign";
|
|
@@ -1325,13 +1501,13 @@ declare const publicToolContracts: {
|
|
|
1325
1501
|
readonly enum: readonly ["7d", "14d", "30d", "90d", "all"];
|
|
1326
1502
|
};
|
|
1327
1503
|
readonly startDate: {
|
|
1328
|
-
readonly description: "Start of time window (ISO 8601, e.g. '2025-01-01T00:00:
|
|
1504
|
+
readonly description: "Start of time window, inclusive (ISO 8601 UTC, e.g. '2025-01-01T00:00:00.000Z'). Cannot be used with timeframe.";
|
|
1329
1505
|
readonly type: "string";
|
|
1330
1506
|
readonly format: "date-time";
|
|
1331
1507
|
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))$";
|
|
1332
1508
|
};
|
|
1333
1509
|
readonly endDate: {
|
|
1334
|
-
readonly description: "End of time window (ISO 8601, e.g. '2025-01-31T23:59:
|
|
1510
|
+
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.";
|
|
1335
1511
|
readonly type: "string";
|
|
1336
1512
|
readonly format: "date-time";
|
|
1337
1513
|
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))$";
|
|
@@ -6281,17 +6457,34 @@ declare const publicToolContracts: {
|
|
|
6281
6457
|
readonly additionalProperties: false;
|
|
6282
6458
|
};
|
|
6283
6459
|
};
|
|
6284
|
-
readonly
|
|
6285
|
-
readonly toolName: "
|
|
6286
|
-
readonly commandId: "
|
|
6460
|
+
readonly outlit_list_features: {
|
|
6461
|
+
readonly toolName: "outlit_list_features";
|
|
6462
|
+
readonly commandId: "value_feature_workspace.get";
|
|
6287
6463
|
readonly commandVersion: 1;
|
|
6288
|
-
readonly ownerDomain: "
|
|
6289
|
-
readonly title: "List
|
|
6290
|
-
readonly description: "List
|
|
6464
|
+
readonly ownerDomain: "value_features";
|
|
6465
|
+
readonly title: "List Features";
|
|
6466
|
+
readonly description: "List configured features, exact historical usage, eligible sources, and observed event candidates.";
|
|
6291
6467
|
readonly inputSchema: {
|
|
6292
6468
|
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6293
6469
|
readonly type: "object";
|
|
6294
|
-
readonly properties: {
|
|
6470
|
+
readonly properties: {
|
|
6471
|
+
readonly sourceKey: {
|
|
6472
|
+
readonly type: "string";
|
|
6473
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6474
|
+
};
|
|
6475
|
+
readonly weeks: {
|
|
6476
|
+
readonly default: 12;
|
|
6477
|
+
readonly type: "integer";
|
|
6478
|
+
readonly minimum: 1;
|
|
6479
|
+
readonly maximum: 53;
|
|
6480
|
+
};
|
|
6481
|
+
readonly candidateLimit: {
|
|
6482
|
+
readonly default: 100;
|
|
6483
|
+
readonly type: "integer";
|
|
6484
|
+
readonly minimum: 1;
|
|
6485
|
+
readonly maximum: 100;
|
|
6486
|
+
};
|
|
6487
|
+
};
|
|
6295
6488
|
readonly additionalProperties: false;
|
|
6296
6489
|
};
|
|
6297
6490
|
readonly outputSchema: {
|
|
@@ -6325,269 +6518,56 @@ declare const publicToolContracts: {
|
|
|
6325
6518
|
readonly additionalProperties: false;
|
|
6326
6519
|
};
|
|
6327
6520
|
};
|
|
6328
|
-
|
|
6329
|
-
|
|
6330
|
-
|
|
6331
|
-
|
|
6332
|
-
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
readonly commandId: "behavior_metric_event.list";
|
|
6336
|
-
readonly commandVersion: 1;
|
|
6337
|
-
readonly ownerDomain: "behavior_metrics";
|
|
6338
|
-
readonly title: "List Behavior Metric Events";
|
|
6339
|
-
readonly description: "List attributed event candidates for a Behavior Metric source.";
|
|
6340
|
-
readonly inputSchema: {
|
|
6341
|
-
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6342
|
-
readonly type: "object";
|
|
6343
|
-
readonly properties: {
|
|
6344
|
-
readonly sourceKey: {
|
|
6345
|
-
readonly type: "string";
|
|
6346
|
-
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6347
|
-
};
|
|
6348
|
-
readonly weeks: {
|
|
6349
|
-
readonly default: 12;
|
|
6350
|
-
readonly type: "integer";
|
|
6351
|
-
readonly minimum: 1;
|
|
6352
|
-
readonly maximum: 53;
|
|
6521
|
+
readonly selectedSourceKey: {
|
|
6522
|
+
readonly anyOf: readonly [{
|
|
6523
|
+
readonly type: "string";
|
|
6524
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6525
|
+
}, {
|
|
6526
|
+
readonly type: "null";
|
|
6527
|
+
}];
|
|
6353
6528
|
};
|
|
6354
|
-
readonly
|
|
6355
|
-
readonly default: 100;
|
|
6529
|
+
readonly workspaceActiveFeatureCount: {
|
|
6356
6530
|
readonly type: "integer";
|
|
6357
|
-
readonly minimum:
|
|
6358
|
-
readonly maximum:
|
|
6531
|
+
readonly minimum: 0;
|
|
6532
|
+
readonly maximum: 9007199254740991;
|
|
6359
6533
|
};
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
readonly additionalProperties: false;
|
|
6363
|
-
};
|
|
6364
|
-
readonly outputSchema: {
|
|
6365
|
-
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6366
|
-
readonly type: "object";
|
|
6367
|
-
readonly properties: {
|
|
6368
|
-
readonly events: {
|
|
6534
|
+
readonly features: {
|
|
6535
|
+
readonly maxItems: 100;
|
|
6369
6536
|
readonly type: "array";
|
|
6370
6537
|
readonly items: {
|
|
6371
6538
|
readonly type: "object";
|
|
6372
6539
|
readonly properties: {
|
|
6373
|
-
readonly
|
|
6540
|
+
readonly id: {
|
|
6374
6541
|
readonly type: "string";
|
|
6375
|
-
readonly
|
|
6376
|
-
readonly maxLength: 191;
|
|
6542
|
+
readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
|
|
6377
6543
|
};
|
|
6378
|
-
readonly
|
|
6379
|
-
readonly type: "
|
|
6380
|
-
readonly
|
|
6381
|
-
readonly maximum: 9007199254740991;
|
|
6544
|
+
readonly revision: {
|
|
6545
|
+
readonly type: "string";
|
|
6546
|
+
readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
|
|
6382
6547
|
};
|
|
6383
|
-
readonly
|
|
6384
|
-
readonly type: "
|
|
6385
|
-
readonly
|
|
6386
|
-
readonly maximum: 9007199254740991;
|
|
6548
|
+
readonly sourceKey: {
|
|
6549
|
+
readonly type: "string";
|
|
6550
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6387
6551
|
};
|
|
6388
|
-
readonly
|
|
6389
|
-
readonly type: "
|
|
6390
|
-
readonly
|
|
6391
|
-
readonly
|
|
6552
|
+
readonly featureKey: {
|
|
6553
|
+
readonly type: "string";
|
|
6554
|
+
readonly maxLength: 64;
|
|
6555
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
6392
6556
|
};
|
|
6393
|
-
readonly
|
|
6394
|
-
readonly
|
|
6395
|
-
readonly
|
|
6396
|
-
readonly
|
|
6397
|
-
readonly type: "string";
|
|
6398
|
-
readonly minLength: 1;
|
|
6399
|
-
readonly maxLength: 191;
|
|
6400
|
-
};
|
|
6557
|
+
readonly name: {
|
|
6558
|
+
readonly type: "string";
|
|
6559
|
+
readonly minLength: 1;
|
|
6560
|
+
readonly maxLength: 255;
|
|
6401
6561
|
};
|
|
6402
|
-
|
|
6403
|
-
readonly required: readonly ["eventName", "eventCount", "distinctCustomers", "activeWeeks", "propertyKeys"];
|
|
6404
|
-
readonly additionalProperties: false;
|
|
6405
|
-
};
|
|
6406
|
-
};
|
|
6407
|
-
readonly truncated: {
|
|
6408
|
-
readonly type: "boolean";
|
|
6409
|
-
};
|
|
6410
|
-
};
|
|
6411
|
-
readonly required: readonly ["events", "truncated"];
|
|
6412
|
-
readonly additionalProperties: false;
|
|
6413
|
-
};
|
|
6414
|
-
};
|
|
6415
|
-
readonly outlit_create_behavior_metric: {
|
|
6416
|
-
readonly toolName: "outlit_create_behavior_metric";
|
|
6417
|
-
readonly commandId: "behavior_metric.create";
|
|
6418
|
-
readonly commandVersion: 1;
|
|
6419
|
-
readonly ownerDomain: "behavior_metrics";
|
|
6420
|
-
readonly title: "Create Behavior Metric";
|
|
6421
|
-
readonly description: "Create or idempotently return an event-based Behavior Metric in ENABLED and SHADOW.";
|
|
6422
|
-
readonly inputSchema: {
|
|
6423
|
-
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6424
|
-
readonly type: "object";
|
|
6425
|
-
readonly properties: {
|
|
6426
|
-
readonly sourceKey: {
|
|
6427
|
-
readonly type: "string";
|
|
6428
|
-
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6429
|
-
};
|
|
6430
|
-
readonly eventName: {
|
|
6431
|
-
readonly type: "string";
|
|
6432
|
-
readonly minLength: 1;
|
|
6433
|
-
readonly maxLength: 191;
|
|
6434
|
-
};
|
|
6435
|
-
readonly behaviorKey: {
|
|
6436
|
-
readonly type: "string";
|
|
6437
|
-
readonly maxLength: 64;
|
|
6438
|
-
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
6439
|
-
};
|
|
6440
|
-
readonly label: {
|
|
6441
|
-
readonly type: "string";
|
|
6442
|
-
readonly minLength: 1;
|
|
6443
|
-
readonly maxLength: 255;
|
|
6444
|
-
};
|
|
6445
|
-
readonly propertyFilters: {
|
|
6446
|
-
readonly default: readonly [];
|
|
6447
|
-
readonly maxItems: 5;
|
|
6448
|
-
readonly type: "array";
|
|
6449
|
-
readonly items: {
|
|
6450
|
-
readonly oneOf: readonly [{
|
|
6451
|
-
readonly type: "object";
|
|
6452
|
-
readonly properties: {
|
|
6453
|
-
readonly property: {
|
|
6454
|
-
readonly type: "string";
|
|
6455
|
-
readonly minLength: 1;
|
|
6456
|
-
readonly maxLength: 191;
|
|
6457
|
-
};
|
|
6458
|
-
readonly operator: {
|
|
6459
|
-
readonly type: "string";
|
|
6460
|
-
readonly const: "equals";
|
|
6461
|
-
};
|
|
6462
|
-
readonly value: {
|
|
6463
|
-
readonly oneOf: readonly [{
|
|
6464
|
-
readonly type: "object";
|
|
6465
|
-
readonly properties: {
|
|
6466
|
-
readonly type: {
|
|
6467
|
-
readonly type: "string";
|
|
6468
|
-
readonly const: "string";
|
|
6469
|
-
};
|
|
6470
|
-
readonly value: {
|
|
6471
|
-
readonly type: "string";
|
|
6472
|
-
readonly maxLength: 191;
|
|
6473
|
-
};
|
|
6474
|
-
};
|
|
6475
|
-
readonly required: readonly ["type", "value"];
|
|
6476
|
-
readonly additionalProperties: false;
|
|
6477
|
-
}, {
|
|
6478
|
-
readonly type: "object";
|
|
6479
|
-
readonly properties: {
|
|
6480
|
-
readonly type: {
|
|
6481
|
-
readonly type: "string";
|
|
6482
|
-
readonly const: "number";
|
|
6483
|
-
};
|
|
6484
|
-
readonly value: {
|
|
6485
|
-
readonly type: "number";
|
|
6486
|
-
readonly minimum: -9007199254740991;
|
|
6487
|
-
readonly maximum: 9007199254740991;
|
|
6488
|
-
};
|
|
6489
|
-
};
|
|
6490
|
-
readonly required: readonly ["type", "value"];
|
|
6491
|
-
readonly additionalProperties: false;
|
|
6492
|
-
}, {
|
|
6493
|
-
readonly type: "object";
|
|
6494
|
-
readonly properties: {
|
|
6495
|
-
readonly type: {
|
|
6496
|
-
readonly type: "string";
|
|
6497
|
-
readonly const: "boolean";
|
|
6498
|
-
};
|
|
6499
|
-
readonly value: {
|
|
6500
|
-
readonly type: "boolean";
|
|
6501
|
-
};
|
|
6502
|
-
};
|
|
6503
|
-
readonly required: readonly ["type", "value"];
|
|
6504
|
-
readonly additionalProperties: false;
|
|
6505
|
-
}];
|
|
6506
|
-
};
|
|
6507
|
-
};
|
|
6508
|
-
readonly required: readonly ["property", "operator", "value"];
|
|
6509
|
-
readonly additionalProperties: false;
|
|
6510
|
-
}, {
|
|
6511
|
-
readonly type: "object";
|
|
6512
|
-
readonly properties: {
|
|
6513
|
-
readonly property: {
|
|
6514
|
-
readonly type: "string";
|
|
6515
|
-
readonly minLength: 1;
|
|
6516
|
-
readonly maxLength: 191;
|
|
6517
|
-
};
|
|
6518
|
-
readonly operator: {
|
|
6519
|
-
readonly type: "string";
|
|
6520
|
-
readonly const: "exists";
|
|
6521
|
-
};
|
|
6522
|
-
};
|
|
6523
|
-
readonly required: readonly ["property", "operator"];
|
|
6524
|
-
readonly additionalProperties: false;
|
|
6525
|
-
}];
|
|
6526
|
-
};
|
|
6527
|
-
};
|
|
6528
|
-
};
|
|
6529
|
-
readonly required: readonly ["sourceKey", "eventName", "behaviorKey", "label"];
|
|
6530
|
-
readonly additionalProperties: false;
|
|
6531
|
-
};
|
|
6532
|
-
readonly outputSchema: {
|
|
6533
|
-
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6534
|
-
readonly type: "object";
|
|
6535
|
-
readonly properties: {
|
|
6536
|
-
readonly created: {
|
|
6537
|
-
readonly type: "boolean";
|
|
6538
|
-
};
|
|
6539
|
-
readonly metric: {
|
|
6540
|
-
readonly type: "object";
|
|
6541
|
-
readonly properties: {
|
|
6542
|
-
readonly sourceKey: {
|
|
6543
|
-
readonly type: "string";
|
|
6544
|
-
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6545
|
-
};
|
|
6546
|
-
readonly behaviorKey: {
|
|
6547
|
-
readonly type: "string";
|
|
6548
|
-
readonly maxLength: 64;
|
|
6549
|
-
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
6550
|
-
};
|
|
6551
|
-
readonly label: {
|
|
6552
|
-
readonly type: "string";
|
|
6553
|
-
readonly minLength: 1;
|
|
6554
|
-
readonly maxLength: 255;
|
|
6555
|
-
};
|
|
6556
|
-
readonly eventSelection: {
|
|
6557
|
-
readonly oneOf: readonly [{
|
|
6558
|
-
readonly type: "object";
|
|
6559
|
-
readonly properties: {
|
|
6560
|
-
readonly mode: {
|
|
6561
|
-
readonly type: "string";
|
|
6562
|
-
readonly const: "exact_event_names";
|
|
6563
|
-
};
|
|
6564
|
-
readonly eventNames: {
|
|
6565
|
-
readonly minItems: 1;
|
|
6566
|
-
readonly maxItems: 1;
|
|
6567
|
-
readonly type: "array";
|
|
6568
|
-
readonly items: {
|
|
6569
|
-
readonly type: "string";
|
|
6570
|
-
readonly minLength: 1;
|
|
6571
|
-
readonly maxLength: 191;
|
|
6572
|
-
};
|
|
6573
|
-
};
|
|
6574
|
-
};
|
|
6575
|
-
readonly required: readonly ["mode", "eventNames"];
|
|
6576
|
-
readonly additionalProperties: false;
|
|
6577
|
-
}, {
|
|
6562
|
+
readonly rule: {
|
|
6578
6563
|
readonly type: "object";
|
|
6579
6564
|
readonly properties: {
|
|
6580
|
-
readonly mode: {
|
|
6581
|
-
readonly type: "string";
|
|
6582
|
-
readonly const: "configured_event";
|
|
6583
|
-
};
|
|
6584
6565
|
readonly eventName: {
|
|
6585
6566
|
readonly type: "string";
|
|
6586
6567
|
readonly minLength: 1;
|
|
6587
6568
|
readonly maxLength: 191;
|
|
6588
6569
|
};
|
|
6589
6570
|
readonly propertyFilters: {
|
|
6590
|
-
readonly minItems: 1;
|
|
6591
6571
|
readonly maxItems: 5;
|
|
6592
6572
|
readonly type: "array";
|
|
6593
6573
|
readonly items: {
|
|
@@ -6670,50 +6650,1434 @@ declare const publicToolContracts: {
|
|
|
6670
6650
|
};
|
|
6671
6651
|
};
|
|
6672
6652
|
};
|
|
6673
|
-
readonly required: readonly ["
|
|
6653
|
+
readonly required: readonly ["eventName", "propertyFilters"];
|
|
6674
6654
|
readonly additionalProperties: false;
|
|
6675
|
-
}
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6655
|
+
};
|
|
6656
|
+
readonly evidence: {
|
|
6657
|
+
readonly oneOf: readonly [{
|
|
6658
|
+
readonly type: "object";
|
|
6659
|
+
readonly properties: {
|
|
6660
|
+
readonly window: {
|
|
6661
|
+
readonly type: "object";
|
|
6662
|
+
readonly properties: {
|
|
6663
|
+
readonly startAt: {
|
|
6664
|
+
readonly type: "string";
|
|
6665
|
+
readonly format: "date-time";
|
|
6666
|
+
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)))$";
|
|
6667
|
+
};
|
|
6668
|
+
readonly endAt: {
|
|
6669
|
+
readonly type: "string";
|
|
6670
|
+
readonly format: "date-time";
|
|
6671
|
+
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)))$";
|
|
6672
|
+
};
|
|
6673
|
+
};
|
|
6674
|
+
readonly required: readonly ["startAt", "endAt"];
|
|
6675
|
+
readonly additionalProperties: false;
|
|
6676
|
+
};
|
|
6677
|
+
readonly coverage: {
|
|
6678
|
+
readonly type: "string";
|
|
6679
|
+
readonly enum: readonly ["complete", "partial"];
|
|
6680
|
+
};
|
|
6681
|
+
readonly eventCount: {
|
|
6682
|
+
readonly type: "integer";
|
|
6683
|
+
readonly minimum: 0;
|
|
6684
|
+
readonly maximum: 9007199254740991;
|
|
6685
|
+
};
|
|
6686
|
+
readonly activeDays: {
|
|
6687
|
+
readonly type: "integer";
|
|
6688
|
+
readonly minimum: 0;
|
|
6689
|
+
readonly maximum: 9007199254740991;
|
|
6690
|
+
};
|
|
6691
|
+
readonly activeWeeks: {
|
|
6692
|
+
readonly type: "integer";
|
|
6693
|
+
readonly minimum: 0;
|
|
6694
|
+
readonly maximum: 53;
|
|
6695
|
+
};
|
|
6696
|
+
readonly firstObservedAt: {
|
|
6697
|
+
readonly anyOf: readonly [{
|
|
6698
|
+
readonly type: "string";
|
|
6699
|
+
readonly format: "date-time";
|
|
6700
|
+
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)))$";
|
|
6701
|
+
}, {
|
|
6702
|
+
readonly type: "null";
|
|
6703
|
+
}];
|
|
6704
|
+
};
|
|
6705
|
+
readonly lastObservedAt: {
|
|
6706
|
+
readonly anyOf: readonly [{
|
|
6707
|
+
readonly type: "string";
|
|
6708
|
+
readonly format: "date-time";
|
|
6709
|
+
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)))$";
|
|
6710
|
+
}, {
|
|
6711
|
+
readonly type: "null";
|
|
6712
|
+
}];
|
|
6713
|
+
};
|
|
6714
|
+
readonly distinctCustomers: {
|
|
6715
|
+
readonly type: "integer";
|
|
6716
|
+
readonly minimum: 0;
|
|
6717
|
+
readonly maximum: 9007199254740991;
|
|
6718
|
+
};
|
|
6696
6719
|
};
|
|
6697
|
-
readonly
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6720
|
+
readonly required: readonly ["window", "coverage", "eventCount", "activeDays", "activeWeeks", "firstObservedAt", "lastObservedAt", "distinctCustomers"];
|
|
6721
|
+
readonly additionalProperties: false;
|
|
6722
|
+
}, {
|
|
6723
|
+
readonly type: "object";
|
|
6724
|
+
readonly properties: {
|
|
6725
|
+
readonly window: {
|
|
6726
|
+
readonly type: "object";
|
|
6727
|
+
readonly properties: {
|
|
6728
|
+
readonly startAt: {
|
|
6729
|
+
readonly type: "string";
|
|
6730
|
+
readonly format: "date-time";
|
|
6731
|
+
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)))$";
|
|
6732
|
+
};
|
|
6733
|
+
readonly endAt: {
|
|
6734
|
+
readonly type: "string";
|
|
6735
|
+
readonly format: "date-time";
|
|
6736
|
+
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)))$";
|
|
6737
|
+
};
|
|
6738
|
+
};
|
|
6739
|
+
readonly required: readonly ["startAt", "endAt"];
|
|
6740
|
+
readonly additionalProperties: false;
|
|
6741
|
+
};
|
|
6742
|
+
readonly coverage: {
|
|
6743
|
+
readonly type: "string";
|
|
6744
|
+
readonly const: "unavailable";
|
|
6745
|
+
};
|
|
6746
|
+
readonly reason: {
|
|
6747
|
+
readonly type: "string";
|
|
6748
|
+
readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
|
|
6749
|
+
};
|
|
6701
6750
|
};
|
|
6702
|
-
readonly
|
|
6703
|
-
|
|
6704
|
-
|
|
6751
|
+
readonly required: readonly ["window", "coverage", "reason"];
|
|
6752
|
+
readonly additionalProperties: false;
|
|
6753
|
+
}];
|
|
6754
|
+
};
|
|
6755
|
+
};
|
|
6756
|
+
readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule", "evidence"];
|
|
6757
|
+
readonly additionalProperties: false;
|
|
6758
|
+
};
|
|
6759
|
+
};
|
|
6760
|
+
readonly candidates: {
|
|
6761
|
+
readonly oneOf: readonly [{
|
|
6762
|
+
readonly type: "object";
|
|
6763
|
+
readonly properties: {
|
|
6764
|
+
readonly status: {
|
|
6765
|
+
readonly type: "string";
|
|
6766
|
+
readonly const: "ready";
|
|
6767
|
+
};
|
|
6768
|
+
readonly items: {
|
|
6769
|
+
readonly maxItems: 100;
|
|
6770
|
+
readonly type: "array";
|
|
6771
|
+
readonly items: {
|
|
6772
|
+
readonly type: "object";
|
|
6773
|
+
readonly properties: {
|
|
6774
|
+
readonly eventName: {
|
|
6775
|
+
readonly type: "string";
|
|
6776
|
+
readonly minLength: 1;
|
|
6777
|
+
readonly maxLength: 191;
|
|
6778
|
+
};
|
|
6779
|
+
readonly eventCount: {
|
|
6780
|
+
readonly type: "integer";
|
|
6781
|
+
readonly minimum: 0;
|
|
6782
|
+
readonly maximum: 9007199254740991;
|
|
6783
|
+
};
|
|
6784
|
+
readonly distinctCustomers: {
|
|
6785
|
+
readonly type: "integer";
|
|
6786
|
+
readonly minimum: 0;
|
|
6787
|
+
readonly maximum: 9007199254740991;
|
|
6788
|
+
};
|
|
6789
|
+
readonly activeWeeks: {
|
|
6790
|
+
readonly type: "integer";
|
|
6791
|
+
readonly minimum: 1;
|
|
6792
|
+
readonly maximum: 53;
|
|
6793
|
+
};
|
|
6794
|
+
readonly propertyKeys: {
|
|
6795
|
+
readonly maxItems: 10;
|
|
6796
|
+
readonly type: "array";
|
|
6797
|
+
readonly items: {
|
|
6798
|
+
readonly type: "string";
|
|
6799
|
+
readonly minLength: 1;
|
|
6800
|
+
readonly maxLength: 191;
|
|
6801
|
+
};
|
|
6802
|
+
};
|
|
6705
6803
|
};
|
|
6804
|
+
readonly required: readonly ["eventName", "eventCount", "distinctCustomers", "activeWeeks", "propertyKeys"];
|
|
6805
|
+
readonly additionalProperties: false;
|
|
6706
6806
|
};
|
|
6707
|
-
|
|
6708
|
-
|
|
6807
|
+
};
|
|
6808
|
+
readonly truncated: {
|
|
6809
|
+
readonly type: "boolean";
|
|
6709
6810
|
};
|
|
6710
6811
|
};
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6812
|
+
readonly required: readonly ["status", "items", "truncated"];
|
|
6813
|
+
readonly additionalProperties: false;
|
|
6814
|
+
}, {
|
|
6815
|
+
readonly type: "object";
|
|
6816
|
+
readonly properties: {
|
|
6817
|
+
readonly status: {
|
|
6818
|
+
readonly type: "string";
|
|
6819
|
+
readonly const: "partial";
|
|
6820
|
+
};
|
|
6821
|
+
readonly items: {
|
|
6822
|
+
readonly maxItems: 100;
|
|
6823
|
+
readonly type: "array";
|
|
6824
|
+
readonly items: {
|
|
6825
|
+
readonly type: "object";
|
|
6826
|
+
readonly properties: {
|
|
6827
|
+
readonly eventName: {
|
|
6828
|
+
readonly type: "string";
|
|
6829
|
+
readonly minLength: 1;
|
|
6830
|
+
readonly maxLength: 191;
|
|
6831
|
+
};
|
|
6832
|
+
readonly eventCount: {
|
|
6833
|
+
readonly type: "integer";
|
|
6834
|
+
readonly minimum: 0;
|
|
6835
|
+
readonly maximum: 9007199254740991;
|
|
6836
|
+
};
|
|
6837
|
+
readonly distinctCustomers: {
|
|
6838
|
+
readonly type: "integer";
|
|
6839
|
+
readonly minimum: 0;
|
|
6840
|
+
readonly maximum: 9007199254740991;
|
|
6841
|
+
};
|
|
6842
|
+
readonly activeWeeks: {
|
|
6843
|
+
readonly type: "integer";
|
|
6844
|
+
readonly minimum: 1;
|
|
6845
|
+
readonly maximum: 53;
|
|
6846
|
+
};
|
|
6847
|
+
readonly propertyKeys: {
|
|
6848
|
+
readonly maxItems: 10;
|
|
6849
|
+
readonly type: "array";
|
|
6850
|
+
readonly items: {
|
|
6851
|
+
readonly type: "string";
|
|
6852
|
+
readonly minLength: 1;
|
|
6853
|
+
readonly maxLength: 191;
|
|
6854
|
+
};
|
|
6855
|
+
};
|
|
6856
|
+
};
|
|
6857
|
+
readonly required: readonly ["eventName", "eventCount", "distinctCustomers", "activeWeeks", "propertyKeys"];
|
|
6858
|
+
readonly additionalProperties: false;
|
|
6859
|
+
};
|
|
6860
|
+
};
|
|
6861
|
+
readonly truncated: {
|
|
6862
|
+
readonly type: "boolean";
|
|
6863
|
+
};
|
|
6864
|
+
};
|
|
6865
|
+
readonly required: readonly ["status", "items", "truncated"];
|
|
6866
|
+
readonly additionalProperties: false;
|
|
6867
|
+
}, {
|
|
6868
|
+
readonly type: "object";
|
|
6869
|
+
readonly properties: {
|
|
6870
|
+
readonly status: {
|
|
6871
|
+
readonly type: "string";
|
|
6872
|
+
readonly const: "unavailable";
|
|
6873
|
+
};
|
|
6874
|
+
readonly reason: {
|
|
6875
|
+
readonly type: "string";
|
|
6876
|
+
readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
|
|
6877
|
+
};
|
|
6878
|
+
};
|
|
6879
|
+
readonly required: readonly ["status", "reason"];
|
|
6880
|
+
readonly additionalProperties: false;
|
|
6881
|
+
}];
|
|
6882
|
+
};
|
|
6883
|
+
};
|
|
6884
|
+
readonly required: readonly ["sources", "selectedSourceKey", "workspaceActiveFeatureCount", "features", "candidates"];
|
|
6885
|
+
readonly additionalProperties: false;
|
|
6886
|
+
};
|
|
6887
|
+
};
|
|
6888
|
+
readonly outlit_create_feature: {
|
|
6889
|
+
readonly toolName: "outlit_create_feature";
|
|
6890
|
+
readonly commandId: "value_feature.create";
|
|
6891
|
+
readonly commandVersion: 1;
|
|
6892
|
+
readonly ownerDomain: "value_features";
|
|
6893
|
+
readonly title: "Create Feature";
|
|
6894
|
+
readonly description: "Create or idempotently return one customer-value Feature observed by one event rule.";
|
|
6895
|
+
readonly inputSchema: {
|
|
6896
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
6897
|
+
readonly type: "object";
|
|
6898
|
+
readonly properties: {
|
|
6899
|
+
readonly sourceKey: {
|
|
6900
|
+
readonly type: "string";
|
|
6901
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
6902
|
+
};
|
|
6903
|
+
readonly eventName: {
|
|
6904
|
+
readonly type: "string";
|
|
6905
|
+
readonly minLength: 1;
|
|
6906
|
+
readonly maxLength: 191;
|
|
6907
|
+
};
|
|
6908
|
+
readonly featureKey: {
|
|
6909
|
+
readonly type: "string";
|
|
6910
|
+
readonly maxLength: 64;
|
|
6911
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
6912
|
+
};
|
|
6913
|
+
readonly name: {
|
|
6914
|
+
readonly type: "string";
|
|
6915
|
+
readonly minLength: 1;
|
|
6916
|
+
readonly maxLength: 255;
|
|
6917
|
+
};
|
|
6918
|
+
readonly propertyFilters: {
|
|
6919
|
+
readonly default: readonly [];
|
|
6920
|
+
readonly maxItems: 5;
|
|
6921
|
+
readonly type: "array";
|
|
6922
|
+
readonly items: {
|
|
6923
|
+
readonly oneOf: readonly [{
|
|
6924
|
+
readonly type: "object";
|
|
6925
|
+
readonly properties: {
|
|
6926
|
+
readonly property: {
|
|
6927
|
+
readonly type: "string";
|
|
6928
|
+
readonly minLength: 1;
|
|
6929
|
+
readonly maxLength: 191;
|
|
6930
|
+
};
|
|
6931
|
+
readonly operator: {
|
|
6932
|
+
readonly type: "string";
|
|
6933
|
+
readonly const: "equals";
|
|
6934
|
+
};
|
|
6935
|
+
readonly value: {
|
|
6936
|
+
readonly oneOf: readonly [{
|
|
6937
|
+
readonly type: "object";
|
|
6938
|
+
readonly properties: {
|
|
6939
|
+
readonly type: {
|
|
6940
|
+
readonly type: "string";
|
|
6941
|
+
readonly const: "string";
|
|
6942
|
+
};
|
|
6943
|
+
readonly value: {
|
|
6944
|
+
readonly type: "string";
|
|
6945
|
+
readonly maxLength: 191;
|
|
6946
|
+
};
|
|
6947
|
+
};
|
|
6948
|
+
readonly required: readonly ["type", "value"];
|
|
6949
|
+
readonly additionalProperties: false;
|
|
6950
|
+
}, {
|
|
6951
|
+
readonly type: "object";
|
|
6952
|
+
readonly properties: {
|
|
6953
|
+
readonly type: {
|
|
6954
|
+
readonly type: "string";
|
|
6955
|
+
readonly const: "number";
|
|
6956
|
+
};
|
|
6957
|
+
readonly value: {
|
|
6958
|
+
readonly type: "number";
|
|
6959
|
+
readonly minimum: -9007199254740991;
|
|
6960
|
+
readonly maximum: 9007199254740991;
|
|
6961
|
+
};
|
|
6962
|
+
};
|
|
6963
|
+
readonly required: readonly ["type", "value"];
|
|
6964
|
+
readonly additionalProperties: false;
|
|
6965
|
+
}, {
|
|
6966
|
+
readonly type: "object";
|
|
6967
|
+
readonly properties: {
|
|
6968
|
+
readonly type: {
|
|
6969
|
+
readonly type: "string";
|
|
6970
|
+
readonly const: "boolean";
|
|
6971
|
+
};
|
|
6972
|
+
readonly value: {
|
|
6973
|
+
readonly type: "boolean";
|
|
6974
|
+
};
|
|
6975
|
+
};
|
|
6976
|
+
readonly required: readonly ["type", "value"];
|
|
6977
|
+
readonly additionalProperties: false;
|
|
6978
|
+
}];
|
|
6979
|
+
};
|
|
6980
|
+
};
|
|
6981
|
+
readonly required: readonly ["property", "operator", "value"];
|
|
6982
|
+
readonly additionalProperties: false;
|
|
6983
|
+
}, {
|
|
6984
|
+
readonly type: "object";
|
|
6985
|
+
readonly properties: {
|
|
6986
|
+
readonly property: {
|
|
6987
|
+
readonly type: "string";
|
|
6988
|
+
readonly minLength: 1;
|
|
6989
|
+
readonly maxLength: 191;
|
|
6990
|
+
};
|
|
6991
|
+
readonly operator: {
|
|
6992
|
+
readonly type: "string";
|
|
6993
|
+
readonly const: "exists";
|
|
6994
|
+
};
|
|
6995
|
+
};
|
|
6996
|
+
readonly required: readonly ["property", "operator"];
|
|
6997
|
+
readonly additionalProperties: false;
|
|
6998
|
+
}];
|
|
6999
|
+
};
|
|
7000
|
+
};
|
|
7001
|
+
};
|
|
7002
|
+
readonly required: readonly ["sourceKey", "eventName", "featureKey", "name"];
|
|
7003
|
+
readonly additionalProperties: false;
|
|
7004
|
+
};
|
|
7005
|
+
readonly outputSchema: {
|
|
7006
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7007
|
+
readonly type: "object";
|
|
7008
|
+
readonly properties: {
|
|
7009
|
+
readonly created: {
|
|
7010
|
+
readonly type: "boolean";
|
|
7011
|
+
};
|
|
7012
|
+
readonly feature: {
|
|
7013
|
+
readonly type: "object";
|
|
7014
|
+
readonly properties: {
|
|
7015
|
+
readonly id: {
|
|
7016
|
+
readonly type: "string";
|
|
7017
|
+
readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
|
|
7018
|
+
};
|
|
7019
|
+
readonly revision: {
|
|
7020
|
+
readonly type: "string";
|
|
7021
|
+
readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
|
|
7022
|
+
};
|
|
7023
|
+
readonly sourceKey: {
|
|
7024
|
+
readonly type: "string";
|
|
7025
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
7026
|
+
};
|
|
7027
|
+
readonly featureKey: {
|
|
7028
|
+
readonly type: "string";
|
|
7029
|
+
readonly maxLength: 64;
|
|
7030
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
7031
|
+
};
|
|
7032
|
+
readonly name: {
|
|
7033
|
+
readonly type: "string";
|
|
7034
|
+
readonly minLength: 1;
|
|
7035
|
+
readonly maxLength: 255;
|
|
7036
|
+
};
|
|
7037
|
+
readonly rule: {
|
|
7038
|
+
readonly type: "object";
|
|
7039
|
+
readonly properties: {
|
|
7040
|
+
readonly eventName: {
|
|
7041
|
+
readonly type: "string";
|
|
7042
|
+
readonly minLength: 1;
|
|
7043
|
+
readonly maxLength: 191;
|
|
7044
|
+
};
|
|
7045
|
+
readonly propertyFilters: {
|
|
7046
|
+
readonly maxItems: 5;
|
|
7047
|
+
readonly type: "array";
|
|
7048
|
+
readonly items: {
|
|
7049
|
+
readonly oneOf: readonly [{
|
|
7050
|
+
readonly type: "object";
|
|
7051
|
+
readonly properties: {
|
|
7052
|
+
readonly property: {
|
|
7053
|
+
readonly type: "string";
|
|
7054
|
+
readonly minLength: 1;
|
|
7055
|
+
readonly maxLength: 191;
|
|
7056
|
+
};
|
|
7057
|
+
readonly operator: {
|
|
7058
|
+
readonly type: "string";
|
|
7059
|
+
readonly const: "equals";
|
|
7060
|
+
};
|
|
7061
|
+
readonly value: {
|
|
7062
|
+
readonly oneOf: readonly [{
|
|
7063
|
+
readonly type: "object";
|
|
7064
|
+
readonly properties: {
|
|
7065
|
+
readonly type: {
|
|
7066
|
+
readonly type: "string";
|
|
7067
|
+
readonly const: "string";
|
|
7068
|
+
};
|
|
7069
|
+
readonly value: {
|
|
7070
|
+
readonly type: "string";
|
|
7071
|
+
readonly maxLength: 191;
|
|
7072
|
+
};
|
|
7073
|
+
};
|
|
7074
|
+
readonly required: readonly ["type", "value"];
|
|
7075
|
+
readonly additionalProperties: false;
|
|
7076
|
+
}, {
|
|
7077
|
+
readonly type: "object";
|
|
7078
|
+
readonly properties: {
|
|
7079
|
+
readonly type: {
|
|
7080
|
+
readonly type: "string";
|
|
7081
|
+
readonly const: "number";
|
|
7082
|
+
};
|
|
7083
|
+
readonly value: {
|
|
7084
|
+
readonly type: "number";
|
|
7085
|
+
readonly minimum: -9007199254740991;
|
|
7086
|
+
readonly maximum: 9007199254740991;
|
|
7087
|
+
};
|
|
7088
|
+
};
|
|
7089
|
+
readonly required: readonly ["type", "value"];
|
|
7090
|
+
readonly additionalProperties: false;
|
|
7091
|
+
}, {
|
|
7092
|
+
readonly type: "object";
|
|
7093
|
+
readonly properties: {
|
|
7094
|
+
readonly type: {
|
|
7095
|
+
readonly type: "string";
|
|
7096
|
+
readonly const: "boolean";
|
|
7097
|
+
};
|
|
7098
|
+
readonly value: {
|
|
7099
|
+
readonly type: "boolean";
|
|
7100
|
+
};
|
|
7101
|
+
};
|
|
7102
|
+
readonly required: readonly ["type", "value"];
|
|
7103
|
+
readonly additionalProperties: false;
|
|
7104
|
+
}];
|
|
7105
|
+
};
|
|
7106
|
+
};
|
|
7107
|
+
readonly required: readonly ["property", "operator", "value"];
|
|
7108
|
+
readonly additionalProperties: false;
|
|
7109
|
+
}, {
|
|
7110
|
+
readonly type: "object";
|
|
7111
|
+
readonly properties: {
|
|
7112
|
+
readonly property: {
|
|
7113
|
+
readonly type: "string";
|
|
7114
|
+
readonly minLength: 1;
|
|
7115
|
+
readonly maxLength: 191;
|
|
7116
|
+
};
|
|
7117
|
+
readonly operator: {
|
|
7118
|
+
readonly type: "string";
|
|
7119
|
+
readonly const: "exists";
|
|
7120
|
+
};
|
|
7121
|
+
};
|
|
7122
|
+
readonly required: readonly ["property", "operator"];
|
|
7123
|
+
readonly additionalProperties: false;
|
|
7124
|
+
}];
|
|
7125
|
+
};
|
|
7126
|
+
};
|
|
7127
|
+
};
|
|
7128
|
+
readonly required: readonly ["eventName", "propertyFilters"];
|
|
7129
|
+
readonly additionalProperties: false;
|
|
7130
|
+
};
|
|
7131
|
+
};
|
|
7132
|
+
readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule"];
|
|
7133
|
+
readonly additionalProperties: false;
|
|
7134
|
+
};
|
|
7135
|
+
};
|
|
7136
|
+
readonly required: readonly ["created", "feature"];
|
|
7137
|
+
readonly additionalProperties: false;
|
|
7138
|
+
};
|
|
7139
|
+
};
|
|
7140
|
+
readonly outlit_archive_feature: {
|
|
7141
|
+
readonly toolName: "outlit_archive_feature";
|
|
7142
|
+
readonly commandId: "value_feature.archive";
|
|
7143
|
+
readonly commandVersion: 1;
|
|
7144
|
+
readonly ownerDomain: "value_features";
|
|
7145
|
+
readonly title: "Archive Feature";
|
|
7146
|
+
readonly description: "Archive a Feature when at least one other active Feature remains.";
|
|
7147
|
+
readonly inputSchema: {
|
|
7148
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7149
|
+
readonly type: "object";
|
|
7150
|
+
readonly properties: {
|
|
7151
|
+
readonly id: {
|
|
7152
|
+
readonly type: "string";
|
|
7153
|
+
readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
|
|
7154
|
+
};
|
|
7155
|
+
readonly revision: {
|
|
7156
|
+
readonly type: "string";
|
|
7157
|
+
readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
|
|
7158
|
+
};
|
|
7159
|
+
};
|
|
7160
|
+
readonly required: readonly ["id", "revision"];
|
|
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 archived: {
|
|
7168
|
+
readonly type: "boolean";
|
|
7169
|
+
readonly const: true;
|
|
7170
|
+
};
|
|
7171
|
+
readonly feature: {
|
|
7172
|
+
readonly type: "object";
|
|
7173
|
+
readonly properties: {
|
|
7174
|
+
readonly id: {
|
|
7175
|
+
readonly type: "string";
|
|
7176
|
+
readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
|
|
7177
|
+
};
|
|
7178
|
+
readonly revision: {
|
|
7179
|
+
readonly type: "string";
|
|
7180
|
+
readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
|
|
7181
|
+
};
|
|
7182
|
+
};
|
|
7183
|
+
readonly required: readonly ["id", "revision"];
|
|
7184
|
+
readonly additionalProperties: false;
|
|
7185
|
+
};
|
|
7186
|
+
};
|
|
7187
|
+
readonly required: readonly ["archived", "feature"];
|
|
7188
|
+
readonly additionalProperties: false;
|
|
7189
|
+
};
|
|
7190
|
+
};
|
|
7191
|
+
readonly outlit_get_customer_features: {
|
|
7192
|
+
readonly toolName: "outlit_get_customer_features";
|
|
7193
|
+
readonly commandId: "customer_feature_usage.get";
|
|
7194
|
+
readonly commandVersion: 1;
|
|
7195
|
+
readonly ownerDomain: "value_features";
|
|
7196
|
+
readonly title: "Get Customer Features";
|
|
7197
|
+
readonly description: "Read exact historical feature-usage evidence for one authorized customer.";
|
|
7198
|
+
readonly inputSchema: {
|
|
7199
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7200
|
+
readonly type: "object";
|
|
7201
|
+
readonly properties: {
|
|
7202
|
+
readonly customer: {
|
|
7203
|
+
readonly type: "string";
|
|
7204
|
+
readonly minLength: 1;
|
|
7205
|
+
readonly maxLength: 500;
|
|
7206
|
+
};
|
|
7207
|
+
readonly weeks: {
|
|
7208
|
+
readonly default: 12;
|
|
7209
|
+
readonly type: "integer";
|
|
7210
|
+
readonly minimum: 1;
|
|
7211
|
+
readonly maximum: 53;
|
|
7212
|
+
};
|
|
7213
|
+
readonly includeWeeklyUsage: {
|
|
7214
|
+
readonly default: false;
|
|
7215
|
+
readonly type: "boolean";
|
|
7216
|
+
};
|
|
7217
|
+
};
|
|
7218
|
+
readonly required: readonly ["customer"];
|
|
7219
|
+
readonly additionalProperties: false;
|
|
7220
|
+
};
|
|
7221
|
+
readonly outputSchema: {
|
|
7222
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7223
|
+
readonly type: "object";
|
|
7224
|
+
readonly properties: {
|
|
7225
|
+
readonly customer: {
|
|
7226
|
+
readonly type: "object";
|
|
7227
|
+
readonly properties: {
|
|
7228
|
+
readonly id: {
|
|
7229
|
+
readonly type: "string";
|
|
7230
|
+
readonly minLength: 1;
|
|
7231
|
+
readonly maxLength: 191;
|
|
7232
|
+
};
|
|
7233
|
+
readonly name: {
|
|
7234
|
+
readonly type: "string";
|
|
7235
|
+
readonly minLength: 1;
|
|
7236
|
+
readonly maxLength: 255;
|
|
7237
|
+
};
|
|
7238
|
+
};
|
|
7239
|
+
readonly required: readonly ["id", "name"];
|
|
7240
|
+
readonly additionalProperties: false;
|
|
7241
|
+
};
|
|
7242
|
+
readonly features: {
|
|
7243
|
+
readonly maxItems: 100;
|
|
7244
|
+
readonly type: "array";
|
|
7245
|
+
readonly items: {
|
|
7246
|
+
readonly type: "object";
|
|
7247
|
+
readonly properties: {
|
|
7248
|
+
readonly id: {
|
|
7249
|
+
readonly type: "string";
|
|
7250
|
+
readonly pattern: "^value_feature_v1_[a-f0-9]{32}$";
|
|
7251
|
+
};
|
|
7252
|
+
readonly revision: {
|
|
7253
|
+
readonly type: "string";
|
|
7254
|
+
readonly pattern: "^value_feature_revision_v1_[a-f0-9]{32}$";
|
|
7255
|
+
};
|
|
7256
|
+
readonly sourceKey: {
|
|
7257
|
+
readonly type: "string";
|
|
7258
|
+
readonly pattern: "^metric_source_v1_[a-f0-9]{32}$";
|
|
7259
|
+
};
|
|
7260
|
+
readonly featureKey: {
|
|
7261
|
+
readonly type: "string";
|
|
7262
|
+
readonly maxLength: 64;
|
|
7263
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$";
|
|
7264
|
+
};
|
|
7265
|
+
readonly name: {
|
|
7266
|
+
readonly type: "string";
|
|
7267
|
+
readonly minLength: 1;
|
|
7268
|
+
readonly maxLength: 255;
|
|
7269
|
+
};
|
|
7270
|
+
readonly rule: {
|
|
7271
|
+
readonly type: "object";
|
|
7272
|
+
readonly properties: {
|
|
7273
|
+
readonly eventName: {
|
|
7274
|
+
readonly type: "string";
|
|
7275
|
+
readonly minLength: 1;
|
|
7276
|
+
readonly maxLength: 191;
|
|
7277
|
+
};
|
|
7278
|
+
readonly propertyFilters: {
|
|
7279
|
+
readonly maxItems: 5;
|
|
7280
|
+
readonly type: "array";
|
|
7281
|
+
readonly items: {
|
|
7282
|
+
readonly oneOf: readonly [{
|
|
7283
|
+
readonly type: "object";
|
|
7284
|
+
readonly properties: {
|
|
7285
|
+
readonly property: {
|
|
7286
|
+
readonly type: "string";
|
|
7287
|
+
readonly minLength: 1;
|
|
7288
|
+
readonly maxLength: 191;
|
|
7289
|
+
};
|
|
7290
|
+
readonly operator: {
|
|
7291
|
+
readonly type: "string";
|
|
7292
|
+
readonly const: "equals";
|
|
7293
|
+
};
|
|
7294
|
+
readonly value: {
|
|
7295
|
+
readonly oneOf: readonly [{
|
|
7296
|
+
readonly type: "object";
|
|
7297
|
+
readonly properties: {
|
|
7298
|
+
readonly type: {
|
|
7299
|
+
readonly type: "string";
|
|
7300
|
+
readonly const: "string";
|
|
7301
|
+
};
|
|
7302
|
+
readonly value: {
|
|
7303
|
+
readonly type: "string";
|
|
7304
|
+
readonly maxLength: 191;
|
|
7305
|
+
};
|
|
7306
|
+
};
|
|
7307
|
+
readonly required: readonly ["type", "value"];
|
|
7308
|
+
readonly additionalProperties: false;
|
|
7309
|
+
}, {
|
|
7310
|
+
readonly type: "object";
|
|
7311
|
+
readonly properties: {
|
|
7312
|
+
readonly type: {
|
|
7313
|
+
readonly type: "string";
|
|
7314
|
+
readonly const: "number";
|
|
7315
|
+
};
|
|
7316
|
+
readonly value: {
|
|
7317
|
+
readonly type: "number";
|
|
7318
|
+
readonly minimum: -9007199254740991;
|
|
7319
|
+
readonly maximum: 9007199254740991;
|
|
7320
|
+
};
|
|
7321
|
+
};
|
|
7322
|
+
readonly required: readonly ["type", "value"];
|
|
7323
|
+
readonly additionalProperties: false;
|
|
7324
|
+
}, {
|
|
7325
|
+
readonly type: "object";
|
|
7326
|
+
readonly properties: {
|
|
7327
|
+
readonly type: {
|
|
7328
|
+
readonly type: "string";
|
|
7329
|
+
readonly const: "boolean";
|
|
7330
|
+
};
|
|
7331
|
+
readonly value: {
|
|
7332
|
+
readonly type: "boolean";
|
|
7333
|
+
};
|
|
7334
|
+
};
|
|
7335
|
+
readonly required: readonly ["type", "value"];
|
|
7336
|
+
readonly additionalProperties: false;
|
|
7337
|
+
}];
|
|
7338
|
+
};
|
|
7339
|
+
};
|
|
7340
|
+
readonly required: readonly ["property", "operator", "value"];
|
|
7341
|
+
readonly additionalProperties: false;
|
|
7342
|
+
}, {
|
|
7343
|
+
readonly type: "object";
|
|
7344
|
+
readonly properties: {
|
|
7345
|
+
readonly property: {
|
|
7346
|
+
readonly type: "string";
|
|
7347
|
+
readonly minLength: 1;
|
|
7348
|
+
readonly maxLength: 191;
|
|
7349
|
+
};
|
|
7350
|
+
readonly operator: {
|
|
7351
|
+
readonly type: "string";
|
|
7352
|
+
readonly const: "exists";
|
|
7353
|
+
};
|
|
7354
|
+
};
|
|
7355
|
+
readonly required: readonly ["property", "operator"];
|
|
7356
|
+
readonly additionalProperties: false;
|
|
7357
|
+
}];
|
|
7358
|
+
};
|
|
7359
|
+
};
|
|
7360
|
+
};
|
|
7361
|
+
readonly required: readonly ["eventName", "propertyFilters"];
|
|
7362
|
+
readonly additionalProperties: false;
|
|
7363
|
+
};
|
|
7364
|
+
readonly evidence: {
|
|
7365
|
+
readonly oneOf: readonly [{
|
|
7366
|
+
readonly type: "object";
|
|
7367
|
+
readonly properties: {
|
|
7368
|
+
readonly window: {
|
|
7369
|
+
readonly type: "object";
|
|
7370
|
+
readonly properties: {
|
|
7371
|
+
readonly startAt: {
|
|
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 endAt: {
|
|
7377
|
+
readonly type: "string";
|
|
7378
|
+
readonly format: "date-time";
|
|
7379
|
+
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)))$";
|
|
7380
|
+
};
|
|
7381
|
+
};
|
|
7382
|
+
readonly required: readonly ["startAt", "endAt"];
|
|
7383
|
+
readonly additionalProperties: false;
|
|
7384
|
+
};
|
|
7385
|
+
readonly coverage: {
|
|
7386
|
+
readonly type: "string";
|
|
7387
|
+
readonly enum: readonly ["complete", "partial"];
|
|
7388
|
+
};
|
|
7389
|
+
readonly eventCount: {
|
|
7390
|
+
readonly type: "integer";
|
|
7391
|
+
readonly minimum: 0;
|
|
7392
|
+
readonly maximum: 9007199254740991;
|
|
7393
|
+
};
|
|
7394
|
+
readonly activeDays: {
|
|
7395
|
+
readonly type: "integer";
|
|
7396
|
+
readonly minimum: 0;
|
|
7397
|
+
readonly maximum: 9007199254740991;
|
|
7398
|
+
};
|
|
7399
|
+
readonly activeWeeks: {
|
|
7400
|
+
readonly type: "integer";
|
|
7401
|
+
readonly minimum: 0;
|
|
7402
|
+
readonly maximum: 53;
|
|
7403
|
+
};
|
|
7404
|
+
readonly firstObservedAt: {
|
|
7405
|
+
readonly anyOf: readonly [{
|
|
7406
|
+
readonly type: "string";
|
|
7407
|
+
readonly format: "date-time";
|
|
7408
|
+
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)))$";
|
|
7409
|
+
}, {
|
|
7410
|
+
readonly type: "null";
|
|
7411
|
+
}];
|
|
7412
|
+
};
|
|
7413
|
+
readonly lastObservedAt: {
|
|
7414
|
+
readonly anyOf: readonly [{
|
|
7415
|
+
readonly type: "string";
|
|
7416
|
+
readonly format: "date-time";
|
|
7417
|
+
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)))$";
|
|
7418
|
+
}, {
|
|
7419
|
+
readonly type: "null";
|
|
7420
|
+
}];
|
|
7421
|
+
};
|
|
7422
|
+
readonly weeklyUsage: {
|
|
7423
|
+
readonly maxItems: 53;
|
|
7424
|
+
readonly type: "array";
|
|
7425
|
+
readonly items: {
|
|
7426
|
+
readonly oneOf: readonly [{
|
|
7427
|
+
readonly type: "object";
|
|
7428
|
+
readonly properties: {
|
|
7429
|
+
readonly weekStartAt: {
|
|
7430
|
+
readonly type: "string";
|
|
7431
|
+
readonly format: "date-time";
|
|
7432
|
+
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)))$";
|
|
7433
|
+
};
|
|
7434
|
+
readonly coverage: {
|
|
7435
|
+
readonly type: "string";
|
|
7436
|
+
readonly enum: readonly ["complete", "partial"];
|
|
7437
|
+
};
|
|
7438
|
+
readonly eventCount: {
|
|
7439
|
+
readonly type: "integer";
|
|
7440
|
+
readonly minimum: 0;
|
|
7441
|
+
readonly maximum: 9007199254740991;
|
|
7442
|
+
};
|
|
7443
|
+
readonly activeDays: {
|
|
7444
|
+
readonly type: "integer";
|
|
7445
|
+
readonly minimum: 0;
|
|
7446
|
+
readonly maximum: 7;
|
|
7447
|
+
};
|
|
7448
|
+
};
|
|
7449
|
+
readonly required: readonly ["weekStartAt", "coverage", "eventCount", "activeDays"];
|
|
7450
|
+
readonly additionalProperties: false;
|
|
7451
|
+
}, {
|
|
7452
|
+
readonly type: "object";
|
|
7453
|
+
readonly properties: {
|
|
7454
|
+
readonly weekStartAt: {
|
|
7455
|
+
readonly type: "string";
|
|
7456
|
+
readonly format: "date-time";
|
|
7457
|
+
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)))$";
|
|
7458
|
+
};
|
|
7459
|
+
readonly coverage: {
|
|
7460
|
+
readonly type: "string";
|
|
7461
|
+
readonly const: "unavailable";
|
|
7462
|
+
};
|
|
7463
|
+
};
|
|
7464
|
+
readonly required: readonly ["weekStartAt", "coverage"];
|
|
7465
|
+
readonly additionalProperties: false;
|
|
7466
|
+
}];
|
|
7467
|
+
};
|
|
7468
|
+
};
|
|
7469
|
+
};
|
|
7470
|
+
readonly required: readonly ["window", "coverage", "eventCount", "activeDays", "activeWeeks", "firstObservedAt", "lastObservedAt"];
|
|
7471
|
+
readonly additionalProperties: false;
|
|
7472
|
+
}, {
|
|
7473
|
+
readonly type: "object";
|
|
7474
|
+
readonly properties: {
|
|
7475
|
+
readonly window: {
|
|
7476
|
+
readonly type: "object";
|
|
7477
|
+
readonly properties: {
|
|
7478
|
+
readonly startAt: {
|
|
7479
|
+
readonly type: "string";
|
|
7480
|
+
readonly format: "date-time";
|
|
7481
|
+
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)))$";
|
|
7482
|
+
};
|
|
7483
|
+
readonly endAt: {
|
|
7484
|
+
readonly type: "string";
|
|
7485
|
+
readonly format: "date-time";
|
|
7486
|
+
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)))$";
|
|
7487
|
+
};
|
|
7488
|
+
};
|
|
7489
|
+
readonly required: readonly ["startAt", "endAt"];
|
|
7490
|
+
readonly additionalProperties: false;
|
|
7491
|
+
};
|
|
7492
|
+
readonly coverage: {
|
|
7493
|
+
readonly type: "string";
|
|
7494
|
+
readonly const: "unavailable";
|
|
7495
|
+
};
|
|
7496
|
+
readonly reason: {
|
|
7497
|
+
readonly type: "string";
|
|
7498
|
+
readonly enum: readonly ["SOURCE_BLOCKED", "SOURCE_NOT_READY", "QUERY_FAILED"];
|
|
7499
|
+
};
|
|
7500
|
+
};
|
|
7501
|
+
readonly required: readonly ["window", "coverage", "reason"];
|
|
7502
|
+
readonly additionalProperties: false;
|
|
7503
|
+
}];
|
|
7504
|
+
};
|
|
7505
|
+
};
|
|
7506
|
+
readonly required: readonly ["id", "revision", "sourceKey", "featureKey", "name", "rule", "evidence"];
|
|
7507
|
+
readonly additionalProperties: false;
|
|
7508
|
+
};
|
|
7509
|
+
};
|
|
7510
|
+
};
|
|
7511
|
+
readonly required: readonly ["customer", "features"];
|
|
7512
|
+
readonly additionalProperties: false;
|
|
7513
|
+
};
|
|
7514
|
+
};
|
|
7515
|
+
readonly outlit_list_attention_items: {
|
|
7516
|
+
readonly toolName: "outlit_list_attention_items";
|
|
7517
|
+
readonly commandId: "attention.list";
|
|
7518
|
+
readonly commandVersion: 1;
|
|
7519
|
+
readonly ownerDomain: "attention";
|
|
7520
|
+
readonly title: "List Attention Items";
|
|
7521
|
+
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.";
|
|
7522
|
+
readonly inputSchema: {
|
|
7523
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7524
|
+
readonly type: "object";
|
|
7525
|
+
readonly properties: {
|
|
7526
|
+
readonly status: {
|
|
7527
|
+
readonly description: "Attention lifecycle to list (default: open)";
|
|
7528
|
+
readonly default: "open";
|
|
7529
|
+
readonly type: "string";
|
|
7530
|
+
readonly enum: readonly ["open", "resolved"];
|
|
7531
|
+
};
|
|
7532
|
+
readonly customerId: {
|
|
7533
|
+
readonly description: "Filter by exact customer ID";
|
|
7534
|
+
readonly type: "string";
|
|
7535
|
+
readonly format: "uuid";
|
|
7536
|
+
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)$";
|
|
7537
|
+
};
|
|
7538
|
+
readonly limit: {
|
|
7539
|
+
readonly description: "Results per page (default: 25, max: 100)";
|
|
7540
|
+
readonly default: 25;
|
|
7541
|
+
readonly type: "integer";
|
|
7542
|
+
readonly minimum: 1;
|
|
7543
|
+
readonly maximum: 100;
|
|
7544
|
+
};
|
|
7545
|
+
readonly cursor: {
|
|
7546
|
+
readonly description: "Opaque cursor from a previous response with the same filters";
|
|
7547
|
+
readonly type: "string";
|
|
7548
|
+
readonly minLength: 1;
|
|
7549
|
+
readonly maxLength: 2000;
|
|
7550
|
+
};
|
|
7551
|
+
};
|
|
7552
|
+
readonly additionalProperties: false;
|
|
7553
|
+
};
|
|
7554
|
+
readonly outputSchema: {
|
|
7555
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7556
|
+
readonly type: "object";
|
|
7557
|
+
readonly properties: {
|
|
7558
|
+
readonly items: {
|
|
7559
|
+
readonly maxItems: 100;
|
|
7560
|
+
readonly type: "array";
|
|
7561
|
+
readonly items: {
|
|
7562
|
+
readonly type: "object";
|
|
7563
|
+
readonly properties: {
|
|
7564
|
+
readonly id: {
|
|
7565
|
+
readonly type: "string";
|
|
7566
|
+
readonly minLength: 1;
|
|
7567
|
+
readonly maxLength: 500;
|
|
7568
|
+
};
|
|
7569
|
+
readonly customer: {
|
|
7570
|
+
readonly type: "object";
|
|
7571
|
+
readonly properties: {
|
|
7572
|
+
readonly id: {
|
|
7573
|
+
readonly type: "string";
|
|
7574
|
+
readonly minLength: 1;
|
|
7575
|
+
readonly maxLength: 500;
|
|
7576
|
+
};
|
|
7577
|
+
readonly name: {
|
|
7578
|
+
readonly type: "string";
|
|
7579
|
+
readonly minLength: 1;
|
|
7580
|
+
readonly maxLength: 500;
|
|
7581
|
+
};
|
|
7582
|
+
readonly domain: {
|
|
7583
|
+
readonly type: "string";
|
|
7584
|
+
readonly maxLength: 253;
|
|
7585
|
+
};
|
|
7586
|
+
readonly ownerName: {
|
|
7587
|
+
readonly anyOf: readonly [{
|
|
7588
|
+
readonly type: "string";
|
|
7589
|
+
readonly minLength: 1;
|
|
7590
|
+
readonly maxLength: 500;
|
|
7591
|
+
}, {
|
|
7592
|
+
readonly type: "null";
|
|
7593
|
+
}];
|
|
7594
|
+
};
|
|
7595
|
+
};
|
|
7596
|
+
readonly required: readonly ["id", "name", "domain", "ownerName"];
|
|
7597
|
+
readonly additionalProperties: false;
|
|
7598
|
+
};
|
|
7599
|
+
readonly title: {
|
|
7600
|
+
readonly type: "string";
|
|
7601
|
+
readonly minLength: 1;
|
|
7602
|
+
readonly maxLength: 240;
|
|
7603
|
+
};
|
|
7604
|
+
readonly priority: {
|
|
7605
|
+
readonly type: "string";
|
|
7606
|
+
readonly enum: readonly ["NORMAL", "HIGH", "URGENT"];
|
|
7607
|
+
};
|
|
7608
|
+
readonly evidenceCount: {
|
|
7609
|
+
readonly type: "integer";
|
|
7610
|
+
readonly minimum: 0;
|
|
7611
|
+
readonly maximum: 50;
|
|
7612
|
+
};
|
|
7613
|
+
readonly lifecycle: {
|
|
7614
|
+
readonly type: "object";
|
|
7615
|
+
readonly properties: {
|
|
7616
|
+
readonly status: {
|
|
7617
|
+
readonly type: "string";
|
|
7618
|
+
readonly enum: readonly ["open", "resolved"];
|
|
7619
|
+
};
|
|
7620
|
+
readonly customerVisibleAt: {
|
|
7621
|
+
readonly type: "string";
|
|
7622
|
+
readonly format: "date-time";
|
|
7623
|
+
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))$";
|
|
7624
|
+
};
|
|
7625
|
+
readonly resolvedAt: {
|
|
7626
|
+
readonly anyOf: readonly [{
|
|
7627
|
+
readonly type: "string";
|
|
7628
|
+
readonly format: "date-time";
|
|
7629
|
+
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))$";
|
|
7630
|
+
}, {
|
|
7631
|
+
readonly type: "null";
|
|
7632
|
+
}];
|
|
7633
|
+
};
|
|
7634
|
+
readonly reopenedAt: {
|
|
7635
|
+
readonly anyOf: readonly [{
|
|
7636
|
+
readonly type: "string";
|
|
7637
|
+
readonly format: "date-time";
|
|
7638
|
+
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))$";
|
|
7639
|
+
}, {
|
|
7640
|
+
readonly type: "null";
|
|
7641
|
+
}];
|
|
7642
|
+
};
|
|
7643
|
+
readonly createdAt: {
|
|
7644
|
+
readonly type: "string";
|
|
7645
|
+
readonly format: "date-time";
|
|
7646
|
+
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))$";
|
|
7647
|
+
};
|
|
7648
|
+
readonly updatedAt: {
|
|
7649
|
+
readonly type: "string";
|
|
7650
|
+
readonly format: "date-time";
|
|
7651
|
+
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))$";
|
|
7652
|
+
};
|
|
7653
|
+
readonly materialUpdateAt: {
|
|
7654
|
+
readonly anyOf: readonly [{
|
|
7655
|
+
readonly type: "string";
|
|
7656
|
+
readonly format: "date-time";
|
|
7657
|
+
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))$";
|
|
7658
|
+
}, {
|
|
7659
|
+
readonly type: "null";
|
|
7660
|
+
}];
|
|
7661
|
+
};
|
|
7662
|
+
};
|
|
7663
|
+
readonly required: readonly ["status", "customerVisibleAt", "resolvedAt", "reopenedAt", "createdAt", "updatedAt", "materialUpdateAt"];
|
|
7664
|
+
readonly additionalProperties: false;
|
|
7665
|
+
};
|
|
7666
|
+
readonly accountImportance: {
|
|
7667
|
+
readonly type: "object";
|
|
7668
|
+
readonly properties: {
|
|
7669
|
+
readonly arrCents: {
|
|
7670
|
+
readonly anyOf: readonly [{
|
|
7671
|
+
readonly type: "number";
|
|
7672
|
+
readonly minimum: 0;
|
|
7673
|
+
}, {
|
|
7674
|
+
readonly type: "null";
|
|
7675
|
+
}];
|
|
7676
|
+
};
|
|
7677
|
+
readonly currency: {
|
|
7678
|
+
readonly anyOf: readonly [{
|
|
7679
|
+
readonly type: "string";
|
|
7680
|
+
readonly pattern: "^[A-Z]{3}$";
|
|
7681
|
+
}, {
|
|
7682
|
+
readonly type: "null";
|
|
7683
|
+
}];
|
|
7684
|
+
};
|
|
7685
|
+
readonly arrShareWithinCurrency: {
|
|
7686
|
+
readonly anyOf: readonly [{
|
|
7687
|
+
readonly type: "number";
|
|
7688
|
+
readonly minimum: 0;
|
|
7689
|
+
readonly maximum: 1;
|
|
7690
|
+
}, {
|
|
7691
|
+
readonly type: "null";
|
|
7692
|
+
}];
|
|
7693
|
+
readonly description: "Organization ARR share among customers using the same currency";
|
|
7694
|
+
};
|
|
7695
|
+
readonly arrPercentileWithinCurrency: {
|
|
7696
|
+
readonly anyOf: readonly [{
|
|
7697
|
+
readonly type: "number";
|
|
7698
|
+
readonly minimum: 0;
|
|
7699
|
+
readonly maximum: 100;
|
|
7700
|
+
}, {
|
|
7701
|
+
readonly type: "null";
|
|
7702
|
+
}];
|
|
7703
|
+
readonly description: "ARR percentile among customers using the same currency";
|
|
7704
|
+
};
|
|
7705
|
+
readonly segments: {
|
|
7706
|
+
readonly maxItems: 50;
|
|
7707
|
+
readonly type: "array";
|
|
7708
|
+
readonly items: {
|
|
7709
|
+
readonly type: "string";
|
|
7710
|
+
readonly minLength: 1;
|
|
7711
|
+
readonly maxLength: 240;
|
|
7712
|
+
};
|
|
7713
|
+
};
|
|
7714
|
+
};
|
|
7715
|
+
readonly required: readonly ["arrCents", "currency", "arrShareWithinCurrency", "arrPercentileWithinCurrency", "segments"];
|
|
7716
|
+
readonly additionalProperties: false;
|
|
7717
|
+
};
|
|
7718
|
+
readonly preparedActionUrl: {
|
|
7719
|
+
readonly anyOf: readonly [{
|
|
7720
|
+
readonly type: "string";
|
|
7721
|
+
readonly maxLength: 2000;
|
|
7722
|
+
readonly format: "uri";
|
|
7723
|
+
}, {
|
|
7724
|
+
readonly type: "null";
|
|
7725
|
+
}];
|
|
7726
|
+
};
|
|
7727
|
+
};
|
|
7728
|
+
readonly required: readonly ["id", "customer", "title", "priority", "evidenceCount", "lifecycle", "accountImportance", "preparedActionUrl"];
|
|
7729
|
+
readonly additionalProperties: false;
|
|
7730
|
+
};
|
|
7731
|
+
};
|
|
7732
|
+
readonly pagination: {
|
|
7733
|
+
readonly type: "object";
|
|
7734
|
+
readonly properties: {
|
|
7735
|
+
readonly hasMore: {
|
|
7736
|
+
readonly type: "boolean";
|
|
7737
|
+
};
|
|
7738
|
+
readonly nextCursor: {
|
|
7739
|
+
readonly anyOf: readonly [{
|
|
7740
|
+
readonly type: "string";
|
|
7741
|
+
readonly minLength: 1;
|
|
7742
|
+
readonly maxLength: 2000;
|
|
7743
|
+
}, {
|
|
7744
|
+
readonly type: "null";
|
|
7745
|
+
}];
|
|
7746
|
+
};
|
|
7747
|
+
readonly total: {
|
|
7748
|
+
readonly type: "integer";
|
|
7749
|
+
readonly minimum: 0;
|
|
7750
|
+
readonly maximum: 9007199254740991;
|
|
7751
|
+
};
|
|
7752
|
+
};
|
|
7753
|
+
readonly required: readonly ["hasMore", "nextCursor", "total"];
|
|
7754
|
+
readonly additionalProperties: false;
|
|
7755
|
+
};
|
|
7756
|
+
};
|
|
7757
|
+
readonly required: readonly ["items", "pagination"];
|
|
7758
|
+
readonly additionalProperties: false;
|
|
7759
|
+
};
|
|
7760
|
+
};
|
|
7761
|
+
readonly outlit_get_attention_item: {
|
|
7762
|
+
readonly toolName: "outlit_get_attention_item";
|
|
7763
|
+
readonly commandId: "attention.get";
|
|
7764
|
+
readonly commandVersion: 1;
|
|
7765
|
+
readonly ownerDomain: "attention";
|
|
7766
|
+
readonly title: "Get Attention Item";
|
|
7767
|
+
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.";
|
|
7768
|
+
readonly inputSchema: {
|
|
7769
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7770
|
+
readonly type: "object";
|
|
7771
|
+
readonly properties: {
|
|
7772
|
+
readonly id: {
|
|
7773
|
+
readonly type: "string";
|
|
7774
|
+
readonly format: "uuid";
|
|
7775
|
+
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)$";
|
|
7776
|
+
readonly description: "Exact Attention item ID";
|
|
7777
|
+
};
|
|
7778
|
+
};
|
|
7779
|
+
readonly required: readonly ["id"];
|
|
7780
|
+
readonly additionalProperties: false;
|
|
7781
|
+
};
|
|
7782
|
+
readonly outputSchema: {
|
|
7783
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
7784
|
+
readonly type: "object";
|
|
7785
|
+
readonly properties: {
|
|
7786
|
+
readonly id: {
|
|
7787
|
+
readonly type: "string";
|
|
7788
|
+
readonly minLength: 1;
|
|
7789
|
+
readonly maxLength: 500;
|
|
7790
|
+
};
|
|
7791
|
+
readonly customer: {
|
|
7792
|
+
readonly type: "object";
|
|
7793
|
+
readonly properties: {
|
|
7794
|
+
readonly id: {
|
|
7795
|
+
readonly type: "string";
|
|
7796
|
+
readonly minLength: 1;
|
|
7797
|
+
readonly maxLength: 500;
|
|
7798
|
+
};
|
|
7799
|
+
readonly name: {
|
|
7800
|
+
readonly type: "string";
|
|
7801
|
+
readonly minLength: 1;
|
|
7802
|
+
readonly maxLength: 500;
|
|
7803
|
+
};
|
|
7804
|
+
readonly domain: {
|
|
7805
|
+
readonly type: "string";
|
|
7806
|
+
readonly maxLength: 253;
|
|
7807
|
+
};
|
|
7808
|
+
readonly ownerName: {
|
|
7809
|
+
readonly anyOf: readonly [{
|
|
7810
|
+
readonly type: "string";
|
|
7811
|
+
readonly minLength: 1;
|
|
7812
|
+
readonly maxLength: 500;
|
|
7813
|
+
}, {
|
|
7814
|
+
readonly type: "null";
|
|
7815
|
+
}];
|
|
7816
|
+
};
|
|
7817
|
+
};
|
|
7818
|
+
readonly required: readonly ["id", "name", "domain", "ownerName"];
|
|
7819
|
+
readonly additionalProperties: false;
|
|
7820
|
+
};
|
|
7821
|
+
readonly title: {
|
|
7822
|
+
readonly type: "string";
|
|
7823
|
+
readonly minLength: 1;
|
|
7824
|
+
readonly maxLength: 240;
|
|
7825
|
+
};
|
|
7826
|
+
readonly priority: {
|
|
7827
|
+
readonly type: "string";
|
|
7828
|
+
readonly enum: readonly ["NORMAL", "HIGH", "URGENT"];
|
|
7829
|
+
};
|
|
7830
|
+
readonly evidenceCount: {
|
|
7831
|
+
readonly type: "integer";
|
|
7832
|
+
readonly minimum: 0;
|
|
7833
|
+
readonly maximum: 50;
|
|
7834
|
+
};
|
|
7835
|
+
readonly lifecycle: {
|
|
7836
|
+
readonly type: "object";
|
|
7837
|
+
readonly properties: {
|
|
7838
|
+
readonly status: {
|
|
7839
|
+
readonly type: "string";
|
|
7840
|
+
readonly enum: readonly ["open", "resolved"];
|
|
7841
|
+
};
|
|
7842
|
+
readonly customerVisibleAt: {
|
|
7843
|
+
readonly type: "string";
|
|
7844
|
+
readonly format: "date-time";
|
|
7845
|
+
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))$";
|
|
7846
|
+
};
|
|
7847
|
+
readonly resolvedAt: {
|
|
7848
|
+
readonly anyOf: readonly [{
|
|
7849
|
+
readonly type: "string";
|
|
7850
|
+
readonly format: "date-time";
|
|
7851
|
+
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))$";
|
|
7852
|
+
}, {
|
|
7853
|
+
readonly type: "null";
|
|
7854
|
+
}];
|
|
7855
|
+
};
|
|
7856
|
+
readonly reopenedAt: {
|
|
7857
|
+
readonly anyOf: readonly [{
|
|
7858
|
+
readonly type: "string";
|
|
7859
|
+
readonly format: "date-time";
|
|
7860
|
+
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))$";
|
|
7861
|
+
}, {
|
|
7862
|
+
readonly type: "null";
|
|
7863
|
+
}];
|
|
7864
|
+
};
|
|
7865
|
+
readonly createdAt: {
|
|
7866
|
+
readonly type: "string";
|
|
7867
|
+
readonly format: "date-time";
|
|
7868
|
+
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))$";
|
|
7869
|
+
};
|
|
7870
|
+
readonly updatedAt: {
|
|
7871
|
+
readonly type: "string";
|
|
7872
|
+
readonly format: "date-time";
|
|
7873
|
+
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))$";
|
|
7874
|
+
};
|
|
7875
|
+
readonly materialUpdateAt: {
|
|
7876
|
+
readonly anyOf: readonly [{
|
|
7877
|
+
readonly type: "string";
|
|
7878
|
+
readonly format: "date-time";
|
|
7879
|
+
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))$";
|
|
7880
|
+
}, {
|
|
7881
|
+
readonly type: "null";
|
|
7882
|
+
}];
|
|
7883
|
+
};
|
|
7884
|
+
};
|
|
7885
|
+
readonly required: readonly ["status", "customerVisibleAt", "resolvedAt", "reopenedAt", "createdAt", "updatedAt", "materialUpdateAt"];
|
|
7886
|
+
readonly additionalProperties: false;
|
|
7887
|
+
};
|
|
7888
|
+
readonly accountImportance: {
|
|
7889
|
+
readonly type: "object";
|
|
7890
|
+
readonly properties: {
|
|
7891
|
+
readonly arrCents: {
|
|
7892
|
+
readonly anyOf: readonly [{
|
|
7893
|
+
readonly type: "number";
|
|
7894
|
+
readonly minimum: 0;
|
|
7895
|
+
}, {
|
|
7896
|
+
readonly type: "null";
|
|
7897
|
+
}];
|
|
7898
|
+
};
|
|
7899
|
+
readonly currency: {
|
|
7900
|
+
readonly anyOf: readonly [{
|
|
7901
|
+
readonly type: "string";
|
|
7902
|
+
readonly pattern: "^[A-Z]{3}$";
|
|
7903
|
+
}, {
|
|
7904
|
+
readonly type: "null";
|
|
7905
|
+
}];
|
|
7906
|
+
};
|
|
7907
|
+
readonly arrShareWithinCurrency: {
|
|
7908
|
+
readonly anyOf: readonly [{
|
|
7909
|
+
readonly type: "number";
|
|
7910
|
+
readonly minimum: 0;
|
|
7911
|
+
readonly maximum: 1;
|
|
7912
|
+
}, {
|
|
7913
|
+
readonly type: "null";
|
|
7914
|
+
}];
|
|
7915
|
+
readonly description: "Organization ARR share among customers using the same currency";
|
|
7916
|
+
};
|
|
7917
|
+
readonly arrPercentileWithinCurrency: {
|
|
7918
|
+
readonly anyOf: readonly [{
|
|
7919
|
+
readonly type: "number";
|
|
7920
|
+
readonly minimum: 0;
|
|
7921
|
+
readonly maximum: 100;
|
|
7922
|
+
}, {
|
|
7923
|
+
readonly type: "null";
|
|
7924
|
+
}];
|
|
7925
|
+
readonly description: "ARR percentile among customers using the same currency";
|
|
7926
|
+
};
|
|
7927
|
+
readonly segments: {
|
|
7928
|
+
readonly maxItems: 50;
|
|
7929
|
+
readonly type: "array";
|
|
7930
|
+
readonly items: {
|
|
7931
|
+
readonly type: "string";
|
|
7932
|
+
readonly minLength: 1;
|
|
7933
|
+
readonly maxLength: 240;
|
|
7934
|
+
};
|
|
7935
|
+
};
|
|
7936
|
+
};
|
|
7937
|
+
readonly required: readonly ["arrCents", "currency", "arrShareWithinCurrency", "arrPercentileWithinCurrency", "segments"];
|
|
7938
|
+
readonly additionalProperties: false;
|
|
7939
|
+
};
|
|
7940
|
+
readonly preparedActionUrl: {
|
|
7941
|
+
readonly anyOf: readonly [{
|
|
7942
|
+
readonly type: "string";
|
|
7943
|
+
readonly maxLength: 2000;
|
|
7944
|
+
readonly format: "uri";
|
|
7945
|
+
}, {
|
|
7946
|
+
readonly type: "null";
|
|
7947
|
+
}];
|
|
7948
|
+
};
|
|
7949
|
+
readonly whatChanged: {
|
|
7950
|
+
readonly type: "string";
|
|
7951
|
+
readonly minLength: 1;
|
|
7952
|
+
readonly maxLength: 8000;
|
|
7953
|
+
};
|
|
7954
|
+
readonly whyItMatters: {
|
|
7955
|
+
readonly type: "string";
|
|
7956
|
+
readonly minLength: 1;
|
|
7957
|
+
readonly maxLength: 8000;
|
|
7958
|
+
};
|
|
7959
|
+
readonly uncertainty: {
|
|
7960
|
+
readonly anyOf: readonly [{
|
|
7961
|
+
readonly type: "string";
|
|
7962
|
+
readonly minLength: 1;
|
|
7963
|
+
readonly maxLength: 8000;
|
|
7964
|
+
}, {
|
|
7965
|
+
readonly type: "null";
|
|
7966
|
+
}];
|
|
7967
|
+
};
|
|
7968
|
+
readonly priorityReason: {
|
|
7969
|
+
readonly type: "string";
|
|
7970
|
+
readonly minLength: 1;
|
|
7971
|
+
readonly maxLength: 8000;
|
|
7972
|
+
};
|
|
7973
|
+
readonly timeline: {
|
|
7974
|
+
readonly maxItems: 20;
|
|
7975
|
+
readonly type: "array";
|
|
7976
|
+
readonly items: {
|
|
7977
|
+
readonly type: "object";
|
|
7978
|
+
readonly properties: {
|
|
7979
|
+
readonly title: {
|
|
7980
|
+
readonly type: "string";
|
|
7981
|
+
readonly minLength: 1;
|
|
7982
|
+
readonly maxLength: 240;
|
|
7983
|
+
};
|
|
7984
|
+
readonly explanation: {
|
|
7985
|
+
readonly type: "string";
|
|
7986
|
+
readonly minLength: 1;
|
|
7987
|
+
readonly maxLength: 4000;
|
|
7988
|
+
};
|
|
7989
|
+
readonly observedAt: {
|
|
7990
|
+
readonly type: "string";
|
|
7991
|
+
readonly format: "date-time";
|
|
7992
|
+
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))$";
|
|
7993
|
+
};
|
|
7994
|
+
};
|
|
7995
|
+
readonly required: readonly ["title", "explanation", "observedAt"];
|
|
7996
|
+
readonly additionalProperties: false;
|
|
7997
|
+
};
|
|
7998
|
+
};
|
|
7999
|
+
readonly evidence: {
|
|
8000
|
+
readonly maxItems: 20;
|
|
8001
|
+
readonly type: "array";
|
|
8002
|
+
readonly items: {
|
|
8003
|
+
readonly type: "object";
|
|
8004
|
+
readonly properties: {
|
|
8005
|
+
readonly role: {
|
|
8006
|
+
readonly type: "string";
|
|
8007
|
+
readonly enum: readonly ["supporting", "contradictory", "context"];
|
|
8008
|
+
};
|
|
8009
|
+
readonly kind: {
|
|
8010
|
+
readonly type: "string";
|
|
8011
|
+
readonly enum: readonly ["metric", "communication", "record", "event"];
|
|
8012
|
+
};
|
|
8013
|
+
readonly title: {
|
|
8014
|
+
readonly type: "string";
|
|
8015
|
+
readonly minLength: 1;
|
|
8016
|
+
readonly maxLength: 500;
|
|
8017
|
+
};
|
|
8018
|
+
readonly observedAt: {
|
|
8019
|
+
readonly anyOf: readonly [{
|
|
8020
|
+
readonly type: "string";
|
|
8021
|
+
readonly format: "date-time";
|
|
8022
|
+
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))$";
|
|
8023
|
+
}, {
|
|
8024
|
+
readonly type: "null";
|
|
8025
|
+
}];
|
|
8026
|
+
};
|
|
8027
|
+
readonly window: {
|
|
8028
|
+
readonly anyOf: readonly [{
|
|
8029
|
+
readonly type: "object";
|
|
8030
|
+
readonly properties: {
|
|
8031
|
+
readonly start: {
|
|
8032
|
+
readonly type: "string";
|
|
8033
|
+
readonly format: "date-time";
|
|
8034
|
+
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))$";
|
|
8035
|
+
};
|
|
8036
|
+
readonly end: {
|
|
8037
|
+
readonly type: "string";
|
|
8038
|
+
readonly format: "date-time";
|
|
8039
|
+
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))$";
|
|
8040
|
+
};
|
|
8041
|
+
};
|
|
8042
|
+
readonly required: readonly ["start", "end"];
|
|
8043
|
+
readonly additionalProperties: false;
|
|
8044
|
+
}, {
|
|
8045
|
+
readonly type: "null";
|
|
8046
|
+
}];
|
|
8047
|
+
};
|
|
8048
|
+
readonly sourceLabel: {
|
|
8049
|
+
readonly type: "string";
|
|
8050
|
+
readonly minLength: 1;
|
|
8051
|
+
readonly maxLength: 240;
|
|
8052
|
+
};
|
|
8053
|
+
};
|
|
8054
|
+
readonly required: readonly ["role", "kind", "title", "observedAt", "window", "sourceLabel"];
|
|
8055
|
+
readonly additionalProperties: false;
|
|
8056
|
+
};
|
|
8057
|
+
};
|
|
8058
|
+
readonly latestUpdate: {
|
|
8059
|
+
readonly anyOf: readonly [{
|
|
8060
|
+
readonly type: "object";
|
|
8061
|
+
readonly properties: {
|
|
8062
|
+
readonly updatedAt: {
|
|
8063
|
+
readonly type: "string";
|
|
8064
|
+
readonly format: "date-time";
|
|
8065
|
+
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))$";
|
|
8066
|
+
};
|
|
8067
|
+
readonly summary: {
|
|
8068
|
+
readonly type: "string";
|
|
8069
|
+
readonly minLength: 1;
|
|
8070
|
+
readonly maxLength: 8000;
|
|
8071
|
+
};
|
|
8072
|
+
};
|
|
8073
|
+
readonly required: readonly ["updatedAt", "summary"];
|
|
8074
|
+
readonly additionalProperties: false;
|
|
8075
|
+
}, {
|
|
8076
|
+
readonly type: "null";
|
|
8077
|
+
}];
|
|
6714
8078
|
};
|
|
6715
8079
|
};
|
|
6716
|
-
readonly required: readonly ["
|
|
8080
|
+
readonly required: readonly ["id", "customer", "title", "priority", "evidenceCount", "lifecycle", "accountImportance", "preparedActionUrl", "whatChanged", "whyItMatters", "uncertainty", "priorityReason", "timeline", "evidence", "latestUpdate"];
|
|
6717
8081
|
readonly additionalProperties: false;
|
|
6718
8082
|
};
|
|
6719
8083
|
};
|
|
@@ -6734,8 +8098,8 @@ declare const publicOpenApiTransports: readonly [{
|
|
|
6734
8098
|
declare const consumerToolPolicies: {
|
|
6735
8099
|
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"];
|
|
6736
8100
|
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"];
|
|
6737
|
-
readonly pi: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "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"];
|
|
6738
|
-
readonly cli: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "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", "
|
|
8101
|
+
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"];
|
|
8102
|
+
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"];
|
|
6739
8103
|
};
|
|
6740
8104
|
declare const toolGatewayTransport: {
|
|
6741
8105
|
readonly method: "POST";
|
|
@@ -7636,7 +9000,7 @@ declare const userJourneyStages: readonly ["DISCOVERED", "SIGNED_UP", "ACTIVATED
|
|
|
7636
9000
|
declare const userListOrderFields: readonly ["last_activity_at", "first_seen_at", "email"];
|
|
7637
9001
|
declare const workspaceUserListOrderFields: readonly ["name", "email", "owned_customer_count"];
|
|
7638
9002
|
declare const schemaTables: readonly ["activity", "customers", "users", "revenue"];
|
|
7639
|
-
declare const sdkConsumerContractHash: "
|
|
9003
|
+
declare const sdkConsumerContractHash: "fabc5dbceb5a7c624482b138ea6cb89622f315526a44bb43068c8c66fea3fbc3";
|
|
7640
9004
|
|
|
7641
9005
|
type JsonSchema = Readonly<Record<string, unknown>>;
|
|
7642
9006
|
type PublicToolName = (typeof publicToolNames)[number];
|
|
@@ -7715,6 +9079,20 @@ type CustomerListResult = PublicToolResult<"outlit_list_customers">;
|
|
|
7715
9079
|
type CustomerListItem = CustomerListResult["items"][number];
|
|
7716
9080
|
type CustomerDetailResult = PublicToolResult<"outlit_get_customer">;
|
|
7717
9081
|
type CustomerDetail = CustomerDetailResult["customer"];
|
|
9082
|
+
type CustomerRelationshipResult = PublicToolResult<"outlit_get_customer_relationship">;
|
|
9083
|
+
type CustomerRelationship = CustomerRelationshipResult["relationship"];
|
|
9084
|
+
type AttentionListResult = PublicToolResult<"outlit_list_attention_items">;
|
|
9085
|
+
type AttentionItemSummary = AttentionListResult["items"][number];
|
|
9086
|
+
type AttentionItemResult = PublicToolResult<"outlit_get_attention_item">;
|
|
9087
|
+
type AttentionItem = AttentionItemResult;
|
|
9088
|
+
type FeatureListResult = PublicToolResult<"outlit_list_features">;
|
|
9089
|
+
type Feature = FeatureListResult["features"][number];
|
|
9090
|
+
type FeatureCreateResult = PublicToolResult<"outlit_create_feature">;
|
|
9091
|
+
type FeatureDefinition = FeatureCreateResult["feature"];
|
|
9092
|
+
type FeatureArchiveResult = PublicToolResult<"outlit_archive_feature">;
|
|
9093
|
+
type FeatureRef = FeatureArchiveResult["feature"];
|
|
9094
|
+
type CustomerFeaturesResult = PublicToolResult<"outlit_get_customer_features">;
|
|
9095
|
+
type CustomerFeature = CustomerFeaturesResult["features"][number];
|
|
7718
9096
|
interface CustomerAnalyticsRow {
|
|
7719
9097
|
activated_at: string | null;
|
|
7720
9098
|
[column: string]: unknown;
|
|
@@ -7772,11 +9150,11 @@ declare function matchesGeneratedJsonSchema<TSchema extends RuntimeJsonSchema>(v
|
|
|
7772
9150
|
|
|
7773
9151
|
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"];
|
|
7774
9152
|
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"];
|
|
7775
|
-
declare const piToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "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"];
|
|
7776
|
-
declare const cliToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "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", "
|
|
7777
|
-
declare const allPublicToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "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", "
|
|
9153
|
+
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"];
|
|
9154
|
+
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"];
|
|
9155
|
+
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"];
|
|
7778
9156
|
type CliToolName = (typeof cliToolNames)[number];
|
|
7779
9157
|
type PiToolName = (typeof piToolNames)[number];
|
|
7780
9158
|
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")[];
|
|
7781
9159
|
|
|
7782
|
-
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 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 };
|
|
9160
|
+
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 };
|