@pellux/goodvibes-contracts 1.8.0 → 1.9.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/artifacts/operator-contract.json +3092 -228
- package/artifacts/operator-openapi.json +1315 -10
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +594 -61
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +664 -3
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3092 -228
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +26 -0
- package/dist/generated/webui-facade.d.ts +2 -2
- package/dist/generated/webui-facade.d.ts.map +1 -1
- package/dist/generated/webui-facade.js +741 -6
- package/package.json +1 -1
|
@@ -75,6 +75,50 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
75
75
|
"issueCount": 0
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
+
"acp.agents.list": {
|
|
79
|
+
"methodId": "acp.agents.list",
|
|
80
|
+
"http": null,
|
|
81
|
+
"status": 200,
|
|
82
|
+
"body": {
|
|
83
|
+
"agents": [
|
|
84
|
+
{
|
|
85
|
+
"id": "sample",
|
|
86
|
+
"title": "sample",
|
|
87
|
+
"binaryPath": "sample",
|
|
88
|
+
"args": [
|
|
89
|
+
"sample"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"acp.sessions.create": {
|
|
96
|
+
"methodId": "acp.sessions.create",
|
|
97
|
+
"http": null,
|
|
98
|
+
"status": 200,
|
|
99
|
+
"body": {
|
|
100
|
+
"hosted": {
|
|
101
|
+
"id": "sample",
|
|
102
|
+
"agentId": "sample",
|
|
103
|
+
"title": "sample",
|
|
104
|
+
"binaryPath": "sample",
|
|
105
|
+
"cwd": "sample",
|
|
106
|
+
"state": "sample",
|
|
107
|
+
"startedAt": 0,
|
|
108
|
+
"completedAt": 0,
|
|
109
|
+
"sessionId": "sample",
|
|
110
|
+
"progress": "sample",
|
|
111
|
+
"pendingPermission": "sample",
|
|
112
|
+
"error": {
|
|
113
|
+
"binary": "sample",
|
|
114
|
+
"stage": "sample",
|
|
115
|
+
"message": "sample"
|
|
116
|
+
},
|
|
117
|
+
"promptCount": 0
|
|
118
|
+
},
|
|
119
|
+
"started": false
|
|
120
|
+
}
|
|
121
|
+
},
|
|
78
122
|
"approvals.approve": {
|
|
79
123
|
"methodId": "approvals.approve",
|
|
80
124
|
"http": {
|
|
@@ -5392,6 +5436,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5392
5436
|
"sessionRef": {
|
|
5393
5437
|
"sessionId": "sample",
|
|
5394
5438
|
"agentId": "sample"
|
|
5439
|
+
},
|
|
5440
|
+
"review": {
|
|
5441
|
+
"score": 0,
|
|
5442
|
+
"passed": false,
|
|
5443
|
+
"cycles": 0,
|
|
5444
|
+
"checklist": [
|
|
5445
|
+
{
|
|
5446
|
+
"item": "sample",
|
|
5447
|
+
"verified": false,
|
|
5448
|
+
"evidence": "sample",
|
|
5449
|
+
"howExercised": "sample"
|
|
5450
|
+
}
|
|
5451
|
+
]
|
|
5452
|
+
},
|
|
5453
|
+
"observed": {
|
|
5454
|
+
"externalKind": "claude-code",
|
|
5455
|
+
"pid": 0,
|
|
5456
|
+
"cwd": "sample",
|
|
5457
|
+
"liveness": {
|
|
5458
|
+
"state": "active",
|
|
5459
|
+
"cpuSeconds": 0,
|
|
5460
|
+
"detail": "sample"
|
|
5461
|
+
},
|
|
5462
|
+
"steer": {
|
|
5463
|
+
"kind": "tmux",
|
|
5464
|
+
"paneId": "sample",
|
|
5465
|
+
"tty": "sample",
|
|
5466
|
+
"reason": "sample"
|
|
5467
|
+
},
|
|
5468
|
+
"steerDrillInOnly": false
|
|
5395
5469
|
}
|
|
5396
5470
|
}
|
|
5397
5471
|
]
|
|
@@ -5479,12 +5553,137 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5479
5553
|
"http": null,
|
|
5480
5554
|
"status": 200,
|
|
5481
5555
|
"body": {
|
|
5556
|
+
"applied": false,
|
|
5482
5557
|
"groupId": "sample",
|
|
5483
5558
|
"winnerItemId": "sample",
|
|
5484
5559
|
"loserItemIds": [
|
|
5485
5560
|
"sample"
|
|
5486
5561
|
],
|
|
5487
|
-
"auto": false
|
|
5562
|
+
"auto": false,
|
|
5563
|
+
"requiresConfirm": false,
|
|
5564
|
+
"group": {
|
|
5565
|
+
"groupId": "sample",
|
|
5566
|
+
"workstreamId": "sample",
|
|
5567
|
+
"sourceTitle": "sample",
|
|
5568
|
+
"ready": false,
|
|
5569
|
+
"candidates": [
|
|
5570
|
+
{
|
|
5571
|
+
"itemId": "sample",
|
|
5572
|
+
"attemptIndex": 0,
|
|
5573
|
+
"state": "held-merge",
|
|
5574
|
+
"title": "sample",
|
|
5575
|
+
"worktreePath": "sample",
|
|
5576
|
+
"branch": "sample",
|
|
5577
|
+
"usage": {
|
|
5578
|
+
"inputTokens": 0,
|
|
5579
|
+
"outputTokens": 0,
|
|
5580
|
+
"cacheReadTokens": 0,
|
|
5581
|
+
"cacheWriteTokens": 0,
|
|
5582
|
+
"reasoningTokens": 0,
|
|
5583
|
+
"llmCallCount": 0,
|
|
5584
|
+
"turnCount": 0,
|
|
5585
|
+
"toolCallCount": 0,
|
|
5586
|
+
"costUsd": 0,
|
|
5587
|
+
"costState": "priced",
|
|
5588
|
+
"costSource": "user",
|
|
5589
|
+
"pricingAsOf": "sample"
|
|
5590
|
+
},
|
|
5591
|
+
"failureReason": "sample",
|
|
5592
|
+
"diff": {
|
|
5593
|
+
"files": [
|
|
5594
|
+
"sample"
|
|
5595
|
+
],
|
|
5596
|
+
"unifiedDiff": "sample",
|
|
5597
|
+
"stat": "sample"
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5600
|
+
],
|
|
5601
|
+
"autoAccept": false,
|
|
5602
|
+
"judgment": {
|
|
5603
|
+
"proposedWinnerItemId": "sample",
|
|
5604
|
+
"reasons": [
|
|
5605
|
+
"sample"
|
|
5606
|
+
],
|
|
5607
|
+
"model": "sample",
|
|
5608
|
+
"scoredBy": "model"
|
|
5609
|
+
}
|
|
5610
|
+
}
|
|
5611
|
+
}
|
|
5612
|
+
},
|
|
5613
|
+
"fleet.conflicts.list": {
|
|
5614
|
+
"methodId": "fleet.conflicts.list",
|
|
5615
|
+
"http": null,
|
|
5616
|
+
"status": 200,
|
|
5617
|
+
"body": {
|
|
5618
|
+
"conflicts": [
|
|
5619
|
+
{
|
|
5620
|
+
"workstreamId": "sample",
|
|
5621
|
+
"itemId": "sample",
|
|
5622
|
+
"title": "sample",
|
|
5623
|
+
"worktreePath": "sample",
|
|
5624
|
+
"branch": "sample",
|
|
5625
|
+
"files": [
|
|
5626
|
+
"sample"
|
|
5627
|
+
],
|
|
5628
|
+
"resolutionSessionId": "sample"
|
|
5629
|
+
}
|
|
5630
|
+
]
|
|
5631
|
+
}
|
|
5632
|
+
},
|
|
5633
|
+
"fleet.conflicts.resolve": {
|
|
5634
|
+
"methodId": "fleet.conflicts.resolve",
|
|
5635
|
+
"http": null,
|
|
5636
|
+
"status": 200,
|
|
5637
|
+
"body": {
|
|
5638
|
+
"itemId": "sample",
|
|
5639
|
+
"sessionId": "sample",
|
|
5640
|
+
"worktreePath": "sample",
|
|
5641
|
+
"files": [
|
|
5642
|
+
"sample"
|
|
5643
|
+
]
|
|
5644
|
+
}
|
|
5645
|
+
},
|
|
5646
|
+
"fleet.graph.get": {
|
|
5647
|
+
"methodId": "fleet.graph.get",
|
|
5648
|
+
"http": {
|
|
5649
|
+
"method": "GET",
|
|
5650
|
+
"path": "/api/fleet/workstreams/{workstreamId}/graph"
|
|
5651
|
+
},
|
|
5652
|
+
"status": 200,
|
|
5653
|
+
"body": {
|
|
5654
|
+
"workstreamId": "sample",
|
|
5655
|
+
"title": "sample",
|
|
5656
|
+
"nodes": [
|
|
5657
|
+
{
|
|
5658
|
+
"id": "sample",
|
|
5659
|
+
"title": "sample",
|
|
5660
|
+
"state": "sample",
|
|
5661
|
+
"cluster": "sample",
|
|
5662
|
+
"files": [
|
|
5663
|
+
"sample"
|
|
5664
|
+
],
|
|
5665
|
+
"mergeState": "sample",
|
|
5666
|
+
"blockedReason": "sample",
|
|
5667
|
+
"orphaned": false,
|
|
5668
|
+
"remainingDepth": 0,
|
|
5669
|
+
"stalled": false,
|
|
5670
|
+
"agentId": "sample"
|
|
5671
|
+
}
|
|
5672
|
+
],
|
|
5673
|
+
"edges": [
|
|
5674
|
+
{
|
|
5675
|
+
"from": "sample",
|
|
5676
|
+
"to": "sample"
|
|
5677
|
+
}
|
|
5678
|
+
],
|
|
5679
|
+
"pool": {
|
|
5680
|
+
"ready": 0,
|
|
5681
|
+
"running": 0,
|
|
5682
|
+
"atCap": false,
|
|
5683
|
+
"capKey": "sample",
|
|
5684
|
+
"maxSize": 0,
|
|
5685
|
+
"refusal": "sample"
|
|
5686
|
+
}
|
|
5488
5687
|
}
|
|
5489
5688
|
},
|
|
5490
5689
|
"fleet.list": {
|
|
@@ -5539,6 +5738,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5539
5738
|
"sessionRef": {
|
|
5540
5739
|
"sessionId": "sample",
|
|
5541
5740
|
"agentId": "sample"
|
|
5741
|
+
},
|
|
5742
|
+
"review": {
|
|
5743
|
+
"score": 0,
|
|
5744
|
+
"passed": false,
|
|
5745
|
+
"cycles": 0,
|
|
5746
|
+
"checklist": [
|
|
5747
|
+
{
|
|
5748
|
+
"item": "sample",
|
|
5749
|
+
"verified": false,
|
|
5750
|
+
"evidence": "sample",
|
|
5751
|
+
"howExercised": "sample"
|
|
5752
|
+
}
|
|
5753
|
+
]
|
|
5754
|
+
},
|
|
5755
|
+
"observed": {
|
|
5756
|
+
"externalKind": "claude-code",
|
|
5757
|
+
"pid": 0,
|
|
5758
|
+
"cwd": "sample",
|
|
5759
|
+
"liveness": {
|
|
5760
|
+
"state": "active",
|
|
5761
|
+
"cpuSeconds": 0,
|
|
5762
|
+
"detail": "sample"
|
|
5763
|
+
},
|
|
5764
|
+
"steer": {
|
|
5765
|
+
"kind": "tmux",
|
|
5766
|
+
"paneId": "sample",
|
|
5767
|
+
"tty": "sample",
|
|
5768
|
+
"reason": "sample"
|
|
5769
|
+
},
|
|
5770
|
+
"steerDrillInOnly": false
|
|
5542
5771
|
}
|
|
5543
5772
|
}
|
|
5544
5773
|
],
|
|
@@ -5547,6 +5776,16 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5547
5776
|
"capturedAt": 0
|
|
5548
5777
|
}
|
|
5549
5778
|
},
|
|
5779
|
+
"fleet.observed.steer": {
|
|
5780
|
+
"methodId": "fleet.observed.steer",
|
|
5781
|
+
"http": null,
|
|
5782
|
+
"status": 200,
|
|
5783
|
+
"body": {
|
|
5784
|
+
"queued": false,
|
|
5785
|
+
"messageId": "sample",
|
|
5786
|
+
"reason": "sample"
|
|
5787
|
+
}
|
|
5788
|
+
},
|
|
5550
5789
|
"fleet.snapshot": {
|
|
5551
5790
|
"methodId": "fleet.snapshot",
|
|
5552
5791
|
"http": null,
|
|
@@ -5600,6 +5839,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5600
5839
|
"sessionRef": {
|
|
5601
5840
|
"sessionId": "sample",
|
|
5602
5841
|
"agentId": "sample"
|
|
5842
|
+
},
|
|
5843
|
+
"review": {
|
|
5844
|
+
"score": 0,
|
|
5845
|
+
"passed": false,
|
|
5846
|
+
"cycles": 0,
|
|
5847
|
+
"checklist": [
|
|
5848
|
+
{
|
|
5849
|
+
"item": "sample",
|
|
5850
|
+
"verified": false,
|
|
5851
|
+
"evidence": "sample",
|
|
5852
|
+
"howExercised": "sample"
|
|
5853
|
+
}
|
|
5854
|
+
]
|
|
5855
|
+
},
|
|
5856
|
+
"observed": {
|
|
5857
|
+
"externalKind": "claude-code",
|
|
5858
|
+
"pid": 0,
|
|
5859
|
+
"cwd": "sample",
|
|
5860
|
+
"liveness": {
|
|
5861
|
+
"state": "active",
|
|
5862
|
+
"cpuSeconds": 0,
|
|
5863
|
+
"detail": "sample"
|
|
5864
|
+
},
|
|
5865
|
+
"steer": {
|
|
5866
|
+
"kind": "tmux",
|
|
5867
|
+
"paneId": "sample",
|
|
5868
|
+
"tty": "sample",
|
|
5869
|
+
"reason": "sample"
|
|
5870
|
+
},
|
|
5871
|
+
"steerDrillInOnly": false
|
|
5603
5872
|
}
|
|
5604
5873
|
}
|
|
5605
5874
|
],
|
|
@@ -5696,6 +5965,82 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
5696
5965
|
}
|
|
5697
5966
|
}
|
|
5698
5967
|
},
|
|
5968
|
+
"power.keepAwake.set": {
|
|
5969
|
+
"methodId": "power.keepAwake.set",
|
|
5970
|
+
"http": {
|
|
5971
|
+
"method": "POST",
|
|
5972
|
+
"path": "/api/power/keep-awake"
|
|
5973
|
+
},
|
|
5974
|
+
"status": 200,
|
|
5975
|
+
"body": {
|
|
5976
|
+
"platform": "sample",
|
|
5977
|
+
"work": {
|
|
5978
|
+
"held": false,
|
|
5979
|
+
"grantedClasses": [
|
|
5980
|
+
"handle-lid-switch"
|
|
5981
|
+
],
|
|
5982
|
+
"deniedClasses": [
|
|
5983
|
+
"handle-lid-switch"
|
|
5984
|
+
],
|
|
5985
|
+
"reasons": [
|
|
5986
|
+
"sample"
|
|
5987
|
+
],
|
|
5988
|
+
"heldSince": 0,
|
|
5989
|
+
"capMinutes": 0,
|
|
5990
|
+
"capExpiresAt": 0,
|
|
5991
|
+
"capExpired": false
|
|
5992
|
+
},
|
|
5993
|
+
"keepAwake": {
|
|
5994
|
+
"enabled": false,
|
|
5995
|
+
"held": false,
|
|
5996
|
+
"grantedClasses": [
|
|
5997
|
+
"handle-lid-switch"
|
|
5998
|
+
],
|
|
5999
|
+
"deniedClasses": [
|
|
6000
|
+
"handle-lid-switch"
|
|
6001
|
+
],
|
|
6002
|
+
"note": "sample"
|
|
6003
|
+
}
|
|
6004
|
+
}
|
|
6005
|
+
},
|
|
6006
|
+
"power.status.get": {
|
|
6007
|
+
"methodId": "power.status.get",
|
|
6008
|
+
"http": {
|
|
6009
|
+
"method": "GET",
|
|
6010
|
+
"path": "/api/power/status"
|
|
6011
|
+
},
|
|
6012
|
+
"status": 200,
|
|
6013
|
+
"body": {
|
|
6014
|
+
"platform": "sample",
|
|
6015
|
+
"work": {
|
|
6016
|
+
"held": false,
|
|
6017
|
+
"grantedClasses": [
|
|
6018
|
+
"handle-lid-switch"
|
|
6019
|
+
],
|
|
6020
|
+
"deniedClasses": [
|
|
6021
|
+
"handle-lid-switch"
|
|
6022
|
+
],
|
|
6023
|
+
"reasons": [
|
|
6024
|
+
"sample"
|
|
6025
|
+
],
|
|
6026
|
+
"heldSince": 0,
|
|
6027
|
+
"capMinutes": 0,
|
|
6028
|
+
"capExpiresAt": 0,
|
|
6029
|
+
"capExpired": false
|
|
6030
|
+
},
|
|
6031
|
+
"keepAwake": {
|
|
6032
|
+
"enabled": false,
|
|
6033
|
+
"held": false,
|
|
6034
|
+
"grantedClasses": [
|
|
6035
|
+
"handle-lid-switch"
|
|
6036
|
+
],
|
|
6037
|
+
"deniedClasses": [
|
|
6038
|
+
"handle-lid-switch"
|
|
6039
|
+
],
|
|
6040
|
+
"note": "sample"
|
|
6041
|
+
}
|
|
6042
|
+
}
|
|
6043
|
+
},
|
|
5699
6044
|
"intelligence.snapshot": {
|
|
5700
6045
|
"methodId": "intelligence.snapshot",
|
|
5701
6046
|
"http": {
|
|
@@ -11346,6 +11691,56 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
11346
11691
|
}
|
|
11347
11692
|
}
|
|
11348
11693
|
},
|
|
11694
|
+
"memory.consolidation.receipts": {
|
|
11695
|
+
"methodId": "memory.consolidation.receipts",
|
|
11696
|
+
"http": {
|
|
11697
|
+
"method": "GET",
|
|
11698
|
+
"path": "/api/memory/consolidation/receipts"
|
|
11699
|
+
},
|
|
11700
|
+
"status": 200,
|
|
11701
|
+
"body": {
|
|
11702
|
+
"receipts": [
|
|
11703
|
+
{
|
|
11704
|
+
"runId": "sample",
|
|
11705
|
+
"ranAt": "sample",
|
|
11706
|
+
"trigger": "sample",
|
|
11707
|
+
"idle": false,
|
|
11708
|
+
"scanned": 0,
|
|
11709
|
+
"merged": [
|
|
11710
|
+
{}
|
|
11711
|
+
],
|
|
11712
|
+
"archived": [
|
|
11713
|
+
{}
|
|
11714
|
+
],
|
|
11715
|
+
"decayed": [
|
|
11716
|
+
{}
|
|
11717
|
+
],
|
|
11718
|
+
"proposed": [
|
|
11719
|
+
{
|
|
11720
|
+
"kind": "contradiction",
|
|
11721
|
+
"ids": [
|
|
11722
|
+
"sample"
|
|
11723
|
+
],
|
|
11724
|
+
"route": "sample",
|
|
11725
|
+
"reason": "sample"
|
|
11726
|
+
}
|
|
11727
|
+
],
|
|
11728
|
+
"usageSignalAvailable": false,
|
|
11729
|
+
"note": "sample"
|
|
11730
|
+
}
|
|
11731
|
+
],
|
|
11732
|
+
"pendingProposals": [
|
|
11733
|
+
{
|
|
11734
|
+
"kind": "contradiction",
|
|
11735
|
+
"ids": [
|
|
11736
|
+
"sample"
|
|
11737
|
+
],
|
|
11738
|
+
"route": "sample",
|
|
11739
|
+
"reason": "sample"
|
|
11740
|
+
}
|
|
11741
|
+
]
|
|
11742
|
+
}
|
|
11743
|
+
},
|
|
11349
11744
|
"memory.doctor": {
|
|
11350
11745
|
"methodId": "memory.doctor",
|
|
11351
11746
|
"http": {
|
|
@@ -11920,6 +12315,145 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
11920
12315
|
}
|
|
11921
12316
|
}
|
|
11922
12317
|
},
|
|
12318
|
+
"pairing.handoff.complete": {
|
|
12319
|
+
"methodId": "pairing.handoff.complete",
|
|
12320
|
+
"http": null,
|
|
12321
|
+
"status": 200,
|
|
12322
|
+
"body": {
|
|
12323
|
+
"results": [
|
|
12324
|
+
{
|
|
12325
|
+
"kind": "sample",
|
|
12326
|
+
"status": "sample",
|
|
12327
|
+
"detail": "sample"
|
|
12328
|
+
}
|
|
12329
|
+
]
|
|
12330
|
+
}
|
|
12331
|
+
},
|
|
12332
|
+
"pairing.handoff.create": {
|
|
12333
|
+
"methodId": "pairing.handoff.create",
|
|
12334
|
+
"http": null,
|
|
12335
|
+
"status": 200,
|
|
12336
|
+
"body": {
|
|
12337
|
+
"token": {
|
|
12338
|
+
"id": "sample",
|
|
12339
|
+
"name": "sample",
|
|
12340
|
+
"token": "sample",
|
|
12341
|
+
"createdAt": 0
|
|
12342
|
+
},
|
|
12343
|
+
"offers": [
|
|
12344
|
+
{
|
|
12345
|
+
"kind": "sample",
|
|
12346
|
+
"available": false,
|
|
12347
|
+
"vapidPublicKey": "sample"
|
|
12348
|
+
}
|
|
12349
|
+
],
|
|
12350
|
+
"fragment": "sample",
|
|
12351
|
+
"deepLink": "sample",
|
|
12352
|
+
"posture": {
|
|
12353
|
+
"origin": "sample",
|
|
12354
|
+
"scheme": "sample",
|
|
12355
|
+
"privateNetwork": false,
|
|
12356
|
+
"secureContext": false,
|
|
12357
|
+
"notice": "sample",
|
|
12358
|
+
"capabilities": [
|
|
12359
|
+
{
|
|
12360
|
+
"capability": "sample",
|
|
12361
|
+
"available": false,
|
|
12362
|
+
"reason": "sample"
|
|
12363
|
+
}
|
|
12364
|
+
]
|
|
12365
|
+
}
|
|
12366
|
+
}
|
|
12367
|
+
},
|
|
12368
|
+
"pairing.posture.get": {
|
|
12369
|
+
"methodId": "pairing.posture.get",
|
|
12370
|
+
"http": null,
|
|
12371
|
+
"status": 200,
|
|
12372
|
+
"body": {
|
|
12373
|
+
"posture": {
|
|
12374
|
+
"origin": "sample",
|
|
12375
|
+
"scheme": "sample",
|
|
12376
|
+
"privateNetwork": false,
|
|
12377
|
+
"secureContext": false,
|
|
12378
|
+
"notice": "sample",
|
|
12379
|
+
"capabilities": [
|
|
12380
|
+
{
|
|
12381
|
+
"capability": "sample",
|
|
12382
|
+
"available": false,
|
|
12383
|
+
"reason": "sample"
|
|
12384
|
+
}
|
|
12385
|
+
]
|
|
12386
|
+
}
|
|
12387
|
+
}
|
|
12388
|
+
},
|
|
12389
|
+
"pairing.tokens.create": {
|
|
12390
|
+
"methodId": "pairing.tokens.create",
|
|
12391
|
+
"http": null,
|
|
12392
|
+
"status": 200,
|
|
12393
|
+
"body": {
|
|
12394
|
+
"token": {
|
|
12395
|
+
"id": "sample",
|
|
12396
|
+
"name": "sample",
|
|
12397
|
+
"token": "sample",
|
|
12398
|
+
"createdAt": 0
|
|
12399
|
+
}
|
|
12400
|
+
}
|
|
12401
|
+
},
|
|
12402
|
+
"pairing.tokens.delete": {
|
|
12403
|
+
"methodId": "pairing.tokens.delete",
|
|
12404
|
+
"http": null,
|
|
12405
|
+
"status": 200,
|
|
12406
|
+
"body": {
|
|
12407
|
+
"id": "sample",
|
|
12408
|
+
"revoked": false
|
|
12409
|
+
}
|
|
12410
|
+
},
|
|
12411
|
+
"pairing.tokens.list": {
|
|
12412
|
+
"methodId": "pairing.tokens.list",
|
|
12413
|
+
"http": null,
|
|
12414
|
+
"status": 200,
|
|
12415
|
+
"body": {
|
|
12416
|
+
"tokens": [
|
|
12417
|
+
{
|
|
12418
|
+
"id": "sample",
|
|
12419
|
+
"name": "sample",
|
|
12420
|
+
"createdAt": 0,
|
|
12421
|
+
"lastSeenAt": 0
|
|
12422
|
+
}
|
|
12423
|
+
],
|
|
12424
|
+
"legacySharedRevoked": false
|
|
12425
|
+
}
|
|
12426
|
+
},
|
|
12427
|
+
"pairing.tokens.migrate": {
|
|
12428
|
+
"methodId": "pairing.tokens.migrate",
|
|
12429
|
+
"http": null,
|
|
12430
|
+
"status": 200,
|
|
12431
|
+
"body": {
|
|
12432
|
+
"token": {
|
|
12433
|
+
"id": "sample",
|
|
12434
|
+
"name": "sample",
|
|
12435
|
+
"token": "sample",
|
|
12436
|
+
"createdAt": 0
|
|
12437
|
+
}
|
|
12438
|
+
}
|
|
12439
|
+
},
|
|
12440
|
+
"pairing.tokens.rename": {
|
|
12441
|
+
"methodId": "pairing.tokens.rename",
|
|
12442
|
+
"http": null,
|
|
12443
|
+
"status": 200,
|
|
12444
|
+
"body": {
|
|
12445
|
+
"id": "sample",
|
|
12446
|
+
"renamed": false
|
|
12447
|
+
}
|
|
12448
|
+
},
|
|
12449
|
+
"pairing.tokens.revokeShared": {
|
|
12450
|
+
"methodId": "pairing.tokens.revokeShared",
|
|
12451
|
+
"http": null,
|
|
12452
|
+
"status": 200,
|
|
12453
|
+
"body": {
|
|
12454
|
+
"legacySharedRevoked": false
|
|
12455
|
+
}
|
|
12456
|
+
},
|
|
11923
12457
|
"panels.list": {
|
|
11924
12458
|
"methodId": "panels.list",
|
|
11925
12459
|
"http": {
|
|
@@ -12390,11 +12924,13 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
12390
12924
|
"subscription": {
|
|
12391
12925
|
"id": "sample",
|
|
12392
12926
|
"principalId": "sample",
|
|
12927
|
+
"deviceId": "sample",
|
|
12393
12928
|
"endpointOrigin": "sample",
|
|
12394
12929
|
"endpointHash": "sample",
|
|
12395
12930
|
"createdAt": 0,
|
|
12396
12931
|
"lastDeliveryAt": 0,
|
|
12397
|
-
"lastOutcome": "sample"
|
|
12932
|
+
"lastOutcome": "sample",
|
|
12933
|
+
"consecutiveFailures": 0
|
|
12398
12934
|
}
|
|
12399
12935
|
}
|
|
12400
12936
|
},
|
|
@@ -12416,15 +12952,36 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
12416
12952
|
{
|
|
12417
12953
|
"id": "sample",
|
|
12418
12954
|
"principalId": "sample",
|
|
12955
|
+
"deviceId": "sample",
|
|
12419
12956
|
"endpointOrigin": "sample",
|
|
12420
12957
|
"endpointHash": "sample",
|
|
12421
12958
|
"createdAt": 0,
|
|
12422
12959
|
"lastDeliveryAt": 0,
|
|
12423
|
-
"lastOutcome": "sample"
|
|
12960
|
+
"lastOutcome": "sample",
|
|
12961
|
+
"consecutiveFailures": 0
|
|
12424
12962
|
}
|
|
12425
12963
|
]
|
|
12426
12964
|
}
|
|
12427
12965
|
},
|
|
12966
|
+
"push.subscriptions.reconcile": {
|
|
12967
|
+
"methodId": "push.subscriptions.reconcile",
|
|
12968
|
+
"http": null,
|
|
12969
|
+
"status": 200,
|
|
12970
|
+
"body": {
|
|
12971
|
+
"subscription": {
|
|
12972
|
+
"id": "sample",
|
|
12973
|
+
"principalId": "sample",
|
|
12974
|
+
"deviceId": "sample",
|
|
12975
|
+
"endpointOrigin": "sample",
|
|
12976
|
+
"endpointHash": "sample",
|
|
12977
|
+
"createdAt": 0,
|
|
12978
|
+
"lastDeliveryAt": 0,
|
|
12979
|
+
"lastOutcome": "sample",
|
|
12980
|
+
"consecutiveFailures": 0
|
|
12981
|
+
},
|
|
12982
|
+
"drift": "sample"
|
|
12983
|
+
}
|
|
12984
|
+
},
|
|
12428
12985
|
"push.subscriptions.verify": {
|
|
12429
12986
|
"methodId": "push.subscriptions.verify",
|
|
12430
12987
|
"http": null,
|
|
@@ -13295,6 +13852,40 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
13295
13852
|
]
|
|
13296
13853
|
}
|
|
13297
13854
|
},
|
|
13855
|
+
"tailscale.get": {
|
|
13856
|
+
"methodId": "tailscale.get",
|
|
13857
|
+
"http": null,
|
|
13858
|
+
"status": 200,
|
|
13859
|
+
"body": {
|
|
13860
|
+
"available": false,
|
|
13861
|
+
"loggedIn": false,
|
|
13862
|
+
"magicDnsName": "sample",
|
|
13863
|
+
"httpsUrl": "sample",
|
|
13864
|
+
"detail": "sample",
|
|
13865
|
+
"lastServe": {
|
|
13866
|
+
"at": 0,
|
|
13867
|
+
"command": "sample",
|
|
13868
|
+
"ok": false,
|
|
13869
|
+
"url": "sample",
|
|
13870
|
+
"detail": "sample"
|
|
13871
|
+
}
|
|
13872
|
+
}
|
|
13873
|
+
},
|
|
13874
|
+
"tailscale.serve.run": {
|
|
13875
|
+
"methodId": "tailscale.serve.run",
|
|
13876
|
+
"http": null,
|
|
13877
|
+
"status": 200,
|
|
13878
|
+
"body": {
|
|
13879
|
+
"receipt": {
|
|
13880
|
+
"at": 0,
|
|
13881
|
+
"command": "sample",
|
|
13882
|
+
"ok": false,
|
|
13883
|
+
"url": "sample",
|
|
13884
|
+
"detail": "sample"
|
|
13885
|
+
},
|
|
13886
|
+
"publicBaseUrlUpdated": false
|
|
13887
|
+
}
|
|
13888
|
+
},
|
|
13298
13889
|
"review.snapshot": {
|
|
13299
13890
|
"methodId": "review.snapshot",
|
|
13300
13891
|
"http": {
|
|
@@ -14776,6 +15367,50 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
14776
15367
|
"previousMode": "plan"
|
|
14777
15368
|
}
|
|
14778
15369
|
},
|
|
15370
|
+
"sessions.queuedMessages.delete": {
|
|
15371
|
+
"methodId": "sessions.queuedMessages.delete",
|
|
15372
|
+
"http": {
|
|
15373
|
+
"method": "DELETE",
|
|
15374
|
+
"path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
|
|
15375
|
+
},
|
|
15376
|
+
"status": 200,
|
|
15377
|
+
"body": {
|
|
15378
|
+
"sessionId": "sample",
|
|
15379
|
+
"id": "sample",
|
|
15380
|
+
"deleted": false
|
|
15381
|
+
}
|
|
15382
|
+
},
|
|
15383
|
+
"sessions.queuedMessages.edit": {
|
|
15384
|
+
"methodId": "sessions.queuedMessages.edit",
|
|
15385
|
+
"http": {
|
|
15386
|
+
"method": "POST",
|
|
15387
|
+
"path": "/api/sessions/{sessionId}/queued-messages/{messageId}"
|
|
15388
|
+
},
|
|
15389
|
+
"status": 200,
|
|
15390
|
+
"body": {
|
|
15391
|
+
"sessionId": "sample",
|
|
15392
|
+
"id": "sample",
|
|
15393
|
+
"text": "sample"
|
|
15394
|
+
}
|
|
15395
|
+
},
|
|
15396
|
+
"sessions.queuedMessages.list": {
|
|
15397
|
+
"methodId": "sessions.queuedMessages.list",
|
|
15398
|
+
"http": {
|
|
15399
|
+
"method": "GET",
|
|
15400
|
+
"path": "/api/sessions/{sessionId}/queued-messages"
|
|
15401
|
+
},
|
|
15402
|
+
"status": 200,
|
|
15403
|
+
"body": {
|
|
15404
|
+
"sessionId": "sample",
|
|
15405
|
+
"messages": [
|
|
15406
|
+
{
|
|
15407
|
+
"id": "sample",
|
|
15408
|
+
"queuedAt": 0,
|
|
15409
|
+
"text": "sample"
|
|
15410
|
+
}
|
|
15411
|
+
]
|
|
15412
|
+
}
|
|
15413
|
+
},
|
|
14779
15414
|
"sessions.register": {
|
|
14780
15415
|
"methodId": "sessions.register",
|
|
14781
15416
|
"http": {
|
|
@@ -15025,6 +15660,19 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
15025
15660
|
"agentId": "sample"
|
|
15026
15661
|
}
|
|
15027
15662
|
},
|
|
15663
|
+
"sessions.toolCalls.cancel": {
|
|
15664
|
+
"methodId": "sessions.toolCalls.cancel",
|
|
15665
|
+
"http": {
|
|
15666
|
+
"method": "POST",
|
|
15667
|
+
"path": "/api/sessions/{sessionId}/tool-calls/{callId}/cancel"
|
|
15668
|
+
},
|
|
15669
|
+
"status": 200,
|
|
15670
|
+
"body": {
|
|
15671
|
+
"sessionId": "sample",
|
|
15672
|
+
"callId": "sample",
|
|
15673
|
+
"cancelled": false
|
|
15674
|
+
}
|
|
15675
|
+
},
|
|
15028
15676
|
"security.settings": {
|
|
15029
15677
|
"methodId": "security.settings",
|
|
15030
15678
|
"http": {
|
|
@@ -16354,6 +17002,19 @@ export const MOCK_DAEMON_FIXTURES = {
|
|
|
16354
17002
|
"reason": "sample"
|
|
16355
17003
|
}
|
|
16356
17004
|
},
|
|
17005
|
+
"worktrees.discard": {
|
|
17006
|
+
"methodId": "worktrees.discard",
|
|
17007
|
+
"http": null,
|
|
17008
|
+
"status": 200,
|
|
17009
|
+
"body": {
|
|
17010
|
+
"path": "sample",
|
|
17011
|
+
"ok": false,
|
|
17012
|
+
"branch": "sample",
|
|
17013
|
+
"preservedCommit": "sample",
|
|
17014
|
+
"discardedAt": 0,
|
|
17015
|
+
"detail": "sample"
|
|
17016
|
+
}
|
|
17017
|
+
},
|
|
16357
17018
|
"worktrees.setup.run": {
|
|
16358
17019
|
"methodId": "worktrees.setup.run",
|
|
16359
17020
|
"http": null,
|