@openclaw/gateway-protocol 2026.7.2-beta.4 → 2026.7.2-beta.5

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.
@@ -1359,10 +1359,6 @@
1359
1359
  "since": "2026.7",
1360
1360
  "scope": "operator.write"
1361
1361
  },
1362
- "sessions.observer.ask": {
1363
- "since": "2026.7",
1364
- "scope": "operator.read"
1365
- },
1366
1362
  "sessions.observer.visibility": {
1367
1363
  "since": "2026.7",
1368
1364
  "scope": "operator.read"
@@ -1382,6 +1378,34 @@
1382
1378
  "session.members.remove": {
1383
1379
  "since": "2026.7",
1384
1380
  "scope": "operator.write"
1381
+ },
1382
+ "session.suggestions.add": {
1383
+ "since": "2026.7",
1384
+ "scope": "operator.write"
1385
+ },
1386
+ "session.suggestions.list": {
1387
+ "since": "2026.7",
1388
+ "scope": "operator.read"
1389
+ },
1390
+ "session.suggestions.resolve": {
1391
+ "since": "2026.7",
1392
+ "scope": "operator.write"
1393
+ },
1394
+ "session.typing": {
1395
+ "since": "2026.7",
1396
+ "scope": "operator.write"
1397
+ },
1398
+ "sessions.companion.ask": {
1399
+ "since": "2026.7",
1400
+ "scope": "operator.read"
1401
+ },
1402
+ "sessions.companion.state": {
1403
+ "since": "2026.7",
1404
+ "scope": "operator.read"
1405
+ },
1406
+ "sessions.companion.reset": {
1407
+ "since": "2026.7",
1408
+ "scope": "operator.write"
1385
1409
  }
1386
1410
  },
1387
1411
  "definitions": {
@@ -11523,6 +11547,18 @@
11523
11547
  "minLength": 1,
11524
11548
  "maxLength": 512
11525
11549
  },
11550
+ "boardFace": {
11551
+ "anyOf": [
11552
+ {
11553
+ "type": "string",
11554
+ "const": "chat"
11555
+ },
11556
+ {
11557
+ "type": "string",
11558
+ "const": "dashboard"
11559
+ }
11560
+ ]
11561
+ },
11526
11562
  "creatorId": {
11527
11563
  "type": "string",
11528
11564
  "minLength": 1
@@ -13385,6 +13421,10 @@
13385
13421
  "type": "string",
13386
13422
  "minLength": 1
13387
13423
  },
13424
+ "agentId": {
13425
+ "type": "string",
13426
+ "minLength": 1
13427
+ },
13388
13428
  "runId": {
13389
13429
  "type": "string",
13390
13430
  "minLength": 1
@@ -13460,6 +13500,31 @@
13460
13500
  },
13461
13501
  "additionalProperties": false
13462
13502
  },
13503
+ "SessionCompanionExchange": {
13504
+ "type": "object",
13505
+ "required": [
13506
+ "question",
13507
+ "answer",
13508
+ "ts"
13509
+ ],
13510
+ "properties": {
13511
+ "question": {
13512
+ "type": "string",
13513
+ "minLength": 1,
13514
+ "maxLength": 400
13515
+ },
13516
+ "answer": {
13517
+ "type": "string",
13518
+ "minLength": 1,
13519
+ "maxLength": 1200
13520
+ },
13521
+ "ts": {
13522
+ "type": "integer",
13523
+ "minimum": 0
13524
+ }
13525
+ },
13526
+ "additionalProperties": false
13527
+ },
13463
13528
  "SessionRow": {
13464
13529
  "type": "object",
13465
13530
  "required": [
@@ -13500,6 +13565,18 @@
13500
13565
  "label": {
13501
13566
  "type": "string"
13502
13567
  },
13568
+ "boardFace": {
13569
+ "anyOf": [
13570
+ {
13571
+ "type": "string",
13572
+ "const": "chat"
13573
+ },
13574
+ {
13575
+ "type": "string",
13576
+ "const": "dashboard"
13577
+ }
13578
+ ]
13579
+ },
13503
13580
  "displayName": {
13504
13581
  "type": "string"
13505
13582
  },
@@ -13875,7 +13952,7 @@
13875
13952
  },
13876
13953
  "additionalProperties": true
13877
13954
  },
13878
- "SessionsObserverAskParams": {
13955
+ "SessionsCompanionAskParams": {
13879
13956
  "type": "object",
13880
13957
  "required": [
13881
13958
  "sessionKey",
@@ -13894,20 +13971,98 @@
13894
13971
  },
13895
13972
  "additionalProperties": false
13896
13973
  },
13897
- "SessionsObserverAskResult": {
13974
+ "SessionsCompanionAskResult": {
13898
13975
  "type": "object",
13899
13976
  "required": [
13900
- "answer"
13977
+ "answer",
13978
+ "ts"
13901
13979
  ],
13902
13980
  "properties": {
13903
13981
  "answer": {
13904
13982
  "type": "string",
13905
13983
  "minLength": 1,
13906
- "maxLength": 600
13984
+ "maxLength": 1200
13907
13985
  },
13908
- "digestRevision": {
13986
+ "ts": {
13909
13987
  "type": "integer",
13910
- "minimum": 1
13988
+ "minimum": 0
13989
+ }
13990
+ },
13991
+ "additionalProperties": false
13992
+ },
13993
+ "SessionsCompanionResetParams": {
13994
+ "type": "object",
13995
+ "required": [
13996
+ "sessionKey"
13997
+ ],
13998
+ "properties": {
13999
+ "sessionKey": {
14000
+ "type": "string",
14001
+ "minLength": 1
14002
+ }
14003
+ },
14004
+ "additionalProperties": false
14005
+ },
14006
+ "SessionsCompanionResetResult": {
14007
+ "type": "object",
14008
+ "required": [
14009
+ "ok"
14010
+ ],
14011
+ "properties": {
14012
+ "ok": {
14013
+ "type": "boolean",
14014
+ "const": true
14015
+ }
14016
+ },
14017
+ "additionalProperties": false
14018
+ },
14019
+ "SessionsCompanionStateParams": {
14020
+ "type": "object",
14021
+ "required": [
14022
+ "sessionKey"
14023
+ ],
14024
+ "properties": {
14025
+ "sessionKey": {
14026
+ "type": "string",
14027
+ "minLength": 1
14028
+ }
14029
+ },
14030
+ "additionalProperties": false
14031
+ },
14032
+ "SessionsCompanionStateResult": {
14033
+ "type": "object",
14034
+ "required": [
14035
+ "exchanges"
14036
+ ],
14037
+ "properties": {
14038
+ "exchanges": {
14039
+ "type": "array",
14040
+ "items": {
14041
+ "type": "object",
14042
+ "required": [
14043
+ "question",
14044
+ "answer",
14045
+ "ts"
14046
+ ],
14047
+ "properties": {
14048
+ "question": {
14049
+ "type": "string",
14050
+ "minLength": 1,
14051
+ "maxLength": 400
14052
+ },
14053
+ "answer": {
14054
+ "type": "string",
14055
+ "minLength": 1,
14056
+ "maxLength": 1200
14057
+ },
14058
+ "ts": {
14059
+ "type": "integer",
14060
+ "minimum": 0
14061
+ }
14062
+ },
14063
+ "additionalProperties": false
14064
+ },
14065
+ "maxItems": 24
13911
14066
  }
13912
14067
  },
13913
14068
  "additionalProperties": false
@@ -14258,38 +14413,609 @@
14258
14413
  "const": "viewer"
14259
14414
  }
14260
14415
  ]
14261
- },
14262
- "allowedVisibilities": {
14263
- "type": "array",
14264
- "items": {
14265
- "anyOf": [
14266
- {
14267
- "type": "string",
14268
- "const": "shared"
14269
- },
14270
- {
14271
- "type": "string",
14272
- "const": "read-only"
14273
- },
14274
- {
14275
- "type": "string",
14276
- "const": "suggest"
14277
- },
14278
- {
14279
- "type": "string",
14280
- "const": "draft"
14281
- }
14282
- ]
14283
- }
14416
+ },
14417
+ "allowedVisibilities": {
14418
+ "type": "array",
14419
+ "items": {
14420
+ "anyOf": [
14421
+ {
14422
+ "type": "string",
14423
+ "const": "shared"
14424
+ },
14425
+ {
14426
+ "type": "string",
14427
+ "const": "read-only"
14428
+ },
14429
+ {
14430
+ "type": "string",
14431
+ "const": "suggest"
14432
+ },
14433
+ {
14434
+ "type": "string",
14435
+ "const": "draft"
14436
+ }
14437
+ ]
14438
+ }
14439
+ }
14440
+ },
14441
+ "additionalProperties": false
14442
+ },
14443
+ "SessionMemberAddParams": {
14444
+ "type": "object",
14445
+ "required": [
14446
+ "sessionKey",
14447
+ "identityId"
14448
+ ],
14449
+ "properties": {
14450
+ "sessionKey": {
14451
+ "type": "string",
14452
+ "minLength": 1
14453
+ },
14454
+ "agentId": {
14455
+ "type": "string",
14456
+ "minLength": 1
14457
+ },
14458
+ "identityId": {
14459
+ "type": "string",
14460
+ "minLength": 1
14461
+ }
14462
+ },
14463
+ "additionalProperties": false
14464
+ },
14465
+ "SessionMemberRemoveParams": {
14466
+ "type": "object",
14467
+ "required": [
14468
+ "sessionKey",
14469
+ "identityId"
14470
+ ],
14471
+ "properties": {
14472
+ "sessionKey": {
14473
+ "type": "string",
14474
+ "minLength": 1
14475
+ },
14476
+ "agentId": {
14477
+ "type": "string",
14478
+ "minLength": 1
14479
+ },
14480
+ "identityId": {
14481
+ "type": "string",
14482
+ "minLength": 1
14483
+ }
14484
+ },
14485
+ "additionalProperties": false
14486
+ },
14487
+ "SessionMemberMutationResult": {
14488
+ "type": "object",
14489
+ "required": [
14490
+ "ok",
14491
+ "sessionKey",
14492
+ "identityId"
14493
+ ],
14494
+ "properties": {
14495
+ "ok": {
14496
+ "type": "boolean",
14497
+ "const": true
14498
+ },
14499
+ "sessionKey": {
14500
+ "type": "string",
14501
+ "minLength": 1
14502
+ },
14503
+ "identityId": {
14504
+ "type": "string",
14505
+ "minLength": 1
14506
+ }
14507
+ },
14508
+ "additionalProperties": false
14509
+ },
14510
+ "SessionSharingAction": {
14511
+ "anyOf": [
14512
+ {
14513
+ "type": "string",
14514
+ "const": "visibility"
14515
+ },
14516
+ {
14517
+ "type": "string",
14518
+ "const": "member-added"
14519
+ },
14520
+ {
14521
+ "type": "string",
14522
+ "const": "member-removed"
14523
+ }
14524
+ ]
14525
+ },
14526
+ "SessionSharingEvent": {
14527
+ "type": "object",
14528
+ "required": [
14529
+ "action",
14530
+ "sessionKey",
14531
+ "agentId",
14532
+ "actor",
14533
+ "ts"
14534
+ ],
14535
+ "properties": {
14536
+ "action": {
14537
+ "anyOf": [
14538
+ {
14539
+ "type": "string",
14540
+ "const": "visibility"
14541
+ },
14542
+ {
14543
+ "type": "string",
14544
+ "const": "member-added"
14545
+ },
14546
+ {
14547
+ "type": "string",
14548
+ "const": "member-removed"
14549
+ }
14550
+ ]
14551
+ },
14552
+ "sessionKey": {
14553
+ "type": "string",
14554
+ "minLength": 1
14555
+ },
14556
+ "agentId": {
14557
+ "type": "string",
14558
+ "minLength": 1
14559
+ },
14560
+ "actor": {
14561
+ "type": "object",
14562
+ "required": [
14563
+ "type",
14564
+ "id"
14565
+ ],
14566
+ "properties": {
14567
+ "type": {
14568
+ "anyOf": [
14569
+ {
14570
+ "type": "string",
14571
+ "const": "human"
14572
+ },
14573
+ {
14574
+ "type": "string",
14575
+ "const": "agent"
14576
+ },
14577
+ {
14578
+ "type": "string",
14579
+ "const": "system"
14580
+ }
14581
+ ]
14582
+ },
14583
+ "id": {
14584
+ "type": "string",
14585
+ "minLength": 1
14586
+ },
14587
+ "label": {
14588
+ "type": "string",
14589
+ "minLength": 1
14590
+ }
14591
+ },
14592
+ "additionalProperties": false
14593
+ },
14594
+ "visibility": {
14595
+ "anyOf": [
14596
+ {
14597
+ "type": "string",
14598
+ "const": "shared"
14599
+ },
14600
+ {
14601
+ "type": "string",
14602
+ "const": "read-only"
14603
+ },
14604
+ {
14605
+ "type": "string",
14606
+ "const": "suggest"
14607
+ },
14608
+ {
14609
+ "type": "string",
14610
+ "const": "draft"
14611
+ }
14612
+ ]
14613
+ },
14614
+ "identityId": {
14615
+ "type": "string",
14616
+ "minLength": 1
14617
+ },
14618
+ "ts": {
14619
+ "type": "integer",
14620
+ "minimum": 0
14621
+ }
14622
+ },
14623
+ "additionalProperties": false
14624
+ },
14625
+ "SessionSuggestionState": {
14626
+ "anyOf": [
14627
+ {
14628
+ "type": "string",
14629
+ "const": "pending"
14630
+ },
14631
+ {
14632
+ "type": "string",
14633
+ "const": "accepted"
14634
+ },
14635
+ {
14636
+ "type": "string",
14637
+ "const": "dismissed"
14638
+ }
14639
+ ]
14640
+ },
14641
+ "SessionSuggestionAction": {
14642
+ "anyOf": [
14643
+ {
14644
+ "type": "string",
14645
+ "const": "added"
14646
+ },
14647
+ {
14648
+ "type": "string",
14649
+ "const": "resolved"
14650
+ }
14651
+ ]
14652
+ },
14653
+ "SessionSuggestionResolution": {
14654
+ "anyOf": [
14655
+ {
14656
+ "type": "string",
14657
+ "const": "send"
14658
+ },
14659
+ {
14660
+ "type": "string",
14661
+ "const": "queue"
14662
+ },
14663
+ {
14664
+ "type": "string",
14665
+ "const": "edit"
14666
+ },
14667
+ {
14668
+ "type": "string",
14669
+ "const": "dismiss"
14670
+ }
14671
+ ]
14672
+ },
14673
+ "SessionSuggestion": {
14674
+ "type": "object",
14675
+ "required": [
14676
+ "id",
14677
+ "sessionKey",
14678
+ "agentId",
14679
+ "author",
14680
+ "text",
14681
+ "createdAt",
14682
+ "state"
14683
+ ],
14684
+ "properties": {
14685
+ "id": {
14686
+ "type": "string",
14687
+ "minLength": 1
14688
+ },
14689
+ "sessionKey": {
14690
+ "type": "string",
14691
+ "minLength": 1
14692
+ },
14693
+ "agentId": {
14694
+ "type": "string",
14695
+ "minLength": 1
14696
+ },
14697
+ "author": {
14698
+ "type": "object",
14699
+ "required": [
14700
+ "type",
14701
+ "id"
14702
+ ],
14703
+ "properties": {
14704
+ "type": {
14705
+ "anyOf": [
14706
+ {
14707
+ "type": "string",
14708
+ "const": "human"
14709
+ },
14710
+ {
14711
+ "type": "string",
14712
+ "const": "agent"
14713
+ },
14714
+ {
14715
+ "type": "string",
14716
+ "const": "system"
14717
+ }
14718
+ ]
14719
+ },
14720
+ "id": {
14721
+ "type": "string",
14722
+ "minLength": 1
14723
+ },
14724
+ "label": {
14725
+ "type": "string",
14726
+ "minLength": 1
14727
+ }
14728
+ },
14729
+ "additionalProperties": false
14730
+ },
14731
+ "text": {
14732
+ "type": "string",
14733
+ "minLength": 1,
14734
+ "maxLength": 32768
14735
+ },
14736
+ "createdAt": {
14737
+ "type": "integer",
14738
+ "minimum": 0
14739
+ },
14740
+ "state": {
14741
+ "anyOf": [
14742
+ {
14743
+ "type": "string",
14744
+ "const": "pending"
14745
+ },
14746
+ {
14747
+ "type": "string",
14748
+ "const": "accepted"
14749
+ },
14750
+ {
14751
+ "type": "string",
14752
+ "const": "dismissed"
14753
+ }
14754
+ ]
14755
+ }
14756
+ },
14757
+ "additionalProperties": false
14758
+ },
14759
+ "SessionSuggestionsAddParams": {
14760
+ "type": "object",
14761
+ "required": [
14762
+ "sessionKey",
14763
+ "text"
14764
+ ],
14765
+ "properties": {
14766
+ "sessionKey": {
14767
+ "type": "string",
14768
+ "minLength": 1
14769
+ },
14770
+ "agentId": {
14771
+ "type": "string",
14772
+ "minLength": 1
14773
+ },
14774
+ "text": {
14775
+ "type": "string",
14776
+ "minLength": 1,
14777
+ "maxLength": 32768
14778
+ }
14779
+ },
14780
+ "additionalProperties": false
14781
+ },
14782
+ "SessionSuggestionsAddResult": {
14783
+ "type": "object",
14784
+ "required": [
14785
+ "suggestion"
14786
+ ],
14787
+ "properties": {
14788
+ "suggestion": {
14789
+ "type": "object",
14790
+ "required": [
14791
+ "id",
14792
+ "sessionKey",
14793
+ "agentId",
14794
+ "author",
14795
+ "text",
14796
+ "createdAt",
14797
+ "state"
14798
+ ],
14799
+ "properties": {
14800
+ "id": {
14801
+ "type": "string",
14802
+ "minLength": 1
14803
+ },
14804
+ "sessionKey": {
14805
+ "type": "string",
14806
+ "minLength": 1
14807
+ },
14808
+ "agentId": {
14809
+ "type": "string",
14810
+ "minLength": 1
14811
+ },
14812
+ "author": {
14813
+ "type": "object",
14814
+ "required": [
14815
+ "type",
14816
+ "id"
14817
+ ],
14818
+ "properties": {
14819
+ "type": {
14820
+ "anyOf": [
14821
+ {
14822
+ "type": "string",
14823
+ "const": "human"
14824
+ },
14825
+ {
14826
+ "type": "string",
14827
+ "const": "agent"
14828
+ },
14829
+ {
14830
+ "type": "string",
14831
+ "const": "system"
14832
+ }
14833
+ ]
14834
+ },
14835
+ "id": {
14836
+ "type": "string",
14837
+ "minLength": 1
14838
+ },
14839
+ "label": {
14840
+ "type": "string",
14841
+ "minLength": 1
14842
+ }
14843
+ },
14844
+ "additionalProperties": false
14845
+ },
14846
+ "text": {
14847
+ "type": "string",
14848
+ "minLength": 1,
14849
+ "maxLength": 32768
14850
+ },
14851
+ "createdAt": {
14852
+ "type": "integer",
14853
+ "minimum": 0
14854
+ },
14855
+ "state": {
14856
+ "anyOf": [
14857
+ {
14858
+ "type": "string",
14859
+ "const": "pending"
14860
+ },
14861
+ {
14862
+ "type": "string",
14863
+ "const": "accepted"
14864
+ },
14865
+ {
14866
+ "type": "string",
14867
+ "const": "dismissed"
14868
+ }
14869
+ ]
14870
+ }
14871
+ },
14872
+ "additionalProperties": false
14873
+ }
14874
+ },
14875
+ "additionalProperties": false
14876
+ },
14877
+ "SessionSuggestionsListParams": {
14878
+ "type": "object",
14879
+ "required": [
14880
+ "sessionKey"
14881
+ ],
14882
+ "properties": {
14883
+ "sessionKey": {
14884
+ "type": "string",
14885
+ "minLength": 1
14886
+ },
14887
+ "agentId": {
14888
+ "type": "string",
14889
+ "minLength": 1
14890
+ }
14891
+ },
14892
+ "additionalProperties": false
14893
+ },
14894
+ "SessionSuggestionsListResult": {
14895
+ "type": "object",
14896
+ "required": [
14897
+ "suggestions",
14898
+ "role"
14899
+ ],
14900
+ "properties": {
14901
+ "suggestions": {
14902
+ "type": "array",
14903
+ "items": {
14904
+ "type": "object",
14905
+ "required": [
14906
+ "id",
14907
+ "sessionKey",
14908
+ "agentId",
14909
+ "author",
14910
+ "text",
14911
+ "createdAt",
14912
+ "state"
14913
+ ],
14914
+ "properties": {
14915
+ "id": {
14916
+ "type": "string",
14917
+ "minLength": 1
14918
+ },
14919
+ "sessionKey": {
14920
+ "type": "string",
14921
+ "minLength": 1
14922
+ },
14923
+ "agentId": {
14924
+ "type": "string",
14925
+ "minLength": 1
14926
+ },
14927
+ "author": {
14928
+ "type": "object",
14929
+ "required": [
14930
+ "type",
14931
+ "id"
14932
+ ],
14933
+ "properties": {
14934
+ "type": {
14935
+ "anyOf": [
14936
+ {
14937
+ "type": "string",
14938
+ "const": "human"
14939
+ },
14940
+ {
14941
+ "type": "string",
14942
+ "const": "agent"
14943
+ },
14944
+ {
14945
+ "type": "string",
14946
+ "const": "system"
14947
+ }
14948
+ ]
14949
+ },
14950
+ "id": {
14951
+ "type": "string",
14952
+ "minLength": 1
14953
+ },
14954
+ "label": {
14955
+ "type": "string",
14956
+ "minLength": 1
14957
+ }
14958
+ },
14959
+ "additionalProperties": false
14960
+ },
14961
+ "text": {
14962
+ "type": "string",
14963
+ "minLength": 1,
14964
+ "maxLength": 32768
14965
+ },
14966
+ "createdAt": {
14967
+ "type": "integer",
14968
+ "minimum": 0
14969
+ },
14970
+ "state": {
14971
+ "anyOf": [
14972
+ {
14973
+ "type": "string",
14974
+ "const": "pending"
14975
+ },
14976
+ {
14977
+ "type": "string",
14978
+ "const": "accepted"
14979
+ },
14980
+ {
14981
+ "type": "string",
14982
+ "const": "dismissed"
14983
+ }
14984
+ ]
14985
+ }
14986
+ },
14987
+ "additionalProperties": false
14988
+ }
14989
+ },
14990
+ "role": {
14991
+ "anyOf": [
14992
+ {
14993
+ "type": "string",
14994
+ "const": "admin"
14995
+ },
14996
+ {
14997
+ "type": "string",
14998
+ "const": "owner"
14999
+ },
15000
+ {
15001
+ "type": "string",
15002
+ "const": "member"
15003
+ },
15004
+ {
15005
+ "type": "string",
15006
+ "const": "viewer"
15007
+ }
15008
+ ]
14284
15009
  }
14285
15010
  },
14286
15011
  "additionalProperties": false
14287
15012
  },
14288
- "SessionMemberAddParams": {
15013
+ "SessionSuggestionsResolveParams": {
14289
15014
  "type": "object",
14290
15015
  "required": [
14291
15016
  "sessionKey",
14292
- "identityId"
15017
+ "id",
15018
+ "resolution"
14293
15019
  ],
14294
15020
  "properties": {
14295
15021
  "sessionKey": {
@@ -14300,18 +15026,242 @@
14300
15026
  "type": "string",
14301
15027
  "minLength": 1
14302
15028
  },
14303
- "identityId": {
15029
+ "id": {
14304
15030
  "type": "string",
14305
15031
  "minLength": 1
15032
+ },
15033
+ "resolution": {
15034
+ "anyOf": [
15035
+ {
15036
+ "type": "string",
15037
+ "const": "send"
15038
+ },
15039
+ {
15040
+ "type": "string",
15041
+ "const": "queue"
15042
+ },
15043
+ {
15044
+ "type": "string",
15045
+ "const": "edit"
15046
+ },
15047
+ {
15048
+ "type": "string",
15049
+ "const": "dismiss"
15050
+ }
15051
+ ]
14306
15052
  }
14307
15053
  },
14308
15054
  "additionalProperties": false
14309
15055
  },
14310
- "SessionMemberRemoveParams": {
15056
+ "SessionSuggestionsResolveResult": {
15057
+ "type": "object",
15058
+ "required": [
15059
+ "suggestion"
15060
+ ],
15061
+ "properties": {
15062
+ "suggestion": {
15063
+ "type": "object",
15064
+ "required": [
15065
+ "id",
15066
+ "sessionKey",
15067
+ "agentId",
15068
+ "author",
15069
+ "text",
15070
+ "createdAt",
15071
+ "state"
15072
+ ],
15073
+ "properties": {
15074
+ "id": {
15075
+ "type": "string",
15076
+ "minLength": 1
15077
+ },
15078
+ "sessionKey": {
15079
+ "type": "string",
15080
+ "minLength": 1
15081
+ },
15082
+ "agentId": {
15083
+ "type": "string",
15084
+ "minLength": 1
15085
+ },
15086
+ "author": {
15087
+ "type": "object",
15088
+ "required": [
15089
+ "type",
15090
+ "id"
15091
+ ],
15092
+ "properties": {
15093
+ "type": {
15094
+ "anyOf": [
15095
+ {
15096
+ "type": "string",
15097
+ "const": "human"
15098
+ },
15099
+ {
15100
+ "type": "string",
15101
+ "const": "agent"
15102
+ },
15103
+ {
15104
+ "type": "string",
15105
+ "const": "system"
15106
+ }
15107
+ ]
15108
+ },
15109
+ "id": {
15110
+ "type": "string",
15111
+ "minLength": 1
15112
+ },
15113
+ "label": {
15114
+ "type": "string",
15115
+ "minLength": 1
15116
+ }
15117
+ },
15118
+ "additionalProperties": false
15119
+ },
15120
+ "text": {
15121
+ "type": "string",
15122
+ "minLength": 1,
15123
+ "maxLength": 32768
15124
+ },
15125
+ "createdAt": {
15126
+ "type": "integer",
15127
+ "minimum": 0
15128
+ },
15129
+ "state": {
15130
+ "anyOf": [
15131
+ {
15132
+ "type": "string",
15133
+ "const": "pending"
15134
+ },
15135
+ {
15136
+ "type": "string",
15137
+ "const": "accepted"
15138
+ },
15139
+ {
15140
+ "type": "string",
15141
+ "const": "dismissed"
15142
+ }
15143
+ ]
15144
+ }
15145
+ },
15146
+ "additionalProperties": false
15147
+ }
15148
+ },
15149
+ "additionalProperties": false
15150
+ },
15151
+ "SessionSuggestionEvent": {
15152
+ "type": "object",
15153
+ "required": [
15154
+ "action",
15155
+ "suggestion"
15156
+ ],
15157
+ "properties": {
15158
+ "action": {
15159
+ "anyOf": [
15160
+ {
15161
+ "type": "string",
15162
+ "const": "added"
15163
+ },
15164
+ {
15165
+ "type": "string",
15166
+ "const": "resolved"
15167
+ }
15168
+ ]
15169
+ },
15170
+ "suggestion": {
15171
+ "type": "object",
15172
+ "required": [
15173
+ "id",
15174
+ "sessionKey",
15175
+ "agentId",
15176
+ "author",
15177
+ "text",
15178
+ "createdAt",
15179
+ "state"
15180
+ ],
15181
+ "properties": {
15182
+ "id": {
15183
+ "type": "string",
15184
+ "minLength": 1
15185
+ },
15186
+ "sessionKey": {
15187
+ "type": "string",
15188
+ "minLength": 1
15189
+ },
15190
+ "agentId": {
15191
+ "type": "string",
15192
+ "minLength": 1
15193
+ },
15194
+ "author": {
15195
+ "type": "object",
15196
+ "required": [
15197
+ "type",
15198
+ "id"
15199
+ ],
15200
+ "properties": {
15201
+ "type": {
15202
+ "anyOf": [
15203
+ {
15204
+ "type": "string",
15205
+ "const": "human"
15206
+ },
15207
+ {
15208
+ "type": "string",
15209
+ "const": "agent"
15210
+ },
15211
+ {
15212
+ "type": "string",
15213
+ "const": "system"
15214
+ }
15215
+ ]
15216
+ },
15217
+ "id": {
15218
+ "type": "string",
15219
+ "minLength": 1
15220
+ },
15221
+ "label": {
15222
+ "type": "string",
15223
+ "minLength": 1
15224
+ }
15225
+ },
15226
+ "additionalProperties": false
15227
+ },
15228
+ "text": {
15229
+ "type": "string",
15230
+ "minLength": 1,
15231
+ "maxLength": 32768
15232
+ },
15233
+ "createdAt": {
15234
+ "type": "integer",
15235
+ "minimum": 0
15236
+ },
15237
+ "state": {
15238
+ "anyOf": [
15239
+ {
15240
+ "type": "string",
15241
+ "const": "pending"
15242
+ },
15243
+ {
15244
+ "type": "string",
15245
+ "const": "accepted"
15246
+ },
15247
+ {
15248
+ "type": "string",
15249
+ "const": "dismissed"
15250
+ }
15251
+ ]
15252
+ }
15253
+ },
15254
+ "additionalProperties": false
15255
+ }
15256
+ },
15257
+ "additionalProperties": false
15258
+ },
15259
+ "SessionTypingParams": {
14311
15260
  "type": "object",
14312
15261
  "required": [
14313
15262
  "sessionKey",
14314
- "identityId"
15263
+ "sessionId",
15264
+ "typing"
14315
15265
  ],
14316
15266
  "properties": {
14317
15267
  "sessionKey": {
@@ -14322,82 +15272,52 @@
14322
15272
  "type": "string",
14323
15273
  "minLength": 1
14324
15274
  },
14325
- "identityId": {
15275
+ "sessionId": {
14326
15276
  "type": "string",
14327
15277
  "minLength": 1
15278
+ },
15279
+ "typing": {
15280
+ "type": "boolean"
14328
15281
  }
14329
15282
  },
14330
15283
  "additionalProperties": false
14331
15284
  },
14332
- "SessionMemberMutationResult": {
15285
+ "SessionTypingResult": {
14333
15286
  "type": "object",
14334
15287
  "required": [
14335
15288
  "ok",
14336
- "sessionKey",
14337
- "identityId"
15289
+ "broadcast"
14338
15290
  ],
14339
15291
  "properties": {
14340
15292
  "ok": {
14341
15293
  "type": "boolean",
14342
15294
  "const": true
14343
15295
  },
14344
- "sessionKey": {
14345
- "type": "string",
14346
- "minLength": 1
14347
- },
14348
- "identityId": {
14349
- "type": "string",
14350
- "minLength": 1
15296
+ "broadcast": {
15297
+ "type": "boolean"
14351
15298
  }
14352
15299
  },
14353
15300
  "additionalProperties": false
14354
15301
  },
14355
- "SessionSharingAction": {
14356
- "anyOf": [
14357
- {
14358
- "type": "string",
14359
- "const": "visibility"
14360
- },
14361
- {
14362
- "type": "string",
14363
- "const": "member-added"
14364
- },
14365
- {
14366
- "type": "string",
14367
- "const": "member-removed"
14368
- }
14369
- ]
14370
- },
14371
- "SessionSharingEvent": {
15302
+ "SessionTypingEvent": {
14372
15303
  "type": "object",
14373
15304
  "required": [
14374
- "action",
14375
15305
  "sessionKey",
15306
+ "sessionId",
14376
15307
  "agentId",
14377
15308
  "actor",
15309
+ "typing",
14378
15310
  "ts"
14379
15311
  ],
14380
15312
  "properties": {
14381
- "action": {
14382
- "anyOf": [
14383
- {
14384
- "type": "string",
14385
- "const": "visibility"
14386
- },
14387
- {
14388
- "type": "string",
14389
- "const": "member-added"
14390
- },
14391
- {
14392
- "type": "string",
14393
- "const": "member-removed"
14394
- }
14395
- ]
14396
- },
14397
15313
  "sessionKey": {
14398
15314
  "type": "string",
14399
15315
  "minLength": 1
14400
15316
  },
15317
+ "sessionId": {
15318
+ "type": "string",
15319
+ "minLength": 1
15320
+ },
14401
15321
  "agentId": {
14402
15322
  "type": "string",
14403
15323
  "minLength": 1
@@ -14436,29 +15356,8 @@
14436
15356
  },
14437
15357
  "additionalProperties": false
14438
15358
  },
14439
- "visibility": {
14440
- "anyOf": [
14441
- {
14442
- "type": "string",
14443
- "const": "shared"
14444
- },
14445
- {
14446
- "type": "string",
14447
- "const": "read-only"
14448
- },
14449
- {
14450
- "type": "string",
14451
- "const": "suggest"
14452
- },
14453
- {
14454
- "type": "string",
14455
- "const": "draft"
14456
- }
14457
- ]
14458
- },
14459
- "identityId": {
14460
- "type": "string",
14461
- "minLength": 1
15359
+ "typing": {
15360
+ "type": "boolean"
14462
15361
  },
14463
15362
  "ts": {
14464
15363
  "type": "integer",
@@ -17110,6 +18009,25 @@
17110
18009
  "properties": {
17111
18010
  "editorText": {
17112
18011
  "type": "string"
18012
+ },
18013
+ "editorAttachments": {
18014
+ "type": "array",
18015
+ "items": {
18016
+ "type": "object",
18017
+ "required": [
18018
+ "mimeType",
18019
+ "data"
18020
+ ],
18021
+ "properties": {
18022
+ "mimeType": {
18023
+ "type": "string"
18024
+ },
18025
+ "data": {
18026
+ "type": "string"
18027
+ }
18028
+ },
18029
+ "additionalProperties": false
18030
+ }
17113
18031
  }
17114
18032
  },
17115
18033
  "additionalProperties": false
@@ -17148,6 +18066,25 @@
17148
18066
  },
17149
18067
  "editorText": {
17150
18068
  "type": "string"
18069
+ },
18070
+ "editorAttachments": {
18071
+ "type": "array",
18072
+ "items": {
18073
+ "type": "object",
18074
+ "required": [
18075
+ "mimeType",
18076
+ "data"
18077
+ ],
18078
+ "properties": {
18079
+ "mimeType": {
18080
+ "type": "string"
18081
+ },
18082
+ "data": {
18083
+ "type": "string"
18084
+ }
18085
+ },
18086
+ "additionalProperties": false
18087
+ }
17151
18088
  }
17152
18089
  },
17153
18090
  "additionalProperties": false
@@ -18424,6 +19361,9 @@
18424
19361
  "agentId": {
18425
19362
  "type": "string",
18426
19363
  "minLength": 1
19364
+ },
19365
+ "clearQueued": {
19366
+ "type": "boolean"
18427
19367
  }
18428
19368
  },
18429
19369
  "additionalProperties": false
@@ -18442,6 +19382,14 @@
18442
19382
  "type": "string",
18443
19383
  "minLength": 1
18444
19384
  },
19385
+ "expectedSessionId": {
19386
+ "type": "string",
19387
+ "minLength": 1
19388
+ },
19389
+ "expectedLifecycleRevision": {
19390
+ "type": "string",
19391
+ "minLength": 1
19392
+ },
18445
19393
  "label": {
18446
19394
  "anyOf": [
18447
19395
  {
@@ -18466,6 +19414,18 @@
18466
19414
  }
18467
19415
  ]
18468
19416
  },
19417
+ "boardFace": {
19418
+ "anyOf": [
19419
+ {
19420
+ "type": "string",
19421
+ "const": "chat"
19422
+ },
19423
+ {
19424
+ "type": "string",
19425
+ "const": "dashboard"
19426
+ }
19427
+ ]
19428
+ },
18469
19429
  "icon": {
18470
19430
  "anyOf": [
18471
19431
  {
@@ -18917,6 +19877,15 @@
18917
19877
  },
18918
19878
  "additionalProperties": false
18919
19879
  }
19880
+ },
19881
+ "sectionOrder": {
19882
+ "type": "array",
19883
+ "items": {
19884
+ "type": "string",
19885
+ "minLength": 1,
19886
+ "maxLength": 512
19887
+ },
19888
+ "maxItems": 232
18920
19889
  }
18921
19890
  },
18922
19891
  "additionalProperties": false
@@ -18935,6 +19904,15 @@
18935
19904
  "maxLength": 512
18936
19905
  },
18937
19906
  "maxItems": 200
19907
+ },
19908
+ "sectionOrder": {
19909
+ "type": "array",
19910
+ "items": {
19911
+ "type": "string",
19912
+ "minLength": 1,
19913
+ "maxLength": 512
19914
+ },
19915
+ "maxItems": 232
18938
19916
  }
18939
19917
  },
18940
19918
  "additionalProperties": false
@@ -19006,6 +19984,15 @@
19006
19984
  "additionalProperties": false
19007
19985
  }
19008
19986
  },
19987
+ "sectionOrder": {
19988
+ "type": "array",
19989
+ "items": {
19990
+ "type": "string",
19991
+ "minLength": 1,
19992
+ "maxLength": 512
19993
+ },
19994
+ "maxItems": 232
19995
+ },
19009
19996
  "updatedSessions": {
19010
19997
  "type": "integer",
19011
19998
  "minimum": 0
@@ -32196,6 +33183,9 @@
32196
33183
  "missing": {
32197
33184
  "type": "boolean"
32198
33185
  },
33186
+ "expectedAbsent": {
33187
+ "type": "boolean"
33188
+ },
32199
33189
  "size": {
32200
33190
  "type": "integer",
32201
33191
  "minimum": 0
@@ -32260,6 +33250,9 @@
32260
33250
  "missing": {
32261
33251
  "type": "boolean"
32262
33252
  },
33253
+ "expectedAbsent": {
33254
+ "type": "boolean"
33255
+ },
32263
33256
  "size": {
32264
33257
  "type": "integer",
32265
33258
  "minimum": 0
@@ -32331,83 +33324,89 @@
32331
33324
  "missing": {
32332
33325
  "type": "boolean"
32333
33326
  },
32334
- "size": {
32335
- "type": "integer",
32336
- "minimum": 0
32337
- },
32338
- "updatedAtMs": {
32339
- "type": "integer",
32340
- "minimum": 0
32341
- },
32342
- "content": {
32343
- "type": "string"
32344
- }
32345
- },
32346
- "additionalProperties": false
32347
- }
32348
- },
32349
- "additionalProperties": false
32350
- },
32351
- "AgentsFilesSetParams": {
32352
- "type": "object",
32353
- "required": [
32354
- "agentId",
32355
- "name",
32356
- "content"
32357
- ],
32358
- "properties": {
32359
- "agentId": {
32360
- "type": "string",
32361
- "minLength": 1
32362
- },
32363
- "name": {
32364
- "type": "string",
32365
- "minLength": 1
32366
- },
32367
- "content": {
32368
- "type": "string"
32369
- }
32370
- },
32371
- "additionalProperties": false
32372
- },
32373
- "AgentsFilesSetResult": {
32374
- "type": "object",
32375
- "required": [
32376
- "ok",
32377
- "agentId",
32378
- "workspace",
32379
- "file"
32380
- ],
32381
- "properties": {
32382
- "ok": {
32383
- "type": "boolean",
32384
- "const": true
32385
- },
32386
- "agentId": {
32387
- "type": "string",
32388
- "minLength": 1
32389
- },
32390
- "workspace": {
32391
- "type": "string",
32392
- "minLength": 1
32393
- },
32394
- "file": {
32395
- "type": "object",
32396
- "required": [
32397
- "name",
32398
- "path",
32399
- "missing"
32400
- ],
32401
- "properties": {
32402
- "name": {
32403
- "type": "string",
32404
- "minLength": 1
32405
- },
32406
- "path": {
32407
- "type": "string",
32408
- "minLength": 1
32409
- },
32410
- "missing": {
33327
+ "expectedAbsent": {
33328
+ "type": "boolean"
33329
+ },
33330
+ "size": {
33331
+ "type": "integer",
33332
+ "minimum": 0
33333
+ },
33334
+ "updatedAtMs": {
33335
+ "type": "integer",
33336
+ "minimum": 0
33337
+ },
33338
+ "content": {
33339
+ "type": "string"
33340
+ }
33341
+ },
33342
+ "additionalProperties": false
33343
+ }
33344
+ },
33345
+ "additionalProperties": false
33346
+ },
33347
+ "AgentsFilesSetParams": {
33348
+ "type": "object",
33349
+ "required": [
33350
+ "agentId",
33351
+ "name",
33352
+ "content"
33353
+ ],
33354
+ "properties": {
33355
+ "agentId": {
33356
+ "type": "string",
33357
+ "minLength": 1
33358
+ },
33359
+ "name": {
33360
+ "type": "string",
33361
+ "minLength": 1
33362
+ },
33363
+ "content": {
33364
+ "type": "string"
33365
+ }
33366
+ },
33367
+ "additionalProperties": false
33368
+ },
33369
+ "AgentsFilesSetResult": {
33370
+ "type": "object",
33371
+ "required": [
33372
+ "ok",
33373
+ "agentId",
33374
+ "workspace",
33375
+ "file"
33376
+ ],
33377
+ "properties": {
33378
+ "ok": {
33379
+ "type": "boolean",
33380
+ "const": true
33381
+ },
33382
+ "agentId": {
33383
+ "type": "string",
33384
+ "minLength": 1
33385
+ },
33386
+ "workspace": {
33387
+ "type": "string",
33388
+ "minLength": 1
33389
+ },
33390
+ "file": {
33391
+ "type": "object",
33392
+ "required": [
33393
+ "name",
33394
+ "path",
33395
+ "missing"
33396
+ ],
33397
+ "properties": {
33398
+ "name": {
33399
+ "type": "string",
33400
+ "minLength": 1
33401
+ },
33402
+ "path": {
33403
+ "type": "string",
33404
+ "minLength": 1
33405
+ },
33406
+ "missing": {
33407
+ "type": "boolean"
33408
+ },
33409
+ "expectedAbsent": {
32411
33410
  "type": "boolean"
32412
33411
  },
32413
33412
  "size": {
@@ -37956,10 +38955,64 @@
37956
38955
  "sessionKey": {
37957
38956
  "type": "string",
37958
38957
  "minLength": 1
38958
+ },
38959
+ "accountId": {
38960
+ "type": "string",
38961
+ "minLength": 1
37959
38962
  }
37960
38963
  },
37961
38964
  "additionalProperties": false
37962
38965
  },
38966
+ "scheduledToolPolicy": {
38967
+ "anyOf": [
38968
+ {
38969
+ "type": "object",
38970
+ "required": [
38971
+ "version",
38972
+ "mode"
38973
+ ],
38974
+ "properties": {
38975
+ "version": {
38976
+ "type": "number",
38977
+ "const": 1
38978
+ },
38979
+ "mode": {
38980
+ "type": "string",
38981
+ "const": "trusted"
38982
+ }
38983
+ },
38984
+ "additionalProperties": false
38985
+ },
38986
+ {
38987
+ "type": "object",
38988
+ "required": [
38989
+ "version",
38990
+ "mode",
38991
+ "ownerSessionKey",
38992
+ "ownerAccountId"
38993
+ ],
38994
+ "properties": {
38995
+ "version": {
38996
+ "type": "number",
38997
+ "const": 1
38998
+ },
38999
+ "mode": {
39000
+ "type": "string",
39001
+ "const": "account"
39002
+ },
39003
+ "ownerSessionKey": {
39004
+ "type": "string",
39005
+ "minLength": 1
39006
+ },
39007
+ "ownerAccountId": {
39008
+ "type": "string",
39009
+ "minLength": 1
39010
+ }
39011
+ },
39012
+ "additionalProperties": false
39013
+ }
39014
+ ]
39015
+ },
37963
39016
  "agentId": {
37964
39017
  "type": "string",
37965
39018
  "minLength": 1
@@ -39297,6 +40350,9 @@
39297
40350
  },
39298
40351
  "compact": {
39299
40352
  "type": "boolean"
40353
+ },
40354
+ "includeDeliveryPreviews": {
40355
+ "type": "boolean"
39300
40356
  }
39301
40357
  },
39302
40358
  "additionalProperties": false
@@ -39372,6 +40428,10 @@
39372
40428
  "sessionKey": {
39373
40429
  "type": "string",
39374
40430
  "minLength": 1
40431
+ },
40432
+ "accountId": {
40433
+ "type": "string",
40434
+ "minLength": 1
39375
40435
  }
39376
40436
  },
39377
40437
  "additionalProperties": false
@@ -40183,10 +41243,64 @@
40183
41243
  "sessionKey": {
40184
41244
  "type": "string",
40185
41245
  "minLength": 1
41246
+ },
41247
+ "accountId": {
41248
+ "type": "string",
41249
+ "minLength": 1
40186
41250
  }
40187
41251
  },
40188
41252
  "additionalProperties": false
40189
41253
  },
41254
+ "scheduledToolPolicy": {
41255
+ "anyOf": [
41256
+ {
41257
+ "type": "object",
41258
+ "required": [
41259
+ "version",
41260
+ "mode"
41261
+ ],
41262
+ "properties": {
41263
+ "version": {
41264
+ "type": "number",
41265
+ "const": 1
41266
+ },
41267
+ "mode": {
41268
+ "type": "string",
41269
+ "const": "trusted"
41270
+ }
41271
+ },
41272
+ "additionalProperties": false
41273
+ },
41274
+ {
41275
+ "type": "object",
41276
+ "required": [
41277
+ "version",
41278
+ "mode",
41279
+ "ownerSessionKey",
41280
+ "ownerAccountId"
41281
+ ],
41282
+ "properties": {
41283
+ "version": {
41284
+ "type": "number",
41285
+ "const": 1
41286
+ },
41287
+ "mode": {
41288
+ "type": "string",
41289
+ "const": "account"
41290
+ },
41291
+ "ownerSessionKey": {
41292
+ "type": "string",
41293
+ "minLength": 1
41294
+ },
41295
+ "ownerAccountId": {
41296
+ "type": "string",
41297
+ "minLength": 1
41298
+ }
41299
+ },
41300
+ "additionalProperties": false
41301
+ }
41302
+ ]
41303
+ },
40190
41304
  "agentId": {
40191
41305
  "type": "string",
40192
41306
  "minLength": 1
@@ -41458,10 +42572,64 @@
41458
42572
  "sessionKey": {
41459
42573
  "type": "string",
41460
42574
  "minLength": 1
42575
+ },
42576
+ "accountId": {
42577
+ "type": "string",
42578
+ "minLength": 1
41461
42579
  }
41462
42580
  },
41463
42581
  "additionalProperties": false
41464
42582
  },
42583
+ "scheduledToolPolicy": {
42584
+ "anyOf": [
42585
+ {
42586
+ "type": "object",
42587
+ "required": [
42588
+ "version",
42589
+ "mode"
42590
+ ],
42591
+ "properties": {
42592
+ "version": {
42593
+ "type": "number",
42594
+ "const": 1
42595
+ },
42596
+ "mode": {
42597
+ "type": "string",
42598
+ "const": "trusted"
42599
+ }
42600
+ },
42601
+ "additionalProperties": false
42602
+ },
42603
+ {
42604
+ "type": "object",
42605
+ "required": [
42606
+ "version",
42607
+ "mode",
42608
+ "ownerSessionKey",
42609
+ "ownerAccountId"
42610
+ ],
42611
+ "properties": {
42612
+ "version": {
42613
+ "type": "number",
42614
+ "const": 1
42615
+ },
42616
+ "mode": {
42617
+ "type": "string",
42618
+ "const": "account"
42619
+ },
42620
+ "ownerSessionKey": {
42621
+ "type": "string",
42622
+ "minLength": 1
42623
+ },
42624
+ "ownerAccountId": {
42625
+ "type": "string",
42626
+ "minLength": 1
42627
+ }
42628
+ },
42629
+ "additionalProperties": false
42630
+ }
42631
+ ]
42632
+ },
41465
42633
  "agentId": {
41466
42634
  "type": "string",
41467
42635
  "minLength": 1
@@ -42738,10 +43906,64 @@
42738
43906
  "sessionKey": {
42739
43907
  "type": "string",
42740
43908
  "minLength": 1
43909
+ },
43910
+ "accountId": {
43911
+ "type": "string",
43912
+ "minLength": 1
42741
43913
  }
42742
43914
  },
42743
43915
  "additionalProperties": false
42744
43916
  },
43917
+ "scheduledToolPolicy": {
43918
+ "anyOf": [
43919
+ {
43920
+ "type": "object",
43921
+ "required": [
43922
+ "version",
43923
+ "mode"
43924
+ ],
43925
+ "properties": {
43926
+ "version": {
43927
+ "type": "number",
43928
+ "const": 1
43929
+ },
43930
+ "mode": {
43931
+ "type": "string",
43932
+ "const": "trusted"
43933
+ }
43934
+ },
43935
+ "additionalProperties": false
43936
+ },
43937
+ {
43938
+ "type": "object",
43939
+ "required": [
43940
+ "version",
43941
+ "mode",
43942
+ "ownerSessionKey",
43943
+ "ownerAccountId"
43944
+ ],
43945
+ "properties": {
43946
+ "version": {
43947
+ "type": "number",
43948
+ "const": 1
43949
+ },
43950
+ "mode": {
43951
+ "type": "string",
43952
+ "const": "account"
43953
+ },
43954
+ "ownerSessionKey": {
43955
+ "type": "string",
43956
+ "minLength": 1
43957
+ },
43958
+ "ownerAccountId": {
43959
+ "type": "string",
43960
+ "minLength": 1
43961
+ }
43962
+ },
43963
+ "additionalProperties": false
43964
+ }
43965
+ ]
43966
+ },
42745
43967
  "agentId": {
42746
43968
  "type": "string",
42747
43969
  "minLength": 1
@@ -64551,6 +65773,10 @@
64551
65773
  "type": "string",
64552
65774
  "minLength": 1
64553
65775
  },
65776
+ "runId": {
65777
+ "type": "string",
65778
+ "minLength": 1
65779
+ },
64554
65780
  "createdAtMs": {
64555
65781
  "type": "integer",
64556
65782
  "minimum": 0
@@ -64683,6 +65909,10 @@
64683
65909
  "type": "string",
64684
65910
  "minLength": 1
64685
65911
  },
65912
+ "runId": {
65913
+ "type": "string",
65914
+ "minLength": 1
65915
+ },
64686
65916
  "timeoutMs": {
64687
65917
  "type": "integer",
64688
65918
  "minimum": 1
@@ -65016,6 +66246,10 @@
65016
66246
  "type": "string",
65017
66247
  "minLength": 1
65018
66248
  },
66249
+ "runId": {
66250
+ "type": "string",
66251
+ "minLength": 1
66252
+ },
65019
66253
  "createdAtMs": {
65020
66254
  "type": "integer",
65021
66255
  "minimum": 0
@@ -65168,6 +66402,10 @@
65168
66402
  "type": "string",
65169
66403
  "minLength": 1
65170
66404
  },
66405
+ "runId": {
66406
+ "type": "string",
66407
+ "minLength": 1
66408
+ },
65171
66409
  "createdAtMs": {
65172
66410
  "type": "integer",
65173
66411
  "minimum": 0