@outlit/tools 2.0.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -79,6 +79,7 @@ var publicToolNames = [
79
79
  "outlit_list_users",
80
80
  "outlit_list_workspace_users",
81
81
  "outlit_get_customer",
82
+ "outlit_get_customer_relationship",
82
83
  "outlit_assign_customer_owner",
83
84
  "outlit_grant_customer_access",
84
85
  "outlit_update_customer_access",
@@ -108,9 +109,12 @@ var publicToolNames = [
108
109
  "outlit_update_customer_activation",
109
110
  "outlit_get_workspace_settings",
110
111
  "outlit_update_workspace_settings",
111
- "outlit_list_behavior_metric_sources",
112
- "outlit_list_behavior_metric_events",
113
- "outlit_create_behavior_metric"
112
+ "outlit_list_features",
113
+ "outlit_create_feature",
114
+ "outlit_archive_feature",
115
+ "outlit_get_customer_features",
116
+ "outlit_list_attention_items",
117
+ "outlit_get_attention_item"
114
118
  ];
115
119
  var publicToolContracts = {
116
120
  "outlit_list_customers": {
@@ -616,6 +620,47 @@ var publicToolContracts = {
616
620
  "type": "null"
617
621
  }
618
622
  ]
623
+ },
624
+ "relationshipRole": {
625
+ "anyOf": [
626
+ {
627
+ "type": "string"
628
+ },
629
+ {
630
+ "type": "null"
631
+ }
632
+ ]
633
+ },
634
+ "jobTitle": {
635
+ "anyOf": [
636
+ {
637
+ "type": "string"
638
+ },
639
+ {
640
+ "type": "null"
641
+ }
642
+ ]
643
+ },
644
+ "department": {
645
+ "anyOf": [
646
+ {
647
+ "type": "string"
648
+ },
649
+ {
650
+ "type": "null"
651
+ }
652
+ ]
653
+ },
654
+ "employmentStartDate": {
655
+ "anyOf": [
656
+ {
657
+ "type": "string",
658
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
659
+ },
660
+ {
661
+ "type": "null"
662
+ }
663
+ ]
619
664
  }
620
665
  },
621
666
  "required": [
@@ -627,7 +672,11 @@ var publicToolContracts = {
627
672
  "customerDomain",
628
673
  "journeyStage",
629
674
  "lastActivityAt",
630
- "daysSinceActivity"
675
+ "daysSinceActivity",
676
+ "relationshipRole",
677
+ "jobTitle",
678
+ "department",
679
+ "employmentStartDate"
631
680
  ],
632
681
  "additionalProperties": false
633
682
  }
@@ -1060,6 +1109,47 @@ var publicToolContracts = {
1060
1109
  "type": "null"
1061
1110
  }
1062
1111
  ]
1112
+ },
1113
+ "relationshipRole": {
1114
+ "anyOf": [
1115
+ {
1116
+ "type": "string"
1117
+ },
1118
+ {
1119
+ "type": "null"
1120
+ }
1121
+ ]
1122
+ },
1123
+ "jobTitle": {
1124
+ "anyOf": [
1125
+ {
1126
+ "type": "string"
1127
+ },
1128
+ {
1129
+ "type": "null"
1130
+ }
1131
+ ]
1132
+ },
1133
+ "department": {
1134
+ "anyOf": [
1135
+ {
1136
+ "type": "string"
1137
+ },
1138
+ {
1139
+ "type": "null"
1140
+ }
1141
+ ]
1142
+ },
1143
+ "employmentStartDate": {
1144
+ "anyOf": [
1145
+ {
1146
+ "type": "string",
1147
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
1148
+ },
1149
+ {
1150
+ "type": "null"
1151
+ }
1152
+ ]
1063
1153
  }
1064
1154
  },
1065
1155
  "required": [
@@ -1067,7 +1157,11 @@ var publicToolContracts = {
1067
1157
  "email",
1068
1158
  "name",
1069
1159
  "journeyStage",
1070
- "lastActivityAt"
1160
+ "lastActivityAt",
1161
+ "relationshipRole",
1162
+ "jobTitle",
1163
+ "department",
1164
+ "employmentStartDate"
1071
1165
  ],
1072
1166
  "additionalProperties": false
1073
1167
  }
@@ -1613,6 +1707,157 @@ var publicToolContracts = {
1613
1707
  "additionalProperties": false
1614
1708
  }
1615
1709
  },
1710
+ "outlit_get_customer_relationship": {
1711
+ "toolName": "outlit_get_customer_relationship",
1712
+ "commandId": "customer.relationship.get",
1713
+ "commandVersion": 1,
1714
+ "ownerDomain": "customers",
1715
+ "title": "Get Customer Relationship",
1716
+ "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.",
1717
+ "inputSchema": {
1718
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1719
+ "type": "object",
1720
+ "properties": {
1721
+ "customer": {
1722
+ "type": "string",
1723
+ "minLength": 1,
1724
+ "maxLength": 500,
1725
+ "description": "Customer ID, domain, or exact customer name to look up"
1726
+ }
1727
+ },
1728
+ "required": [
1729
+ "customer"
1730
+ ],
1731
+ "additionalProperties": false
1732
+ },
1733
+ "outputSchema": {
1734
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1735
+ "type": "object",
1736
+ "properties": {
1737
+ "customer": {
1738
+ "type": "object",
1739
+ "properties": {
1740
+ "id": {
1741
+ "type": "string"
1742
+ },
1743
+ "name": {
1744
+ "anyOf": [
1745
+ {
1746
+ "type": "string"
1747
+ },
1748
+ {
1749
+ "type": "null"
1750
+ }
1751
+ ]
1752
+ },
1753
+ "domain": {
1754
+ "anyOf": [
1755
+ {
1756
+ "type": "string"
1757
+ },
1758
+ {
1759
+ "type": "null"
1760
+ }
1761
+ ]
1762
+ }
1763
+ },
1764
+ "required": [
1765
+ "id",
1766
+ "name",
1767
+ "domain"
1768
+ ],
1769
+ "additionalProperties": false
1770
+ },
1771
+ "relationship": {
1772
+ "type": "object",
1773
+ "properties": {
1774
+ "summary": {
1775
+ "anyOf": [
1776
+ {
1777
+ "type": "string",
1778
+ "minLength": 1,
1779
+ "maxLength": 240
1780
+ },
1781
+ {
1782
+ "type": "null"
1783
+ }
1784
+ ]
1785
+ },
1786
+ "items": {
1787
+ "maxItems": 8,
1788
+ "type": "array",
1789
+ "items": {
1790
+ "type": "object",
1791
+ "properties": {
1792
+ "category": {
1793
+ "type": "string",
1794
+ "minLength": 1,
1795
+ "maxLength": 120
1796
+ },
1797
+ "statement": {
1798
+ "type": "string",
1799
+ "minLength": 1,
1800
+ "maxLength": 500
1801
+ },
1802
+ "observedAt": {
1803
+ "anyOf": [
1804
+ {
1805
+ "type": "string",
1806
+ "format": "date-time",
1807
+ "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))$"
1808
+ },
1809
+ {
1810
+ "type": "null"
1811
+ }
1812
+ ]
1813
+ },
1814
+ "sourceLabels": {
1815
+ "maxItems": 4,
1816
+ "type": "array",
1817
+ "items": {
1818
+ "type": "string",
1819
+ "minLength": 1,
1820
+ "maxLength": 100
1821
+ }
1822
+ }
1823
+ },
1824
+ "required": [
1825
+ "category",
1826
+ "statement",
1827
+ "observedAt",
1828
+ "sourceLabels"
1829
+ ],
1830
+ "additionalProperties": false
1831
+ }
1832
+ },
1833
+ "updatedAt": {
1834
+ "anyOf": [
1835
+ {
1836
+ "type": "string",
1837
+ "format": "date-time",
1838
+ "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))$"
1839
+ },
1840
+ {
1841
+ "type": "null"
1842
+ }
1843
+ ]
1844
+ }
1845
+ },
1846
+ "required": [
1847
+ "summary",
1848
+ "items",
1849
+ "updatedAt"
1850
+ ],
1851
+ "additionalProperties": false
1852
+ }
1853
+ },
1854
+ "required": [
1855
+ "customer",
1856
+ "relationship"
1857
+ ],
1858
+ "additionalProperties": false
1859
+ }
1860
+ },
1616
1861
  "outlit_assign_customer_owner": {
1617
1862
  "toolName": "outlit_assign_customer_owner",
1618
1863
  "commandId": "customer.owner.assign",
@@ -1930,13 +2175,13 @@ var publicToolContracts = {
1930
2175
  ]
1931
2176
  },
1932
2177
  "startDate": {
1933
- "description": "Start of time window (ISO 8601, e.g. '2025-01-01T00:00:00Z'). Cannot be used with timeframe.",
2178
+ "description": "Start of time window, inclusive (ISO 8601 UTC, e.g. '2025-01-01T00:00:00.000Z'). Cannot be used with timeframe.",
1934
2179
  "type": "string",
1935
2180
  "format": "date-time",
1936
2181
  "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))$"
1937
2182
  },
1938
2183
  "endDate": {
1939
- "description": "End of time window (ISO 8601, e.g. '2025-01-31T23:59:59Z'). Cannot be used with timeframe.",
2184
+ "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.",
1940
2185
  "type": "string",
1941
2186
  "format": "date-time",
1942
2187
  "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))$"
@@ -8796,17 +9041,34 @@ var publicToolContracts = {
8796
9041
  "additionalProperties": false
8797
9042
  }
8798
9043
  },
8799
- "outlit_list_behavior_metric_sources": {
8800
- "toolName": "outlit_list_behavior_metric_sources",
8801
- "commandId": "behavior_metric_source.list",
9044
+ "outlit_list_features": {
9045
+ "toolName": "outlit_list_features",
9046
+ "commandId": "value_feature_workspace.get",
8802
9047
  "commandVersion": 1,
8803
- "ownerDomain": "behavior_metrics",
8804
- "title": "List Behavior Metric Sources",
8805
- "description": "List product-event sources eligible for Behavior Metric discovery.",
9048
+ "ownerDomain": "value_features",
9049
+ "title": "List Features",
9050
+ "description": "List configured features, exact historical usage, eligible sources, and observed event candidates.",
8806
9051
  "inputSchema": {
8807
9052
  "$schema": "https://json-schema.org/draft/2020-12/schema",
8808
9053
  "type": "object",
8809
- "properties": {},
9054
+ "properties": {
9055
+ "sourceKey": {
9056
+ "type": "string",
9057
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9058
+ },
9059
+ "weeks": {
9060
+ "default": 12,
9061
+ "type": "integer",
9062
+ "minimum": 1,
9063
+ "maximum": 53
9064
+ },
9065
+ "candidateLimit": {
9066
+ "default": 100,
9067
+ "type": "integer",
9068
+ "minimum": 1,
9069
+ "maximum": 100
9070
+ }
9071
+ },
8810
9072
  "additionalProperties": false
8811
9073
  },
8812
9074
  "outputSchema": {
@@ -8852,217 +9114,593 @@ var publicToolContracts = {
8852
9114
  ],
8853
9115
  "additionalProperties": false
8854
9116
  }
8855
- }
8856
- },
8857
- "required": [
8858
- "sources"
8859
- ],
8860
- "additionalProperties": false
8861
- }
8862
- },
8863
- "outlit_list_behavior_metric_events": {
8864
- "toolName": "outlit_list_behavior_metric_events",
8865
- "commandId": "behavior_metric_event.list",
8866
- "commandVersion": 1,
8867
- "ownerDomain": "behavior_metrics",
8868
- "title": "List Behavior Metric Events",
8869
- "description": "List attributed event candidates for a Behavior Metric source.",
8870
- "inputSchema": {
8871
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8872
- "type": "object",
8873
- "properties": {
8874
- "sourceKey": {
8875
- "type": "string",
8876
- "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8877
9117
  },
8878
- "weeks": {
8879
- "default": 12,
8880
- "type": "integer",
8881
- "minimum": 1,
8882
- "maximum": 53
9118
+ "selectedSourceKey": {
9119
+ "anyOf": [
9120
+ {
9121
+ "type": "string",
9122
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9123
+ },
9124
+ {
9125
+ "type": "null"
9126
+ }
9127
+ ]
8883
9128
  },
8884
- "limit": {
8885
- "default": 100,
9129
+ "workspaceActiveFeatureCount": {
8886
9130
  "type": "integer",
8887
- "minimum": 1,
8888
- "maximum": 100
8889
- }
8890
- },
8891
- "required": [
8892
- "sourceKey"
8893
- ],
8894
- "additionalProperties": false
8895
- },
8896
- "outputSchema": {
8897
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8898
- "type": "object",
8899
- "properties": {
8900
- "events": {
9131
+ "minimum": 0,
9132
+ "maximum": 9007199254740991
9133
+ },
9134
+ "features": {
9135
+ "maxItems": 100,
8901
9136
  "type": "array",
8902
9137
  "items": {
8903
9138
  "type": "object",
8904
9139
  "properties": {
8905
- "eventName": {
9140
+ "id": {
8906
9141
  "type": "string",
8907
- "minLength": 1,
8908
- "maxLength": 191
9142
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
8909
9143
  },
8910
- "eventCount": {
8911
- "type": "integer",
8912
- "minimum": 0,
8913
- "maximum": 9007199254740991
9144
+ "revision": {
9145
+ "type": "string",
9146
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
8914
9147
  },
8915
- "distinctCustomers": {
8916
- "type": "integer",
8917
- "minimum": 0,
8918
- "maximum": 9007199254740991
9148
+ "sourceKey": {
9149
+ "type": "string",
9150
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8919
9151
  },
8920
- "activeWeeks": {
8921
- "type": "integer",
8922
- "minimum": 1,
8923
- "maximum": 53
9152
+ "featureKey": {
9153
+ "type": "string",
9154
+ "maxLength": 64,
9155
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
8924
9156
  },
8925
- "propertyKeys": {
8926
- "maxItems": 10,
8927
- "type": "array",
8928
- "items": {
8929
- "type": "string",
8930
- "minLength": 1,
8931
- "maxLength": 191
8932
- }
8933
- }
8934
- },
8935
- "required": [
8936
- "eventName",
8937
- "eventCount",
8938
- "distinctCustomers",
8939
- "activeWeeks",
8940
- "propertyKeys"
8941
- ],
8942
- "additionalProperties": false
8943
- }
8944
- },
8945
- "truncated": {
8946
- "type": "boolean"
8947
- }
8948
- },
8949
- "required": [
8950
- "events",
8951
- "truncated"
8952
- ],
8953
- "additionalProperties": false
8954
- }
8955
- },
8956
- "outlit_create_behavior_metric": {
8957
- "toolName": "outlit_create_behavior_metric",
8958
- "commandId": "behavior_metric.create",
8959
- "commandVersion": 1,
8960
- "ownerDomain": "behavior_metrics",
8961
- "title": "Create Behavior Metric",
8962
- "description": "Create or idempotently return an event-based Behavior Metric in ENABLED and SHADOW.",
8963
- "inputSchema": {
8964
- "$schema": "https://json-schema.org/draft/2020-12/schema",
8965
- "type": "object",
8966
- "properties": {
8967
- "sourceKey": {
8968
- "type": "string",
8969
- "pattern": "^metric_source_v1_[a-f0-9]{32}$"
8970
- },
8971
- "eventName": {
8972
- "type": "string",
8973
- "minLength": 1,
8974
- "maxLength": 191
8975
- },
8976
- "behaviorKey": {
8977
- "type": "string",
8978
- "maxLength": 64,
8979
- "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
8980
- },
8981
- "label": {
8982
- "type": "string",
8983
- "minLength": 1,
8984
- "maxLength": 255
8985
- },
8986
- "propertyFilters": {
8987
- "default": [],
8988
- "maxItems": 5,
8989
- "type": "array",
8990
- "items": {
8991
- "oneOf": [
8992
- {
9157
+ "name": {
9158
+ "type": "string",
9159
+ "minLength": 1,
9160
+ "maxLength": 255
9161
+ },
9162
+ "rule": {
8993
9163
  "type": "object",
8994
9164
  "properties": {
8995
- "property": {
9165
+ "eventName": {
8996
9166
  "type": "string",
8997
9167
  "minLength": 1,
8998
9168
  "maxLength": 191
8999
9169
  },
9000
- "operator": {
9001
- "type": "string",
9002
- "const": "equals"
9003
- },
9004
- "value": {
9005
- "oneOf": [
9006
- {
9170
+ "propertyFilters": {
9171
+ "maxItems": 5,
9172
+ "type": "array",
9173
+ "items": {
9174
+ "oneOf": [
9175
+ {
9176
+ "type": "object",
9177
+ "properties": {
9178
+ "property": {
9179
+ "type": "string",
9180
+ "minLength": 1,
9181
+ "maxLength": 191
9182
+ },
9183
+ "operator": {
9184
+ "type": "string",
9185
+ "const": "equals"
9186
+ },
9187
+ "value": {
9188
+ "oneOf": [
9189
+ {
9190
+ "type": "object",
9191
+ "properties": {
9192
+ "type": {
9193
+ "type": "string",
9194
+ "const": "string"
9195
+ },
9196
+ "value": {
9197
+ "type": "string",
9198
+ "maxLength": 191
9199
+ }
9200
+ },
9201
+ "required": [
9202
+ "type",
9203
+ "value"
9204
+ ],
9205
+ "additionalProperties": false
9206
+ },
9207
+ {
9208
+ "type": "object",
9209
+ "properties": {
9210
+ "type": {
9211
+ "type": "string",
9212
+ "const": "number"
9213
+ },
9214
+ "value": {
9215
+ "type": "number",
9216
+ "minimum": -9007199254740991,
9217
+ "maximum": 9007199254740991
9218
+ }
9219
+ },
9220
+ "required": [
9221
+ "type",
9222
+ "value"
9223
+ ],
9224
+ "additionalProperties": false
9225
+ },
9226
+ {
9227
+ "type": "object",
9228
+ "properties": {
9229
+ "type": {
9230
+ "type": "string",
9231
+ "const": "boolean"
9232
+ },
9233
+ "value": {
9234
+ "type": "boolean"
9235
+ }
9236
+ },
9237
+ "required": [
9238
+ "type",
9239
+ "value"
9240
+ ],
9241
+ "additionalProperties": false
9242
+ }
9243
+ ]
9244
+ }
9245
+ },
9246
+ "required": [
9247
+ "property",
9248
+ "operator",
9249
+ "value"
9250
+ ],
9251
+ "additionalProperties": false
9252
+ },
9253
+ {
9254
+ "type": "object",
9255
+ "properties": {
9256
+ "property": {
9257
+ "type": "string",
9258
+ "minLength": 1,
9259
+ "maxLength": 191
9260
+ },
9261
+ "operator": {
9262
+ "type": "string",
9263
+ "const": "exists"
9264
+ }
9265
+ },
9266
+ "required": [
9267
+ "property",
9268
+ "operator"
9269
+ ],
9270
+ "additionalProperties": false
9271
+ }
9272
+ ]
9273
+ }
9274
+ }
9275
+ },
9276
+ "required": [
9277
+ "eventName",
9278
+ "propertyFilters"
9279
+ ],
9280
+ "additionalProperties": false
9281
+ },
9282
+ "evidence": {
9283
+ "oneOf": [
9284
+ {
9285
+ "type": "object",
9286
+ "properties": {
9287
+ "window": {
9007
9288
  "type": "object",
9008
9289
  "properties": {
9009
- "type": {
9290
+ "startAt": {
9010
9291
  "type": "string",
9011
- "const": "string"
9292
+ "format": "date-time",
9293
+ "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)))$"
9012
9294
  },
9013
- "value": {
9295
+ "endAt": {
9014
9296
  "type": "string",
9015
- "maxLength": 191
9297
+ "format": "date-time",
9298
+ "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)))$"
9016
9299
  }
9017
9300
  },
9018
9301
  "required": [
9019
- "type",
9020
- "value"
9302
+ "startAt",
9303
+ "endAt"
9021
9304
  ],
9022
9305
  "additionalProperties": false
9023
9306
  },
9024
- {
9025
- "type": "object",
9026
- "properties": {
9027
- "type": {
9307
+ "coverage": {
9308
+ "type": "string",
9309
+ "enum": [
9310
+ "complete",
9311
+ "partial"
9312
+ ]
9313
+ },
9314
+ "eventCount": {
9315
+ "type": "integer",
9316
+ "minimum": 0,
9317
+ "maximum": 9007199254740991
9318
+ },
9319
+ "activeDays": {
9320
+ "type": "integer",
9321
+ "minimum": 0,
9322
+ "maximum": 9007199254740991
9323
+ },
9324
+ "activeWeeks": {
9325
+ "type": "integer",
9326
+ "minimum": 0,
9327
+ "maximum": 53
9328
+ },
9329
+ "firstObservedAt": {
9330
+ "anyOf": [
9331
+ {
9028
9332
  "type": "string",
9029
- "const": "number"
9333
+ "format": "date-time",
9334
+ "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)))$"
9030
9335
  },
9031
- "value": {
9032
- "type": "number",
9033
- "minimum": -9007199254740991,
9034
- "maximum": 9007199254740991
9336
+ {
9337
+ "type": "null"
9035
9338
  }
9036
- },
9037
- "required": [
9038
- "type",
9039
- "value"
9040
- ],
9041
- "additionalProperties": false
9339
+ ]
9042
9340
  },
9043
- {
9341
+ "lastObservedAt": {
9342
+ "anyOf": [
9343
+ {
9344
+ "type": "string",
9345
+ "format": "date-time",
9346
+ "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)))$"
9347
+ },
9348
+ {
9349
+ "type": "null"
9350
+ }
9351
+ ]
9352
+ },
9353
+ "distinctCustomers": {
9354
+ "type": "integer",
9355
+ "minimum": 0,
9356
+ "maximum": 9007199254740991
9357
+ }
9358
+ },
9359
+ "required": [
9360
+ "window",
9361
+ "coverage",
9362
+ "eventCount",
9363
+ "activeDays",
9364
+ "activeWeeks",
9365
+ "firstObservedAt",
9366
+ "lastObservedAt",
9367
+ "distinctCustomers"
9368
+ ],
9369
+ "additionalProperties": false
9370
+ },
9371
+ {
9372
+ "type": "object",
9373
+ "properties": {
9374
+ "window": {
9044
9375
  "type": "object",
9045
9376
  "properties": {
9046
- "type": {
9377
+ "startAt": {
9047
9378
  "type": "string",
9048
- "const": "boolean"
9379
+ "format": "date-time",
9380
+ "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)))$"
9049
9381
  },
9050
- "value": {
9051
- "type": "boolean"
9382
+ "endAt": {
9383
+ "type": "string",
9384
+ "format": "date-time",
9385
+ "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)))$"
9052
9386
  }
9053
9387
  },
9054
9388
  "required": [
9055
- "type",
9056
- "value"
9389
+ "startAt",
9390
+ "endAt"
9057
9391
  ],
9058
9392
  "additionalProperties": false
9393
+ },
9394
+ "coverage": {
9395
+ "type": "string",
9396
+ "const": "unavailable"
9397
+ },
9398
+ "reason": {
9399
+ "type": "string",
9400
+ "enum": [
9401
+ "SOURCE_BLOCKED",
9402
+ "SOURCE_NOT_READY",
9403
+ "QUERY_FAILED"
9404
+ ]
9059
9405
  }
9060
- ]
9406
+ },
9407
+ "required": [
9408
+ "window",
9409
+ "coverage",
9410
+ "reason"
9411
+ ],
9412
+ "additionalProperties": false
9061
9413
  }
9414
+ ]
9415
+ }
9416
+ },
9417
+ "required": [
9418
+ "id",
9419
+ "revision",
9420
+ "sourceKey",
9421
+ "featureKey",
9422
+ "name",
9423
+ "rule",
9424
+ "evidence"
9425
+ ],
9426
+ "additionalProperties": false
9427
+ }
9428
+ },
9429
+ "candidates": {
9430
+ "oneOf": [
9431
+ {
9432
+ "type": "object",
9433
+ "properties": {
9434
+ "status": {
9435
+ "type": "string",
9436
+ "const": "ready"
9062
9437
  },
9063
- "required": [
9064
- "property",
9065
- "operator",
9438
+ "items": {
9439
+ "maxItems": 100,
9440
+ "type": "array",
9441
+ "items": {
9442
+ "type": "object",
9443
+ "properties": {
9444
+ "eventName": {
9445
+ "type": "string",
9446
+ "minLength": 1,
9447
+ "maxLength": 191
9448
+ },
9449
+ "eventCount": {
9450
+ "type": "integer",
9451
+ "minimum": 0,
9452
+ "maximum": 9007199254740991
9453
+ },
9454
+ "distinctCustomers": {
9455
+ "type": "integer",
9456
+ "minimum": 0,
9457
+ "maximum": 9007199254740991
9458
+ },
9459
+ "activeWeeks": {
9460
+ "type": "integer",
9461
+ "minimum": 1,
9462
+ "maximum": 53
9463
+ },
9464
+ "propertyKeys": {
9465
+ "maxItems": 10,
9466
+ "type": "array",
9467
+ "items": {
9468
+ "type": "string",
9469
+ "minLength": 1,
9470
+ "maxLength": 191
9471
+ }
9472
+ }
9473
+ },
9474
+ "required": [
9475
+ "eventName",
9476
+ "eventCount",
9477
+ "distinctCustomers",
9478
+ "activeWeeks",
9479
+ "propertyKeys"
9480
+ ],
9481
+ "additionalProperties": false
9482
+ }
9483
+ },
9484
+ "truncated": {
9485
+ "type": "boolean"
9486
+ }
9487
+ },
9488
+ "required": [
9489
+ "status",
9490
+ "items",
9491
+ "truncated"
9492
+ ],
9493
+ "additionalProperties": false
9494
+ },
9495
+ {
9496
+ "type": "object",
9497
+ "properties": {
9498
+ "status": {
9499
+ "type": "string",
9500
+ "const": "partial"
9501
+ },
9502
+ "items": {
9503
+ "maxItems": 100,
9504
+ "type": "array",
9505
+ "items": {
9506
+ "type": "object",
9507
+ "properties": {
9508
+ "eventName": {
9509
+ "type": "string",
9510
+ "minLength": 1,
9511
+ "maxLength": 191
9512
+ },
9513
+ "eventCount": {
9514
+ "type": "integer",
9515
+ "minimum": 0,
9516
+ "maximum": 9007199254740991
9517
+ },
9518
+ "distinctCustomers": {
9519
+ "type": "integer",
9520
+ "minimum": 0,
9521
+ "maximum": 9007199254740991
9522
+ },
9523
+ "activeWeeks": {
9524
+ "type": "integer",
9525
+ "minimum": 1,
9526
+ "maximum": 53
9527
+ },
9528
+ "propertyKeys": {
9529
+ "maxItems": 10,
9530
+ "type": "array",
9531
+ "items": {
9532
+ "type": "string",
9533
+ "minLength": 1,
9534
+ "maxLength": 191
9535
+ }
9536
+ }
9537
+ },
9538
+ "required": [
9539
+ "eventName",
9540
+ "eventCount",
9541
+ "distinctCustomers",
9542
+ "activeWeeks",
9543
+ "propertyKeys"
9544
+ ],
9545
+ "additionalProperties": false
9546
+ }
9547
+ },
9548
+ "truncated": {
9549
+ "type": "boolean"
9550
+ }
9551
+ },
9552
+ "required": [
9553
+ "status",
9554
+ "items",
9555
+ "truncated"
9556
+ ],
9557
+ "additionalProperties": false
9558
+ },
9559
+ {
9560
+ "type": "object",
9561
+ "properties": {
9562
+ "status": {
9563
+ "type": "string",
9564
+ "const": "unavailable"
9565
+ },
9566
+ "reason": {
9567
+ "type": "string",
9568
+ "enum": [
9569
+ "SOURCE_BLOCKED",
9570
+ "SOURCE_NOT_READY",
9571
+ "QUERY_FAILED"
9572
+ ]
9573
+ }
9574
+ },
9575
+ "required": [
9576
+ "status",
9577
+ "reason"
9578
+ ],
9579
+ "additionalProperties": false
9580
+ }
9581
+ ]
9582
+ }
9583
+ },
9584
+ "required": [
9585
+ "sources",
9586
+ "selectedSourceKey",
9587
+ "workspaceActiveFeatureCount",
9588
+ "features",
9589
+ "candidates"
9590
+ ],
9591
+ "additionalProperties": false
9592
+ }
9593
+ },
9594
+ "outlit_create_feature": {
9595
+ "toolName": "outlit_create_feature",
9596
+ "commandId": "value_feature.create",
9597
+ "commandVersion": 1,
9598
+ "ownerDomain": "value_features",
9599
+ "title": "Create Feature",
9600
+ "description": "Create or idempotently return one customer-value Feature observed by one event rule.",
9601
+ "inputSchema": {
9602
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9603
+ "type": "object",
9604
+ "properties": {
9605
+ "sourceKey": {
9606
+ "type": "string",
9607
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9608
+ },
9609
+ "eventName": {
9610
+ "type": "string",
9611
+ "minLength": 1,
9612
+ "maxLength": 191
9613
+ },
9614
+ "featureKey": {
9615
+ "type": "string",
9616
+ "maxLength": 64,
9617
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
9618
+ },
9619
+ "name": {
9620
+ "type": "string",
9621
+ "minLength": 1,
9622
+ "maxLength": 255
9623
+ },
9624
+ "propertyFilters": {
9625
+ "default": [],
9626
+ "maxItems": 5,
9627
+ "type": "array",
9628
+ "items": {
9629
+ "oneOf": [
9630
+ {
9631
+ "type": "object",
9632
+ "properties": {
9633
+ "property": {
9634
+ "type": "string",
9635
+ "minLength": 1,
9636
+ "maxLength": 191
9637
+ },
9638
+ "operator": {
9639
+ "type": "string",
9640
+ "const": "equals"
9641
+ },
9642
+ "value": {
9643
+ "oneOf": [
9644
+ {
9645
+ "type": "object",
9646
+ "properties": {
9647
+ "type": {
9648
+ "type": "string",
9649
+ "const": "string"
9650
+ },
9651
+ "value": {
9652
+ "type": "string",
9653
+ "maxLength": 191
9654
+ }
9655
+ },
9656
+ "required": [
9657
+ "type",
9658
+ "value"
9659
+ ],
9660
+ "additionalProperties": false
9661
+ },
9662
+ {
9663
+ "type": "object",
9664
+ "properties": {
9665
+ "type": {
9666
+ "type": "string",
9667
+ "const": "number"
9668
+ },
9669
+ "value": {
9670
+ "type": "number",
9671
+ "minimum": -9007199254740991,
9672
+ "maximum": 9007199254740991
9673
+ }
9674
+ },
9675
+ "required": [
9676
+ "type",
9677
+ "value"
9678
+ ],
9679
+ "additionalProperties": false
9680
+ },
9681
+ {
9682
+ "type": "object",
9683
+ "properties": {
9684
+ "type": {
9685
+ "type": "string",
9686
+ "const": "boolean"
9687
+ },
9688
+ "value": {
9689
+ "type": "boolean"
9690
+ }
9691
+ },
9692
+ "required": [
9693
+ "type",
9694
+ "value"
9695
+ ],
9696
+ "additionalProperties": false
9697
+ }
9698
+ ]
9699
+ }
9700
+ },
9701
+ "required": [
9702
+ "property",
9703
+ "operator",
9066
9704
  "value"
9067
9705
  ],
9068
9706
  "additionalProperties": false
@@ -9093,8 +9731,8 @@ var publicToolContracts = {
9093
9731
  "required": [
9094
9732
  "sourceKey",
9095
9733
  "eventName",
9096
- "behaviorKey",
9097
- "label"
9734
+ "featureKey",
9735
+ "name"
9098
9736
  ],
9099
9737
  "additionalProperties": false
9100
9738
  },
@@ -9105,234 +9743,1393 @@ var publicToolContracts = {
9105
9743
  "created": {
9106
9744
  "type": "boolean"
9107
9745
  },
9108
- "metric": {
9746
+ "feature": {
9109
9747
  "type": "object",
9110
9748
  "properties": {
9749
+ "id": {
9750
+ "type": "string",
9751
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9752
+ },
9753
+ "revision": {
9754
+ "type": "string",
9755
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9756
+ },
9111
9757
  "sourceKey": {
9112
9758
  "type": "string",
9113
9759
  "pattern": "^metric_source_v1_[a-f0-9]{32}$"
9114
9760
  },
9115
- "behaviorKey": {
9761
+ "featureKey": {
9116
9762
  "type": "string",
9117
9763
  "maxLength": 64,
9118
9764
  "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
9119
9765
  },
9120
- "label": {
9766
+ "name": {
9121
9767
  "type": "string",
9122
9768
  "minLength": 1,
9123
9769
  "maxLength": 255
9124
9770
  },
9125
- "eventSelection": {
9126
- "oneOf": [
9127
- {
9128
- "type": "object",
9129
- "properties": {
9130
- "mode": {
9131
- "type": "string",
9132
- "const": "exact_event_names"
9133
- },
9134
- "eventNames": {
9135
- "minItems": 1,
9136
- "maxItems": 1,
9137
- "type": "array",
9138
- "items": {
9139
- "type": "string",
9140
- "minLength": 1,
9141
- "maxLength": 191
9142
- }
9143
- }
9144
- },
9145
- "required": [
9146
- "mode",
9147
- "eventNames"
9148
- ],
9149
- "additionalProperties": false
9771
+ "rule": {
9772
+ "type": "object",
9773
+ "properties": {
9774
+ "eventName": {
9775
+ "type": "string",
9776
+ "minLength": 1,
9777
+ "maxLength": 191
9150
9778
  },
9151
- {
9152
- "type": "object",
9153
- "properties": {
9154
- "mode": {
9155
- "type": "string",
9156
- "const": "configured_event"
9157
- },
9158
- "eventName": {
9159
- "type": "string",
9160
- "minLength": 1,
9161
- "maxLength": 191
9162
- },
9163
- "propertyFilters": {
9164
- "minItems": 1,
9165
- "maxItems": 5,
9166
- "type": "array",
9167
- "items": {
9168
- "oneOf": [
9169
- {
9170
- "type": "object",
9171
- "properties": {
9172
- "property": {
9173
- "type": "string",
9174
- "minLength": 1,
9175
- "maxLength": 191
9176
- },
9177
- "operator": {
9178
- "type": "string",
9179
- "const": "equals"
9180
- },
9181
- "value": {
9182
- "oneOf": [
9183
- {
9184
- "type": "object",
9185
- "properties": {
9186
- "type": {
9187
- "type": "string",
9188
- "const": "string"
9189
- },
9190
- "value": {
9191
- "type": "string",
9192
- "maxLength": 191
9193
- }
9194
- },
9195
- "required": [
9196
- "type",
9197
- "value"
9198
- ],
9199
- "additionalProperties": false
9779
+ "propertyFilters": {
9780
+ "maxItems": 5,
9781
+ "type": "array",
9782
+ "items": {
9783
+ "oneOf": [
9784
+ {
9785
+ "type": "object",
9786
+ "properties": {
9787
+ "property": {
9788
+ "type": "string",
9789
+ "minLength": 1,
9790
+ "maxLength": 191
9791
+ },
9792
+ "operator": {
9793
+ "type": "string",
9794
+ "const": "equals"
9795
+ },
9796
+ "value": {
9797
+ "oneOf": [
9798
+ {
9799
+ "type": "object",
9800
+ "properties": {
9801
+ "type": {
9802
+ "type": "string",
9803
+ "const": "string"
9200
9804
  },
9201
- {
9202
- "type": "object",
9203
- "properties": {
9204
- "type": {
9205
- "type": "string",
9206
- "const": "number"
9207
- },
9208
- "value": {
9209
- "type": "number",
9210
- "minimum": -9007199254740991,
9211
- "maximum": 9007199254740991
9212
- }
9213
- },
9214
- "required": [
9215
- "type",
9216
- "value"
9217
- ],
9218
- "additionalProperties": false
9805
+ "value": {
9806
+ "type": "string",
9807
+ "maxLength": 191
9808
+ }
9809
+ },
9810
+ "required": [
9811
+ "type",
9812
+ "value"
9813
+ ],
9814
+ "additionalProperties": false
9815
+ },
9816
+ {
9817
+ "type": "object",
9818
+ "properties": {
9819
+ "type": {
9820
+ "type": "string",
9821
+ "const": "number"
9219
9822
  },
9220
- {
9221
- "type": "object",
9222
- "properties": {
9223
- "type": {
9224
- "type": "string",
9225
- "const": "boolean"
9226
- },
9227
- "value": {
9228
- "type": "boolean"
9229
- }
9230
- },
9231
- "required": [
9232
- "type",
9233
- "value"
9234
- ],
9235
- "additionalProperties": false
9823
+ "value": {
9824
+ "type": "number",
9825
+ "minimum": -9007199254740991,
9826
+ "maximum": 9007199254740991
9236
9827
  }
9237
- ]
9238
- }
9239
- },
9240
- "required": [
9241
- "property",
9242
- "operator",
9243
- "value"
9244
- ],
9245
- "additionalProperties": false
9246
- },
9247
- {
9248
- "type": "object",
9249
- "properties": {
9250
- "property": {
9251
- "type": "string",
9252
- "minLength": 1,
9253
- "maxLength": 191
9828
+ },
9829
+ "required": [
9830
+ "type",
9831
+ "value"
9832
+ ],
9833
+ "additionalProperties": false
9254
9834
  },
9255
- "operator": {
9256
- "type": "string",
9257
- "const": "exists"
9835
+ {
9836
+ "type": "object",
9837
+ "properties": {
9838
+ "type": {
9839
+ "type": "string",
9840
+ "const": "boolean"
9841
+ },
9842
+ "value": {
9843
+ "type": "boolean"
9844
+ }
9845
+ },
9846
+ "required": [
9847
+ "type",
9848
+ "value"
9849
+ ],
9850
+ "additionalProperties": false
9258
9851
  }
9259
- },
9260
- "required": [
9261
- "property",
9262
- "operator"
9263
- ],
9264
- "additionalProperties": false
9852
+ ]
9265
9853
  }
9266
- ]
9854
+ },
9855
+ "required": [
9856
+ "property",
9857
+ "operator",
9858
+ "value"
9859
+ ],
9860
+ "additionalProperties": false
9861
+ },
9862
+ {
9863
+ "type": "object",
9864
+ "properties": {
9865
+ "property": {
9866
+ "type": "string",
9867
+ "minLength": 1,
9868
+ "maxLength": 191
9869
+ },
9870
+ "operator": {
9871
+ "type": "string",
9872
+ "const": "exists"
9873
+ }
9874
+ },
9875
+ "required": [
9876
+ "property",
9877
+ "operator"
9878
+ ],
9879
+ "additionalProperties": false
9267
9880
  }
9268
- }
9881
+ ]
9882
+ }
9883
+ }
9884
+ },
9885
+ "required": [
9886
+ "eventName",
9887
+ "propertyFilters"
9888
+ ],
9889
+ "additionalProperties": false
9890
+ }
9891
+ },
9892
+ "required": [
9893
+ "id",
9894
+ "revision",
9895
+ "sourceKey",
9896
+ "featureKey",
9897
+ "name",
9898
+ "rule"
9899
+ ],
9900
+ "additionalProperties": false
9901
+ }
9902
+ },
9903
+ "required": [
9904
+ "created",
9905
+ "feature"
9906
+ ],
9907
+ "additionalProperties": false
9908
+ }
9909
+ },
9910
+ "outlit_archive_feature": {
9911
+ "toolName": "outlit_archive_feature",
9912
+ "commandId": "value_feature.archive",
9913
+ "commandVersion": 1,
9914
+ "ownerDomain": "value_features",
9915
+ "title": "Archive Feature",
9916
+ "description": "Archive a Feature when at least one other active Feature remains.",
9917
+ "inputSchema": {
9918
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9919
+ "type": "object",
9920
+ "properties": {
9921
+ "id": {
9922
+ "type": "string",
9923
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9924
+ },
9925
+ "revision": {
9926
+ "type": "string",
9927
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9928
+ }
9929
+ },
9930
+ "required": [
9931
+ "id",
9932
+ "revision"
9933
+ ],
9934
+ "additionalProperties": false
9935
+ },
9936
+ "outputSchema": {
9937
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9938
+ "type": "object",
9939
+ "properties": {
9940
+ "archived": {
9941
+ "type": "boolean",
9942
+ "const": true
9943
+ },
9944
+ "feature": {
9945
+ "type": "object",
9946
+ "properties": {
9947
+ "id": {
9948
+ "type": "string",
9949
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
9950
+ },
9951
+ "revision": {
9952
+ "type": "string",
9953
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
9954
+ }
9955
+ },
9956
+ "required": [
9957
+ "id",
9958
+ "revision"
9959
+ ],
9960
+ "additionalProperties": false
9961
+ }
9962
+ },
9963
+ "required": [
9964
+ "archived",
9965
+ "feature"
9966
+ ],
9967
+ "additionalProperties": false
9968
+ }
9969
+ },
9970
+ "outlit_get_customer_features": {
9971
+ "toolName": "outlit_get_customer_features",
9972
+ "commandId": "customer_feature_usage.get",
9973
+ "commandVersion": 1,
9974
+ "ownerDomain": "value_features",
9975
+ "title": "Get Customer Features",
9976
+ "description": "Read exact historical feature-usage evidence for one authorized customer.",
9977
+ "inputSchema": {
9978
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
9979
+ "type": "object",
9980
+ "properties": {
9981
+ "customer": {
9982
+ "type": "string",
9983
+ "minLength": 1,
9984
+ "maxLength": 500
9985
+ },
9986
+ "weeks": {
9987
+ "default": 12,
9988
+ "type": "integer",
9989
+ "minimum": 1,
9990
+ "maximum": 53
9991
+ },
9992
+ "includeWeeklyUsage": {
9993
+ "default": false,
9994
+ "type": "boolean"
9995
+ }
9996
+ },
9997
+ "required": [
9998
+ "customer"
9999
+ ],
10000
+ "additionalProperties": false
10001
+ },
10002
+ "outputSchema": {
10003
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10004
+ "type": "object",
10005
+ "properties": {
10006
+ "customer": {
10007
+ "type": "object",
10008
+ "properties": {
10009
+ "id": {
10010
+ "type": "string",
10011
+ "minLength": 1,
10012
+ "maxLength": 191
10013
+ },
10014
+ "name": {
10015
+ "type": "string",
10016
+ "minLength": 1,
10017
+ "maxLength": 255
10018
+ }
10019
+ },
10020
+ "required": [
10021
+ "id",
10022
+ "name"
10023
+ ],
10024
+ "additionalProperties": false
10025
+ },
10026
+ "features": {
10027
+ "maxItems": 100,
10028
+ "type": "array",
10029
+ "items": {
10030
+ "type": "object",
10031
+ "properties": {
10032
+ "id": {
10033
+ "type": "string",
10034
+ "pattern": "^value_feature_v1_[a-f0-9]{32}$"
10035
+ },
10036
+ "revision": {
10037
+ "type": "string",
10038
+ "pattern": "^value_feature_revision_v1_[a-f0-9]{32}$"
10039
+ },
10040
+ "sourceKey": {
10041
+ "type": "string",
10042
+ "pattern": "^metric_source_v1_[a-f0-9]{32}$"
10043
+ },
10044
+ "featureKey": {
10045
+ "type": "string",
10046
+ "maxLength": 64,
10047
+ "pattern": "^[a-z][a-z0-9]*(?:_[a-z0-9]+)*$"
10048
+ },
10049
+ "name": {
10050
+ "type": "string",
10051
+ "minLength": 1,
10052
+ "maxLength": 255
10053
+ },
10054
+ "rule": {
10055
+ "type": "object",
10056
+ "properties": {
10057
+ "eventName": {
10058
+ "type": "string",
10059
+ "minLength": 1,
10060
+ "maxLength": 191
9269
10061
  },
9270
- "required": [
9271
- "mode",
9272
- "eventName",
9273
- "propertyFilters"
9274
- ],
9275
- "additionalProperties": false
10062
+ "propertyFilters": {
10063
+ "maxItems": 5,
10064
+ "type": "array",
10065
+ "items": {
10066
+ "oneOf": [
10067
+ {
10068
+ "type": "object",
10069
+ "properties": {
10070
+ "property": {
10071
+ "type": "string",
10072
+ "minLength": 1,
10073
+ "maxLength": 191
10074
+ },
10075
+ "operator": {
10076
+ "type": "string",
10077
+ "const": "equals"
10078
+ },
10079
+ "value": {
10080
+ "oneOf": [
10081
+ {
10082
+ "type": "object",
10083
+ "properties": {
10084
+ "type": {
10085
+ "type": "string",
10086
+ "const": "string"
10087
+ },
10088
+ "value": {
10089
+ "type": "string",
10090
+ "maxLength": 191
10091
+ }
10092
+ },
10093
+ "required": [
10094
+ "type",
10095
+ "value"
10096
+ ],
10097
+ "additionalProperties": false
10098
+ },
10099
+ {
10100
+ "type": "object",
10101
+ "properties": {
10102
+ "type": {
10103
+ "type": "string",
10104
+ "const": "number"
10105
+ },
10106
+ "value": {
10107
+ "type": "number",
10108
+ "minimum": -9007199254740991,
10109
+ "maximum": 9007199254740991
10110
+ }
10111
+ },
10112
+ "required": [
10113
+ "type",
10114
+ "value"
10115
+ ],
10116
+ "additionalProperties": false
10117
+ },
10118
+ {
10119
+ "type": "object",
10120
+ "properties": {
10121
+ "type": {
10122
+ "type": "string",
10123
+ "const": "boolean"
10124
+ },
10125
+ "value": {
10126
+ "type": "boolean"
10127
+ }
10128
+ },
10129
+ "required": [
10130
+ "type",
10131
+ "value"
10132
+ ],
10133
+ "additionalProperties": false
10134
+ }
10135
+ ]
10136
+ }
10137
+ },
10138
+ "required": [
10139
+ "property",
10140
+ "operator",
10141
+ "value"
10142
+ ],
10143
+ "additionalProperties": false
10144
+ },
10145
+ {
10146
+ "type": "object",
10147
+ "properties": {
10148
+ "property": {
10149
+ "type": "string",
10150
+ "minLength": 1,
10151
+ "maxLength": 191
10152
+ },
10153
+ "operator": {
10154
+ "type": "string",
10155
+ "const": "exists"
10156
+ }
10157
+ },
10158
+ "required": [
10159
+ "property",
10160
+ "operator"
10161
+ ],
10162
+ "additionalProperties": false
10163
+ }
10164
+ ]
10165
+ }
10166
+ }
10167
+ },
10168
+ "required": [
10169
+ "eventName",
10170
+ "propertyFilters"
10171
+ ],
10172
+ "additionalProperties": false
10173
+ },
10174
+ "evidence": {
10175
+ "oneOf": [
10176
+ {
10177
+ "type": "object",
10178
+ "properties": {
10179
+ "window": {
10180
+ "type": "object",
10181
+ "properties": {
10182
+ "startAt": {
10183
+ "type": "string",
10184
+ "format": "date-time",
10185
+ "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)))$"
10186
+ },
10187
+ "endAt": {
10188
+ "type": "string",
10189
+ "format": "date-time",
10190
+ "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)))$"
10191
+ }
10192
+ },
10193
+ "required": [
10194
+ "startAt",
10195
+ "endAt"
10196
+ ],
10197
+ "additionalProperties": false
10198
+ },
10199
+ "coverage": {
10200
+ "type": "string",
10201
+ "enum": [
10202
+ "complete",
10203
+ "partial"
10204
+ ]
10205
+ },
10206
+ "eventCount": {
10207
+ "type": "integer",
10208
+ "minimum": 0,
10209
+ "maximum": 9007199254740991
10210
+ },
10211
+ "activeDays": {
10212
+ "type": "integer",
10213
+ "minimum": 0,
10214
+ "maximum": 9007199254740991
10215
+ },
10216
+ "activeWeeks": {
10217
+ "type": "integer",
10218
+ "minimum": 0,
10219
+ "maximum": 53
10220
+ },
10221
+ "firstObservedAt": {
10222
+ "anyOf": [
10223
+ {
10224
+ "type": "string",
10225
+ "format": "date-time",
10226
+ "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)))$"
10227
+ },
10228
+ {
10229
+ "type": "null"
10230
+ }
10231
+ ]
10232
+ },
10233
+ "lastObservedAt": {
10234
+ "anyOf": [
10235
+ {
10236
+ "type": "string",
10237
+ "format": "date-time",
10238
+ "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)))$"
10239
+ },
10240
+ {
10241
+ "type": "null"
10242
+ }
10243
+ ]
10244
+ },
10245
+ "weeklyUsage": {
10246
+ "maxItems": 53,
10247
+ "type": "array",
10248
+ "items": {
10249
+ "oneOf": [
10250
+ {
10251
+ "type": "object",
10252
+ "properties": {
10253
+ "weekStartAt": {
10254
+ "type": "string",
10255
+ "format": "date-time",
10256
+ "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)))$"
10257
+ },
10258
+ "coverage": {
10259
+ "type": "string",
10260
+ "enum": [
10261
+ "complete",
10262
+ "partial"
10263
+ ]
10264
+ },
10265
+ "eventCount": {
10266
+ "type": "integer",
10267
+ "minimum": 0,
10268
+ "maximum": 9007199254740991
10269
+ },
10270
+ "activeDays": {
10271
+ "type": "integer",
10272
+ "minimum": 0,
10273
+ "maximum": 7
10274
+ }
10275
+ },
10276
+ "required": [
10277
+ "weekStartAt",
10278
+ "coverage",
10279
+ "eventCount",
10280
+ "activeDays"
10281
+ ],
10282
+ "additionalProperties": false
10283
+ },
10284
+ {
10285
+ "type": "object",
10286
+ "properties": {
10287
+ "weekStartAt": {
10288
+ "type": "string",
10289
+ "format": "date-time",
10290
+ "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)))$"
10291
+ },
10292
+ "coverage": {
10293
+ "type": "string",
10294
+ "const": "unavailable"
10295
+ }
10296
+ },
10297
+ "required": [
10298
+ "weekStartAt",
10299
+ "coverage"
10300
+ ],
10301
+ "additionalProperties": false
10302
+ }
10303
+ ]
10304
+ }
10305
+ }
10306
+ },
10307
+ "required": [
10308
+ "window",
10309
+ "coverage",
10310
+ "eventCount",
10311
+ "activeDays",
10312
+ "activeWeeks",
10313
+ "firstObservedAt",
10314
+ "lastObservedAt"
10315
+ ],
10316
+ "additionalProperties": false
10317
+ },
10318
+ {
10319
+ "type": "object",
10320
+ "properties": {
10321
+ "window": {
10322
+ "type": "object",
10323
+ "properties": {
10324
+ "startAt": {
10325
+ "type": "string",
10326
+ "format": "date-time",
10327
+ "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)))$"
10328
+ },
10329
+ "endAt": {
10330
+ "type": "string",
10331
+ "format": "date-time",
10332
+ "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)))$"
10333
+ }
10334
+ },
10335
+ "required": [
10336
+ "startAt",
10337
+ "endAt"
10338
+ ],
10339
+ "additionalProperties": false
10340
+ },
10341
+ "coverage": {
10342
+ "type": "string",
10343
+ "const": "unavailable"
10344
+ },
10345
+ "reason": {
10346
+ "type": "string",
10347
+ "enum": [
10348
+ "SOURCE_BLOCKED",
10349
+ "SOURCE_NOT_READY",
10350
+ "QUERY_FAILED"
10351
+ ]
10352
+ }
10353
+ },
10354
+ "required": [
10355
+ "window",
10356
+ "coverage",
10357
+ "reason"
10358
+ ],
10359
+ "additionalProperties": false
10360
+ }
10361
+ ]
10362
+ }
10363
+ },
10364
+ "required": [
10365
+ "id",
10366
+ "revision",
10367
+ "sourceKey",
10368
+ "featureKey",
10369
+ "name",
10370
+ "rule",
10371
+ "evidence"
10372
+ ],
10373
+ "additionalProperties": false
10374
+ }
10375
+ }
10376
+ },
10377
+ "required": [
10378
+ "customer",
10379
+ "features"
10380
+ ],
10381
+ "additionalProperties": false
10382
+ }
10383
+ },
10384
+ "outlit_list_attention_items": {
10385
+ "toolName": "outlit_list_attention_items",
10386
+ "commandId": "attention.list",
10387
+ "commandVersion": 1,
10388
+ "ownerDomain": "attention",
10389
+ "title": "List Attention Items",
10390
+ "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.",
10391
+ "inputSchema": {
10392
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10393
+ "type": "object",
10394
+ "properties": {
10395
+ "status": {
10396
+ "description": "Attention lifecycle to list (default: open)",
10397
+ "default": "open",
10398
+ "type": "string",
10399
+ "enum": [
10400
+ "open",
10401
+ "resolved"
10402
+ ]
10403
+ },
10404
+ "customerId": {
10405
+ "description": "Filter by exact customer ID",
10406
+ "type": "string",
10407
+ "format": "uuid",
10408
+ "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)$"
10409
+ },
10410
+ "limit": {
10411
+ "description": "Results per page (default: 25, max: 100)",
10412
+ "default": 25,
10413
+ "type": "integer",
10414
+ "minimum": 1,
10415
+ "maximum": 100
10416
+ },
10417
+ "cursor": {
10418
+ "description": "Opaque cursor from a previous response with the same filters",
10419
+ "type": "string",
10420
+ "minLength": 1,
10421
+ "maxLength": 2e3
10422
+ }
10423
+ },
10424
+ "additionalProperties": false
10425
+ },
10426
+ "outputSchema": {
10427
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10428
+ "type": "object",
10429
+ "properties": {
10430
+ "items": {
10431
+ "maxItems": 100,
10432
+ "type": "array",
10433
+ "items": {
10434
+ "type": "object",
10435
+ "properties": {
10436
+ "id": {
10437
+ "type": "string",
10438
+ "minLength": 1,
10439
+ "maxLength": 500
10440
+ },
10441
+ "customer": {
10442
+ "type": "object",
10443
+ "properties": {
10444
+ "id": {
10445
+ "type": "string",
10446
+ "minLength": 1,
10447
+ "maxLength": 500
10448
+ },
10449
+ "name": {
10450
+ "type": "string",
10451
+ "minLength": 1,
10452
+ "maxLength": 500
10453
+ },
10454
+ "domain": {
10455
+ "type": "string",
10456
+ "maxLength": 253
10457
+ },
10458
+ "ownerName": {
10459
+ "anyOf": [
10460
+ {
10461
+ "type": "string",
10462
+ "minLength": 1,
10463
+ "maxLength": 500
10464
+ },
10465
+ {
10466
+ "type": "null"
10467
+ }
10468
+ ]
10469
+ }
10470
+ },
10471
+ "required": [
10472
+ "id",
10473
+ "name",
10474
+ "domain",
10475
+ "ownerName"
10476
+ ],
10477
+ "additionalProperties": false
10478
+ },
10479
+ "title": {
10480
+ "type": "string",
10481
+ "minLength": 1,
10482
+ "maxLength": 240
10483
+ },
10484
+ "priority": {
10485
+ "type": "string",
10486
+ "enum": [
10487
+ "NORMAL",
10488
+ "HIGH",
10489
+ "URGENT"
10490
+ ]
10491
+ },
10492
+ "evidenceCount": {
10493
+ "type": "integer",
10494
+ "minimum": 0,
10495
+ "maximum": 50
10496
+ },
10497
+ "lifecycle": {
10498
+ "type": "object",
10499
+ "properties": {
10500
+ "status": {
10501
+ "type": "string",
10502
+ "enum": [
10503
+ "open",
10504
+ "resolved"
10505
+ ]
10506
+ },
10507
+ "customerVisibleAt": {
10508
+ "type": "string",
10509
+ "format": "date-time",
10510
+ "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))$"
10511
+ },
10512
+ "resolvedAt": {
10513
+ "anyOf": [
10514
+ {
10515
+ "type": "string",
10516
+ "format": "date-time",
10517
+ "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))$"
10518
+ },
10519
+ {
10520
+ "type": "null"
10521
+ }
10522
+ ]
10523
+ },
10524
+ "reopenedAt": {
10525
+ "anyOf": [
10526
+ {
10527
+ "type": "string",
10528
+ "format": "date-time",
10529
+ "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))$"
10530
+ },
10531
+ {
10532
+ "type": "null"
10533
+ }
10534
+ ]
10535
+ },
10536
+ "createdAt": {
10537
+ "type": "string",
10538
+ "format": "date-time",
10539
+ "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))$"
10540
+ },
10541
+ "updatedAt": {
10542
+ "type": "string",
10543
+ "format": "date-time",
10544
+ "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))$"
10545
+ },
10546
+ "materialUpdateAt": {
10547
+ "anyOf": [
10548
+ {
10549
+ "type": "string",
10550
+ "format": "date-time",
10551
+ "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))$"
10552
+ },
10553
+ {
10554
+ "type": "null"
10555
+ }
10556
+ ]
10557
+ }
10558
+ },
10559
+ "required": [
10560
+ "status",
10561
+ "customerVisibleAt",
10562
+ "resolvedAt",
10563
+ "reopenedAt",
10564
+ "createdAt",
10565
+ "updatedAt",
10566
+ "materialUpdateAt"
10567
+ ],
10568
+ "additionalProperties": false
10569
+ },
10570
+ "accountImportance": {
10571
+ "type": "object",
10572
+ "properties": {
10573
+ "arrCents": {
10574
+ "anyOf": [
10575
+ {
10576
+ "type": "number",
10577
+ "minimum": 0
10578
+ },
10579
+ {
10580
+ "type": "null"
10581
+ }
10582
+ ]
10583
+ },
10584
+ "currency": {
10585
+ "anyOf": [
10586
+ {
10587
+ "type": "string",
10588
+ "pattern": "^[A-Z]{3}$"
10589
+ },
10590
+ {
10591
+ "type": "null"
10592
+ }
10593
+ ]
10594
+ },
10595
+ "arrShareWithinCurrency": {
10596
+ "anyOf": [
10597
+ {
10598
+ "type": "number",
10599
+ "minimum": 0,
10600
+ "maximum": 1
10601
+ },
10602
+ {
10603
+ "type": "null"
10604
+ }
10605
+ ],
10606
+ "description": "Organization ARR share among customers using the same currency"
10607
+ },
10608
+ "arrPercentileWithinCurrency": {
10609
+ "anyOf": [
10610
+ {
10611
+ "type": "number",
10612
+ "minimum": 0,
10613
+ "maximum": 100
10614
+ },
10615
+ {
10616
+ "type": "null"
10617
+ }
10618
+ ],
10619
+ "description": "ARR percentile among customers using the same currency"
10620
+ },
10621
+ "segments": {
10622
+ "maxItems": 50,
10623
+ "type": "array",
10624
+ "items": {
10625
+ "type": "string",
10626
+ "minLength": 1,
10627
+ "maxLength": 240
10628
+ }
10629
+ }
10630
+ },
10631
+ "required": [
10632
+ "arrCents",
10633
+ "currency",
10634
+ "arrShareWithinCurrency",
10635
+ "arrPercentileWithinCurrency",
10636
+ "segments"
10637
+ ],
10638
+ "additionalProperties": false
10639
+ },
10640
+ "preparedActionUrl": {
10641
+ "anyOf": [
10642
+ {
10643
+ "type": "string",
10644
+ "maxLength": 2e3,
10645
+ "format": "uri"
10646
+ },
10647
+ {
10648
+ "type": "null"
10649
+ }
10650
+ ]
10651
+ }
10652
+ },
10653
+ "required": [
10654
+ "id",
10655
+ "customer",
10656
+ "title",
10657
+ "priority",
10658
+ "evidenceCount",
10659
+ "lifecycle",
10660
+ "accountImportance",
10661
+ "preparedActionUrl"
10662
+ ],
10663
+ "additionalProperties": false
10664
+ }
10665
+ },
10666
+ "pagination": {
10667
+ "type": "object",
10668
+ "properties": {
10669
+ "hasMore": {
10670
+ "type": "boolean"
10671
+ },
10672
+ "nextCursor": {
10673
+ "anyOf": [
10674
+ {
10675
+ "type": "string",
10676
+ "minLength": 1,
10677
+ "maxLength": 2e3
10678
+ },
10679
+ {
10680
+ "type": "null"
10681
+ }
10682
+ ]
10683
+ },
10684
+ "total": {
10685
+ "type": "integer",
10686
+ "minimum": 0,
10687
+ "maximum": 9007199254740991
10688
+ }
10689
+ },
10690
+ "required": [
10691
+ "hasMore",
10692
+ "nextCursor",
10693
+ "total"
10694
+ ],
10695
+ "additionalProperties": false
10696
+ }
10697
+ },
10698
+ "required": [
10699
+ "items",
10700
+ "pagination"
10701
+ ],
10702
+ "additionalProperties": false
10703
+ }
10704
+ },
10705
+ "outlit_get_attention_item": {
10706
+ "toolName": "outlit_get_attention_item",
10707
+ "commandId": "attention.get",
10708
+ "commandVersion": 1,
10709
+ "ownerDomain": "attention",
10710
+ "title": "Get Attention Item",
10711
+ "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.",
10712
+ "inputSchema": {
10713
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10714
+ "type": "object",
10715
+ "properties": {
10716
+ "id": {
10717
+ "type": "string",
10718
+ "format": "uuid",
10719
+ "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)$",
10720
+ "description": "Exact Attention item ID"
10721
+ }
10722
+ },
10723
+ "required": [
10724
+ "id"
10725
+ ],
10726
+ "additionalProperties": false
10727
+ },
10728
+ "outputSchema": {
10729
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
10730
+ "type": "object",
10731
+ "properties": {
10732
+ "id": {
10733
+ "type": "string",
10734
+ "minLength": 1,
10735
+ "maxLength": 500
10736
+ },
10737
+ "customer": {
10738
+ "type": "object",
10739
+ "properties": {
10740
+ "id": {
10741
+ "type": "string",
10742
+ "minLength": 1,
10743
+ "maxLength": 500
10744
+ },
10745
+ "name": {
10746
+ "type": "string",
10747
+ "minLength": 1,
10748
+ "maxLength": 500
10749
+ },
10750
+ "domain": {
10751
+ "type": "string",
10752
+ "maxLength": 253
10753
+ },
10754
+ "ownerName": {
10755
+ "anyOf": [
10756
+ {
10757
+ "type": "string",
10758
+ "minLength": 1,
10759
+ "maxLength": 500
10760
+ },
10761
+ {
10762
+ "type": "null"
10763
+ }
10764
+ ]
10765
+ }
10766
+ },
10767
+ "required": [
10768
+ "id",
10769
+ "name",
10770
+ "domain",
10771
+ "ownerName"
10772
+ ],
10773
+ "additionalProperties": false
10774
+ },
10775
+ "title": {
10776
+ "type": "string",
10777
+ "minLength": 1,
10778
+ "maxLength": 240
10779
+ },
10780
+ "priority": {
10781
+ "type": "string",
10782
+ "enum": [
10783
+ "NORMAL",
10784
+ "HIGH",
10785
+ "URGENT"
10786
+ ]
10787
+ },
10788
+ "evidenceCount": {
10789
+ "type": "integer",
10790
+ "minimum": 0,
10791
+ "maximum": 50
10792
+ },
10793
+ "lifecycle": {
10794
+ "type": "object",
10795
+ "properties": {
10796
+ "status": {
10797
+ "type": "string",
10798
+ "enum": [
10799
+ "open",
10800
+ "resolved"
10801
+ ]
10802
+ },
10803
+ "customerVisibleAt": {
10804
+ "type": "string",
10805
+ "format": "date-time",
10806
+ "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))$"
10807
+ },
10808
+ "resolvedAt": {
10809
+ "anyOf": [
10810
+ {
10811
+ "type": "string",
10812
+ "format": "date-time",
10813
+ "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))$"
10814
+ },
10815
+ {
10816
+ "type": "null"
9276
10817
  }
9277
10818
  ]
9278
10819
  },
9279
- "status": {
10820
+ "reopenedAt": {
10821
+ "anyOf": [
10822
+ {
10823
+ "type": "string",
10824
+ "format": "date-time",
10825
+ "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))$"
10826
+ },
10827
+ {
10828
+ "type": "null"
10829
+ }
10830
+ ]
10831
+ },
10832
+ "createdAt": {
9280
10833
  "type": "string",
9281
- "const": "ENABLED"
10834
+ "format": "date-time",
10835
+ "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))$"
9282
10836
  },
9283
- "evaluationMode": {
10837
+ "updatedAt": {
9284
10838
  "type": "string",
9285
- "const": "SHADOW"
10839
+ "format": "date-time",
10840
+ "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))$"
10841
+ },
10842
+ "materialUpdateAt": {
10843
+ "anyOf": [
10844
+ {
10845
+ "type": "string",
10846
+ "format": "date-time",
10847
+ "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))$"
10848
+ },
10849
+ {
10850
+ "type": "null"
10851
+ }
10852
+ ]
10853
+ }
10854
+ },
10855
+ "required": [
10856
+ "status",
10857
+ "customerVisibleAt",
10858
+ "resolvedAt",
10859
+ "reopenedAt",
10860
+ "createdAt",
10861
+ "updatedAt",
10862
+ "materialUpdateAt"
10863
+ ],
10864
+ "additionalProperties": false
10865
+ },
10866
+ "accountImportance": {
10867
+ "type": "object",
10868
+ "properties": {
10869
+ "arrCents": {
10870
+ "anyOf": [
10871
+ {
10872
+ "type": "number",
10873
+ "minimum": 0
10874
+ },
10875
+ {
10876
+ "type": "null"
10877
+ }
10878
+ ]
10879
+ },
10880
+ "currency": {
10881
+ "anyOf": [
10882
+ {
10883
+ "type": "string",
10884
+ "pattern": "^[A-Z]{3}$"
10885
+ },
10886
+ {
10887
+ "type": "null"
10888
+ }
10889
+ ]
10890
+ },
10891
+ "arrShareWithinCurrency": {
10892
+ "anyOf": [
10893
+ {
10894
+ "type": "number",
10895
+ "minimum": 0,
10896
+ "maximum": 1
10897
+ },
10898
+ {
10899
+ "type": "null"
10900
+ }
10901
+ ],
10902
+ "description": "Organization ARR share among customers using the same currency"
10903
+ },
10904
+ "arrPercentileWithinCurrency": {
10905
+ "anyOf": [
10906
+ {
10907
+ "type": "number",
10908
+ "minimum": 0,
10909
+ "maximum": 100
10910
+ },
10911
+ {
10912
+ "type": "null"
10913
+ }
10914
+ ],
10915
+ "description": "ARR percentile among customers using the same currency"
9286
10916
  },
9287
- "definitions": {
9288
- "minItems": 2,
9289
- "maxItems": 2,
10917
+ "segments": {
10918
+ "maxItems": 50,
9290
10919
  "type": "array",
9291
10920
  "items": {
9292
- "type": "object",
9293
- "properties": {
9294
- "id": {
9295
- "type": "string",
9296
- "format": "uuid",
9297
- "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)$"
9298
- },
9299
- "metricKey": {
9300
- "type": "string",
9301
- "minLength": 1,
9302
- "maxLength": 191
9303
- },
9304
- "aggregation": {
9305
- "type": "string",
9306
- "enum": [
9307
- "active_days",
9308
- "event_count"
9309
- ]
9310
- }
9311
- },
9312
- "required": [
9313
- "id",
9314
- "metricKey",
9315
- "aggregation"
9316
- ],
9317
- "additionalProperties": false
10921
+ "type": "string",
10922
+ "minLength": 1,
10923
+ "maxLength": 240
9318
10924
  }
9319
10925
  }
9320
10926
  },
9321
10927
  "required": [
9322
- "sourceKey",
9323
- "behaviorKey",
9324
- "label",
9325
- "eventSelection",
9326
- "status",
9327
- "evaluationMode",
9328
- "definitions"
10928
+ "arrCents",
10929
+ "currency",
10930
+ "arrShareWithinCurrency",
10931
+ "arrPercentileWithinCurrency",
10932
+ "segments"
9329
10933
  ],
9330
10934
  "additionalProperties": false
10935
+ },
10936
+ "preparedActionUrl": {
10937
+ "anyOf": [
10938
+ {
10939
+ "type": "string",
10940
+ "maxLength": 2e3,
10941
+ "format": "uri"
10942
+ },
10943
+ {
10944
+ "type": "null"
10945
+ }
10946
+ ]
10947
+ },
10948
+ "whatChanged": {
10949
+ "type": "string",
10950
+ "minLength": 1,
10951
+ "maxLength": 8e3
10952
+ },
10953
+ "whyItMatters": {
10954
+ "type": "string",
10955
+ "minLength": 1,
10956
+ "maxLength": 8e3
10957
+ },
10958
+ "uncertainty": {
10959
+ "anyOf": [
10960
+ {
10961
+ "type": "string",
10962
+ "minLength": 1,
10963
+ "maxLength": 8e3
10964
+ },
10965
+ {
10966
+ "type": "null"
10967
+ }
10968
+ ]
10969
+ },
10970
+ "priorityReason": {
10971
+ "type": "string",
10972
+ "minLength": 1,
10973
+ "maxLength": 8e3
10974
+ },
10975
+ "timeline": {
10976
+ "maxItems": 20,
10977
+ "type": "array",
10978
+ "items": {
10979
+ "type": "object",
10980
+ "properties": {
10981
+ "title": {
10982
+ "type": "string",
10983
+ "minLength": 1,
10984
+ "maxLength": 240
10985
+ },
10986
+ "explanation": {
10987
+ "type": "string",
10988
+ "minLength": 1,
10989
+ "maxLength": 4e3
10990
+ },
10991
+ "observedAt": {
10992
+ "type": "string",
10993
+ "format": "date-time",
10994
+ "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))$"
10995
+ }
10996
+ },
10997
+ "required": [
10998
+ "title",
10999
+ "explanation",
11000
+ "observedAt"
11001
+ ],
11002
+ "additionalProperties": false
11003
+ }
11004
+ },
11005
+ "evidence": {
11006
+ "maxItems": 20,
11007
+ "type": "array",
11008
+ "items": {
11009
+ "type": "object",
11010
+ "properties": {
11011
+ "role": {
11012
+ "type": "string",
11013
+ "enum": [
11014
+ "supporting",
11015
+ "contradictory",
11016
+ "context"
11017
+ ]
11018
+ },
11019
+ "kind": {
11020
+ "type": "string",
11021
+ "enum": [
11022
+ "metric",
11023
+ "communication",
11024
+ "record",
11025
+ "event"
11026
+ ]
11027
+ },
11028
+ "title": {
11029
+ "type": "string",
11030
+ "minLength": 1,
11031
+ "maxLength": 500
11032
+ },
11033
+ "observedAt": {
11034
+ "anyOf": [
11035
+ {
11036
+ "type": "string",
11037
+ "format": "date-time",
11038
+ "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))$"
11039
+ },
11040
+ {
11041
+ "type": "null"
11042
+ }
11043
+ ]
11044
+ },
11045
+ "window": {
11046
+ "anyOf": [
11047
+ {
11048
+ "type": "object",
11049
+ "properties": {
11050
+ "start": {
11051
+ "type": "string",
11052
+ "format": "date-time",
11053
+ "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))$"
11054
+ },
11055
+ "end": {
11056
+ "type": "string",
11057
+ "format": "date-time",
11058
+ "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))$"
11059
+ }
11060
+ },
11061
+ "required": [
11062
+ "start",
11063
+ "end"
11064
+ ],
11065
+ "additionalProperties": false
11066
+ },
11067
+ {
11068
+ "type": "null"
11069
+ }
11070
+ ]
11071
+ },
11072
+ "sourceLabel": {
11073
+ "type": "string",
11074
+ "minLength": 1,
11075
+ "maxLength": 240
11076
+ }
11077
+ },
11078
+ "required": [
11079
+ "role",
11080
+ "kind",
11081
+ "title",
11082
+ "observedAt",
11083
+ "window",
11084
+ "sourceLabel"
11085
+ ],
11086
+ "additionalProperties": false
11087
+ }
11088
+ },
11089
+ "latestUpdate": {
11090
+ "anyOf": [
11091
+ {
11092
+ "type": "object",
11093
+ "properties": {
11094
+ "updatedAt": {
11095
+ "type": "string",
11096
+ "format": "date-time",
11097
+ "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))$"
11098
+ },
11099
+ "summary": {
11100
+ "type": "string",
11101
+ "minLength": 1,
11102
+ "maxLength": 8e3
11103
+ }
11104
+ },
11105
+ "required": [
11106
+ "updatedAt",
11107
+ "summary"
11108
+ ],
11109
+ "additionalProperties": false
11110
+ },
11111
+ {
11112
+ "type": "null"
11113
+ }
11114
+ ]
9331
11115
  }
9332
11116
  },
9333
11117
  "required": [
9334
- "created",
9335
- "metric"
11118
+ "id",
11119
+ "customer",
11120
+ "title",
11121
+ "priority",
11122
+ "evidenceCount",
11123
+ "lifecycle",
11124
+ "accountImportance",
11125
+ "preparedActionUrl",
11126
+ "whatChanged",
11127
+ "whyItMatters",
11128
+ "uncertainty",
11129
+ "priorityReason",
11130
+ "timeline",
11131
+ "evidence",
11132
+ "latestUpdate"
9336
11133
  ],
9337
11134
  "additionalProperties": false
9338
11135
  }
@@ -9385,6 +11182,7 @@ var consumerToolPolicies = {
9385
11182
  "outlit_list_users",
9386
11183
  "outlit_list_workspace_users",
9387
11184
  "outlit_get_customer",
11185
+ "outlit_get_customer_relationship",
9388
11186
  "outlit_assign_customer_owner",
9389
11187
  "outlit_grant_customer_access",
9390
11188
  "outlit_update_customer_access",
@@ -9413,13 +11211,20 @@ var consumerToolPolicies = {
9413
11211
  "outlit_preview_customer_activation",
9414
11212
  "outlit_update_customer_activation",
9415
11213
  "outlit_get_workspace_settings",
9416
- "outlit_update_workspace_settings"
11214
+ "outlit_update_workspace_settings",
11215
+ "outlit_list_features",
11216
+ "outlit_create_feature",
11217
+ "outlit_archive_feature",
11218
+ "outlit_get_customer_features",
11219
+ "outlit_list_attention_items",
11220
+ "outlit_get_attention_item"
9417
11221
  ],
9418
11222
  "cli": [
9419
11223
  "outlit_list_customers",
9420
11224
  "outlit_list_users",
9421
11225
  "outlit_list_workspace_users",
9422
11226
  "outlit_get_customer",
11227
+ "outlit_get_customer_relationship",
9423
11228
  "outlit_assign_customer_owner",
9424
11229
  "outlit_grant_customer_access",
9425
11230
  "outlit_update_customer_access",
@@ -9449,9 +11254,12 @@ var consumerToolPolicies = {
9449
11254
  "outlit_update_customer_activation",
9450
11255
  "outlit_get_workspace_settings",
9451
11256
  "outlit_update_workspace_settings",
9452
- "outlit_list_behavior_metric_sources",
9453
- "outlit_list_behavior_metric_events",
9454
- "outlit_create_behavior_metric"
11257
+ "outlit_list_features",
11258
+ "outlit_create_feature",
11259
+ "outlit_archive_feature",
11260
+ "outlit_get_customer_features",
11261
+ "outlit_list_attention_items",
11262
+ "outlit_get_attention_item"
9455
11263
  ]
9456
11264
  };
9457
11265
  var toolGatewayTransport = {
@@ -10721,7 +12529,7 @@ var schemaTables = [
10721
12529
  "users",
10722
12530
  "revenue"
10723
12531
  ];
10724
- var sdkConsumerContractHash = "39fe276d5127aa59cdfc0172cc44c9281beb62b1942c44094421f2a56fbb40fa";
12532
+ var sdkConsumerContractHash = "fabc5dbceb5a7c624482b138ea6cb89622f315526a44bb43068c8c66fea3fbc3";
10725
12533
 
10726
12534
  // src/contracts.ts
10727
12535
  var publicToolNameSet = new Set(publicToolNames);