@outlit/tools 2.0.0 → 2.1.0

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