@pellux/goodvibes-contracts 1.4.1 → 1.6.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.
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "1.4.1"
6
+ "version": "1.6.0"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -26550,6 +26550,322 @@
26550
26550
  "dangerous": true,
26551
26551
  "invokable": false
26552
26552
  },
26553
+ {
26554
+ "id": "fleet.archive",
26555
+ "title": "Archive Finished Fleet Subtree",
26556
+ "description": "Move one FINISHED process subtree (root id + all descendants, every node terminal) out of the live fleet view into the session archive. Honest refusal (archived:false + reason) for an unknown id or a subtree with live members. Archived nodes stay inspectable via fleet.archived.list.",
26557
+ "category": "fleet",
26558
+ "source": "builtin",
26559
+ "access": "authenticated",
26560
+ "transport": [
26561
+ "ws"
26562
+ ],
26563
+ "scopes": [
26564
+ "write:fleet"
26565
+ ],
26566
+ "inputSchema": {
26567
+ "type": "object",
26568
+ "properties": {
26569
+ "id": {
26570
+ "type": "string"
26571
+ }
26572
+ },
26573
+ "required": [
26574
+ "id"
26575
+ ],
26576
+ "additionalProperties": false
26577
+ },
26578
+ "outputSchema": {
26579
+ "type": "object",
26580
+ "properties": {
26581
+ "archived": {
26582
+ "type": "boolean"
26583
+ },
26584
+ "count": {
26585
+ "type": "number"
26586
+ },
26587
+ "reason": {
26588
+ "type": "string"
26589
+ }
26590
+ },
26591
+ "required": [
26592
+ "archived",
26593
+ "count"
26594
+ ],
26595
+ "additionalProperties": false
26596
+ },
26597
+ "invokable": true
26598
+ },
26599
+ {
26600
+ "id": "fleet.archived.list",
26601
+ "title": "List Archived Fleet Processes",
26602
+ "description": "Return the session-archived process nodes (same node shape as fleet.snapshot; still live-derived from the source managers, so usage/cost stay current).",
26603
+ "category": "fleet",
26604
+ "source": "builtin",
26605
+ "access": "authenticated",
26606
+ "transport": [
26607
+ "ws"
26608
+ ],
26609
+ "scopes": [
26610
+ "read:fleet"
26611
+ ],
26612
+ "inputSchema": {
26613
+ "type": "object",
26614
+ "properties": {},
26615
+ "additionalProperties": false
26616
+ },
26617
+ "outputSchema": {
26618
+ "type": "object",
26619
+ "properties": {
26620
+ "capturedAt": {
26621
+ "type": "number"
26622
+ },
26623
+ "nodes": {
26624
+ "type": "array",
26625
+ "items": {
26626
+ "type": "object",
26627
+ "properties": {
26628
+ "id": {
26629
+ "type": "string"
26630
+ },
26631
+ "kind": {
26632
+ "type": "string",
26633
+ "enum": [
26634
+ "agent",
26635
+ "wrfc-chain",
26636
+ "wrfc-subtask",
26637
+ "workflow",
26638
+ "trigger",
26639
+ "schedule",
26640
+ "watcher",
26641
+ "background-process",
26642
+ "workstream",
26643
+ "phase",
26644
+ "work-item",
26645
+ "code-index"
26646
+ ]
26647
+ },
26648
+ "parentId": {
26649
+ "type": "string"
26650
+ },
26651
+ "label": {
26652
+ "type": "string"
26653
+ },
26654
+ "task": {
26655
+ "type": "string"
26656
+ },
26657
+ "state": {
26658
+ "type": "string",
26659
+ "enum": [
26660
+ "thinking",
26661
+ "executing-tool",
26662
+ "awaiting-approval",
26663
+ "streaming",
26664
+ "stalled",
26665
+ "retrying",
26666
+ "done",
26667
+ "failed",
26668
+ "killed",
26669
+ "interrupted",
26670
+ "idle",
26671
+ "queued",
26672
+ "paused"
26673
+ ]
26674
+ },
26675
+ "startedAt": {
26676
+ "type": "number"
26677
+ },
26678
+ "completedAt": {
26679
+ "type": "number"
26680
+ },
26681
+ "elapsedMs": {
26682
+ "type": "number"
26683
+ },
26684
+ "usage": {
26685
+ "type": "object",
26686
+ "properties": {
26687
+ "inputTokens": {
26688
+ "type": "number"
26689
+ },
26690
+ "outputTokens": {
26691
+ "type": "number"
26692
+ },
26693
+ "cacheReadTokens": {
26694
+ "type": "number"
26695
+ },
26696
+ "cacheWriteTokens": {
26697
+ "type": "number"
26698
+ },
26699
+ "reasoningTokens": {
26700
+ "type": "number"
26701
+ },
26702
+ "llmCallCount": {
26703
+ "type": "number"
26704
+ },
26705
+ "turnCount": {
26706
+ "type": "number"
26707
+ },
26708
+ "toolCallCount": {
26709
+ "type": "number"
26710
+ }
26711
+ },
26712
+ "required": [
26713
+ "inputTokens",
26714
+ "outputTokens",
26715
+ "cacheReadTokens",
26716
+ "cacheWriteTokens",
26717
+ "llmCallCount",
26718
+ "turnCount",
26719
+ "toolCallCount"
26720
+ ],
26721
+ "additionalProperties": false
26722
+ },
26723
+ "model": {
26724
+ "type": "string"
26725
+ },
26726
+ "provider": {
26727
+ "type": "string"
26728
+ },
26729
+ "costUsd": {
26730
+ "anyOf": [
26731
+ {
26732
+ "type": "number"
26733
+ },
26734
+ {
26735
+ "type": "null"
26736
+ }
26737
+ ]
26738
+ },
26739
+ "costState": {
26740
+ "type": "string",
26741
+ "enum": [
26742
+ "priced",
26743
+ "unpriced",
26744
+ "estimated"
26745
+ ]
26746
+ },
26747
+ "currentActivity": {
26748
+ "type": "object",
26749
+ "properties": {
26750
+ "kind": {
26751
+ "type": "string",
26752
+ "enum": [
26753
+ "tool",
26754
+ "output-line",
26755
+ "phase"
26756
+ ]
26757
+ },
26758
+ "text": {
26759
+ "type": "string"
26760
+ },
26761
+ "toolName": {
26762
+ "type": "string"
26763
+ },
26764
+ "at": {
26765
+ "type": "number"
26766
+ }
26767
+ },
26768
+ "required": [
26769
+ "kind",
26770
+ "text",
26771
+ "at"
26772
+ ],
26773
+ "additionalProperties": false
26774
+ },
26775
+ "capabilities": {
26776
+ "type": "object",
26777
+ "properties": {
26778
+ "interruptible": {
26779
+ "type": "boolean"
26780
+ },
26781
+ "killable": {
26782
+ "type": "boolean"
26783
+ },
26784
+ "pausable": {
26785
+ "type": "boolean"
26786
+ },
26787
+ "resumable": {
26788
+ "type": "boolean"
26789
+ },
26790
+ "steerable": {
26791
+ "type": "boolean"
26792
+ }
26793
+ },
26794
+ "required": [
26795
+ "interruptible",
26796
+ "killable",
26797
+ "pausable",
26798
+ "resumable",
26799
+ "steerable"
26800
+ ],
26801
+ "additionalProperties": false
26802
+ },
26803
+ "sessionRef": {
26804
+ "type": "object",
26805
+ "properties": {
26806
+ "sessionId": {
26807
+ "type": "string"
26808
+ },
26809
+ "agentId": {
26810
+ "type": "string"
26811
+ }
26812
+ },
26813
+ "additionalProperties": false
26814
+ }
26815
+ },
26816
+ "required": [
26817
+ "id",
26818
+ "kind",
26819
+ "label",
26820
+ "state",
26821
+ "elapsedMs",
26822
+ "costState",
26823
+ "capabilities"
26824
+ ],
26825
+ "additionalProperties": true
26826
+ }
26827
+ }
26828
+ },
26829
+ "required": [
26830
+ "capturedAt",
26831
+ "nodes"
26832
+ ],
26833
+ "additionalProperties": false
26834
+ },
26835
+ "invokable": true
26836
+ },
26837
+ {
26838
+ "id": "fleet.archiveFinished",
26839
+ "title": "Archive All Finished Fleet Subtrees",
26840
+ "description": "Archive every root subtree whose nodes are all terminal (done/failed/killed/interrupted). A finished member of a still-running swarm stays with its parent. Returns the number of nodes archived.",
26841
+ "category": "fleet",
26842
+ "source": "builtin",
26843
+ "access": "authenticated",
26844
+ "transport": [
26845
+ "ws"
26846
+ ],
26847
+ "scopes": [
26848
+ "write:fleet"
26849
+ ],
26850
+ "inputSchema": {
26851
+ "type": "object",
26852
+ "properties": {},
26853
+ "additionalProperties": false
26854
+ },
26855
+ "outputSchema": {
26856
+ "type": "object",
26857
+ "properties": {
26858
+ "archivedCount": {
26859
+ "type": "number"
26860
+ }
26861
+ },
26862
+ "required": [
26863
+ "archivedCount"
26864
+ ],
26865
+ "additionalProperties": false
26866
+ },
26867
+ "invokable": true
26868
+ },
26553
26869
  {
26554
26870
  "id": "fleet.list",
26555
26871
  "title": "List Fleet Processes",
@@ -27060,6 +27376,45 @@
27060
27376
  },
27061
27377
  "invokable": true
27062
27378
  },
27379
+ {
27380
+ "id": "fleet.unarchive",
27381
+ "title": "Restore Archived Fleet Subtree",
27382
+ "description": "Return an archived subtree to the live fleet view. Returns the number of nodes restored (0 when nothing under the id was archived).",
27383
+ "category": "fleet",
27384
+ "source": "builtin",
27385
+ "access": "authenticated",
27386
+ "transport": [
27387
+ "ws"
27388
+ ],
27389
+ "scopes": [
27390
+ "write:fleet"
27391
+ ],
27392
+ "inputSchema": {
27393
+ "type": "object",
27394
+ "properties": {
27395
+ "id": {
27396
+ "type": "string"
27397
+ }
27398
+ },
27399
+ "required": [
27400
+ "id"
27401
+ ],
27402
+ "additionalProperties": false
27403
+ },
27404
+ "outputSchema": {
27405
+ "type": "object",
27406
+ "properties": {
27407
+ "restored": {
27408
+ "type": "number"
27409
+ }
27410
+ },
27411
+ "required": [
27412
+ "restored"
27413
+ ],
27414
+ "additionalProperties": false
27415
+ },
27416
+ "invokable": true
27417
+ },
27063
27418
  {
27064
27419
  "id": "health.snapshot",
27065
27420
  "title": "Health Snapshot",
@@ -81552,10 +81907,10 @@
81552
81907
  }
81553
81908
  ],
81554
81909
  "schemaCoverage": {
81555
- "methods": 329,
81556
- "typedInputs": 329,
81910
+ "methods": 333,
81911
+ "typedInputs": 333,
81557
81912
  "genericInputs": 0,
81558
- "typedOutputs": 329,
81913
+ "typedOutputs": 333,
81559
81914
  "genericOutputs": 0
81560
81915
  },
81561
81916
  "eventCoverage": {
@@ -81564,8 +81919,8 @@
81564
81919
  "withWireEvents": 31
81565
81920
  },
81566
81921
  "validationCoverage": {
81567
- "methods": 329,
81568
- "validated": 327,
81922
+ "methods": 333,
81923
+ "validated": 331,
81569
81924
  "skippedGeneric": 0,
81570
81925
  "skippedUntyped": 2
81571
81926
  }
@@ -1 +1 @@
1
- {"version":3,"file":"core-verbs.d.ts","sourceRoot":"","sources":["../src/core-verbs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AAEH;;;;;GAKG;AACH,eAAO,MAAM,UAAU,2MAyBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAEjD;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,MAAM,MAAM,UAAU,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAErD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,CA2FrE,CAAC;AAEX,kFAAkF;AAClF,eAAO,MAAM,YAAY,EAAE,WAAW,CAAC,MAAM,CAE5C,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAC1B;IAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAA;CAAE,GAClD;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GAC7E;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;CAAE,GACtD;IAAE,QAAQ,CAAC,IAAI,EAAE,cAAc,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAE7D,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAGnD;AAED,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,kBAAkB,CAcjE"}
1
+ {"version":3,"file":"core-verbs.d.ts","sourceRoot":"","sources":["../src/core-verbs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AAEH;;;;;GAKG;AACH,eAAO,MAAM,UAAU,2MAyBb,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAEjD;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,YAAY,uCAAwC,CAAC;AAElE,MAAM,MAAM,UAAU,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAErD;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,sBAAsB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,CAoGrE,CAAC;AAEX,kFAAkF;AAClF,eAAO,MAAM,YAAY,EAAE,WAAW,CAAC,MAAM,CAE5C,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAC1B;IAAE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAA;CAAE,GAClD;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GAC7E;IAAE,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAA;CAAE,GACtD;IAAE,QAAQ,CAAC,IAAI,EAAE,cAAc,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAE7D,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAGnD;AAED,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,kBAAkB,CAcjE"}
@@ -173,6 +173,15 @@ export const EXEMPT_VERB_CATEGORIES = {
173
173
  // core verbs (push.subscriptions.create/list/delete, push.vapid.get).
174
174
  'verify',
175
175
  ],
176
+ 'fleet-archive': [
177
+ // Session-scoped fleet archive transitions (runtime/fleet/archive.ts):
178
+ // moving a FINISHED process subtree out of the live fleet view and back.
179
+ // Not generic record CRUD — archive/unarchive gate on all-terminal
180
+ // subtrees and never delete anything; archiveFinished is the bulk form
181
+ // over every fully-finished root. The archived-collection read uses the
182
+ // core verb (fleet.archived.list).
183
+ 'archive', 'unarchive', 'archiveFinished',
184
+ ],
176
185
  'process-control': [
177
186
  // OS/service process lifecycle verbs (distinct domain from
178
187
  // enable/disable, which toggle a *record's* activation state) plus
@@ -1,7 +1,7 @@
1
1
  export declare const FOUNDATION_METADATA: {
2
2
  readonly productId: "goodvibes";
3
- readonly productVersion: "1.4.1";
4
- readonly operatorMethodCount: 329;
3
+ readonly productVersion: "1.6.0";
4
+ readonly operatorMethodCount: 333;
5
5
  readonly operatorEventCount: 31;
6
6
  readonly peerEndpointCount: 6;
7
7
  };
@@ -1,7 +1,7 @@
1
1
  export const FOUNDATION_METADATA = {
2
2
  "productId": "goodvibes",
3
- "productVersion": "1.4.1",
4
- "operatorMethodCount": 329,
3
+ "productVersion": "1.6.0",
4
+ "operatorMethodCount": 333,
5
5
  "operatorEventCount": 31,
6
6
  "peerEndpointCount": 6
7
7
  };
@@ -1 +1 @@
1
- {"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBAwq/EtB,CAAC"}
1
+ {"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBA2ggFtB,CAAC"}
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "1.4.1"
6
+ "version": "1.6.0"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -26550,6 +26550,322 @@ export const OPERATOR_CONTRACT = {
26550
26550
  "dangerous": true,
26551
26551
  "invokable": false
26552
26552
  },
26553
+ {
26554
+ "id": "fleet.archive",
26555
+ "title": "Archive Finished Fleet Subtree",
26556
+ "description": "Move one FINISHED process subtree (root id + all descendants, every node terminal) out of the live fleet view into the session archive. Honest refusal (archived:false + reason) for an unknown id or a subtree with live members. Archived nodes stay inspectable via fleet.archived.list.",
26557
+ "category": "fleet",
26558
+ "source": "builtin",
26559
+ "access": "authenticated",
26560
+ "transport": [
26561
+ "ws"
26562
+ ],
26563
+ "scopes": [
26564
+ "write:fleet"
26565
+ ],
26566
+ "inputSchema": {
26567
+ "type": "object",
26568
+ "properties": {
26569
+ "id": {
26570
+ "type": "string"
26571
+ }
26572
+ },
26573
+ "required": [
26574
+ "id"
26575
+ ],
26576
+ "additionalProperties": false
26577
+ },
26578
+ "outputSchema": {
26579
+ "type": "object",
26580
+ "properties": {
26581
+ "archived": {
26582
+ "type": "boolean"
26583
+ },
26584
+ "count": {
26585
+ "type": "number"
26586
+ },
26587
+ "reason": {
26588
+ "type": "string"
26589
+ }
26590
+ },
26591
+ "required": [
26592
+ "archived",
26593
+ "count"
26594
+ ],
26595
+ "additionalProperties": false
26596
+ },
26597
+ "invokable": true
26598
+ },
26599
+ {
26600
+ "id": "fleet.archived.list",
26601
+ "title": "List Archived Fleet Processes",
26602
+ "description": "Return the session-archived process nodes (same node shape as fleet.snapshot; still live-derived from the source managers, so usage/cost stay current).",
26603
+ "category": "fleet",
26604
+ "source": "builtin",
26605
+ "access": "authenticated",
26606
+ "transport": [
26607
+ "ws"
26608
+ ],
26609
+ "scopes": [
26610
+ "read:fleet"
26611
+ ],
26612
+ "inputSchema": {
26613
+ "type": "object",
26614
+ "properties": {},
26615
+ "additionalProperties": false
26616
+ },
26617
+ "outputSchema": {
26618
+ "type": "object",
26619
+ "properties": {
26620
+ "capturedAt": {
26621
+ "type": "number"
26622
+ },
26623
+ "nodes": {
26624
+ "type": "array",
26625
+ "items": {
26626
+ "type": "object",
26627
+ "properties": {
26628
+ "id": {
26629
+ "type": "string"
26630
+ },
26631
+ "kind": {
26632
+ "type": "string",
26633
+ "enum": [
26634
+ "agent",
26635
+ "wrfc-chain",
26636
+ "wrfc-subtask",
26637
+ "workflow",
26638
+ "trigger",
26639
+ "schedule",
26640
+ "watcher",
26641
+ "background-process",
26642
+ "workstream",
26643
+ "phase",
26644
+ "work-item",
26645
+ "code-index"
26646
+ ]
26647
+ },
26648
+ "parentId": {
26649
+ "type": "string"
26650
+ },
26651
+ "label": {
26652
+ "type": "string"
26653
+ },
26654
+ "task": {
26655
+ "type": "string"
26656
+ },
26657
+ "state": {
26658
+ "type": "string",
26659
+ "enum": [
26660
+ "thinking",
26661
+ "executing-tool",
26662
+ "awaiting-approval",
26663
+ "streaming",
26664
+ "stalled",
26665
+ "retrying",
26666
+ "done",
26667
+ "failed",
26668
+ "killed",
26669
+ "interrupted",
26670
+ "idle",
26671
+ "queued",
26672
+ "paused"
26673
+ ]
26674
+ },
26675
+ "startedAt": {
26676
+ "type": "number"
26677
+ },
26678
+ "completedAt": {
26679
+ "type": "number"
26680
+ },
26681
+ "elapsedMs": {
26682
+ "type": "number"
26683
+ },
26684
+ "usage": {
26685
+ "type": "object",
26686
+ "properties": {
26687
+ "inputTokens": {
26688
+ "type": "number"
26689
+ },
26690
+ "outputTokens": {
26691
+ "type": "number"
26692
+ },
26693
+ "cacheReadTokens": {
26694
+ "type": "number"
26695
+ },
26696
+ "cacheWriteTokens": {
26697
+ "type": "number"
26698
+ },
26699
+ "reasoningTokens": {
26700
+ "type": "number"
26701
+ },
26702
+ "llmCallCount": {
26703
+ "type": "number"
26704
+ },
26705
+ "turnCount": {
26706
+ "type": "number"
26707
+ },
26708
+ "toolCallCount": {
26709
+ "type": "number"
26710
+ }
26711
+ },
26712
+ "required": [
26713
+ "inputTokens",
26714
+ "outputTokens",
26715
+ "cacheReadTokens",
26716
+ "cacheWriteTokens",
26717
+ "llmCallCount",
26718
+ "turnCount",
26719
+ "toolCallCount"
26720
+ ],
26721
+ "additionalProperties": false
26722
+ },
26723
+ "model": {
26724
+ "type": "string"
26725
+ },
26726
+ "provider": {
26727
+ "type": "string"
26728
+ },
26729
+ "costUsd": {
26730
+ "anyOf": [
26731
+ {
26732
+ "type": "number"
26733
+ },
26734
+ {
26735
+ "type": "null"
26736
+ }
26737
+ ]
26738
+ },
26739
+ "costState": {
26740
+ "type": "string",
26741
+ "enum": [
26742
+ "priced",
26743
+ "unpriced",
26744
+ "estimated"
26745
+ ]
26746
+ },
26747
+ "currentActivity": {
26748
+ "type": "object",
26749
+ "properties": {
26750
+ "kind": {
26751
+ "type": "string",
26752
+ "enum": [
26753
+ "tool",
26754
+ "output-line",
26755
+ "phase"
26756
+ ]
26757
+ },
26758
+ "text": {
26759
+ "type": "string"
26760
+ },
26761
+ "toolName": {
26762
+ "type": "string"
26763
+ },
26764
+ "at": {
26765
+ "type": "number"
26766
+ }
26767
+ },
26768
+ "required": [
26769
+ "kind",
26770
+ "text",
26771
+ "at"
26772
+ ],
26773
+ "additionalProperties": false
26774
+ },
26775
+ "capabilities": {
26776
+ "type": "object",
26777
+ "properties": {
26778
+ "interruptible": {
26779
+ "type": "boolean"
26780
+ },
26781
+ "killable": {
26782
+ "type": "boolean"
26783
+ },
26784
+ "pausable": {
26785
+ "type": "boolean"
26786
+ },
26787
+ "resumable": {
26788
+ "type": "boolean"
26789
+ },
26790
+ "steerable": {
26791
+ "type": "boolean"
26792
+ }
26793
+ },
26794
+ "required": [
26795
+ "interruptible",
26796
+ "killable",
26797
+ "pausable",
26798
+ "resumable",
26799
+ "steerable"
26800
+ ],
26801
+ "additionalProperties": false
26802
+ },
26803
+ "sessionRef": {
26804
+ "type": "object",
26805
+ "properties": {
26806
+ "sessionId": {
26807
+ "type": "string"
26808
+ },
26809
+ "agentId": {
26810
+ "type": "string"
26811
+ }
26812
+ },
26813
+ "additionalProperties": false
26814
+ }
26815
+ },
26816
+ "required": [
26817
+ "id",
26818
+ "kind",
26819
+ "label",
26820
+ "state",
26821
+ "elapsedMs",
26822
+ "costState",
26823
+ "capabilities"
26824
+ ],
26825
+ "additionalProperties": true
26826
+ }
26827
+ }
26828
+ },
26829
+ "required": [
26830
+ "capturedAt",
26831
+ "nodes"
26832
+ ],
26833
+ "additionalProperties": false
26834
+ },
26835
+ "invokable": true
26836
+ },
26837
+ {
26838
+ "id": "fleet.archiveFinished",
26839
+ "title": "Archive All Finished Fleet Subtrees",
26840
+ "description": "Archive every root subtree whose nodes are all terminal (done/failed/killed/interrupted). A finished member of a still-running swarm stays with its parent. Returns the number of nodes archived.",
26841
+ "category": "fleet",
26842
+ "source": "builtin",
26843
+ "access": "authenticated",
26844
+ "transport": [
26845
+ "ws"
26846
+ ],
26847
+ "scopes": [
26848
+ "write:fleet"
26849
+ ],
26850
+ "inputSchema": {
26851
+ "type": "object",
26852
+ "properties": {},
26853
+ "additionalProperties": false
26854
+ },
26855
+ "outputSchema": {
26856
+ "type": "object",
26857
+ "properties": {
26858
+ "archivedCount": {
26859
+ "type": "number"
26860
+ }
26861
+ },
26862
+ "required": [
26863
+ "archivedCount"
26864
+ ],
26865
+ "additionalProperties": false
26866
+ },
26867
+ "invokable": true
26868
+ },
26553
26869
  {
26554
26870
  "id": "fleet.list",
26555
26871
  "title": "List Fleet Processes",
@@ -27060,6 +27376,45 @@ export const OPERATOR_CONTRACT = {
27060
27376
  },
27061
27377
  "invokable": true
27062
27378
  },
27379
+ {
27380
+ "id": "fleet.unarchive",
27381
+ "title": "Restore Archived Fleet Subtree",
27382
+ "description": "Return an archived subtree to the live fleet view. Returns the number of nodes restored (0 when nothing under the id was archived).",
27383
+ "category": "fleet",
27384
+ "source": "builtin",
27385
+ "access": "authenticated",
27386
+ "transport": [
27387
+ "ws"
27388
+ ],
27389
+ "scopes": [
27390
+ "write:fleet"
27391
+ ],
27392
+ "inputSchema": {
27393
+ "type": "object",
27394
+ "properties": {
27395
+ "id": {
27396
+ "type": "string"
27397
+ }
27398
+ },
27399
+ "required": [
27400
+ "id"
27401
+ ],
27402
+ "additionalProperties": false
27403
+ },
27404
+ "outputSchema": {
27405
+ "type": "object",
27406
+ "properties": {
27407
+ "restored": {
27408
+ "type": "number"
27409
+ }
27410
+ },
27411
+ "required": [
27412
+ "restored"
27413
+ ],
27414
+ "additionalProperties": false
27415
+ },
27416
+ "invokable": true
27417
+ },
27063
27418
  {
27064
27419
  "id": "health.snapshot",
27065
27420
  "title": "Health Snapshot",
@@ -81552,10 +81907,10 @@ export const OPERATOR_CONTRACT = {
81552
81907
  }
81553
81908
  ],
81554
81909
  "schemaCoverage": {
81555
- "methods": 329,
81556
- "typedInputs": 329,
81910
+ "methods": 333,
81911
+ "typedInputs": 333,
81557
81912
  "genericInputs": 0,
81558
- "typedOutputs": 329,
81913
+ "typedOutputs": 333,
81559
81914
  "genericOutputs": 0
81560
81915
  },
81561
81916
  "eventCoverage": {
@@ -81564,8 +81919,8 @@ export const OPERATOR_CONTRACT = {
81564
81919
  "withWireEvents": 31
81565
81920
  },
81566
81921
  "validationCoverage": {
81567
- "methods": 329,
81568
- "validated": 327,
81922
+ "methods": 333,
81923
+ "validated": 331,
81569
81924
  "skippedGeneric": 0,
81570
81925
  "skippedUntyped": 2
81571
81926
  }
@@ -1,3 +1,3 @@
1
- export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.run", "automation.jobs.update", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "automation.schedules.create", "automation.schedules.delete", "automation.schedules.disable", "automation.schedules.enable", "automation.schedules.list", "automation.schedules.run", "calendar.events.create", "calendar.events.get", "calendar.events.list", "calendar.ics.export", "calendar.ics.import", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.drafts.delete", "channels.drafts.get", "channels.drafts.list", "channels.drafts.save", "channels.inbox.list", "channels.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.routing.assign", "channels.routing.delete", "channels.routing.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "checkpoints.create", "checkpoints.diff", "checkpoints.list", "checkpoints.restore", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.edit", "companion.chat.messages.list", "companion.chat.messages.retry", "companion.chat.messages.steer", "companion.chat.sessions.close", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "companion.chat.sessions.list", "companion.chat.sessions.update", "companion.chat.turns.cancel", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "credentials.get", "deliveries.get", "deliveries.list", "email.draft.create", "email.inbox.list", "email.inbox.read", "email.send", "fleet.list", "fleet.snapshot", "health.snapshot", "homeassistant.homeGraph.askHomeGraph", "homeassistant.homeGraph.browse", "homeassistant.homeGraph.export", "homeassistant.homeGraph.generateHomeGraphPacket", "homeassistant.homeGraph.generateRoomPage", "homeassistant.homeGraph.import", "homeassistant.homeGraph.ingestHomeGraphArtifact", "homeassistant.homeGraph.ingestHomeGraphNote", "homeassistant.homeGraph.ingestHomeGraphUrl", "homeassistant.homeGraph.linkHomeGraphKnowledge", "homeassistant.homeGraph.listHomeGraphIssues", "homeassistant.homeGraph.map", "homeassistant.homeGraph.pages.list", "homeassistant.homeGraph.refinement.run", "homeassistant.homeGraph.refinement.task.cancel", "homeassistant.homeGraph.refinement.task.get", "homeassistant.homeGraph.refinement.tasks.list", "homeassistant.homeGraph.refreshDevicePassport", "homeassistant.homeGraph.reindex", "homeassistant.homeGraph.reset", "homeassistant.homeGraph.reviewHomeGraphFact", "homeassistant.homeGraph.sources.list", "homeassistant.homeGraph.status", "homeassistant.homeGraph.syncHomeGraph", "homeassistant.homeGraph.unlinkHomeGraphKnowledge", "intelligence.snapshot", "knowledge.ask", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.browserHistory", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issue.review", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.map", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.refinement.run", "knowledge.refinement.task.cancel", "knowledge.refinement.task.get", "knowledge.refinement.tasks.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "mcp.config.get", "mcp.config.reload", "mcp.servers.list", "mcp.servers.remove", "mcp.servers.upsert", "mcp.tools.list", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.records.add", "memory.records.delete", "memory.records.export", "memory.records.get", "memory.records.import", "memory.records.links.add", "memory.records.links.list", "memory.records.list", "memory.records.search", "memory.records.search-semantic", "memory.records.update", "memory.records.update-review", "memory.review-queue", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "projectPlanning.decisions.list", "projectPlanning.decisions.record", "projectPlanning.evaluate", "projectPlanning.language.get", "projectPlanning.language.upsert", "projectPlanning.state.get", "projectPlanning.state.upsert", "projectPlanning.status", "projectPlanning.workPlan.clearCompleted", "projectPlanning.workPlan.snapshot", "projectPlanning.workPlan.task.create", "projectPlanning.workPlan.task.delete", "projectPlanning.workPlan.task.get", "projectPlanning.workPlan.task.status", "projectPlanning.workPlan.task.update", "projectPlanning.workPlan.tasks.list", "projectPlanning.workPlan.tasks.reorder", "providers.get", "providers.list", "providers.usage.get", "push.subscriptions.create", "push.subscriptions.delete", "push.subscriptions.list", "push.subscriptions.verify", "push.vapid.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.update", "routes.snapshot", "scheduler.capacity", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.delete", "sessions.detach", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.deliver", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.register", "sessions.reopen", "sessions.search", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.tts.stream", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.run", "watchers.start", "watchers.stop", "watchers.update", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
1
+ export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.run", "automation.jobs.update", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "automation.schedules.create", "automation.schedules.delete", "automation.schedules.disable", "automation.schedules.enable", "automation.schedules.list", "automation.schedules.run", "calendar.events.create", "calendar.events.get", "calendar.events.list", "calendar.ics.export", "calendar.ics.import", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.drafts.delete", "channels.drafts.get", "channels.drafts.list", "channels.drafts.save", "channels.inbox.list", "channels.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.routing.assign", "channels.routing.delete", "channels.routing.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "checkpoints.create", "checkpoints.diff", "checkpoints.list", "checkpoints.restore", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.edit", "companion.chat.messages.list", "companion.chat.messages.retry", "companion.chat.messages.steer", "companion.chat.sessions.close", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "companion.chat.sessions.list", "companion.chat.sessions.update", "companion.chat.turns.cancel", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "credentials.get", "deliveries.get", "deliveries.list", "email.draft.create", "email.inbox.list", "email.inbox.read", "email.send", "fleet.archive", "fleet.archiveFinished", "fleet.archived.list", "fleet.list", "fleet.snapshot", "fleet.unarchive", "health.snapshot", "homeassistant.homeGraph.askHomeGraph", "homeassistant.homeGraph.browse", "homeassistant.homeGraph.export", "homeassistant.homeGraph.generateHomeGraphPacket", "homeassistant.homeGraph.generateRoomPage", "homeassistant.homeGraph.import", "homeassistant.homeGraph.ingestHomeGraphArtifact", "homeassistant.homeGraph.ingestHomeGraphNote", "homeassistant.homeGraph.ingestHomeGraphUrl", "homeassistant.homeGraph.linkHomeGraphKnowledge", "homeassistant.homeGraph.listHomeGraphIssues", "homeassistant.homeGraph.map", "homeassistant.homeGraph.pages.list", "homeassistant.homeGraph.refinement.run", "homeassistant.homeGraph.refinement.task.cancel", "homeassistant.homeGraph.refinement.task.get", "homeassistant.homeGraph.refinement.tasks.list", "homeassistant.homeGraph.refreshDevicePassport", "homeassistant.homeGraph.reindex", "homeassistant.homeGraph.reset", "homeassistant.homeGraph.reviewHomeGraphFact", "homeassistant.homeGraph.sources.list", "homeassistant.homeGraph.status", "homeassistant.homeGraph.syncHomeGraph", "homeassistant.homeGraph.unlinkHomeGraphKnowledge", "intelligence.snapshot", "knowledge.ask", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.browserHistory", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issue.review", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.map", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.refinement.run", "knowledge.refinement.task.cancel", "knowledge.refinement.task.get", "knowledge.refinement.tasks.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "mcp.config.get", "mcp.config.reload", "mcp.servers.list", "mcp.servers.remove", "mcp.servers.upsert", "mcp.tools.list", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.records.add", "memory.records.delete", "memory.records.export", "memory.records.get", "memory.records.import", "memory.records.links.add", "memory.records.links.list", "memory.records.list", "memory.records.search", "memory.records.search-semantic", "memory.records.update", "memory.records.update-review", "memory.review-queue", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "projectPlanning.decisions.list", "projectPlanning.decisions.record", "projectPlanning.evaluate", "projectPlanning.language.get", "projectPlanning.language.upsert", "projectPlanning.state.get", "projectPlanning.state.upsert", "projectPlanning.status", "projectPlanning.workPlan.clearCompleted", "projectPlanning.workPlan.snapshot", "projectPlanning.workPlan.task.create", "projectPlanning.workPlan.task.delete", "projectPlanning.workPlan.task.get", "projectPlanning.workPlan.task.status", "projectPlanning.workPlan.task.update", "projectPlanning.workPlan.tasks.list", "projectPlanning.workPlan.tasks.reorder", "providers.get", "providers.list", "providers.usage.get", "push.subscriptions.create", "push.subscriptions.delete", "push.subscriptions.list", "push.subscriptions.verify", "push.vapid.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.update", "routes.snapshot", "scheduler.capacity", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.delete", "sessions.detach", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.deliver", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.register", "sessions.reopen", "sessions.search", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.tts.stream", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.run", "watchers.start", "watchers.stop", "watchers.update", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
2
2
  export type OperatorMethodId = typeof OPERATOR_METHOD_IDS[number];
3
3
  //# sourceMappingURL=operator-method-ids.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../src/generated/operator-method-ids.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,68QA0UtB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
1
+ {"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../src/generated/operator-method-ids.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,iiRA8UtB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
@@ -109,8 +109,12 @@ export const OPERATOR_METHOD_IDS = [
109
109
  "email.inbox.list",
110
110
  "email.inbox.read",
111
111
  "email.send",
112
+ "fleet.archive",
113
+ "fleet.archiveFinished",
114
+ "fleet.archived.list",
112
115
  "fleet.list",
113
116
  "fleet.snapshot",
117
+ "fleet.unarchive",
114
118
  "health.snapshot",
115
119
  "homeassistant.homeGraph.askHomeGraph",
116
120
  "homeassistant.homeGraph.browse",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-contracts",
3
- "version": "1.4.1",
3
+ "version": "1.6.0",
4
4
  "engines": {
5
5
  "bun": "1.3.10",
6
6
  "node": ">=22.0.0"