@pellux/goodvibes-contracts 1.7.0 → 1.8.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.
@@ -2,8 +2,8 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "GoodVibes Operator API",
5
- "version": "1.7.0",
6
- "description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 384 cataloged methods: 353 with dedicated REST bindings, 31 reachable only through the generic invoke endpoint. 97 methods lack typed SDK client IO and are marked with `x-typed-client-io: false` — they are represented honestly, never omitted. Regenerate with `bun run openapi:generate`; drift fails `contracts:check`."
5
+ "version": "1.8.0",
6
+ "description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 386 cataloged methods: 353 with dedicated REST bindings, 33 reachable only through the generic invoke endpoint. 97 methods lack typed SDK client IO and are marked with `x-typed-client-io: false` — they are represented honestly, never omitted. Regenerate with `bun run openapi:generate`; drift fails `contracts:check`."
7
7
  },
8
8
  "servers": [
9
9
  {
@@ -162,7 +162,35 @@
162
162
  "recommendedActions": {
163
163
  "type": "array",
164
164
  "items": {
165
- "type": "string"
165
+ "type": "object",
166
+ "properties": {
167
+ "description": {
168
+ "type": "string"
169
+ },
170
+ "command": {
171
+ "type": "object",
172
+ "properties": {
173
+ "name": {
174
+ "type": "string"
175
+ },
176
+ "args": {
177
+ "type": "array",
178
+ "items": {
179
+ "type": "string"
180
+ }
181
+ }
182
+ },
183
+ "required": [
184
+ "name",
185
+ "args"
186
+ ],
187
+ "additionalProperties": false
188
+ }
189
+ },
190
+ "required": [
191
+ "description"
192
+ ],
193
+ "additionalProperties": false
166
194
  }
167
195
  },
168
196
  "routeRecords": {
@@ -271,7 +299,7 @@
271
299
  "post": {
272
300
  "operationId": "approvals.approve",
273
301
  "summary": "Approve Approval",
274
- "description": "Approve a pending approval. Optionally pass selectedHunks (edit-tool approvals only): the daemon filters the approval's own edit list to those hunk indices server-side, so every surface produces identical modified-edit args. Omitting selectedHunks approves the whole request (back-compat). An out-of-range index or a non-edit approval is rejected with a 400.",
302
+ "description": "Approve a pending approval. Optionally pass selectedHunks (edit-tool approvals only): the daemon filters the approval's own edit list to those hunk indices server-side, so every surface produces identical modified-edit args. Omitting selectedHunks approves the whole request (back-compat). An out-of-range index or a non-edit approval is rejected with a 400. rememberTier generalizes the decision (a generalizing tier persists a durable rule and sweeps queued asks it covers); modifiedArgs carries an argument-modifying approval — e.g. the typed answer to a command's terminal prompt — to the waiting call (selectedHunks supersedes it when both are present). The response's recorded block reports what the broker actually recorded.",
275
303
  "tags": [
276
304
  "approvals"
277
305
  ],
@@ -503,6 +531,36 @@
503
531
  "additionalProperties": false
504
532
  }
505
533
  ]
534
+ },
535
+ "rememberOptions": {
536
+ "type": "array",
537
+ "items": {
538
+ "type": "object",
539
+ "properties": {
540
+ "tier": {
541
+ "type": "string",
542
+ "enum": [
543
+ "session",
544
+ "exact",
545
+ "command-class",
546
+ "path",
547
+ "tool"
548
+ ]
549
+ },
550
+ "label": {
551
+ "type": "string"
552
+ },
553
+ "detail": {
554
+ "type": "string"
555
+ }
556
+ },
557
+ "required": [
558
+ "tier",
559
+ "label",
560
+ "detail"
561
+ ],
562
+ "additionalProperties": false
563
+ }
506
564
  }
507
565
  },
508
566
  "required": [
@@ -541,6 +599,19 @@
541
599
  "remember": {
542
600
  "type": "boolean"
543
601
  },
602
+ "rememberTier": {
603
+ "type": "string",
604
+ "enum": [
605
+ "session",
606
+ "exact",
607
+ "command-class",
608
+ "path",
609
+ "tool"
610
+ ]
611
+ },
612
+ "reason": {
613
+ "type": "string"
614
+ },
544
615
  "modifiedArgs": {
545
616
  "type": "object",
546
617
  "additionalProperties": {
@@ -574,6 +645,12 @@
574
645
  ],
575
646
  "additionalProperties": false
576
647
  },
648
+ "fixSessionId": {
649
+ "type": "string"
650
+ },
651
+ "fixSessionError": {
652
+ "type": "string"
653
+ },
577
654
  "metadata": {
578
655
  "type": "object",
579
656
  "additionalProperties": {
@@ -655,6 +732,44 @@
655
732
  "audit"
656
733
  ],
657
734
  "additionalProperties": false
735
+ },
736
+ "recorded": {
737
+ "type": "object",
738
+ "properties": {
739
+ "approved": {
740
+ "type": "boolean"
741
+ },
742
+ "rememberTier": {
743
+ "anyOf": [
744
+ {
745
+ "type": "string",
746
+ "enum": [
747
+ "session",
748
+ "exact",
749
+ "command-class",
750
+ "path",
751
+ "tool"
752
+ ]
753
+ },
754
+ {
755
+ "type": "null"
756
+ }
757
+ ]
758
+ },
759
+ "reasonStored": {
760
+ "type": "boolean"
761
+ },
762
+ "modifiedArgsDelivered": {
763
+ "type": "boolean"
764
+ }
765
+ },
766
+ "required": [
767
+ "approved",
768
+ "rememberTier",
769
+ "reasonStored",
770
+ "modifiedArgsDelivered"
771
+ ],
772
+ "additionalProperties": false
658
773
  }
659
774
  },
660
775
  "required": [
@@ -709,6 +824,46 @@
709
824
  "items": {
710
825
  "type": "number"
711
826
  }
827
+ },
828
+ "rememberTier": {
829
+ "type": "string",
830
+ "enum": [
831
+ "session",
832
+ "exact",
833
+ "command-class",
834
+ "path",
835
+ "tool"
836
+ ]
837
+ },
838
+ "reason": {
839
+ "type": "string"
840
+ },
841
+ "modifiedArgs": {
842
+ "type": "object",
843
+ "additionalProperties": {
844
+ "anyOf": [
845
+ {
846
+ "type": "string"
847
+ },
848
+ {
849
+ "type": "number"
850
+ },
851
+ {
852
+ "type": "boolean"
853
+ },
854
+ {
855
+ "type": "null"
856
+ },
857
+ {
858
+ "type": "object",
859
+ "additionalProperties": {}
860
+ },
861
+ {
862
+ "type": "array",
863
+ "items": {}
864
+ }
865
+ ]
866
+ }
712
867
  }
713
868
  },
714
869
  "required": [
@@ -957,6 +1112,36 @@
957
1112
  "additionalProperties": false
958
1113
  }
959
1114
  ]
1115
+ },
1116
+ "rememberOptions": {
1117
+ "type": "array",
1118
+ "items": {
1119
+ "type": "object",
1120
+ "properties": {
1121
+ "tier": {
1122
+ "type": "string",
1123
+ "enum": [
1124
+ "session",
1125
+ "exact",
1126
+ "command-class",
1127
+ "path",
1128
+ "tool"
1129
+ ]
1130
+ },
1131
+ "label": {
1132
+ "type": "string"
1133
+ },
1134
+ "detail": {
1135
+ "type": "string"
1136
+ }
1137
+ },
1138
+ "required": [
1139
+ "tier",
1140
+ "label",
1141
+ "detail"
1142
+ ],
1143
+ "additionalProperties": false
1144
+ }
960
1145
  }
961
1146
  },
962
1147
  "required": [
@@ -995,6 +1180,19 @@
995
1180
  "remember": {
996
1181
  "type": "boolean"
997
1182
  },
1183
+ "rememberTier": {
1184
+ "type": "string",
1185
+ "enum": [
1186
+ "session",
1187
+ "exact",
1188
+ "command-class",
1189
+ "path",
1190
+ "tool"
1191
+ ]
1192
+ },
1193
+ "reason": {
1194
+ "type": "string"
1195
+ },
998
1196
  "modifiedArgs": {
999
1197
  "type": "object",
1000
1198
  "additionalProperties": {
@@ -1028,6 +1226,12 @@
1028
1226
  ],
1029
1227
  "additionalProperties": false
1030
1228
  },
1229
+ "fixSessionId": {
1230
+ "type": "string"
1231
+ },
1232
+ "fixSessionError": {
1233
+ "type": "string"
1234
+ },
1031
1235
  "metadata": {
1032
1236
  "type": "object",
1033
1237
  "additionalProperties": {
@@ -1109,6 +1313,44 @@
1109
1313
  "audit"
1110
1314
  ],
1111
1315
  "additionalProperties": false
1316
+ },
1317
+ "recorded": {
1318
+ "type": "object",
1319
+ "properties": {
1320
+ "approved": {
1321
+ "type": "boolean"
1322
+ },
1323
+ "rememberTier": {
1324
+ "anyOf": [
1325
+ {
1326
+ "type": "string",
1327
+ "enum": [
1328
+ "session",
1329
+ "exact",
1330
+ "command-class",
1331
+ "path",
1332
+ "tool"
1333
+ ]
1334
+ },
1335
+ {
1336
+ "type": "null"
1337
+ }
1338
+ ]
1339
+ },
1340
+ "reasonStored": {
1341
+ "type": "boolean"
1342
+ },
1343
+ "modifiedArgsDelivered": {
1344
+ "type": "boolean"
1345
+ }
1346
+ },
1347
+ "required": [
1348
+ "approved",
1349
+ "rememberTier",
1350
+ "reasonStored",
1351
+ "modifiedArgsDelivered"
1352
+ ],
1353
+ "additionalProperties": false
1112
1354
  }
1113
1355
  },
1114
1356
  "required": [
@@ -1405,6 +1647,36 @@
1405
1647
  "additionalProperties": false
1406
1648
  }
1407
1649
  ]
1650
+ },
1651
+ "rememberOptions": {
1652
+ "type": "array",
1653
+ "items": {
1654
+ "type": "object",
1655
+ "properties": {
1656
+ "tier": {
1657
+ "type": "string",
1658
+ "enum": [
1659
+ "session",
1660
+ "exact",
1661
+ "command-class",
1662
+ "path",
1663
+ "tool"
1664
+ ]
1665
+ },
1666
+ "label": {
1667
+ "type": "string"
1668
+ },
1669
+ "detail": {
1670
+ "type": "string"
1671
+ }
1672
+ },
1673
+ "required": [
1674
+ "tier",
1675
+ "label",
1676
+ "detail"
1677
+ ],
1678
+ "additionalProperties": false
1679
+ }
1408
1680
  }
1409
1681
  },
1410
1682
  "required": [
@@ -1443,6 +1715,19 @@
1443
1715
  "remember": {
1444
1716
  "type": "boolean"
1445
1717
  },
1718
+ "rememberTier": {
1719
+ "type": "string",
1720
+ "enum": [
1721
+ "session",
1722
+ "exact",
1723
+ "command-class",
1724
+ "path",
1725
+ "tool"
1726
+ ]
1727
+ },
1728
+ "reason": {
1729
+ "type": "string"
1730
+ },
1446
1731
  "modifiedArgs": {
1447
1732
  "type": "object",
1448
1733
  "additionalProperties": {
@@ -1476,6 +1761,12 @@
1476
1761
  ],
1477
1762
  "additionalProperties": false
1478
1763
  },
1764
+ "fixSessionId": {
1765
+ "type": "string"
1766
+ },
1767
+ "fixSessionError": {
1768
+ "type": "string"
1769
+ },
1479
1770
  "metadata": {
1480
1771
  "type": "object",
1481
1772
  "additionalProperties": {
@@ -1557,6 +1848,44 @@
1557
1848
  "audit"
1558
1849
  ],
1559
1850
  "additionalProperties": false
1851
+ },
1852
+ "recorded": {
1853
+ "type": "object",
1854
+ "properties": {
1855
+ "approved": {
1856
+ "type": "boolean"
1857
+ },
1858
+ "rememberTier": {
1859
+ "anyOf": [
1860
+ {
1861
+ "type": "string",
1862
+ "enum": [
1863
+ "session",
1864
+ "exact",
1865
+ "command-class",
1866
+ "path",
1867
+ "tool"
1868
+ ]
1869
+ },
1870
+ {
1871
+ "type": "null"
1872
+ }
1873
+ ]
1874
+ },
1875
+ "reasonStored": {
1876
+ "type": "boolean"
1877
+ },
1878
+ "modifiedArgsDelivered": {
1879
+ "type": "boolean"
1880
+ }
1881
+ },
1882
+ "required": [
1883
+ "approved",
1884
+ "rememberTier",
1885
+ "reasonStored",
1886
+ "modifiedArgsDelivered"
1887
+ ],
1888
+ "additionalProperties": false
1560
1889
  }
1561
1890
  },
1562
1891
  "required": [
@@ -1615,7 +1944,7 @@
1615
1944
  "post": {
1616
1945
  "operationId": "approvals.deny",
1617
1946
  "summary": "Deny Approval",
1618
- "description": "Deny a pending approval.",
1947
+ "description": "Deny a pending approval. rememberTier generalizes the denial (a generalizing tier persists a durable deny rule and sweeps queued asks it covers); reason is the user's free-text feedback, which rides the structured declined result so the model adapts instead of guessing. The response's recorded block reports what the broker actually recorded.",
1619
1948
  "tags": [
1620
1949
  "approvals"
1621
1950
  ],
@@ -1847,6 +2176,36 @@
1847
2176
  "additionalProperties": false
1848
2177
  }
1849
2178
  ]
2179
+ },
2180
+ "rememberOptions": {
2181
+ "type": "array",
2182
+ "items": {
2183
+ "type": "object",
2184
+ "properties": {
2185
+ "tier": {
2186
+ "type": "string",
2187
+ "enum": [
2188
+ "session",
2189
+ "exact",
2190
+ "command-class",
2191
+ "path",
2192
+ "tool"
2193
+ ]
2194
+ },
2195
+ "label": {
2196
+ "type": "string"
2197
+ },
2198
+ "detail": {
2199
+ "type": "string"
2200
+ }
2201
+ },
2202
+ "required": [
2203
+ "tier",
2204
+ "label",
2205
+ "detail"
2206
+ ],
2207
+ "additionalProperties": false
2208
+ }
1850
2209
  }
1851
2210
  },
1852
2211
  "required": [
@@ -1885,6 +2244,19 @@
1885
2244
  "remember": {
1886
2245
  "type": "boolean"
1887
2246
  },
2247
+ "rememberTier": {
2248
+ "type": "string",
2249
+ "enum": [
2250
+ "session",
2251
+ "exact",
2252
+ "command-class",
2253
+ "path",
2254
+ "tool"
2255
+ ]
2256
+ },
2257
+ "reason": {
2258
+ "type": "string"
2259
+ },
1888
2260
  "modifiedArgs": {
1889
2261
  "type": "object",
1890
2262
  "additionalProperties": {
@@ -1918,6 +2290,12 @@
1918
2290
  ],
1919
2291
  "additionalProperties": false
1920
2292
  },
2293
+ "fixSessionId": {
2294
+ "type": "string"
2295
+ },
2296
+ "fixSessionError": {
2297
+ "type": "string"
2298
+ },
1921
2299
  "metadata": {
1922
2300
  "type": "object",
1923
2301
  "additionalProperties": {
@@ -1999,6 +2377,44 @@
1999
2377
  "audit"
2000
2378
  ],
2001
2379
  "additionalProperties": false
2380
+ },
2381
+ "recorded": {
2382
+ "type": "object",
2383
+ "properties": {
2384
+ "approved": {
2385
+ "type": "boolean"
2386
+ },
2387
+ "rememberTier": {
2388
+ "anyOf": [
2389
+ {
2390
+ "type": "string",
2391
+ "enum": [
2392
+ "session",
2393
+ "exact",
2394
+ "command-class",
2395
+ "path",
2396
+ "tool"
2397
+ ]
2398
+ },
2399
+ {
2400
+ "type": "null"
2401
+ }
2402
+ ]
2403
+ },
2404
+ "reasonStored": {
2405
+ "type": "boolean"
2406
+ },
2407
+ "modifiedArgsDelivered": {
2408
+ "type": "boolean"
2409
+ }
2410
+ },
2411
+ "required": [
2412
+ "approved",
2413
+ "rememberTier",
2414
+ "reasonStored",
2415
+ "modifiedArgsDelivered"
2416
+ ],
2417
+ "additionalProperties": false
2002
2418
  }
2003
2419
  },
2004
2420
  "required": [
@@ -2047,6 +2463,19 @@
2047
2463
  },
2048
2464
  "remember": {
2049
2465
  "type": "boolean"
2466
+ },
2467
+ "rememberTier": {
2468
+ "type": "string",
2469
+ "enum": [
2470
+ "session",
2471
+ "exact",
2472
+ "command-class",
2473
+ "path",
2474
+ "tool"
2475
+ ]
2476
+ },
2477
+ "reason": {
2478
+ "type": "string"
2050
2479
  }
2051
2480
  },
2052
2481
  "required": [
@@ -2140,6 +2569,8 @@
2140
2569
  "session_cached_approval",
2141
2570
  "session_cached_denial",
2142
2571
  "safety_guardrail",
2572
+ "user_rule_allow",
2573
+ "user_rule_deny",
2143
2574
  "user_approved",
2144
2575
  "user_denied"
2145
2576
  ]
@@ -2152,6 +2583,7 @@
2152
2583
  "runtime_mode",
2153
2584
  "session_override",
2154
2585
  "safety_check",
2586
+ "user_rule",
2155
2587
  "user_prompt"
2156
2588
  ]
2157
2589
  },
@@ -2424,6 +2856,36 @@
2424
2856
  "additionalProperties": false
2425
2857
  }
2426
2858
  ]
2859
+ },
2860
+ "rememberOptions": {
2861
+ "type": "array",
2862
+ "items": {
2863
+ "type": "object",
2864
+ "properties": {
2865
+ "tier": {
2866
+ "type": "string",
2867
+ "enum": [
2868
+ "session",
2869
+ "exact",
2870
+ "command-class",
2871
+ "path",
2872
+ "tool"
2873
+ ]
2874
+ },
2875
+ "label": {
2876
+ "type": "string"
2877
+ },
2878
+ "detail": {
2879
+ "type": "string"
2880
+ }
2881
+ },
2882
+ "required": [
2883
+ "tier",
2884
+ "label",
2885
+ "detail"
2886
+ ],
2887
+ "additionalProperties": false
2888
+ }
2427
2889
  }
2428
2890
  },
2429
2891
  "required": [
@@ -2462,6 +2924,19 @@
2462
2924
  "remember": {
2463
2925
  "type": "boolean"
2464
2926
  },
2927
+ "rememberTier": {
2928
+ "type": "string",
2929
+ "enum": [
2930
+ "session",
2931
+ "exact",
2932
+ "command-class",
2933
+ "path",
2934
+ "tool"
2935
+ ]
2936
+ },
2937
+ "reason": {
2938
+ "type": "string"
2939
+ },
2465
2940
  "modifiedArgs": {
2466
2941
  "type": "object",
2467
2942
  "additionalProperties": {
@@ -2495,6 +2970,12 @@
2495
2970
  ],
2496
2971
  "additionalProperties": false
2497
2972
  },
2973
+ "fixSessionId": {
2974
+ "type": "string"
2975
+ },
2976
+ "fixSessionError": {
2977
+ "type": "string"
2978
+ },
2498
2979
  "metadata": {
2499
2980
  "type": "object",
2500
2981
  "additionalProperties": {
@@ -6947,6 +7428,22 @@
6947
7428
  ],
6948
7429
  "additionalProperties": true
6949
7430
  }
7431
+ },
7432
+ "emptyState": {
7433
+ "type": "object",
7434
+ "properties": {
7435
+ "title": {
7436
+ "type": "string"
7437
+ },
7438
+ "body": {
7439
+ "type": "string"
7440
+ }
7441
+ },
7442
+ "required": [
7443
+ "title",
7444
+ "body"
7445
+ ],
7446
+ "additionalProperties": false
6950
7447
  }
6951
7448
  },
6952
7449
  "required": [
@@ -24020,6 +24517,15 @@
24020
24517
  },
24021
24518
  "fixSessionId": {
24022
24519
  "type": "string"
24520
+ },
24521
+ "fixSessionError": {
24522
+ "type": "string"
24523
+ },
24524
+ "fixSessionOffered": {
24525
+ "type": "boolean"
24526
+ },
24527
+ "retired": {
24528
+ "type": "boolean"
24023
24529
  }
24024
24530
  },
24025
24531
  "required": [
@@ -28620,7 +29126,7 @@
28620
29126
  "get": {
28621
29127
  "operationId": "control.status",
28622
29128
  "summary": "Daemon Status",
28623
- "description": "Return daemon status and version.",
29129
+ "description": "Return daemon status and version. Pass receipts=consume to also receive undelivered daemon receipts (update/crash/migration notices) and mark them delivered — exactly once across all consuming readers. Without the flag no receipts are returned or consumed, so identity probes and keepalives never eat them.",
28624
29130
  "tags": [
28625
29131
  "control-plane"
28626
29132
  ],
@@ -28637,6 +29143,29 @@
28637
29143
  },
28638
29144
  "version": {
28639
29145
  "type": "string"
29146
+ },
29147
+ "receipts": {
29148
+ "type": "array",
29149
+ "items": {
29150
+ "type": "object",
29151
+ "properties": {
29152
+ "id": {
29153
+ "type": "string"
29154
+ },
29155
+ "text": {
29156
+ "type": "string"
29157
+ },
29158
+ "at": {
29159
+ "type": "number"
29160
+ }
29161
+ },
29162
+ "required": [
29163
+ "id",
29164
+ "text",
29165
+ "at"
29166
+ ],
29167
+ "additionalProperties": false
29168
+ }
28640
29169
  }
28641
29170
  },
28642
29171
  "required": [
@@ -28660,6 +29189,20 @@
28660
29189
  ],
28661
29190
  "x-scopes": [
28662
29191
  "read:control-plane"
29192
+ ],
29193
+ "parameters": [
29194
+ {
29195
+ "name": "receipts",
29196
+ "in": "query",
29197
+ "required": false,
29198
+ "schema": {
29199
+ "type": "string",
29200
+ "enum": [
29201
+ "consume"
29202
+ ],
29203
+ "description": "Set to \"consume\" to receive undelivered daemon receipts and mark them delivered. Omit for a read that never consumes receipts."
29204
+ }
29205
+ }
28663
29206
  ]
28664
29207
  }
28665
29208
  },
@@ -66251,12 +66794,24 @@
66251
66794
  "enum": [
66252
66795
  "USD"
66253
66796
  ]
66797
+ },
66798
+ "source": {
66799
+ "type": "string",
66800
+ "enum": [
66801
+ "user",
66802
+ "provider",
66803
+ "catalog"
66804
+ ]
66805
+ },
66806
+ "asOf": {
66807
+ "type": "string"
66254
66808
  }
66255
66809
  },
66256
66810
  "required": [
66257
66811
  "inputPerMillionTokens",
66258
66812
  "outputPerMillionTokens",
66259
- "currency"
66813
+ "currency",
66814
+ "source"
66260
66815
  ],
66261
66816
  "additionalProperties": false
66262
66817
  }
@@ -66605,12 +67160,24 @@
66605
67160
  "enum": [
66606
67161
  "USD"
66607
67162
  ]
67163
+ },
67164
+ "source": {
67165
+ "type": "string",
67166
+ "enum": [
67167
+ "user",
67168
+ "provider",
67169
+ "catalog"
67170
+ ]
67171
+ },
67172
+ "asOf": {
67173
+ "type": "string"
66608
67174
  }
66609
67175
  },
66610
67176
  "required": [
66611
67177
  "inputPerMillionTokens",
66612
67178
  "outputPerMillionTokens",
66613
- "currency"
67179
+ "currency",
67180
+ "source"
66614
67181
  ],
66615
67182
  "additionalProperties": false
66616
67183
  }
@@ -66688,11 +67255,16 @@
66688
67255
  "pricingSource": {
66689
67256
  "type": "string",
66690
67257
  "enum": [
67258
+ "user",
66691
67259
  "catalog",
66692
67260
  "provider",
67261
+ "mixed",
66693
67262
  "none"
66694
67263
  ]
66695
67264
  },
67265
+ "pricingAsOf": {
67266
+ "type": "string"
67267
+ },
66696
67268
  "models": {
66697
67269
  "type": "array",
66698
67270
  "items": {
@@ -66730,12 +67302,24 @@
66730
67302
  "enum": [
66731
67303
  "USD"
66732
67304
  ]
67305
+ },
67306
+ "source": {
67307
+ "type": "string",
67308
+ "enum": [
67309
+ "user",
67310
+ "provider",
67311
+ "catalog"
67312
+ ]
67313
+ },
67314
+ "asOf": {
67315
+ "type": "string"
66733
67316
  }
66734
67317
  },
66735
67318
  "required": [
66736
67319
  "inputPerMillionTokens",
66737
67320
  "outputPerMillionTokens",
66738
- "currency"
67321
+ "currency",
67322
+ "source"
66739
67323
  ],
66740
67324
  "additionalProperties": false
66741
67325
  }
@@ -79516,10 +80100,13 @@
79516
80100
  "type": {
79517
80101
  "type": "string",
79518
80102
  "enum": [
79519
- "feature-flag",
80103
+ "setting",
79520
80104
  "configuration"
79521
80105
  ]
79522
80106
  },
80107
+ "featureId": {
80108
+ "type": "string"
80109
+ },
79523
80110
  "defaultState": {
79524
80111
  "type": "string"
79525
80112
  },
@@ -79554,6 +80141,7 @@
79554
80141
  "required": [
79555
80142
  "key",
79556
80143
  "type",
80144
+ "featureId",
79557
80145
  "defaultState",
79558
80146
  "currentState",
79559
80147
  "securityRelevant",
@@ -87935,6 +88523,12 @@
87935
88523
  },
87936
88524
  "label": {
87937
88525
  "type": "string"
88526
+ },
88527
+ "origin": {
88528
+ "type": "string"
88529
+ },
88530
+ "checkpointEligible": {
88531
+ "type": "boolean"
87938
88532
  }
87939
88533
  },
87940
88534
  "required": [
@@ -87981,6 +88575,12 @@
87981
88575
  },
87982
88576
  "label": {
87983
88577
  "type": "string"
88578
+ },
88579
+ "origin": {
88580
+ "type": "string"
88581
+ },
88582
+ "checkpointEligible": {
88583
+ "type": "boolean"
87984
88584
  }
87985
88585
  },
87986
88586
  "required": [
@@ -88020,6 +88620,12 @@
88020
88620
  },
88021
88621
  "label": {
88022
88622
  "type": "string"
88623
+ },
88624
+ "origin": {
88625
+ "type": "string"
88626
+ },
88627
+ "checkpointEligible": {
88628
+ "type": "boolean"
88023
88629
  }
88024
88630
  },
88025
88631
  "required": [
@@ -88498,6 +89104,8 @@
88498
89104
  "fleet.list",
88499
89105
  "fleet.snapshot",
88500
89106
  "fleet.unarchive",
89107
+ "permissions.rules.delete",
89108
+ "permissions.rules.list",
88501
89109
  "push.subscriptions.create",
88502
89110
  "push.subscriptions.delete",
88503
89111
  "push.subscriptions.list",
@@ -91157,6 +91765,24 @@
91157
91765
  "inputSchemaCoverage": "typed",
91158
91766
  "outputSchemaCoverage": "typed"
91159
91767
  },
91768
+ {
91769
+ "id": "permissions.rules.delete",
91770
+ "category": "permissions",
91771
+ "access": "authenticated",
91772
+ "rest": null,
91773
+ "typedClientIo": true,
91774
+ "inputSchemaCoverage": "typed",
91775
+ "outputSchemaCoverage": "typed"
91776
+ },
91777
+ {
91778
+ "id": "permissions.rules.list",
91779
+ "category": "permissions",
91780
+ "access": "authenticated",
91781
+ "rest": null,
91782
+ "typedClientIo": true,
91783
+ "inputSchemaCoverage": "typed",
91784
+ "outputSchemaCoverage": "typed"
91785
+ },
91160
91786
  {
91161
91787
  "id": "principals.create",
91162
91788
  "category": "principals",