@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.js CHANGED
@@ -5,6 +5,7 @@ var publicToolNames = [
5
5
  "outlit_list_users",
6
6
  "outlit_list_workspace_users",
7
7
  "outlit_get_customer",
8
+ "outlit_get_customer_relationship",
8
9
  "outlit_assign_customer_owner",
9
10
  "outlit_grant_customer_access",
10
11
  "outlit_update_customer_access",
@@ -34,9 +35,12 @@ var publicToolNames = [
34
35
  "outlit_update_customer_activation",
35
36
  "outlit_get_workspace_settings",
36
37
  "outlit_update_workspace_settings",
37
- "outlit_list_behavior_metric_sources",
38
- "outlit_list_behavior_metric_events",
39
- "outlit_create_behavior_metric"
38
+ "outlit_list_features",
39
+ "outlit_create_feature",
40
+ "outlit_archive_feature",
41
+ "outlit_get_customer_features",
42
+ "outlit_list_attention_items",
43
+ "outlit_get_attention_item"
40
44
  ];
41
45
  var publicToolContracts = {
42
46
  "outlit_list_customers": {
@@ -542,6 +546,47 @@ var publicToolContracts = {
542
546
  "type": "null"
543
547
  }
544
548
  ]
549
+ },
550
+ "relationshipRole": {
551
+ "anyOf": [
552
+ {
553
+ "type": "string"
554
+ },
555
+ {
556
+ "type": "null"
557
+ }
558
+ ]
559
+ },
560
+ "jobTitle": {
561
+ "anyOf": [
562
+ {
563
+ "type": "string"
564
+ },
565
+ {
566
+ "type": "null"
567
+ }
568
+ ]
569
+ },
570
+ "department": {
571
+ "anyOf": [
572
+ {
573
+ "type": "string"
574
+ },
575
+ {
576
+ "type": "null"
577
+ }
578
+ ]
579
+ },
580
+ "employmentStartDate": {
581
+ "anyOf": [
582
+ {
583
+ "type": "string",
584
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
585
+ },
586
+ {
587
+ "type": "null"
588
+ }
589
+ ]
545
590
  }
546
591
  },
547
592
  "required": [
@@ -553,7 +598,11 @@ var publicToolContracts = {
553
598
  "customerDomain",
554
599
  "journeyStage",
555
600
  "lastActivityAt",
556
- "daysSinceActivity"
601
+ "daysSinceActivity",
602
+ "relationshipRole",
603
+ "jobTitle",
604
+ "department",
605
+ "employmentStartDate"
557
606
  ],
558
607
  "additionalProperties": false
559
608
  }
@@ -986,6 +1035,47 @@ var publicToolContracts = {
986
1035
  "type": "null"
987
1036
  }
988
1037
  ]
1038
+ },
1039
+ "relationshipRole": {
1040
+ "anyOf": [
1041
+ {
1042
+ "type": "string"
1043
+ },
1044
+ {
1045
+ "type": "null"
1046
+ }
1047
+ ]
1048
+ },
1049
+ "jobTitle": {
1050
+ "anyOf": [
1051
+ {
1052
+ "type": "string"
1053
+ },
1054
+ {
1055
+ "type": "null"
1056
+ }
1057
+ ]
1058
+ },
1059
+ "department": {
1060
+ "anyOf": [
1061
+ {
1062
+ "type": "string"
1063
+ },
1064
+ {
1065
+ "type": "null"
1066
+ }
1067
+ ]
1068
+ },
1069
+ "employmentStartDate": {
1070
+ "anyOf": [
1071
+ {
1072
+ "type": "string",
1073
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
1074
+ },
1075
+ {
1076
+ "type": "null"
1077
+ }
1078
+ ]
989
1079
  }
990
1080
  },
991
1081
  "required": [
@@ -993,7 +1083,11 @@ var publicToolContracts = {
993
1083
  "email",
994
1084
  "name",
995
1085
  "journeyStage",
996
- "lastActivityAt"
1086
+ "lastActivityAt",
1087
+ "relationshipRole",
1088
+ "jobTitle",
1089
+ "department",
1090
+ "employmentStartDate"
997
1091
  ],
998
1092
  "additionalProperties": false
999
1093
  }
@@ -1539,6 +1633,157 @@ var publicToolContracts = {
1539
1633
  "additionalProperties": false
1540
1634
  }
1541
1635
  },
1636
+ "outlit_get_customer_relationship": {
1637
+ "toolName": "outlit_get_customer_relationship",
1638
+ "commandId": "customer.relationship.get",
1639
+ "commandVersion": 1,
1640
+ "ownerDomain": "customers",
1641
+ "title": "Get Customer Relationship",
1642
+ "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.",
1643
+ "inputSchema": {
1644
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1645
+ "type": "object",
1646
+ "properties": {
1647
+ "customer": {
1648
+ "type": "string",
1649
+ "minLength": 1,
1650
+ "maxLength": 500,
1651
+ "description": "Customer ID, domain, or exact customer name to look up"
1652
+ }
1653
+ },
1654
+ "required": [
1655
+ "customer"
1656
+ ],
1657
+ "additionalProperties": false
1658
+ },
1659
+ "outputSchema": {
1660
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1661
+ "type": "object",
1662
+ "properties": {
1663
+ "customer": {
1664
+ "type": "object",
1665
+ "properties": {
1666
+ "id": {
1667
+ "type": "string"
1668
+ },
1669
+ "name": {
1670
+ "anyOf": [
1671
+ {
1672
+ "type": "string"
1673
+ },
1674
+ {
1675
+ "type": "null"
1676
+ }
1677
+ ]
1678
+ },
1679
+ "domain": {
1680
+ "anyOf": [
1681
+ {
1682
+ "type": "string"
1683
+ },
1684
+ {
1685
+ "type": "null"
1686
+ }
1687
+ ]
1688
+ }
1689
+ },
1690
+ "required": [
1691
+ "id",
1692
+ "name",
1693
+ "domain"
1694
+ ],
1695
+ "additionalProperties": false
1696
+ },
1697
+ "relationship": {
1698
+ "type": "object",
1699
+ "properties": {
1700
+ "summary": {
1701
+ "anyOf": [
1702
+ {
1703
+ "type": "string",
1704
+ "minLength": 1,
1705
+ "maxLength": 240
1706
+ },
1707
+ {
1708
+ "type": "null"
1709
+ }
1710
+ ]
1711
+ },
1712
+ "items": {
1713
+ "maxItems": 8,
1714
+ "type": "array",
1715
+ "items": {
1716
+ "type": "object",
1717
+ "properties": {
1718
+ "category": {
1719
+ "type": "string",
1720
+ "minLength": 1,
1721
+ "maxLength": 120
1722
+ },
1723
+ "statement": {
1724
+ "type": "string",
1725
+ "minLength": 1,
1726
+ "maxLength": 500
1727
+ },
1728
+ "observedAt": {
1729
+ "anyOf": [
1730
+ {
1731
+ "type": "string",
1732
+ "format": "date-time",
1733
+ "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))$"
1734
+ },
1735
+ {
1736
+ "type": "null"
1737
+ }
1738
+ ]
1739
+ },
1740
+ "sourceLabels": {
1741
+ "maxItems": 4,
1742
+ "type": "array",
1743
+ "items": {
1744
+ "type": "string",
1745
+ "minLength": 1,
1746
+ "maxLength": 100
1747
+ }
1748
+ }
1749
+ },
1750
+ "required": [
1751
+ "category",
1752
+ "statement",
1753
+ "observedAt",
1754
+ "sourceLabels"
1755
+ ],
1756
+ "additionalProperties": false
1757
+ }
1758
+ },
1759
+ "updatedAt": {
1760
+ "anyOf": [
1761
+ {
1762
+ "type": "string",
1763
+ "format": "date-time",
1764
+ "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))$"
1765
+ },
1766
+ {
1767
+ "type": "null"
1768
+ }
1769
+ ]
1770
+ }
1771
+ },
1772
+ "required": [
1773
+ "summary",
1774
+ "items",
1775
+ "updatedAt"
1776
+ ],
1777
+ "additionalProperties": false
1778
+ }
1779
+ },
1780
+ "required": [
1781
+ "customer",
1782
+ "relationship"
1783
+ ],
1784
+ "additionalProperties": false
1785
+ }
1786
+ },
1542
1787
  "outlit_assign_customer_owner": {
1543
1788
  "toolName": "outlit_assign_customer_owner",
1544
1789
  "commandId": "customer.owner.assign",
@@ -1856,13 +2101,13 @@ var publicToolContracts = {
1856
2101
  ]
1857
2102
  },
1858
2103
  "startDate": {
1859
- "description": "Start of time window (ISO 8601, e.g. '2025-01-01T00:00:00Z'). Cannot be used with timeframe.",
2104
+ "description": "Start of time window, inclusive (ISO 8601 UTC, e.g. '2025-01-01T00:00:00.000Z'). Cannot be used with timeframe.",
1860
2105
  "type": "string",
1861
2106
  "format": "date-time",
1862
2107
  "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))$"
1863
2108
  },
1864
2109
  "endDate": {
1865
- "description": "End of time window (ISO 8601, e.g. '2025-01-31T23:59:59Z'). Cannot be used with timeframe.",
2110
+ "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.",
1866
2111
  "type": "string",
1867
2112
  "format": "date-time",
1868
2113
  "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))$"
@@ -8722,17 +8967,34 @@ var publicToolContracts = {
8722
8967
  "additionalProperties": false
8723
8968
  }
8724
8969
  },
8725
- "outlit_list_behavior_metric_sources": {
8726
- "toolName": "outlit_list_behavior_metric_sources",
8727
- "commandId": "behavior_metric_source.list",
8970
+ "outlit_list_features": {
8971
+ "toolName": "outlit_list_features",
8972
+ "commandId": "value_feature_workspace.get",
8728
8973
  "commandVersion": 1,
8729
- "ownerDomain": "behavior_metrics",
8730
- "title": "List Behavior Metric Sources",
8731
- "description": "List product-event sources eligible for Behavior Metric discovery.",
8974
+ "ownerDomain": "value_features",
8975
+ "title": "List Features",
8976
+ "description": "List configured features, exact historical usage, eligible sources, and observed event candidates.",
8732
8977
  "inputSchema": {
8733
8978
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8734
8979
  "type": "object",
8735
- "properties": {},
8980
+ "properties": {
8981
+ "sourceKey": {
8982
+ "type": "string",
8983
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8984
+ },
8985
+ "weeks": {
8986
+ "default": 12,
8987
+ "type": "integer",
8988
+ "minimum": 1,
8989
+ "maximum": 53
8990
+ },
8991
+ "candidateLimit": {
8992
+ "default": 100,
8993
+ "type": "integer",
8994
+ "minimum": 1,
8995
+ "maximum": 100
8996
+ }
8997
+ },
8736
8998
  "additionalProperties": false
8737
8999
  },
8738
9000
  "outputSchema": {
@@ -8778,217 +9040,593 @@ var publicToolContracts = {
8778
9040
  ],
8779
9041
  "additionalProperties": false
8780
9042
  }
8781
- }
8782
- },
8783
- "required": [
8784
- "sources"
8785
- ],
8786
- "additionalProperties": false
8787
- }
8788
- },
8789
- "outlit_list_behavior_metric_events": {
8790
- "toolName": "outlit_list_behavior_metric_events",
8791
- "commandId": "behavior_metric_event.list",
8792
- "commandVersion": 1,
8793
- "ownerDomain": "behavior_metrics",
8794
- "title": "List Behavior Metric Events",
8795
- "description": "List attributed event candidates for a Behavior Metric source.",
8796
- "inputSchema": {
8797
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8798
- "type": "object",
8799
- "properties": {
8800
- "sourceKey": {
8801
- "type": "string",
8802
- "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8803
9043
  },
8804
- "weeks": {
8805
- "default": 12,
8806
- "type": "integer",
8807
- "minimum": 1,
8808
- "maximum": 53
9044
+ "selectedSourceKey": {
9045
+ "anyOf": [
9046
+ {
9047
+ "type": "string",
9048
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9049
+ },
9050
+ {
9051
+ "type": "null"
9052
+ }
9053
+ ]
8809
9054
  },
8810
- "limit": {
8811
- "default": 100,
9055
+ "workspaceActiveFeatureCount": {
8812
9056
  "type": "integer",
8813
- "minimum": 1,
8814
- "maximum": 100
8815
- }
8816
- },
8817
- "required": [
8818
- "sourceKey"
8819
- ],
8820
- "additionalProperties": false
8821
- },
8822
- "outputSchema": {
8823
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8824
- "type": "object",
8825
- "properties": {
8826
- "events": {
9057
+ "minimum": 0,
9058
+ "maximum": 9007199254740991
9059
+ },
9060
+ "features": {
9061
+ "maxItems": 100,
8827
9062
  "type": "array",
8828
9063
  "items": {
8829
9064
  "type": "object",
8830
9065
  "properties": {
8831
- "eventName": {
9066
+ "id": {
8832
9067
  "type": "string",
8833
- "minLength": 1,
8834
- "maxLength": 191
9068
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
8835
9069
  },
8836
- "eventCount": {
8837
- "type": "integer",
8838
- "minimum": 0,
8839
- "maximum": 9007199254740991
9070
+ "revision": {
9071
+ "type": "string",
9072
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
8840
9073
  },
8841
- "distinctCustomers": {
8842
- "type": "integer",
8843
- "minimum": 0,
8844
- "maximum": 9007199254740991
9074
+ "sourceKey": {
9075
+ "type": "string",
9076
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8845
9077
  },
8846
- "activeWeeks": {
8847
- "type": "integer",
8848
- "minimum": 1,
8849
- "maximum": 53
9078
+ "featureKey": {
9079
+ "type": "string",
9080
+ "maxLength": 64,
9081
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
8850
9082
  },
8851
- "propertyKeys": {
8852
- "maxItems": 10,
8853
- "type": "array",
8854
- "items": {
8855
- "type": "string",
8856
- "minLength": 1,
8857
- "maxLength": 191
8858
- }
8859
- }
8860
- },
8861
- "required": [
8862
- "eventName",
8863
- "eventCount",
8864
- "distinctCustomers",
8865
- "activeWeeks",
8866
- "propertyKeys"
8867
- ],
8868
- "additionalProperties": false
8869
- }
8870
- },
8871
- "truncated": {
8872
- "type": "boolean"
8873
- }
8874
- },
8875
- "required": [
8876
- "events",
8877
- "truncated"
8878
- ],
8879
- "additionalProperties": false
8880
- }
8881
- },
8882
- "outlit_create_behavior_metric": {
8883
- "toolName": "outlit_create_behavior_metric",
8884
- "commandId": "behavior_metric.create",
8885
- "commandVersion": 1,
8886
- "ownerDomain": "behavior_metrics",
8887
- "title": "Create Behavior Metric",
8888
- "description": "Create or idempotently return an event-based Behavior Metric in ENABLED and SHADOW.",
8889
- "inputSchema": {
8890
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8891
- "type": "object",
8892
- "properties": {
8893
- "sourceKey": {
8894
- "type": "string",
8895
- "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8896
- },
8897
- "eventName": {
8898
- "type": "string",
8899
- "minLength": 1,
8900
- "maxLength": 191
8901
- },
8902
- "behaviorKey": {
8903
- "type": "string",
8904
- "maxLength": 64,
8905
- "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
8906
- },
8907
- "label": {
8908
- "type": "string",
8909
- "minLength": 1,
8910
- "maxLength": 255
8911
- },
8912
- "propertyFilters": {
8913
- "default": [],
8914
- "maxItems": 5,
8915
- "type": "array",
8916
- "items": {
8917
- "oneOf": [
8918
- {
9083
+ "name": {
9084
+ "type": "string",
9085
+ "minLength": 1,
9086
+ "maxLength": 255
9087
+ },
9088
+ "rule": {
8919
9089
  "type": "object",
8920
9090
  "properties": {
8921
- "property": {
9091
+ "eventName": {
8922
9092
  "type": "string",
8923
9093
  "minLength": 1,
8924
9094
  "maxLength": 191
8925
9095
  },
8926
- "operator": {
8927
- "type": "string",
8928
- "const": "equals"
8929
- },
8930
- "value": {
8931
- "oneOf": [
8932
- {
9096
+ "propertyFilters": {
9097
+ "maxItems": 5,
9098
+ "type": "array",
9099
+ "items": {
9100
+ "oneOf": [
9101
+ {
9102
+ "type": "object",
9103
+ "properties": {
9104
+ "property": {
9105
+ "type": "string",
9106
+ "minLength": 1,
9107
+ "maxLength": 191
9108
+ },
9109
+ "operator": {
9110
+ "type": "string",
9111
+ "const": "equals"
9112
+ },
9113
+ "value": {
9114
+ "oneOf": [
9115
+ {
9116
+ "type": "object",
9117
+ "properties": {
9118
+ "type": {
9119
+ "type": "string",
9120
+ "const": "string"
9121
+ },
9122
+ "value": {
9123
+ "type": "string",
9124
+ "maxLength": 191
9125
+ }
9126
+ },
9127
+ "required": [
9128
+ "type",
9129
+ "value"
9130
+ ],
9131
+ "additionalProperties": false
9132
+ },
9133
+ {
9134
+ "type": "object",
9135
+ "properties": {
9136
+ "type": {
9137
+ "type": "string",
9138
+ "const": "number"
9139
+ },
9140
+ "value": {
9141
+ "type": "number",
9142
+ "minimum": -9007199254740991,
9143
+ "maximum": 9007199254740991
9144
+ }
9145
+ },
9146
+ "required": [
9147
+ "type",
9148
+ "value"
9149
+ ],
9150
+ "additionalProperties": false
9151
+ },
9152
+ {
9153
+ "type": "object",
9154
+ "properties": {
9155
+ "type": {
9156
+ "type": "string",
9157
+ "const": "boolean"
9158
+ },
9159
+ "value": {
9160
+ "type": "boolean"
9161
+ }
9162
+ },
9163
+ "required": [
9164
+ "type",
9165
+ "value"
9166
+ ],
9167
+ "additionalProperties": false
9168
+ }
9169
+ ]
9170
+ }
9171
+ },
9172
+ "required": [
9173
+ "property",
9174
+ "operator",
9175
+ "value"
9176
+ ],
9177
+ "additionalProperties": false
9178
+ },
9179
+ {
9180
+ "type": "object",
9181
+ "properties": {
9182
+ "property": {
9183
+ "type": "string",
9184
+ "minLength": 1,
9185
+ "maxLength": 191
9186
+ },
9187
+ "operator": {
9188
+ "type": "string",
9189
+ "const": "exists"
9190
+ }
9191
+ },
9192
+ "required": [
9193
+ "property",
9194
+ "operator"
9195
+ ],
9196
+ "additionalProperties": false
9197
+ }
9198
+ ]
9199
+ }
9200
+ }
9201
+ },
9202
+ "required": [
9203
+ "eventName",
9204
+ "propertyFilters"
9205
+ ],
9206
+ "additionalProperties": false
9207
+ },
9208
+ "evidence": {
9209
+ "oneOf": [
9210
+ {
9211
+ "type": "object",
9212
+ "properties": {
9213
+ "window": {
8933
9214
  "type": "object",
8934
9215
  "properties": {
8935
- "type": {
9216
+ "startAt": {
8936
9217
  "type": "string",
8937
- "const": "string"
9218
+ "format": "date-time",
9219
+ "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)))$"
8938
9220
  },
8939
- "value": {
9221
+ "endAt": {
8940
9222
  "type": "string",
8941
- "maxLength": 191
9223
+ "format": "date-time",
9224
+ "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)))$"
8942
9225
  }
8943
9226
  },
8944
9227
  "required": [
8945
- "type",
8946
- "value"
9228
+ "startAt",
9229
+ "endAt"
8947
9230
  ],
8948
9231
  "additionalProperties": false
8949
9232
  },
8950
- {
8951
- "type": "object",
8952
- "properties": {
8953
- "type": {
9233
+ "coverage": {
9234
+ "type": "string",
9235
+ "enum": [
9236
+ "complete",
9237
+ "partial"
9238
+ ]
9239
+ },
9240
+ "eventCount": {
9241
+ "type": "integer",
9242
+ "minimum": 0,
9243
+ "maximum": 9007199254740991
9244
+ },
9245
+ "activeDays": {
9246
+ "type": "integer",
9247
+ "minimum": 0,
9248
+ "maximum": 9007199254740991
9249
+ },
9250
+ "activeWeeks": {
9251
+ "type": "integer",
9252
+ "minimum": 0,
9253
+ "maximum": 53
9254
+ },
9255
+ "firstObservedAt": {
9256
+ "anyOf": [
9257
+ {
8954
9258
  "type": "string",
8955
- "const": "number"
9259
+ "format": "date-time",
9260
+ "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)))$"
8956
9261
  },
8957
- "value": {
8958
- "type": "number",
8959
- "minimum": -9007199254740991,
8960
- "maximum": 9007199254740991
9262
+ {
9263
+ "type": "null"
8961
9264
  }
8962
- },
8963
- "required": [
8964
- "type",
8965
- "value"
8966
- ],
8967
- "additionalProperties": false
9265
+ ]
8968
9266
  },
8969
- {
9267
+ "lastObservedAt": {
9268
+ "anyOf": [
9269
+ {
9270
+ "type": "string",
9271
+ "format": "date-time",
9272
+ "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)))$"
9273
+ },
9274
+ {
9275
+ "type": "null"
9276
+ }
9277
+ ]
9278
+ },
9279
+ "distinctCustomers": {
9280
+ "type": "integer",
9281
+ "minimum": 0,
9282
+ "maximum": 9007199254740991
9283
+ }
9284
+ },
9285
+ "required": [
9286
+ "window",
9287
+ "coverage",
9288
+ "eventCount",
9289
+ "activeDays",
9290
+ "activeWeeks",
9291
+ "firstObservedAt",
9292
+ "lastObservedAt",
9293
+ "distinctCustomers"
9294
+ ],
9295
+ "additionalProperties": false
9296
+ },
9297
+ {
9298
+ "type": "object",
9299
+ "properties": {
9300
+ "window": {
8970
9301
  "type": "object",
8971
9302
  "properties": {
8972
- "type": {
9303
+ "startAt": {
8973
9304
  "type": "string",
8974
- "const": "boolean"
9305
+ "format": "date-time",
9306
+ "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)))$"
8975
9307
  },
8976
- "value": {
8977
- "type": "boolean"
9308
+ "endAt": {
9309
+ "type": "string",
9310
+ "format": "date-time",
9311
+ "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)))$"
8978
9312
  }
8979
9313
  },
8980
9314
  "required": [
8981
- "type",
8982
- "value"
9315
+ "startAt",
9316
+ "endAt"
8983
9317
  ],
8984
9318
  "additionalProperties": false
9319
+ },
9320
+ "coverage": {
9321
+ "type": "string",
9322
+ "const": "unavailable"
9323
+ },
9324
+ "reason": {
9325
+ "type": "string",
9326
+ "enum": [
9327
+ "SOURCE_BLOCKED",
9328
+ "SOURCE_NOT_READY",
9329
+ "QUERY_FAILED"
9330
+ ]
8985
9331
  }
8986
- ]
9332
+ },
9333
+ "required": [
9334
+ "window",
9335
+ "coverage",
9336
+ "reason"
9337
+ ],
9338
+ "additionalProperties": false
8987
9339
  }
9340
+ ]
9341
+ }
9342
+ },
9343
+ "required": [
9344
+ "id",
9345
+ "revision",
9346
+ "sourceKey",
9347
+ "featureKey",
9348
+ "name",
9349
+ "rule",
9350
+ "evidence"
9351
+ ],
9352
+ "additionalProperties": false
9353
+ }
9354
+ },
9355
+ "candidates": {
9356
+ "oneOf": [
9357
+ {
9358
+ "type": "object",
9359
+ "properties": {
9360
+ "status": {
9361
+ "type": "string",
9362
+ "const": "ready"
8988
9363
  },
8989
- "required": [
8990
- "property",
8991
- "operator",
9364
+ "items": {
9365
+ "maxItems": 100,
9366
+ "type": "array",
9367
+ "items": {
9368
+ "type": "object",
9369
+ "properties": {
9370
+ "eventName": {
9371
+ "type": "string",
9372
+ "minLength": 1,
9373
+ "maxLength": 191
9374
+ },
9375
+ "eventCount": {
9376
+ "type": "integer",
9377
+ "minimum": 0,
9378
+ "maximum": 9007199254740991
9379
+ },
9380
+ "distinctCustomers": {
9381
+ "type": "integer",
9382
+ "minimum": 0,
9383
+ "maximum": 9007199254740991
9384
+ },
9385
+ "activeWeeks": {
9386
+ "type": "integer",
9387
+ "minimum": 1,
9388
+ "maximum": 53
9389
+ },
9390
+ "propertyKeys": {
9391
+ "maxItems": 10,
9392
+ "type": "array",
9393
+ "items": {
9394
+ "type": "string",
9395
+ "minLength": 1,
9396
+ "maxLength": 191
9397
+ }
9398
+ }
9399
+ },
9400
+ "required": [
9401
+ "eventName",
9402
+ "eventCount",
9403
+ "distinctCustomers",
9404
+ "activeWeeks",
9405
+ "propertyKeys"
9406
+ ],
9407
+ "additionalProperties": false
9408
+ }
9409
+ },
9410
+ "truncated": {
9411
+ "type": "boolean"
9412
+ }
9413
+ },
9414
+ "required": [
9415
+ "status",
9416
+ "items",
9417
+ "truncated"
9418
+ ],
9419
+ "additionalProperties": false
9420
+ },
9421
+ {
9422
+ "type": "object",
9423
+ "properties": {
9424
+ "status": {
9425
+ "type": "string",
9426
+ "const": "partial"
9427
+ },
9428
+ "items": {
9429
+ "maxItems": 100,
9430
+ "type": "array",
9431
+ "items": {
9432
+ "type": "object",
9433
+ "properties": {
9434
+ "eventName": {
9435
+ "type": "string",
9436
+ "minLength": 1,
9437
+ "maxLength": 191
9438
+ },
9439
+ "eventCount": {
9440
+ "type": "integer",
9441
+ "minimum": 0,
9442
+ "maximum": 9007199254740991
9443
+ },
9444
+ "distinctCustomers": {
9445
+ "type": "integer",
9446
+ "minimum": 0,
9447
+ "maximum": 9007199254740991
9448
+ },
9449
+ "activeWeeks": {
9450
+ "type": "integer",
9451
+ "minimum": 1,
9452
+ "maximum": 53
9453
+ },
9454
+ "propertyKeys": {
9455
+ "maxItems": 10,
9456
+ "type": "array",
9457
+ "items": {
9458
+ "type": "string",
9459
+ "minLength": 1,
9460
+ "maxLength": 191
9461
+ }
9462
+ }
9463
+ },
9464
+ "required": [
9465
+ "eventName",
9466
+ "eventCount",
9467
+ "distinctCustomers",
9468
+ "activeWeeks",
9469
+ "propertyKeys"
9470
+ ],
9471
+ "additionalProperties": false
9472
+ }
9473
+ },
9474
+ "truncated": {
9475
+ "type": "boolean"
9476
+ }
9477
+ },
9478
+ "required": [
9479
+ "status",
9480
+ "items",
9481
+ "truncated"
9482
+ ],
9483
+ "additionalProperties": false
9484
+ },
9485
+ {
9486
+ "type": "object",
9487
+ "properties": {
9488
+ "status": {
9489
+ "type": "string",
9490
+ "const": "unavailable"
9491
+ },
9492
+ "reason": {
9493
+ "type": "string",
9494
+ "enum": [
9495
+ "SOURCE_BLOCKED",
9496
+ "SOURCE_NOT_READY",
9497
+ "QUERY_FAILED"
9498
+ ]
9499
+ }
9500
+ },
9501
+ "required": [
9502
+ "status",
9503
+ "reason"
9504
+ ],
9505
+ "additionalProperties": false
9506
+ }
9507
+ ]
9508
+ }
9509
+ },
9510
+ "required": [
9511
+ "sources",
9512
+ "selectedSourceKey",
9513
+ "workspaceActiveFeatureCount",
9514
+ "features",
9515
+ "candidates"
9516
+ ],
9517
+ "additionalProperties": false
9518
+ }
9519
+ },
9520
+ "outlit_create_feature": {
9521
+ "toolName": "outlit_create_feature",
9522
+ "commandId": "value_feature.create",
9523
+ "commandVersion": 1,
9524
+ "ownerDomain": "value_features",
9525
+ "title": "Create Feature",
9526
+ "description": "Create or idempotently return one customer-value Feature observed by one event rule.",
9527
+ "inputSchema": {
9528
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9529
+ "type": "object",
9530
+ "properties": {
9531
+ "sourceKey": {
9532
+ "type": "string",
9533
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9534
+ },
9535
+ "eventName": {
9536
+ "type": "string",
9537
+ "minLength": 1,
9538
+ "maxLength": 191
9539
+ },
9540
+ "featureKey": {
9541
+ "type": "string",
9542
+ "maxLength": 64,
9543
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
9544
+ },
9545
+ "name": {
9546
+ "type": "string",
9547
+ "minLength": 1,
9548
+ "maxLength": 255
9549
+ },
9550
+ "propertyFilters": {
9551
+ "default": [],
9552
+ "maxItems": 5,
9553
+ "type": "array",
9554
+ "items": {
9555
+ "oneOf": [
9556
+ {
9557
+ "type": "object",
9558
+ "properties": {
9559
+ "property": {
9560
+ "type": "string",
9561
+ "minLength": 1,
9562
+ "maxLength": 191
9563
+ },
9564
+ "operator": {
9565
+ "type": "string",
9566
+ "const": "equals"
9567
+ },
9568
+ "value": {
9569
+ "oneOf": [
9570
+ {
9571
+ "type": "object",
9572
+ "properties": {
9573
+ "type": {
9574
+ "type": "string",
9575
+ "const": "string"
9576
+ },
9577
+ "value": {
9578
+ "type": "string",
9579
+ "maxLength": 191
9580
+ }
9581
+ },
9582
+ "required": [
9583
+ "type",
9584
+ "value"
9585
+ ],
9586
+ "additionalProperties": false
9587
+ },
9588
+ {
9589
+ "type": "object",
9590
+ "properties": {
9591
+ "type": {
9592
+ "type": "string",
9593
+ "const": "number"
9594
+ },
9595
+ "value": {
9596
+ "type": "number",
9597
+ "minimum": -9007199254740991,
9598
+ "maximum": 9007199254740991
9599
+ }
9600
+ },
9601
+ "required": [
9602
+ "type",
9603
+ "value"
9604
+ ],
9605
+ "additionalProperties": false
9606
+ },
9607
+ {
9608
+ "type": "object",
9609
+ "properties": {
9610
+ "type": {
9611
+ "type": "string",
9612
+ "const": "boolean"
9613
+ },
9614
+ "value": {
9615
+ "type": "boolean"
9616
+ }
9617
+ },
9618
+ "required": [
9619
+ "type",
9620
+ "value"
9621
+ ],
9622
+ "additionalProperties": false
9623
+ }
9624
+ ]
9625
+ }
9626
+ },
9627
+ "required": [
9628
+ "property",
9629
+ "operator",
8992
9630
  "value"
8993
9631
  ],
8994
9632
  "additionalProperties": false
@@ -9019,8 +9657,8 @@ var publicToolContracts = {
9019
9657
  "required": [
9020
9658
  "sourceKey",
9021
9659
  "eventName",
9022
- "behaviorKey",
9023
- "label"
9660
+ "featureKey",
9661
+ "name"
9024
9662
  ],
9025
9663
  "additionalProperties": false
9026
9664
  },
@@ -9031,234 +9669,1393 @@ var publicToolContracts = {
9031
9669
  "created": {
9032
9670
  "type": "boolean"
9033
9671
  },
9034
- "metric": {
9672
+ "feature": {
9035
9673
  "type": "object",
9036
9674
  "properties": {
9675
+ "id": {
9676
+ "type": "string",
9677
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9678
+ },
9679
+ "revision": {
9680
+ "type": "string",
9681
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9682
+ },
9037
9683
  "sourceKey": {
9038
9684
  "type": "string",
9039
9685
  "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9040
9686
  },
9041
- "behaviorKey": {
9687
+ "featureKey": {
9042
9688
  "type": "string",
9043
9689
  "maxLength": 64,
9044
9690
  "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
9045
9691
  },
9046
- "label": {
9692
+ "name": {
9047
9693
  "type": "string",
9048
9694
  "minLength": 1,
9049
9695
  "maxLength": 255
9050
9696
  },
9051
- "eventSelection": {
9052
- "oneOf": [
9053
- {
9054
- "type": "object",
9055
- "properties": {
9056
- "mode": {
9057
- "type": "string",
9058
- "const": "exact_event_names"
9059
- },
9060
- "eventNames": {
9061
- "minItems": 1,
9062
- "maxItems": 1,
9063
- "type": "array",
9064
- "items": {
9065
- "type": "string",
9066
- "minLength": 1,
9067
- "maxLength": 191
9068
- }
9069
- }
9070
- },
9071
- "required": [
9072
- "mode",
9073
- "eventNames"
9074
- ],
9075
- "additionalProperties": false
9697
+ "rule": {
9698
+ "type": "object",
9699
+ "properties": {
9700
+ "eventName": {
9701
+ "type": "string",
9702
+ "minLength": 1,
9703
+ "maxLength": 191
9076
9704
  },
9077
- {
9078
- "type": "object",
9079
- "properties": {
9080
- "mode": {
9081
- "type": "string",
9082
- "const": "configured_event"
9083
- },
9084
- "eventName": {
9085
- "type": "string",
9086
- "minLength": 1,
9087
- "maxLength": 191
9088
- },
9089
- "propertyFilters": {
9090
- "minItems": 1,
9091
- "maxItems": 5,
9092
- "type": "array",
9093
- "items": {
9094
- "oneOf": [
9095
- {
9096
- "type": "object",
9097
- "properties": {
9098
- "property": {
9099
- "type": "string",
9100
- "minLength": 1,
9101
- "maxLength": 191
9102
- },
9103
- "operator": {
9104
- "type": "string",
9105
- "const": "equals"
9106
- },
9107
- "value": {
9108
- "oneOf": [
9109
- {
9110
- "type": "object",
9111
- "properties": {
9112
- "type": {
9113
- "type": "string",
9114
- "const": "string"
9115
- },
9116
- "value": {
9117
- "type": "string",
9118
- "maxLength": 191
9119
- }
9120
- },
9121
- "required": [
9122
- "type",
9123
- "value"
9124
- ],
9125
- "additionalProperties": false
9705
+ "propertyFilters": {
9706
+ "maxItems": 5,
9707
+ "type": "array",
9708
+ "items": {
9709
+ "oneOf": [
9710
+ {
9711
+ "type": "object",
9712
+ "properties": {
9713
+ "property": {
9714
+ "type": "string",
9715
+ "minLength": 1,
9716
+ "maxLength": 191
9717
+ },
9718
+ "operator": {
9719
+ "type": "string",
9720
+ "const": "equals"
9721
+ },
9722
+ "value": {
9723
+ "oneOf": [
9724
+ {
9725
+ "type": "object",
9726
+ "properties": {
9727
+ "type": {
9728
+ "type": "string",
9729
+ "const": "string"
9126
9730
  },
9127
- {
9128
- "type": "object",
9129
- "properties": {
9130
- "type": {
9131
- "type": "string",
9132
- "const": "number"
9133
- },
9134
- "value": {
9135
- "type": "number",
9136
- "minimum": -9007199254740991,
9137
- "maximum": 9007199254740991
9138
- }
9139
- },
9140
- "required": [
9141
- "type",
9142
- "value"
9143
- ],
9144
- "additionalProperties": false
9731
+ "value": {
9732
+ "type": "string",
9733
+ "maxLength": 191
9734
+ }
9735
+ },
9736
+ "required": [
9737
+ "type",
9738
+ "value"
9739
+ ],
9740
+ "additionalProperties": false
9741
+ },
9742
+ {
9743
+ "type": "object",
9744
+ "properties": {
9745
+ "type": {
9746
+ "type": "string",
9747
+ "const": "number"
9145
9748
  },
9146
- {
9147
- "type": "object",
9148
- "properties": {
9149
- "type": {
9150
- "type": "string",
9151
- "const": "boolean"
9152
- },
9153
- "value": {
9154
- "type": "boolean"
9155
- }
9156
- },
9157
- "required": [
9158
- "type",
9159
- "value"
9160
- ],
9161
- "additionalProperties": false
9749
+ "value": {
9750
+ "type": "number",
9751
+ "minimum": -9007199254740991,
9752
+ "maximum": 9007199254740991
9162
9753
  }
9163
- ]
9164
- }
9165
- },
9166
- "required": [
9167
- "property",
9168
- "operator",
9169
- "value"
9170
- ],
9171
- "additionalProperties": false
9172
- },
9173
- {
9174
- "type": "object",
9175
- "properties": {
9176
- "property": {
9177
- "type": "string",
9178
- "minLength": 1,
9179
- "maxLength": 191
9754
+ },
9755
+ "required": [
9756
+ "type",
9757
+ "value"
9758
+ ],
9759
+ "additionalProperties": false
9180
9760
  },
9181
- "operator": {
9182
- "type": "string",
9183
- "const": "exists"
9761
+ {
9762
+ "type": "object",
9763
+ "properties": {
9764
+ "type": {
9765
+ "type": "string",
9766
+ "const": "boolean"
9767
+ },
9768
+ "value": {
9769
+ "type": "boolean"
9770
+ }
9771
+ },
9772
+ "required": [
9773
+ "type",
9774
+ "value"
9775
+ ],
9776
+ "additionalProperties": false
9184
9777
  }
9185
- },
9186
- "required": [
9187
- "property",
9188
- "operator"
9189
- ],
9190
- "additionalProperties": false
9778
+ ]
9191
9779
  }
9192
- ]
9780
+ },
9781
+ "required": [
9782
+ "property",
9783
+ "operator",
9784
+ "value"
9785
+ ],
9786
+ "additionalProperties": false
9787
+ },
9788
+ {
9789
+ "type": "object",
9790
+ "properties": {
9791
+ "property": {
9792
+ "type": "string",
9793
+ "minLength": 1,
9794
+ "maxLength": 191
9795
+ },
9796
+ "operator": {
9797
+ "type": "string",
9798
+ "const": "exists"
9799
+ }
9800
+ },
9801
+ "required": [
9802
+ "property",
9803
+ "operator"
9804
+ ],
9805
+ "additionalProperties": false
9193
9806
  }
9194
- }
9807
+ ]
9808
+ }
9809
+ }
9810
+ },
9811
+ "required": [
9812
+ "eventName",
9813
+ "propertyFilters"
9814
+ ],
9815
+ "additionalProperties": false
9816
+ }
9817
+ },
9818
+ "required": [
9819
+ "id",
9820
+ "revision",
9821
+ "sourceKey",
9822
+ "featureKey",
9823
+ "name",
9824
+ "rule"
9825
+ ],
9826
+ "additionalProperties": false
9827
+ }
9828
+ },
9829
+ "required": [
9830
+ "created",
9831
+ "feature"
9832
+ ],
9833
+ "additionalProperties": false
9834
+ }
9835
+ },
9836
+ "outlit_archive_feature": {
9837
+ "toolName": "outlit_archive_feature",
9838
+ "commandId": "value_feature.archive",
9839
+ "commandVersion": 1,
9840
+ "ownerDomain": "value_features",
9841
+ "title": "Archive Feature",
9842
+ "description": "Archive a Feature when at least one other active Feature remains.",
9843
+ "inputSchema": {
9844
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9845
+ "type": "object",
9846
+ "properties": {
9847
+ "id": {
9848
+ "type": "string",
9849
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9850
+ },
9851
+ "revision": {
9852
+ "type": "string",
9853
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9854
+ }
9855
+ },
9856
+ "required": [
9857
+ "id",
9858
+ "revision"
9859
+ ],
9860
+ "additionalProperties": false
9861
+ },
9862
+ "outputSchema": {
9863
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9864
+ "type": "object",
9865
+ "properties": {
9866
+ "archived": {
9867
+ "type": "boolean",
9868
+ "const": true
9869
+ },
9870
+ "feature": {
9871
+ "type": "object",
9872
+ "properties": {
9873
+ "id": {
9874
+ "type": "string",
9875
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9876
+ },
9877
+ "revision": {
9878
+ "type": "string",
9879
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9880
+ }
9881
+ },
9882
+ "required": [
9883
+ "id",
9884
+ "revision"
9885
+ ],
9886
+ "additionalProperties": false
9887
+ }
9888
+ },
9889
+ "required": [
9890
+ "archived",
9891
+ "feature"
9892
+ ],
9893
+ "additionalProperties": false
9894
+ }
9895
+ },
9896
+ "outlit_get_customer_features": {
9897
+ "toolName": "outlit_get_customer_features",
9898
+ "commandId": "customer_feature_usage.get",
9899
+ "commandVersion": 1,
9900
+ "ownerDomain": "value_features",
9901
+ "title": "Get Customer Features",
9902
+ "description": "Read exact historical feature-usage evidence for one authorized customer.",
9903
+ "inputSchema": {
9904
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9905
+ "type": "object",
9906
+ "properties": {
9907
+ "customer": {
9908
+ "type": "string",
9909
+ "minLength": 1,
9910
+ "maxLength": 500
9911
+ },
9912
+ "weeks": {
9913
+ "default": 12,
9914
+ "type": "integer",
9915
+ "minimum": 1,
9916
+ "maximum": 53
9917
+ },
9918
+ "includeWeeklyUsage": {
9919
+ "default": false,
9920
+ "type": "boolean"
9921
+ }
9922
+ },
9923
+ "required": [
9924
+ "customer"
9925
+ ],
9926
+ "additionalProperties": false
9927
+ },
9928
+ "outputSchema": {
9929
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9930
+ "type": "object",
9931
+ "properties": {
9932
+ "customer": {
9933
+ "type": "object",
9934
+ "properties": {
9935
+ "id": {
9936
+ "type": "string",
9937
+ "minLength": 1,
9938
+ "maxLength": 191
9939
+ },
9940
+ "name": {
9941
+ "type": "string",
9942
+ "minLength": 1,
9943
+ "maxLength": 255
9944
+ }
9945
+ },
9946
+ "required": [
9947
+ "id",
9948
+ "name"
9949
+ ],
9950
+ "additionalProperties": false
9951
+ },
9952
+ "features": {
9953
+ "maxItems": 100,
9954
+ "type": "array",
9955
+ "items": {
9956
+ "type": "object",
9957
+ "properties": {
9958
+ "id": {
9959
+ "type": "string",
9960
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9961
+ },
9962
+ "revision": {
9963
+ "type": "string",
9964
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9965
+ },
9966
+ "sourceKey": {
9967
+ "type": "string",
9968
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9969
+ },
9970
+ "featureKey": {
9971
+ "type": "string",
9972
+ "maxLength": 64,
9973
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
9974
+ },
9975
+ "name": {
9976
+ "type": "string",
9977
+ "minLength": 1,
9978
+ "maxLength": 255
9979
+ },
9980
+ "rule": {
9981
+ "type": "object",
9982
+ "properties": {
9983
+ "eventName": {
9984
+ "type": "string",
9985
+ "minLength": 1,
9986
+ "maxLength": 191
9195
9987
  },
9196
- "required": [
9197
- "mode",
9198
- "eventName",
9199
- "propertyFilters"
9200
- ],
9201
- "additionalProperties": false
9988
+ "propertyFilters": {
9989
+ "maxItems": 5,
9990
+ "type": "array",
9991
+ "items": {
9992
+ "oneOf": [
9993
+ {
9994
+ "type": "object",
9995
+ "properties": {
9996
+ "property": {
9997
+ "type": "string",
9998
+ "minLength": 1,
9999
+ "maxLength": 191
10000
+ },
10001
+ "operator": {
10002
+ "type": "string",
10003
+ "const": "equals"
10004
+ },
10005
+ "value": {
10006
+ "oneOf": [
10007
+ {
10008
+ "type": "object",
10009
+ "properties": {
10010
+ "type": {
10011
+ "type": "string",
10012
+ "const": "string"
10013
+ },
10014
+ "value": {
10015
+ "type": "string",
10016
+ "maxLength": 191
10017
+ }
10018
+ },
10019
+ "required": [
10020
+ "type",
10021
+ "value"
10022
+ ],
10023
+ "additionalProperties": false
10024
+ },
10025
+ {
10026
+ "type": "object",
10027
+ "properties": {
10028
+ "type": {
10029
+ "type": "string",
10030
+ "const": "number"
10031
+ },
10032
+ "value": {
10033
+ "type": "number",
10034
+ "minimum": -9007199254740991,
10035
+ "maximum": 9007199254740991
10036
+ }
10037
+ },
10038
+ "required": [
10039
+ "type",
10040
+ "value"
10041
+ ],
10042
+ "additionalProperties": false
10043
+ },
10044
+ {
10045
+ "type": "object",
10046
+ "properties": {
10047
+ "type": {
10048
+ "type": "string",
10049
+ "const": "boolean"
10050
+ },
10051
+ "value": {
10052
+ "type": "boolean"
10053
+ }
10054
+ },
10055
+ "required": [
10056
+ "type",
10057
+ "value"
10058
+ ],
10059
+ "additionalProperties": false
10060
+ }
10061
+ ]
10062
+ }
10063
+ },
10064
+ "required": [
10065
+ "property",
10066
+ "operator",
10067
+ "value"
10068
+ ],
10069
+ "additionalProperties": false
10070
+ },
10071
+ {
10072
+ "type": "object",
10073
+ "properties": {
10074
+ "property": {
10075
+ "type": "string",
10076
+ "minLength": 1,
10077
+ "maxLength": 191
10078
+ },
10079
+ "operator": {
10080
+ "type": "string",
10081
+ "const": "exists"
10082
+ }
10083
+ },
10084
+ "required": [
10085
+ "property",
10086
+ "operator"
10087
+ ],
10088
+ "additionalProperties": false
10089
+ }
10090
+ ]
10091
+ }
10092
+ }
10093
+ },
10094
+ "required": [
10095
+ "eventName",
10096
+ "propertyFilters"
10097
+ ],
10098
+ "additionalProperties": false
10099
+ },
10100
+ "evidence": {
10101
+ "oneOf": [
10102
+ {
10103
+ "type": "object",
10104
+ "properties": {
10105
+ "window": {
10106
+ "type": "object",
10107
+ "properties": {
10108
+ "startAt": {
10109
+ "type": "string",
10110
+ "format": "date-time",
10111
+ "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)))$"
10112
+ },
10113
+ "endAt": {
10114
+ "type": "string",
10115
+ "format": "date-time",
10116
+ "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)))$"
10117
+ }
10118
+ },
10119
+ "required": [
10120
+ "startAt",
10121
+ "endAt"
10122
+ ],
10123
+ "additionalProperties": false
10124
+ },
10125
+ "coverage": {
10126
+ "type": "string",
10127
+ "enum": [
10128
+ "complete",
10129
+ "partial"
10130
+ ]
10131
+ },
10132
+ "eventCount": {
10133
+ "type": "integer",
10134
+ "minimum": 0,
10135
+ "maximum": 9007199254740991
10136
+ },
10137
+ "activeDays": {
10138
+ "type": "integer",
10139
+ "minimum": 0,
10140
+ "maximum": 9007199254740991
10141
+ },
10142
+ "activeWeeks": {
10143
+ "type": "integer",
10144
+ "minimum": 0,
10145
+ "maximum": 53
10146
+ },
10147
+ "firstObservedAt": {
10148
+ "anyOf": [
10149
+ {
10150
+ "type": "string",
10151
+ "format": "date-time",
10152
+ "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)))$"
10153
+ },
10154
+ {
10155
+ "type": "null"
10156
+ }
10157
+ ]
10158
+ },
10159
+ "lastObservedAt": {
10160
+ "anyOf": [
10161
+ {
10162
+ "type": "string",
10163
+ "format": "date-time",
10164
+ "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)))$"
10165
+ },
10166
+ {
10167
+ "type": "null"
10168
+ }
10169
+ ]
10170
+ },
10171
+ "weeklyUsage": {
10172
+ "maxItems": 53,
10173
+ "type": "array",
10174
+ "items": {
10175
+ "oneOf": [
10176
+ {
10177
+ "type": "object",
10178
+ "properties": {
10179
+ "weekStartAt": {
10180
+ "type": "string",
10181
+ "format": "date-time",
10182
+ "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)))$"
10183
+ },
10184
+ "coverage": {
10185
+ "type": "string",
10186
+ "enum": [
10187
+ "complete",
10188
+ "partial"
10189
+ ]
10190
+ },
10191
+ "eventCount": {
10192
+ "type": "integer",
10193
+ "minimum": 0,
10194
+ "maximum": 9007199254740991
10195
+ },
10196
+ "activeDays": {
10197
+ "type": "integer",
10198
+ "minimum": 0,
10199
+ "maximum": 7
10200
+ }
10201
+ },
10202
+ "required": [
10203
+ "weekStartAt",
10204
+ "coverage",
10205
+ "eventCount",
10206
+ "activeDays"
10207
+ ],
10208
+ "additionalProperties": false
10209
+ },
10210
+ {
10211
+ "type": "object",
10212
+ "properties": {
10213
+ "weekStartAt": {
10214
+ "type": "string",
10215
+ "format": "date-time",
10216
+ "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)))$"
10217
+ },
10218
+ "coverage": {
10219
+ "type": "string",
10220
+ "const": "unavailable"
10221
+ }
10222
+ },
10223
+ "required": [
10224
+ "weekStartAt",
10225
+ "coverage"
10226
+ ],
10227
+ "additionalProperties": false
10228
+ }
10229
+ ]
10230
+ }
10231
+ }
10232
+ },
10233
+ "required": [
10234
+ "window",
10235
+ "coverage",
10236
+ "eventCount",
10237
+ "activeDays",
10238
+ "activeWeeks",
10239
+ "firstObservedAt",
10240
+ "lastObservedAt"
10241
+ ],
10242
+ "additionalProperties": false
10243
+ },
10244
+ {
10245
+ "type": "object",
10246
+ "properties": {
10247
+ "window": {
10248
+ "type": "object",
10249
+ "properties": {
10250
+ "startAt": {
10251
+ "type": "string",
10252
+ "format": "date-time",
10253
+ "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)))$"
10254
+ },
10255
+ "endAt": {
10256
+ "type": "string",
10257
+ "format": "date-time",
10258
+ "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)))$"
10259
+ }
10260
+ },
10261
+ "required": [
10262
+ "startAt",
10263
+ "endAt"
10264
+ ],
10265
+ "additionalProperties": false
10266
+ },
10267
+ "coverage": {
10268
+ "type": "string",
10269
+ "const": "unavailable"
10270
+ },
10271
+ "reason": {
10272
+ "type": "string",
10273
+ "enum": [
10274
+ "SOURCE_BLOCKED",
10275
+ "SOURCE_NOT_READY",
10276
+ "QUERY_FAILED"
10277
+ ]
10278
+ }
10279
+ },
10280
+ "required": [
10281
+ "window",
10282
+ "coverage",
10283
+ "reason"
10284
+ ],
10285
+ "additionalProperties": false
10286
+ }
10287
+ ]
10288
+ }
10289
+ },
10290
+ "required": [
10291
+ "id",
10292
+ "revision",
10293
+ "sourceKey",
10294
+ "featureKey",
10295
+ "name",
10296
+ "rule",
10297
+ "evidence"
10298
+ ],
10299
+ "additionalProperties": false
10300
+ }
10301
+ }
10302
+ },
10303
+ "required": [
10304
+ "customer",
10305
+ "features"
10306
+ ],
10307
+ "additionalProperties": false
10308
+ }
10309
+ },
10310
+ "outlit_list_attention_items": {
10311
+ "toolName": "outlit_list_attention_items",
10312
+ "commandId": "attention.list",
10313
+ "commandVersion": 1,
10314
+ "ownerDomain": "attention",
10315
+ "title": "List Attention Items",
10316
+ "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.",
10317
+ "inputSchema": {
10318
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10319
+ "type": "object",
10320
+ "properties": {
10321
+ "status": {
10322
+ "description": "Attention lifecycle to list (default: open)",
10323
+ "default": "open",
10324
+ "type": "string",
10325
+ "enum": [
10326
+ "open",
10327
+ "resolved"
10328
+ ]
10329
+ },
10330
+ "customerId": {
10331
+ "description": "Filter by exact customer ID",
10332
+ "type": "string",
10333
+ "format": "uuid",
10334
+ "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)$"
10335
+ },
10336
+ "limit": {
10337
+ "description": "Results per page (default: 25, max: 100)",
10338
+ "default": 25,
10339
+ "type": "integer",
10340
+ "minimum": 1,
10341
+ "maximum": 100
10342
+ },
10343
+ "cursor": {
10344
+ "description": "Opaque cursor from a previous response with the same filters",
10345
+ "type": "string",
10346
+ "minLength": 1,
10347
+ "maxLength": 2e3
10348
+ }
10349
+ },
10350
+ "additionalProperties": false
10351
+ },
10352
+ "outputSchema": {
10353
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10354
+ "type": "object",
10355
+ "properties": {
10356
+ "items": {
10357
+ "maxItems": 100,
10358
+ "type": "array",
10359
+ "items": {
10360
+ "type": "object",
10361
+ "properties": {
10362
+ "id": {
10363
+ "type": "string",
10364
+ "minLength": 1,
10365
+ "maxLength": 500
10366
+ },
10367
+ "customer": {
10368
+ "type": "object",
10369
+ "properties": {
10370
+ "id": {
10371
+ "type": "string",
10372
+ "minLength": 1,
10373
+ "maxLength": 500
10374
+ },
10375
+ "name": {
10376
+ "type": "string",
10377
+ "minLength": 1,
10378
+ "maxLength": 500
10379
+ },
10380
+ "domain": {
10381
+ "type": "string",
10382
+ "maxLength": 253
10383
+ },
10384
+ "ownerName": {
10385
+ "anyOf": [
10386
+ {
10387
+ "type": "string",
10388
+ "minLength": 1,
10389
+ "maxLength": 500
10390
+ },
10391
+ {
10392
+ "type": "null"
10393
+ }
10394
+ ]
10395
+ }
10396
+ },
10397
+ "required": [
10398
+ "id",
10399
+ "name",
10400
+ "domain",
10401
+ "ownerName"
10402
+ ],
10403
+ "additionalProperties": false
10404
+ },
10405
+ "title": {
10406
+ "type": "string",
10407
+ "minLength": 1,
10408
+ "maxLength": 240
10409
+ },
10410
+ "priority": {
10411
+ "type": "string",
10412
+ "enum": [
10413
+ "NORMAL",
10414
+ "HIGH",
10415
+ "URGENT"
10416
+ ]
10417
+ },
10418
+ "evidenceCount": {
10419
+ "type": "integer",
10420
+ "minimum": 0,
10421
+ "maximum": 50
10422
+ },
10423
+ "lifecycle": {
10424
+ "type": "object",
10425
+ "properties": {
10426
+ "status": {
10427
+ "type": "string",
10428
+ "enum": [
10429
+ "open",
10430
+ "resolved"
10431
+ ]
10432
+ },
10433
+ "customerVisibleAt": {
10434
+ "type": "string",
10435
+ "format": "date-time",
10436
+ "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))$"
10437
+ },
10438
+ "resolvedAt": {
10439
+ "anyOf": [
10440
+ {
10441
+ "type": "string",
10442
+ "format": "date-time",
10443
+ "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))$"
10444
+ },
10445
+ {
10446
+ "type": "null"
10447
+ }
10448
+ ]
10449
+ },
10450
+ "reopenedAt": {
10451
+ "anyOf": [
10452
+ {
10453
+ "type": "string",
10454
+ "format": "date-time",
10455
+ "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))$"
10456
+ },
10457
+ {
10458
+ "type": "null"
10459
+ }
10460
+ ]
10461
+ },
10462
+ "createdAt": {
10463
+ "type": "string",
10464
+ "format": "date-time",
10465
+ "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))$"
10466
+ },
10467
+ "updatedAt": {
10468
+ "type": "string",
10469
+ "format": "date-time",
10470
+ "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))$"
10471
+ },
10472
+ "materialUpdateAt": {
10473
+ "anyOf": [
10474
+ {
10475
+ "type": "string",
10476
+ "format": "date-time",
10477
+ "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))$"
10478
+ },
10479
+ {
10480
+ "type": "null"
10481
+ }
10482
+ ]
10483
+ }
10484
+ },
10485
+ "required": [
10486
+ "status",
10487
+ "customerVisibleAt",
10488
+ "resolvedAt",
10489
+ "reopenedAt",
10490
+ "createdAt",
10491
+ "updatedAt",
10492
+ "materialUpdateAt"
10493
+ ],
10494
+ "additionalProperties": false
10495
+ },
10496
+ "accountImportance": {
10497
+ "type": "object",
10498
+ "properties": {
10499
+ "arrCents": {
10500
+ "anyOf": [
10501
+ {
10502
+ "type": "number",
10503
+ "minimum": 0
10504
+ },
10505
+ {
10506
+ "type": "null"
10507
+ }
10508
+ ]
10509
+ },
10510
+ "currency": {
10511
+ "anyOf": [
10512
+ {
10513
+ "type": "string",
10514
+ "pattern": "^[A-Z]{3}$"
10515
+ },
10516
+ {
10517
+ "type": "null"
10518
+ }
10519
+ ]
10520
+ },
10521
+ "arrShareWithinCurrency": {
10522
+ "anyOf": [
10523
+ {
10524
+ "type": "number",
10525
+ "minimum": 0,
10526
+ "maximum": 1
10527
+ },
10528
+ {
10529
+ "type": "null"
10530
+ }
10531
+ ],
10532
+ "description": "Organization ARR share among customers using the same currency"
10533
+ },
10534
+ "arrPercentileWithinCurrency": {
10535
+ "anyOf": [
10536
+ {
10537
+ "type": "number",
10538
+ "minimum": 0,
10539
+ "maximum": 100
10540
+ },
10541
+ {
10542
+ "type": "null"
10543
+ }
10544
+ ],
10545
+ "description": "ARR percentile among customers using the same currency"
10546
+ },
10547
+ "segments": {
10548
+ "maxItems": 50,
10549
+ "type": "array",
10550
+ "items": {
10551
+ "type": "string",
10552
+ "minLength": 1,
10553
+ "maxLength": 240
10554
+ }
10555
+ }
10556
+ },
10557
+ "required": [
10558
+ "arrCents",
10559
+ "currency",
10560
+ "arrShareWithinCurrency",
10561
+ "arrPercentileWithinCurrency",
10562
+ "segments"
10563
+ ],
10564
+ "additionalProperties": false
10565
+ },
10566
+ "preparedActionUrl": {
10567
+ "anyOf": [
10568
+ {
10569
+ "type": "string",
10570
+ "maxLength": 2e3,
10571
+ "format": "uri"
10572
+ },
10573
+ {
10574
+ "type": "null"
10575
+ }
10576
+ ]
10577
+ }
10578
+ },
10579
+ "required": [
10580
+ "id",
10581
+ "customer",
10582
+ "title",
10583
+ "priority",
10584
+ "evidenceCount",
10585
+ "lifecycle",
10586
+ "accountImportance",
10587
+ "preparedActionUrl"
10588
+ ],
10589
+ "additionalProperties": false
10590
+ }
10591
+ },
10592
+ "pagination": {
10593
+ "type": "object",
10594
+ "properties": {
10595
+ "hasMore": {
10596
+ "type": "boolean"
10597
+ },
10598
+ "nextCursor": {
10599
+ "anyOf": [
10600
+ {
10601
+ "type": "string",
10602
+ "minLength": 1,
10603
+ "maxLength": 2e3
10604
+ },
10605
+ {
10606
+ "type": "null"
10607
+ }
10608
+ ]
10609
+ },
10610
+ "total": {
10611
+ "type": "integer",
10612
+ "minimum": 0,
10613
+ "maximum": 9007199254740991
10614
+ }
10615
+ },
10616
+ "required": [
10617
+ "hasMore",
10618
+ "nextCursor",
10619
+ "total"
10620
+ ],
10621
+ "additionalProperties": false
10622
+ }
10623
+ },
10624
+ "required": [
10625
+ "items",
10626
+ "pagination"
10627
+ ],
10628
+ "additionalProperties": false
10629
+ }
10630
+ },
10631
+ "outlit_get_attention_item": {
10632
+ "toolName": "outlit_get_attention_item",
10633
+ "commandId": "attention.get",
10634
+ "commandVersion": 1,
10635
+ "ownerDomain": "attention",
10636
+ "title": "Get Attention Item",
10637
+ "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.",
10638
+ "inputSchema": {
10639
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10640
+ "type": "object",
10641
+ "properties": {
10642
+ "id": {
10643
+ "type": "string",
10644
+ "format": "uuid",
10645
+ "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)$",
10646
+ "description": "Exact Attention item ID"
10647
+ }
10648
+ },
10649
+ "required": [
10650
+ "id"
10651
+ ],
10652
+ "additionalProperties": false
10653
+ },
10654
+ "outputSchema": {
10655
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10656
+ "type": "object",
10657
+ "properties": {
10658
+ "id": {
10659
+ "type": "string",
10660
+ "minLength": 1,
10661
+ "maxLength": 500
10662
+ },
10663
+ "customer": {
10664
+ "type": "object",
10665
+ "properties": {
10666
+ "id": {
10667
+ "type": "string",
10668
+ "minLength": 1,
10669
+ "maxLength": 500
10670
+ },
10671
+ "name": {
10672
+ "type": "string",
10673
+ "minLength": 1,
10674
+ "maxLength": 500
10675
+ },
10676
+ "domain": {
10677
+ "type": "string",
10678
+ "maxLength": 253
10679
+ },
10680
+ "ownerName": {
10681
+ "anyOf": [
10682
+ {
10683
+ "type": "string",
10684
+ "minLength": 1,
10685
+ "maxLength": 500
10686
+ },
10687
+ {
10688
+ "type": "null"
10689
+ }
10690
+ ]
10691
+ }
10692
+ },
10693
+ "required": [
10694
+ "id",
10695
+ "name",
10696
+ "domain",
10697
+ "ownerName"
10698
+ ],
10699
+ "additionalProperties": false
10700
+ },
10701
+ "title": {
10702
+ "type": "string",
10703
+ "minLength": 1,
10704
+ "maxLength": 240
10705
+ },
10706
+ "priority": {
10707
+ "type": "string",
10708
+ "enum": [
10709
+ "NORMAL",
10710
+ "HIGH",
10711
+ "URGENT"
10712
+ ]
10713
+ },
10714
+ "evidenceCount": {
10715
+ "type": "integer",
10716
+ "minimum": 0,
10717
+ "maximum": 50
10718
+ },
10719
+ "lifecycle": {
10720
+ "type": "object",
10721
+ "properties": {
10722
+ "status": {
10723
+ "type": "string",
10724
+ "enum": [
10725
+ "open",
10726
+ "resolved"
10727
+ ]
10728
+ },
10729
+ "customerVisibleAt": {
10730
+ "type": "string",
10731
+ "format": "date-time",
10732
+ "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))$"
10733
+ },
10734
+ "resolvedAt": {
10735
+ "anyOf": [
10736
+ {
10737
+ "type": "string",
10738
+ "format": "date-time",
10739
+ "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))$"
10740
+ },
10741
+ {
10742
+ "type": "null"
9202
10743
  }
9203
10744
  ]
9204
10745
  },
9205
- "status": {
10746
+ "reopenedAt": {
10747
+ "anyOf": [
10748
+ {
10749
+ "type": "string",
10750
+ "format": "date-time",
10751
+ "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))$"
10752
+ },
10753
+ {
10754
+ "type": "null"
10755
+ }
10756
+ ]
10757
+ },
10758
+ "createdAt": {
9206
10759
  "type": "string",
9207
- "const": "ENABLED"
10760
+ "format": "date-time",
10761
+ "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))$"
9208
10762
  },
9209
- "evaluationMode": {
10763
+ "updatedAt": {
9210
10764
  "type": "string",
9211
- "const": "SHADOW"
10765
+ "format": "date-time",
10766
+ "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))$"
10767
+ },
10768
+ "materialUpdateAt": {
10769
+ "anyOf": [
10770
+ {
10771
+ "type": "string",
10772
+ "format": "date-time",
10773
+ "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))$"
10774
+ },
10775
+ {
10776
+ "type": "null"
10777
+ }
10778
+ ]
10779
+ }
10780
+ },
10781
+ "required": [
10782
+ "status",
10783
+ "customerVisibleAt",
10784
+ "resolvedAt",
10785
+ "reopenedAt",
10786
+ "createdAt",
10787
+ "updatedAt",
10788
+ "materialUpdateAt"
10789
+ ],
10790
+ "additionalProperties": false
10791
+ },
10792
+ "accountImportance": {
10793
+ "type": "object",
10794
+ "properties": {
10795
+ "arrCents": {
10796
+ "anyOf": [
10797
+ {
10798
+ "type": "number",
10799
+ "minimum": 0
10800
+ },
10801
+ {
10802
+ "type": "null"
10803
+ }
10804
+ ]
10805
+ },
10806
+ "currency": {
10807
+ "anyOf": [
10808
+ {
10809
+ "type": "string",
10810
+ "pattern": "^[A-Z]{3}$"
10811
+ },
10812
+ {
10813
+ "type": "null"
10814
+ }
10815
+ ]
10816
+ },
10817
+ "arrShareWithinCurrency": {
10818
+ "anyOf": [
10819
+ {
10820
+ "type": "number",
10821
+ "minimum": 0,
10822
+ "maximum": 1
10823
+ },
10824
+ {
10825
+ "type": "null"
10826
+ }
10827
+ ],
10828
+ "description": "Organization ARR share among customers using the same currency"
10829
+ },
10830
+ "arrPercentileWithinCurrency": {
10831
+ "anyOf": [
10832
+ {
10833
+ "type": "number",
10834
+ "minimum": 0,
10835
+ "maximum": 100
10836
+ },
10837
+ {
10838
+ "type": "null"
10839
+ }
10840
+ ],
10841
+ "description": "ARR percentile among customers using the same currency"
9212
10842
  },
9213
- "definitions": {
9214
- "minItems": 2,
9215
- "maxItems": 2,
10843
+ "segments": {
10844
+ "maxItems": 50,
9216
10845
  "type": "array",
9217
10846
  "items": {
9218
- "type": "object",
9219
- "properties": {
9220
- "id": {
9221
- "type": "string",
9222
- "format": "uuid",
9223
- "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)$"
9224
- },
9225
- "metricKey": {
9226
- "type": "string",
9227
- "minLength": 1,
9228
- "maxLength": 191
9229
- },
9230
- "aggregation": {
9231
- "type": "string",
9232
- "enum": [
9233
- "active_days",
9234
- "event_count"
9235
- ]
9236
- }
9237
- },
9238
- "required": [
9239
- "id",
9240
- "metricKey",
9241
- "aggregation"
9242
- ],
9243
- "additionalProperties": false
10847
+ "type": "string",
10848
+ "minLength": 1,
10849
+ "maxLength": 240
9244
10850
  }
9245
10851
  }
9246
10852
  },
9247
10853
  "required": [
9248
- "sourceKey",
9249
- "behaviorKey",
9250
- "label",
9251
- "eventSelection",
9252
- "status",
9253
- "evaluationMode",
9254
- "definitions"
10854
+ "arrCents",
10855
+ "currency",
10856
+ "arrShareWithinCurrency",
10857
+ "arrPercentileWithinCurrency",
10858
+ "segments"
9255
10859
  ],
9256
10860
  "additionalProperties": false
10861
+ },
10862
+ "preparedActionUrl": {
10863
+ "anyOf": [
10864
+ {
10865
+ "type": "string",
10866
+ "maxLength": 2e3,
10867
+ "format": "uri"
10868
+ },
10869
+ {
10870
+ "type": "null"
10871
+ }
10872
+ ]
10873
+ },
10874
+ "whatChanged": {
10875
+ "type": "string",
10876
+ "minLength": 1,
10877
+ "maxLength": 8e3
10878
+ },
10879
+ "whyItMatters": {
10880
+ "type": "string",
10881
+ "minLength": 1,
10882
+ "maxLength": 8e3
10883
+ },
10884
+ "uncertainty": {
10885
+ "anyOf": [
10886
+ {
10887
+ "type": "string",
10888
+ "minLength": 1,
10889
+ "maxLength": 8e3
10890
+ },
10891
+ {
10892
+ "type": "null"
10893
+ }
10894
+ ]
10895
+ },
10896
+ "priorityReason": {
10897
+ "type": "string",
10898
+ "minLength": 1,
10899
+ "maxLength": 8e3
10900
+ },
10901
+ "timeline": {
10902
+ "maxItems": 20,
10903
+ "type": "array",
10904
+ "items": {
10905
+ "type": "object",
10906
+ "properties": {
10907
+ "title": {
10908
+ "type": "string",
10909
+ "minLength": 1,
10910
+ "maxLength": 240
10911
+ },
10912
+ "explanation": {
10913
+ "type": "string",
10914
+ "minLength": 1,
10915
+ "maxLength": 4e3
10916
+ },
10917
+ "observedAt": {
10918
+ "type": "string",
10919
+ "format": "date-time",
10920
+ "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))$"
10921
+ }
10922
+ },
10923
+ "required": [
10924
+ "title",
10925
+ "explanation",
10926
+ "observedAt"
10927
+ ],
10928
+ "additionalProperties": false
10929
+ }
10930
+ },
10931
+ "evidence": {
10932
+ "maxItems": 20,
10933
+ "type": "array",
10934
+ "items": {
10935
+ "type": "object",
10936
+ "properties": {
10937
+ "role": {
10938
+ "type": "string",
10939
+ "enum": [
10940
+ "supporting",
10941
+ "contradictory",
10942
+ "context"
10943
+ ]
10944
+ },
10945
+ "kind": {
10946
+ "type": "string",
10947
+ "enum": [
10948
+ "metric",
10949
+ "communication",
10950
+ "record",
10951
+ "event"
10952
+ ]
10953
+ },
10954
+ "title": {
10955
+ "type": "string",
10956
+ "minLength": 1,
10957
+ "maxLength": 500
10958
+ },
10959
+ "observedAt": {
10960
+ "anyOf": [
10961
+ {
10962
+ "type": "string",
10963
+ "format": "date-time",
10964
+ "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))$"
10965
+ },
10966
+ {
10967
+ "type": "null"
10968
+ }
10969
+ ]
10970
+ },
10971
+ "window": {
10972
+ "anyOf": [
10973
+ {
10974
+ "type": "object",
10975
+ "properties": {
10976
+ "start": {
10977
+ "type": "string",
10978
+ "format": "date-time",
10979
+ "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))$"
10980
+ },
10981
+ "end": {
10982
+ "type": "string",
10983
+ "format": "date-time",
10984
+ "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))$"
10985
+ }
10986
+ },
10987
+ "required": [
10988
+ "start",
10989
+ "end"
10990
+ ],
10991
+ "additionalProperties": false
10992
+ },
10993
+ {
10994
+ "type": "null"
10995
+ }
10996
+ ]
10997
+ },
10998
+ "sourceLabel": {
10999
+ "type": "string",
11000
+ "minLength": 1,
11001
+ "maxLength": 240
11002
+ }
11003
+ },
11004
+ "required": [
11005
+ "role",
11006
+ "kind",
11007
+ "title",
11008
+ "observedAt",
11009
+ "window",
11010
+ "sourceLabel"
11011
+ ],
11012
+ "additionalProperties": false
11013
+ }
11014
+ },
11015
+ "latestUpdate": {
11016
+ "anyOf": [
11017
+ {
11018
+ "type": "object",
11019
+ "properties": {
11020
+ "updatedAt": {
11021
+ "type": "string",
11022
+ "format": "date-time",
11023
+ "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))$"
11024
+ },
11025
+ "summary": {
11026
+ "type": "string",
11027
+ "minLength": 1,
11028
+ "maxLength": 8e3
11029
+ }
11030
+ },
11031
+ "required": [
11032
+ "updatedAt",
11033
+ "summary"
11034
+ ],
11035
+ "additionalProperties": false
11036
+ },
11037
+ {
11038
+ "type": "null"
11039
+ }
11040
+ ]
9257
11041
  }
9258
11042
  },
9259
11043
  "required": [
9260
- "created",
9261
- "metric"
11044
+ "id",
11045
+ "customer",
11046
+ "title",
11047
+ "priority",
11048
+ "evidenceCount",
11049
+ "lifecycle",
11050
+ "accountImportance",
11051
+ "preparedActionUrl",
11052
+ "whatChanged",
11053
+ "whyItMatters",
11054
+ "uncertainty",
11055
+ "priorityReason",
11056
+ "timeline",
11057
+ "evidence",
11058
+ "latestUpdate"
9262
11059
  ],
9263
11060
  "additionalProperties": false
9264
11061
  }
@@ -9311,6 +11108,7 @@ var consumerToolPolicies = {
9311
11108
  "outlit_list_users",
9312
11109
  "outlit_list_workspace_users",
9313
11110
  "outlit_get_customer",
11111
+ "outlit_get_customer_relationship",
9314
11112
  "outlit_assign_customer_owner",
9315
11113
  "outlit_grant_customer_access",
9316
11114
  "outlit_update_customer_access",
@@ -9339,13 +11137,20 @@ var consumerToolPolicies = {
9339
11137
  "outlit_preview_customer_activation",
9340
11138
  "outlit_update_customer_activation",
9341
11139
  "outlit_get_workspace_settings",
9342
- "outlit_update_workspace_settings"
11140
+ "outlit_update_workspace_settings",
11141
+ "outlit_list_features",
11142
+ "outlit_create_feature",
11143
+ "outlit_archive_feature",
11144
+ "outlit_get_customer_features",
11145
+ "outlit_list_attention_items",
11146
+ "outlit_get_attention_item"
9343
11147
  ],
9344
11148
  "cli": [
9345
11149
  "outlit_list_customers",
9346
11150
  "outlit_list_users",
9347
11151
  "outlit_list_workspace_users",
9348
11152
  "outlit_get_customer",
11153
+ "outlit_get_customer_relationship",
9349
11154
  "outlit_assign_customer_owner",
9350
11155
  "outlit_grant_customer_access",
9351
11156
  "outlit_update_customer_access",
@@ -9375,9 +11180,12 @@ var consumerToolPolicies = {
9375
11180
  "outlit_update_customer_activation",
9376
11181
  "outlit_get_workspace_settings",
9377
11182
  "outlit_update_workspace_settings",
9378
- "outlit_list_behavior_metric_sources",
9379
- "outlit_list_behavior_metric_events",
9380
- "outlit_create_behavior_metric"
11183
+ "outlit_list_features",
11184
+ "outlit_create_feature",
11185
+ "outlit_archive_feature",
11186
+ "outlit_get_customer_features",
11187
+ "outlit_list_attention_items",
11188
+ "outlit_get_attention_item"
9381
11189
  ]
9382
11190
  };
9383
11191
  var toolGatewayTransport = {
@@ -10647,7 +12455,7 @@ var schemaTables = [
10647
12455
  "users",
10648
12456
  "revenue"
10649
12457
  ];
10650
- var sdkConsumerContractHash = "39fe276d5127aa59cdfc0172cc44c9281beb62b1942c44094421f2a56fbb40fa";
12458
+ var sdkConsumerContractHash = "fabc5dbceb5a7c624482b138ea6cb89622f315526a44bb43068c8c66fea3fbc3";
10651
12459
 
10652
12460
  // src/contracts.ts
10653
12461
  var publicToolNameSet = new Set(publicToolNames);