@outlit/tools 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,18 +1,25 @@
1
1
  type JsonSchema = {
2
2
  readonly [key: string]: unknown;
3
3
  };
4
- declare const customerToolNames: 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", "outlit_send_notification"];
5
- declare const customerSourceTypes: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY"];
4
+ declare const customerToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_send_notification"];
5
+ declare const customerSourceTypes: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK"];
6
6
  declare const customerSourceTypeAliases: readonly ["CRM", "CRM_OPPORTUNITY"];
7
- declare const customerSourceTypeInputs: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "CRM", "CRM_OPPORTUNITY"];
7
+ declare const customerSourceTypeInputs: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK", "CRM", "CRM_OPPORTUNITY"];
8
8
  declare const customerToolContracts: {
9
9
  readonly outlit_list_customers: {
10
10
  readonly toolName: "outlit_list_customers";
11
+ readonly title: "List Customers";
11
12
  readonly description: "Browse and filter customers. Use this to find customers by billing status, activity recency, revenue, or name. Returns a paginated list with summary info (MRR, last activity, status).";
12
13
  readonly inputSchema: {
13
14
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
14
15
  readonly type: "object";
15
16
  readonly properties: {
17
+ readonly activatedSince: {
18
+ readonly description: "Filter customers activated at or after this ISO-8601 datetime";
19
+ readonly type: "string";
20
+ readonly format: "date-time";
21
+ 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)))$";
22
+ };
16
23
  readonly billingStatus: {
17
24
  readonly description: "Filter by billing status";
18
25
  readonly type: "string";
@@ -61,6 +68,20 @@ declare const customerToolContracts: {
61
68
  readonly type: "string";
62
69
  readonly maxLength: 500;
63
70
  };
71
+ readonly ownerId: {
72
+ readonly description: "Filter customers by internal owner user ID";
73
+ readonly type: "string";
74
+ readonly maxLength: 500;
75
+ };
76
+ readonly ownerEmail: {
77
+ readonly description: "Filter customers by internal owner email address";
78
+ readonly type: "string";
79
+ readonly maxLength: 500;
80
+ };
81
+ readonly hasOwner: {
82
+ readonly description: "Filter customers by whether they have an owner";
83
+ readonly type: "boolean";
84
+ };
64
85
  readonly limit: {
65
86
  readonly description: "Results per page (max 1000)";
66
87
  readonly default: 50;
@@ -90,6 +111,7 @@ declare const customerToolContracts: {
90
111
  };
91
112
  readonly outlit_list_users: {
92
113
  readonly toolName: "outlit_list_users";
114
+ readonly title: "List Users";
93
115
  readonly description: "Browse and filter users. Use this to find users by journey stage, activity recency, customer, or email/name. Returns a paginated list with activity info.";
94
116
  readonly inputSchema: {
95
117
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -165,8 +187,63 @@ declare const customerToolContracts: {
165
187
  readonly additionalProperties: false;
166
188
  };
167
189
  };
190
+ readonly outlit_list_workspace_users: {
191
+ readonly toolName: "outlit_list_workspace_users";
192
+ readonly title: "List Workspace Users";
193
+ readonly description: "Browse internal workspace users such as CSMs, managers, account owners, and admins. Use this to discover who owns customers before composing dynamic reports across account books.";
194
+ readonly inputSchema: {
195
+ readonly $schema: "https://json-schema.org/draft/2020-12/schema";
196
+ readonly type: "object";
197
+ readonly properties: {
198
+ readonly search: {
199
+ readonly description: "Search internal workspace users by name, email, title, role, or territory";
200
+ readonly type: "string";
201
+ readonly maxLength: 500;
202
+ };
203
+ readonly role: {
204
+ readonly description: "Filter internal workspace users by role metadata when available";
205
+ readonly type: "string";
206
+ readonly maxLength: 100;
207
+ };
208
+ readonly managerEmail: {
209
+ readonly description: "Filter internal workspace users by manager email metadata when available";
210
+ readonly type: "string";
211
+ readonly maxLength: 500;
212
+ };
213
+ readonly hasOwnedCustomers: {
214
+ readonly description: "When true, return only workspace users who own at least one customer";
215
+ readonly type: "boolean";
216
+ };
217
+ readonly limit: {
218
+ readonly description: "Results per page (max 1000)";
219
+ readonly default: 50;
220
+ readonly type: "number";
221
+ readonly minimum: 1;
222
+ readonly maximum: 1000;
223
+ };
224
+ readonly cursor: {
225
+ readonly description: "Pagination cursor from previous response";
226
+ readonly type: "string";
227
+ };
228
+ readonly orderBy: {
229
+ readonly description: "Field to order workspace users by";
230
+ readonly default: "owned_customer_count";
231
+ readonly type: "string";
232
+ readonly enum: readonly ["name", "email", "owned_customer_count"];
233
+ };
234
+ readonly orderDirection: {
235
+ readonly description: "Sort direction";
236
+ readonly default: "desc";
237
+ readonly type: "string";
238
+ readonly enum: readonly ["asc", "desc"];
239
+ };
240
+ };
241
+ readonly additionalProperties: false;
242
+ };
243
+ };
168
244
  readonly outlit_get_customer: {
169
245
  readonly toolName: "outlit_get_customer";
246
+ readonly title: "Get Customer";
170
247
  readonly description: "Get full details for a single customer. Use this when you already know which customer you want to inspect. Optionally include related data (users, revenue, recent activity, engagement metrics).";
171
248
  readonly inputSchema: {
172
249
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -197,6 +274,7 @@ declare const customerToolContracts: {
197
274
  };
198
275
  readonly outlit_get_timeline: {
199
276
  readonly toolName: "outlit_get_timeline";
277
+ readonly title: "Get Customer Timeline";
200
278
  readonly description: "Get the chronological activity timeline for a customer. Use this to see what happened and when — emails, calls, Slack messages, billing events, etc. Supports channel and date filtering.";
201
279
  readonly inputSchema: {
202
280
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -207,11 +285,11 @@ declare const customerToolContracts: {
207
285
  readonly description: "Customer ID or domain";
208
286
  };
209
287
  readonly channels: {
210
- readonly description: "Filter by event channel (e.g., EMAIL, SLACK, CALL, CALENDAR)";
288
+ readonly description: "Filter by event channel. Use values such as PRODUCT, COMMUNICATION, MEETING, CRM, BILLING, SUPPORT, IDENTITY, DOCUMENT, or SYSTEM.";
211
289
  readonly type: "array";
212
290
  readonly items: {
213
291
  readonly type: "string";
214
- readonly enum: readonly ["SDK", "EMAIL", "SLACK", "CALL", "CALENDAR", "CRM", "BILLING", "SUPPORT", "INTERNAL"];
292
+ readonly enum: readonly ["PRODUCT", "COMMUNICATION", "MEETING", "CRM", "BILLING", "SUPPORT", "IDENTITY", "DOCUMENT", "SYSTEM"];
215
293
  };
216
294
  };
217
295
  readonly eventTypes: {
@@ -256,6 +334,7 @@ declare const customerToolContracts: {
256
334
  };
257
335
  readonly outlit_list_facts: {
258
336
  readonly toolName: "outlit_list_facts";
337
+ readonly title: "List Customer Facts";
259
338
  readonly description: "List structured facts known about a customer. Use filters like status, sourceTypes, factTypes, factCategories, and date bounds to narrow the result set. For topic-specific retrieval, use outlit_search_customer_context instead.";
260
339
  readonly inputSchema: {
261
340
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -278,7 +357,7 @@ declare const customerToolContracts: {
278
357
  readonly type: "array";
279
358
  readonly items: {
280
359
  readonly type: "string";
281
- readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "CRM", "CRM_OPPORTUNITY"];
360
+ readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK", "CRM", "CRM_OPPORTUNITY"];
282
361
  };
283
362
  };
284
363
  readonly factTypes: {
@@ -327,6 +406,7 @@ declare const customerToolContracts: {
327
406
  };
328
407
  readonly outlit_get_fact: {
329
408
  readonly toolName: "outlit_get_fact";
409
+ readonly title: "Get Customer Fact";
330
410
  readonly description: "Get one exact fact by ID. Returns the canonical fact shape and optionally expands requested related data such as evidence.";
331
411
  readonly inputSchema: {
332
412
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -354,6 +434,7 @@ declare const customerToolContracts: {
354
434
  };
355
435
  readonly outlit_get_source: {
356
436
  readonly toolName: "outlit_get_source";
437
+ readonly title: "Get Source";
357
438
  readonly description: "Get one exact source record by generic sourceType and sourceId. Use this when you already know the concrete underlying source you want to inspect.";
358
439
  readonly inputSchema: {
359
440
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -361,7 +442,7 @@ declare const customerToolContracts: {
361
442
  readonly properties: {
362
443
  readonly sourceType: {
363
444
  readonly type: "string";
364
- readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "CRM", "CRM_OPPORTUNITY"];
445
+ readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK", "CRM", "CRM_OPPORTUNITY"];
365
446
  };
366
447
  readonly sourceId: {
367
448
  readonly type: "string";
@@ -375,6 +456,7 @@ declare const customerToolContracts: {
375
456
  };
376
457
  readonly outlit_list_sources: {
377
458
  readonly toolName: "outlit_list_sources";
459
+ readonly title: "List Sources";
378
460
  readonly description: "List concrete source records deterministically. Use this instead of semantic search when you need enumerated calls, emails, calendar events, support tickets, or opportunities.";
379
461
  readonly inputSchema: {
380
462
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -383,7 +465,7 @@ declare const customerToolContracts: {
383
465
  readonly sourceType: {
384
466
  readonly description: "Generic source type to list.";
385
467
  readonly type: "string";
386
- readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "CRM", "CRM_OPPORTUNITY"];
468
+ readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK", "CRM", "CRM_OPPORTUNITY"];
387
469
  };
388
470
  readonly customer: {
389
471
  readonly description: "Customer ID, domain, or name to scope source listing.";
@@ -438,7 +520,8 @@ declare const customerToolContracts: {
438
520
  };
439
521
  readonly outlit_search_customer_context: {
440
522
  readonly toolName: "outlit_search_customer_context";
441
- readonly description: "Search across all known customer context using a natural-language query. Returns grouped artifact-level results for matching sources and facts. Omit customer to search across all customers in the organization.";
523
+ readonly title: "Search Customer Context";
524
+ readonly description: "Search across all known customer context using a natural-language query. Returns ranked artifact-level discovery previews with at most two matching excerpts per source or fact. Use outlit_get_source with a returned sourceType and sourceId when you need the canonical source contents. Omit customer to search across all customers in the organization.";
442
525
  readonly inputSchema: {
443
526
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
444
527
  readonly type: "object";
@@ -482,7 +565,7 @@ declare const customerToolContracts: {
482
565
  readonly type: "array";
483
566
  readonly items: {
484
567
  readonly type: "string";
485
- readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "CRM", "CRM_OPPORTUNITY"];
568
+ readonly enum: readonly ["EMAIL", "CALL", "CALENDAR_EVENT", "SUPPORT_TICKET", "OPPORTUNITY", "SLACK", "CRM", "CRM_OPPORTUNITY"];
486
569
  };
487
570
  };
488
571
  };
@@ -492,6 +575,7 @@ declare const customerToolContracts: {
492
575
  };
493
576
  readonly outlit_query: {
494
577
  readonly toolName: "outlit_query";
578
+ readonly title: "Run SQL Query";
495
579
  readonly description: "Execute read-only SQL queries against your analytics views.\n\nAvailable views:\n- activity: Customer activity events (event_name, event_type, event_channel, customer_id, occurred_at, properties, ...)\n- customers: Customer attributes (customer_id, domain, name, billing_status, plan, mrr_cents, traits, ...)\n- users: User attributes (user_id, email, name, customer_id, traits, ...)\n- revenue: Revenue snapshots over time (customer_id, snapshot_date, mrr_cents, ...)\n\nAll queries are automatically filtered to your organization's data.\nOnly SELECT queries are allowed.\nProperties and traits are JSON strings; inspect schemas and examples before filtering nested values.\n\nExample queries:\n- SELECT event_name, count(*) FROM activity GROUP BY 1 ORDER BY 2 DESC LIMIT 10\n- SELECT billing_status, sum(mrr_cents)/100 as mrr FROM customers GROUP BY 1\n- SELECT * FROM activity WHERE customer_id = 'cust_123' ORDER BY occurred_at DESC LIMIT 50";
496
580
  readonly inputSchema: {
497
581
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -515,6 +599,7 @@ declare const customerToolContracts: {
515
599
  };
516
600
  readonly outlit_schema: {
517
601
  readonly toolName: "outlit_schema";
602
+ readonly title: "Get SQL Schema";
518
603
  readonly description: "Get schemas for available analytics views.\n\nUse this to discover column names, types, and descriptions before writing SQL queries.\nReturns column definitions and example queries for each view.";
519
604
  readonly inputSchema: {
520
605
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -531,6 +616,7 @@ declare const customerToolContracts: {
531
616
  };
532
617
  readonly outlit_send_notification: {
533
618
  readonly toolName: "outlit_send_notification";
619
+ readonly title: "Send Notification";
534
620
  readonly description: "Send or post a notification. Use only when the user explicitly asks you to send, post, or notify. Slack is the default notifier when destinations are omitted.";
535
621
  readonly inputSchema: {
536
622
  readonly $schema: "https://json-schema.org/draft/2020-12/schema";
@@ -575,34 +661,15 @@ declare const customerToolContracts: {
575
661
  readonly minLength: 1;
576
662
  readonly maxLength: 240;
577
663
  };
578
- readonly destinations: {
579
- readonly description: "Optional explicit notification destinations. Omit to use the default notifier.";
664
+ readonly destinationIds: {
665
+ readonly description: "Optional NotificationDestination ids. Omit to use the default notifier.";
580
666
  readonly minItems: 1;
581
667
  readonly maxItems: 10;
582
668
  readonly type: "array";
583
669
  readonly items: {
584
- readonly type: "object";
585
- readonly properties: {
586
- readonly provider: {
587
- readonly description: "Notification provider";
588
- readonly type: "string";
589
- readonly enum: readonly ["slack"];
590
- };
591
- readonly channelId: {
592
- readonly description: "Provider-specific destination channel ID";
593
- readonly type: "string";
594
- readonly minLength: 1;
595
- readonly maxLength: 240;
596
- };
597
- readonly label: {
598
- readonly description: "Optional destination label";
599
- readonly type: "string";
600
- readonly minLength: 1;
601
- readonly maxLength: 120;
602
- };
603
- };
604
- readonly required: readonly ["provider"];
605
- readonly additionalProperties: false;
670
+ readonly type: "string";
671
+ readonly format: "uuid";
672
+ 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)$";
606
673
  };
607
674
  };
608
675
  };
@@ -649,17 +716,19 @@ declare const customerIncludeSections: readonly ["users", "revenue", "recentTime
649
716
  declare const customerTimeframes: readonly ["7d", "14d", "30d", "90d"];
650
717
  declare const notificationProviderValues: readonly ["slack"];
651
718
  declare const notificationSeverityValues: readonly ["low", "medium", "high"];
652
- declare const timelineChannels: readonly ["SDK", "EMAIL", "SLACK", "CALL", "CALENDAR", "CRM", "BILLING", "SUPPORT", "INTERNAL"];
719
+ declare const timelineChannels: readonly ["PRODUCT", "COMMUNICATION", "MEETING", "CRM", "BILLING", "SUPPORT", "IDENTITY", "DOCUMENT", "SYSTEM"];
653
720
  declare const timelineTimeframes: readonly ["7d", "14d", "30d", "90d", "all"];
654
721
  declare const userJourneyStages: readonly ["DISCOVERED", "SIGNED_UP", "ACTIVATED", "ENGAGED", "INACTIVE"];
655
722
  declare const userListOrderFields: readonly ["last_activity_at", "first_seen_at", "email"];
723
+ declare const workspaceUserListOrderFields: readonly ["name", "email", "owned_customer_count"];
656
724
  declare const schemaTables: readonly ["activity", "customers", "users", "revenue"];
657
- declare const customerToolContractHash: "5016d146842452855bfdd9ecc8f6be1a122125d0c392ceff315aeb2e44fefc7f";
725
+ declare const customerToolContractHash: "f1f06ac1d3fb5131095ac7047f5871f47942b0f5efcb1229151b52475bf93816";
658
726
  type CustomerToolName = (typeof customerToolNames)[number];
659
727
  type CustomerSourceType = (typeof customerSourceTypes)[number];
660
728
  type CustomerSourceTypeInput = (typeof customerSourceTypeInputs)[number];
661
729
  type CustomerToolContract = {
662
730
  toolName: CustomerToolName;
731
+ title: string;
663
732
  description: string;
664
733
  inputSchema: JsonSchema;
665
734
  };
@@ -690,6 +759,37 @@ declare function resolveCustomerContextSearchInput(value: SearchArgsLike): {
690
759
  message: string;
691
760
  };
692
761
 
762
+ interface CustomerListItem {
763
+ id: string;
764
+ name: string | null;
765
+ domain: string | null;
766
+ activatedAt: string | null;
767
+ [key: string]: unknown;
768
+ }
769
+ interface CustomerDetail {
770
+ id: string;
771
+ name: string | null;
772
+ domain: string | null;
773
+ activatedAt: string | null;
774
+ [key: string]: unknown;
775
+ }
776
+ interface CustomerDetailResult {
777
+ customer: CustomerDetail;
778
+ [key: string]: unknown;
779
+ }
780
+ interface CustomerListResult {
781
+ items: CustomerListItem[];
782
+ pagination: {
783
+ hasMore: boolean;
784
+ nextCursor: string | null;
785
+ total?: number;
786
+ };
787
+ }
788
+ interface CustomerAnalyticsRow {
789
+ activated_at: string | null;
790
+ [column: string]: unknown;
791
+ }
792
+
693
793
  declare const DEFAULT_OUTLIT_API_URL = "https://app.outlit.ai";
694
794
  type OutlitToolsFetch = (input: string | URL | Request, init?: RequestInit) => Promise<Response>;
695
795
  type OutlitToolsClientOptions = {
@@ -697,17 +797,18 @@ type OutlitToolsClientOptions = {
697
797
  baseUrl?: string;
698
798
  fetch?: OutlitToolsFetch;
699
799
  };
800
+ type CustomerToolResult<TToolName extends CustomerToolName> = TToolName extends "outlit_list_customers" ? CustomerListResult : TToolName extends "outlit_get_customer" ? CustomerDetailResult : unknown;
700
801
  type OutlitToolsClient = {
701
802
  key: string;
702
803
  baseUrl: string;
703
- callTool(toolName: CustomerToolName, input?: Record<string, unknown>): Promise<unknown>;
804
+ callTool<TToolName extends CustomerToolName>(toolName: TToolName, input?: Record<string, unknown>): Promise<CustomerToolResult<TToolName>>;
704
805
  };
705
806
  declare function createOutlitClient(options: OutlitToolsClientOptions): OutlitToolsClient;
706
807
 
707
808
  declare const actionToolNames: readonly ["outlit_send_notification"];
708
- declare const defaultAgentToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_search_customer_context", "outlit_send_notification"];
809
+ declare const defaultAgentToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_search_customer_context", "outlit_send_notification"];
709
810
  declare const sqlToolNames: readonly ["outlit_schema", "outlit_query"];
710
- declare const analyticalAgentToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_search_customer_context", "outlit_send_notification", "outlit_schema", "outlit_query"];
711
- declare const allCustomerToolNames: 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", "outlit_send_notification"];
811
+ declare const analyticalAgentToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_search_customer_context", "outlit_send_notification", "outlit_schema", "outlit_query"];
812
+ declare const allCustomerToolNames: readonly ["outlit_list_customers", "outlit_list_users", "outlit_list_workspace_users", "outlit_get_customer", "outlit_get_timeline", "outlit_list_facts", "outlit_get_fact", "outlit_get_source", "outlit_list_sources", "outlit_search_customer_context", "outlit_query", "outlit_schema", "outlit_send_notification"];
712
813
 
713
- export { type CustomerContextSearchInput, type CustomerSourceType, type CustomerSourceTypeInput, type CustomerToolContract, type CustomerToolName, DEFAULT_OUTLIT_API_URL, type JsonSchema, type OutlitToolsClient, type OutlitToolsClientOptions, type OutlitToolsFetch, type SearchArgsLike, actionToolNames, allCustomerToolNames, analyticalAgentToolNames, createOutlitClient, customerActivityWindows, customerBillingStatuses, customerFactCategories, customerFactIncludes, customerFactStatuses, customerFactTypes, customerIncludeSections, customerListOrderFields, customerSourceTypeAliases, customerSourceTypeInputs, customerSourceTypes, customerTimeframes, customerToolContractHash, customerToolContracts, customerToolNames, defaultAgentToolNames, getCustomerToolContract, isCustomerToolName, normalizeCustomerSourceType, notificationProviderValues, notificationSeverityValues, resolveCustomerContextSearchInput, schemaTables, sqlToolNames, timelineChannels, timelineTimeframes, unsupportedCustomerFactTypes, userJourneyStages, userListOrderFields };
814
+ export { type CustomerAnalyticsRow, type CustomerContextSearchInput, type CustomerDetail, type CustomerDetailResult, type CustomerListItem, type CustomerListResult, type CustomerSourceType, type CustomerSourceTypeInput, type CustomerToolContract, type CustomerToolName, type CustomerToolResult, DEFAULT_OUTLIT_API_URL, type JsonSchema, type OutlitToolsClient, type OutlitToolsClientOptions, type OutlitToolsFetch, type SearchArgsLike, actionToolNames, allCustomerToolNames, analyticalAgentToolNames, createOutlitClient, customerActivityWindows, customerBillingStatuses, customerFactCategories, customerFactIncludes, customerFactStatuses, customerFactTypes, customerIncludeSections, customerListOrderFields, customerSourceTypeAliases, customerSourceTypeInputs, customerSourceTypes, customerTimeframes, customerToolContractHash, customerToolContracts, customerToolNames, defaultAgentToolNames, getCustomerToolContract, isCustomerToolName, normalizeCustomerSourceType, notificationProviderValues, notificationSeverityValues, resolveCustomerContextSearchInput, schemaTables, sqlToolNames, timelineChannels, timelineTimeframes, unsupportedCustomerFactTypes, userJourneyStages, userListOrderFields, workspaceUserListOrderFields };