@agent-factory-platform/client 0.6.0 → 0.7.1

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.
@@ -60,6 +60,14 @@ export type Space = Message<"agentfactory.docs.v1.Space"> & {
60
60
  * @generated from field: uint64 acl_version = 7;
61
61
  */
62
62
  aclVersion: bigint;
63
+ /**
64
+ * @generated from field: uint64 metadata_version = 8;
65
+ */
66
+ metadataVersion: bigint;
67
+ /**
68
+ * @generated from field: google.protobuf.Timestamp archived_at = 9;
69
+ */
70
+ archivedAt?: Timestamp;
63
71
  };
64
72
  /**
65
73
  * Describes the message agentfactory.docs.v1.Space.
@@ -124,6 +132,85 @@ export type ListSpacesResponse = Message<"agentfactory.docs.v1.ListSpacesRespons
124
132
  * Use `create(ListSpacesResponseSchema)` to create a new message.
125
133
  */
126
134
  export declare const ListSpacesResponseSchema: GenMessage<ListSpacesResponse>;
135
+ /**
136
+ * @generated from message agentfactory.docs.v1.UpdateSpaceRequest
137
+ */
138
+ export type UpdateSpaceRequest = Message<"agentfactory.docs.v1.UpdateSpaceRequest"> & {
139
+ /**
140
+ * @generated from field: string space_id = 1;
141
+ */
142
+ spaceId: string;
143
+ /**
144
+ * @generated from field: string name = 2;
145
+ */
146
+ name: string;
147
+ /**
148
+ * @generated from field: string locale = 3;
149
+ */
150
+ locale: string;
151
+ /**
152
+ * @generated from field: uint64 expected_metadata_version = 4;
153
+ */
154
+ expectedMetadataVersion: bigint;
155
+ /**
156
+ * @generated from field: string command_id = 5;
157
+ */
158
+ commandId: string;
159
+ };
160
+ /**
161
+ * Describes the message agentfactory.docs.v1.UpdateSpaceRequest.
162
+ * Use `create(UpdateSpaceRequestSchema)` to create a new message.
163
+ */
164
+ export declare const UpdateSpaceRequestSchema: GenMessage<UpdateSpaceRequest>;
165
+ /**
166
+ * @generated from message agentfactory.docs.v1.ArchiveSpaceRequest
167
+ */
168
+ export type ArchiveSpaceRequest = Message<"agentfactory.docs.v1.ArchiveSpaceRequest"> & {
169
+ /**
170
+ * @generated from field: string space_id = 1;
171
+ */
172
+ spaceId: string;
173
+ /**
174
+ * @generated from field: uint64 expected_metadata_version = 2;
175
+ */
176
+ expectedMetadataVersion: bigint;
177
+ /**
178
+ * @generated from field: string command_id = 3;
179
+ */
180
+ commandId: string;
181
+ };
182
+ /**
183
+ * Describes the message agentfactory.docs.v1.ArchiveSpaceRequest.
184
+ * Use `create(ArchiveSpaceRequestSchema)` to create a new message.
185
+ */
186
+ export declare const ArchiveSpaceRequestSchema: GenMessage<ArchiveSpaceRequest>;
187
+ /**
188
+ * @generated from message agentfactory.docs.v1.LeaveSpaceRequest
189
+ */
190
+ export type LeaveSpaceRequest = Message<"agentfactory.docs.v1.LeaveSpaceRequest"> & {
191
+ /**
192
+ * @generated from field: string space_id = 1;
193
+ */
194
+ spaceId: string;
195
+ /**
196
+ * @generated from field: string command_id = 2;
197
+ */
198
+ commandId: string;
199
+ };
200
+ /**
201
+ * Describes the message agentfactory.docs.v1.LeaveSpaceRequest.
202
+ * Use `create(LeaveSpaceRequestSchema)` to create a new message.
203
+ */
204
+ export declare const LeaveSpaceRequestSchema: GenMessage<LeaveSpaceRequest>;
205
+ /**
206
+ * @generated from message agentfactory.docs.v1.LeaveSpaceResponse
207
+ */
208
+ export type LeaveSpaceResponse = Message<"agentfactory.docs.v1.LeaveSpaceResponse"> & {};
209
+ /**
210
+ * Describes the message agentfactory.docs.v1.LeaveSpaceResponse.
211
+ * Use `create(LeaveSpaceResponseSchema)` to create a new message.
212
+ */
213
+ export declare const LeaveSpaceResponseSchema: GenMessage<LeaveSpaceResponse>;
127
214
  /**
128
215
  * @generated from message agentfactory.docs.v1.Node
129
216
  */
@@ -471,6 +558,46 @@ export type RestoreNodeRequest = Message<"agentfactory.docs.v1.RestoreNodeReques
471
558
  * Use `create(RestoreNodeRequestSchema)` to create a new message.
472
559
  */
473
560
  export declare const RestoreNodeRequestSchema: GenMessage<RestoreNodeRequest>;
561
+ /**
562
+ * @generated from message agentfactory.docs.v1.ListTrashRequest
563
+ */
564
+ export type ListTrashRequest = Message<"agentfactory.docs.v1.ListTrashRequest"> & {
565
+ /**
566
+ * @generated from field: string space_id = 1;
567
+ */
568
+ spaceId: string;
569
+ /**
570
+ * @generated from field: uint32 page_size = 2;
571
+ */
572
+ pageSize: number;
573
+ /**
574
+ * @generated from field: string page_token = 3;
575
+ */
576
+ pageToken: string;
577
+ };
578
+ /**
579
+ * Describes the message agentfactory.docs.v1.ListTrashRequest.
580
+ * Use `create(ListTrashRequestSchema)` to create a new message.
581
+ */
582
+ export declare const ListTrashRequestSchema: GenMessage<ListTrashRequest>;
583
+ /**
584
+ * @generated from message agentfactory.docs.v1.ListTrashResponse
585
+ */
586
+ export type ListTrashResponse = Message<"agentfactory.docs.v1.ListTrashResponse"> & {
587
+ /**
588
+ * @generated from field: repeated agentfactory.docs.v1.Node nodes = 1;
589
+ */
590
+ nodes: Node[];
591
+ /**
592
+ * @generated from field: string next_page_token = 2;
593
+ */
594
+ nextPageToken: string;
595
+ };
596
+ /**
597
+ * Describes the message agentfactory.docs.v1.ListTrashResponse.
598
+ * Use `create(ListTrashResponseSchema)` to create a new message.
599
+ */
600
+ export declare const ListTrashResponseSchema: GenMessage<ListTrashResponse>;
474
601
  /**
475
602
  * @generated from message agentfactory.docs.v1.Revision
476
603
  */
@@ -499,6 +626,10 @@ export type Revision = Message<"agentfactory.docs.v1.Revision"> & {
499
626
  * @generated from field: google.protobuf.Timestamp created_at = 6;
500
627
  */
501
628
  createdAt?: Timestamp;
629
+ /**
630
+ * @generated from field: string name = 7;
631
+ */
632
+ name: string;
502
633
  };
503
634
  /**
504
635
  * Describes the message agentfactory.docs.v1.Revision.
@@ -525,12 +656,46 @@ export type SaveRevisionRequest = Message<"agentfactory.docs.v1.SaveRevisionRequ
525
656
  * @generated from field: string content_json = 4;
526
657
  */
527
658
  contentJson: string;
659
+ /**
660
+ * @generated from field: string name = 5;
661
+ */
662
+ name: string;
663
+ /**
664
+ * @generated from field: optional uint64 collaboration_sequence = 6;
665
+ */
666
+ collaborationSequence?: bigint;
528
667
  };
529
668
  /**
530
669
  * Describes the message agentfactory.docs.v1.SaveRevisionRequest.
531
670
  * Use `create(SaveRevisionRequestSchema)` to create a new message.
532
671
  */
533
672
  export declare const SaveRevisionRequestSchema: GenMessage<SaveRevisionRequest>;
673
+ /**
674
+ * @generated from message agentfactory.docs.v1.RestoreRevisionRequest
675
+ */
676
+ export type RestoreRevisionRequest = Message<"agentfactory.docs.v1.RestoreRevisionRequest"> & {
677
+ /**
678
+ * @generated from field: string node_id = 1;
679
+ */
680
+ nodeId: string;
681
+ /**
682
+ * @generated from field: string revision_id = 2;
683
+ */
684
+ revisionId: string;
685
+ /**
686
+ * @generated from field: uint64 expected_revision = 3;
687
+ */
688
+ expectedRevision: bigint;
689
+ /**
690
+ * @generated from field: string name = 4;
691
+ */
692
+ name: string;
693
+ };
694
+ /**
695
+ * Describes the message agentfactory.docs.v1.RestoreRevisionRequest.
696
+ * Use `create(RestoreRevisionRequestSchema)` to create a new message.
697
+ */
698
+ export declare const RestoreRevisionRequestSchema: GenMessage<RestoreRevisionRequest>;
534
699
  /**
535
700
  * @generated from message agentfactory.docs.v1.ListRevisionsRequest
536
701
  */
@@ -689,6 +854,37 @@ export type RetryRevisionIndexRequest = Message<"agentfactory.docs.v1.RetryRevis
689
854
  * Use `create(RetryRevisionIndexRequestSchema)` to create a new message.
690
855
  */
691
856
  export declare const RetryRevisionIndexRequestSchema: GenMessage<RetryRevisionIndexRequest>;
857
+ /**
858
+ * Direct authorization target. Node grants do not inherit to descendants.
859
+ *
860
+ * @generated from message agentfactory.docs.v1.AclResource
861
+ */
862
+ export type AclResource = Message<"agentfactory.docs.v1.AclResource"> & {
863
+ /**
864
+ * @generated from oneof agentfactory.docs.v1.AclResource.target
865
+ */
866
+ target: {
867
+ /**
868
+ * @generated from field: string space_id = 1;
869
+ */
870
+ value: string;
871
+ case: "spaceId";
872
+ } | {
873
+ /**
874
+ * @generated from field: string node_id = 2;
875
+ */
876
+ value: string;
877
+ case: "nodeId";
878
+ } | {
879
+ case: undefined;
880
+ value?: undefined;
881
+ };
882
+ };
883
+ /**
884
+ * Describes the message agentfactory.docs.v1.AclResource.
885
+ * Use `create(AclResourceSchema)` to create a new message.
886
+ */
887
+ export declare const AclResourceSchema: GenMessage<AclResource>;
692
888
  /**
693
889
  * @generated from message agentfactory.docs.v1.AclEntry
694
890
  */
@@ -709,6 +905,10 @@ export type AclEntry = Message<"agentfactory.docs.v1.AclEntry"> & {
709
905
  * @generated from field: string role = 4;
710
906
  */
711
907
  role: string;
908
+ /**
909
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 5;
910
+ */
911
+ resource?: AclResource;
712
912
  };
713
913
  /**
714
914
  * Describes the message agentfactory.docs.v1.AclEntry.
@@ -735,6 +935,10 @@ export type SetAclRequest = Message<"agentfactory.docs.v1.SetAclRequest"> & {
735
935
  * @generated from field: uint64 expected_acl_version = 4;
736
936
  */
737
937
  expectedAclVersion: bigint;
938
+ /**
939
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 5;
940
+ */
941
+ resource?: AclResource;
738
942
  };
739
943
  /**
740
944
  * Describes the message agentfactory.docs.v1.SetAclRequest.
@@ -757,6 +961,10 @@ export type RevokeAclRequest = Message<"agentfactory.docs.v1.RevokeAclRequest">
757
961
  * @generated from field: uint64 expected_acl_version = 3;
758
962
  */
759
963
  expectedAclVersion: bigint;
964
+ /**
965
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 4;
966
+ */
967
+ resource?: AclResource;
760
968
  };
761
969
  /**
762
970
  * Describes the message agentfactory.docs.v1.RevokeAclRequest.
@@ -788,6 +996,10 @@ export type ListAclRequest = Message<"agentfactory.docs.v1.ListAclRequest"> & {
788
996
  * @generated from field: string page_token = 3;
789
997
  */
790
998
  pageToken: string;
999
+ /**
1000
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 4;
1001
+ */
1002
+ resource?: AclResource;
791
1003
  };
792
1004
  /**
793
1005
  * Describes the message agentfactory.docs.v1.ListAclRequest.
@@ -806,6 +1018,10 @@ export type ListAclResponse = Message<"agentfactory.docs.v1.ListAclResponse"> &
806
1018
  * @generated from field: string next_page_token = 2;
807
1019
  */
808
1020
  nextPageToken: string;
1021
+ /**
1022
+ * @generated from field: uint64 acl_version = 3;
1023
+ */
1024
+ aclVersion: bigint;
809
1025
  };
810
1026
  /**
811
1027
  * Describes the message agentfactory.docs.v1.ListAclResponse.
@@ -848,6 +1064,14 @@ export type Invite = Message<"agentfactory.docs.v1.Invite"> & {
848
1064
  * @generated from field: agentfactory.docs.v1.SecretAvailability secret_availability = 8;
849
1065
  */
850
1066
  secretAvailability: SecretAvailability;
1067
+ /**
1068
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 9;
1069
+ */
1070
+ resource?: AclResource;
1071
+ /**
1072
+ * @generated from field: string recipient_id = 10;
1073
+ */
1074
+ recipientId: string;
851
1075
  };
852
1076
  /**
853
1077
  * Describes the message agentfactory.docs.v1.Invite.
@@ -874,6 +1098,14 @@ export type CreateInviteRequest = Message<"agentfactory.docs.v1.CreateInviteRequ
874
1098
  * @generated from field: string command_id = 4;
875
1099
  */
876
1100
  commandId: string;
1101
+ /**
1102
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 5;
1103
+ */
1104
+ resource?: AclResource;
1105
+ /**
1106
+ * @generated from field: string recipient_id = 6;
1107
+ */
1108
+ recipientId: string;
877
1109
  };
878
1110
  /**
879
1111
  * Describes the message agentfactory.docs.v1.CreateInviteRequest.
@@ -896,6 +1128,10 @@ export type ListInvitesRequest = Message<"agentfactory.docs.v1.ListInvitesReques
896
1128
  * @generated from field: string page_token = 3;
897
1129
  */
898
1130
  pageToken: string;
1131
+ /**
1132
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 4;
1133
+ */
1134
+ resource?: AclResource;
899
1135
  };
900
1136
  /**
901
1137
  * Describes the message agentfactory.docs.v1.ListInvitesRequest.
@@ -932,6 +1168,10 @@ export type RevokeInviteRequest = Message<"agentfactory.docs.v1.RevokeInviteRequ
932
1168
  * @generated from field: string invite_id = 2;
933
1169
  */
934
1170
  inviteId: string;
1171
+ /**
1172
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 3;
1173
+ */
1174
+ resource?: AclResource;
935
1175
  };
936
1176
  /**
937
1177
  * Describes the message agentfactory.docs.v1.RevokeInviteRequest.
@@ -998,6 +1238,10 @@ export type Asset = Message<"agentfactory.docs.v1.Asset"> & {
998
1238
  * @generated from field: agentfactory.docs.v1.AssetStatus status = 8;
999
1239
  */
1000
1240
  status: AssetStatus;
1241
+ /**
1242
+ * @generated from field: string node_id = 9;
1243
+ */
1244
+ nodeId: string;
1001
1245
  };
1002
1246
  /**
1003
1247
  * Describes the message agentfactory.docs.v1.Asset.
@@ -1062,6 +1306,10 @@ export type BeginAssetUploadRequest = Message<"agentfactory.docs.v1.BeginAssetUp
1062
1306
  * @generated from field: string command_id = 6;
1063
1307
  */
1064
1308
  commandId: string;
1309
+ /**
1310
+ * @generated from field: agentfactory.docs.v1.AclResource resource = 7;
1311
+ */
1312
+ resource?: AclResource;
1065
1313
  };
1066
1314
  /**
1067
1315
  * Describes the message agentfactory.docs.v1.BeginAssetUploadRequest.
@@ -1152,6 +1400,14 @@ export type ResolveAssetResponse = Message<"agentfactory.docs.v1.ResolveAssetRes
1152
1400
  * @generated from field: google.protobuf.Timestamp expires_at = 2;
1153
1401
  */
1154
1402
  expiresAt?: Timestamp;
1403
+ /**
1404
+ * @generated from field: string content_type = 3;
1405
+ */
1406
+ contentType: string;
1407
+ /**
1408
+ * @generated from field: uint64 size = 4;
1409
+ */
1410
+ size: bigint;
1155
1411
  };
1156
1412
  /**
1157
1413
  * Describes the message agentfactory.docs.v1.ResolveAssetResponse.
@@ -1263,35 +1519,39 @@ export type GetReleaseRequest = Message<"agentfactory.docs.v1.GetReleaseRequest"
1263
1519
  */
1264
1520
  export declare const GetReleaseRequestSchema: GenMessage<GetReleaseRequest>;
1265
1521
  /**
1266
- * @generated from message agentfactory.docs.v1.SearchRequest
1522
+ * @generated from message agentfactory.docs.v1.PublishedAsset
1267
1523
  */
1268
- export type SearchRequest = Message<"agentfactory.docs.v1.SearchRequest"> & {
1524
+ export type PublishedAsset = Message<"agentfactory.docs.v1.PublishedAsset"> & {
1269
1525
  /**
1270
- * @generated from field: repeated string space_ids = 1;
1526
+ * @generated from field: string asset_id = 1;
1271
1527
  */
1272
- spaceIds: string[];
1528
+ assetId: string;
1273
1529
  /**
1274
- * @generated from field: string query = 2;
1530
+ * @generated from field: string object_key = 2;
1275
1531
  */
1276
- query: string;
1532
+ objectKey: string;
1277
1533
  /**
1278
- * @generated from field: uint32 limit = 3;
1534
+ * @generated from field: string content_type = 3;
1279
1535
  */
1280
- limit: number;
1536
+ contentType: string;
1281
1537
  /**
1282
- * @generated from field: string locale = 4;
1538
+ * @generated from field: uint64 size = 4;
1283
1539
  */
1284
- locale: string;
1540
+ size: bigint;
1541
+ /**
1542
+ * @generated from field: bytes content_sha256 = 5;
1543
+ */
1544
+ contentSha256: Uint8Array;
1285
1545
  };
1286
1546
  /**
1287
- * Describes the message agentfactory.docs.v1.SearchRequest.
1288
- * Use `create(SearchRequestSchema)` to create a new message.
1547
+ * Describes the message agentfactory.docs.v1.PublishedAsset.
1548
+ * Use `create(PublishedAssetSchema)` to create a new message.
1289
1549
  */
1290
- export declare const SearchRequestSchema: GenMessage<SearchRequest>;
1550
+ export declare const PublishedAssetSchema: GenMessage<PublishedAsset>;
1291
1551
  /**
1292
- * @generated from message agentfactory.docs.v1.SearchHit
1552
+ * @generated from message agentfactory.docs.v1.PublishedNode
1293
1553
  */
1294
- export type SearchHit = Message<"agentfactory.docs.v1.SearchHit"> & {
1554
+ export type PublishedNode = Message<"agentfactory.docs.v1.PublishedNode"> & {
1295
1555
  /**
1296
1556
  * @generated from field: string node_id = 1;
1297
1557
  */
@@ -1301,80 +1561,520 @@ export type SearchHit = Message<"agentfactory.docs.v1.SearchHit"> & {
1301
1561
  */
1302
1562
  revisionId: string;
1303
1563
  /**
1304
- * @generated from field: string title = 3;
1564
+ * @generated from field: string parent_node_id = 3;
1565
+ */
1566
+ parentNodeId: string;
1567
+ /**
1568
+ * @generated from field: agentfactory.docs.v1.NodeKind kind = 4;
1569
+ */
1570
+ kind: NodeKind;
1571
+ /**
1572
+ * @generated from field: string title = 5;
1305
1573
  */
1306
1574
  title: string;
1307
1575
  /**
1308
- * @generated from field: string excerpt = 4;
1576
+ * @generated from field: string slug = 6;
1309
1577
  */
1310
- excerpt: string;
1578
+ slug: string;
1311
1579
  /**
1312
- * @generated from field: float score = 5;
1580
+ * @generated from field: string locale = 7;
1313
1581
  */
1314
- score: number;
1582
+ locale: string;
1315
1583
  /**
1316
- * @generated from field: string chunk_id = 6;
1584
+ * @generated from field: int32 position = 8;
1317
1585
  */
1318
- chunkId: string;
1586
+ position: number;
1319
1587
  /**
1320
- * @generated from field: uint32 start_offset = 7;
1588
+ * @generated from field: string schema = 9;
1321
1589
  */
1322
- startOffset: number;
1590
+ schema: string;
1323
1591
  /**
1324
- * @generated from field: uint32 end_offset = 8;
1592
+ * @generated from field: string content_json = 10;
1325
1593
  */
1326
- endOffset: number;
1594
+ contentJson: string;
1327
1595
  /**
1328
- * @generated from field: bytes content_sha256 = 9;
1596
+ * @generated from field: repeated agentfactory.docs.v1.PublishedAsset assets = 11;
1329
1597
  */
1330
- contentSha256: Uint8Array;
1598
+ assets: PublishedAsset[];
1331
1599
  };
1332
1600
  /**
1333
- * Describes the message agentfactory.docs.v1.SearchHit.
1334
- * Use `create(SearchHitSchema)` to create a new message.
1601
+ * Describes the message agentfactory.docs.v1.PublishedNode.
1602
+ * Use `create(PublishedNodeSchema)` to create a new message.
1335
1603
  */
1336
- export declare const SearchHitSchema: GenMessage<SearchHit>;
1604
+ export declare const PublishedNodeSchema: GenMessage<PublishedNode>;
1337
1605
  /**
1338
- * @generated from message agentfactory.docs.v1.SearchCoverage
1606
+ * @generated from message agentfactory.docs.v1.PublishedRelease
1339
1607
  */
1340
- export type SearchCoverage = Message<"agentfactory.docs.v1.SearchCoverage"> & {
1608
+ export type PublishedRelease = Message<"agentfactory.docs.v1.PublishedRelease"> & {
1341
1609
  /**
1342
- * @generated from field: uint32 current_revisions = 1;
1610
+ * @generated from field: string id = 1;
1343
1611
  */
1344
- currentRevisions: number;
1612
+ id: string;
1345
1613
  /**
1346
- * @generated from field: uint32 indexed_revisions = 2;
1614
+ * @generated from field: string space_id = 2;
1347
1615
  */
1348
- indexedRevisions: number;
1616
+ spaceId: string;
1349
1617
  /**
1350
- * @generated from field: uint32 pending_revisions = 3;
1618
+ * @generated from field: string version = 3;
1351
1619
  */
1352
- pendingRevisions: number;
1620
+ version: string;
1353
1621
  /**
1354
- * @generated from field: uint32 dead_letter_revisions = 4;
1622
+ * @generated from field: string locale = 4;
1355
1623
  */
1356
- deadLetterRevisions: number;
1624
+ locale: string;
1625
+ /**
1626
+ * @generated from field: repeated agentfactory.docs.v1.PublishedNode nodes = 5;
1627
+ */
1628
+ nodes: PublishedNode[];
1629
+ /**
1630
+ * @generated from field: google.protobuf.Timestamp created_at = 6;
1631
+ */
1632
+ createdAt?: Timestamp;
1357
1633
  };
1358
1634
  /**
1359
- * Describes the message agentfactory.docs.v1.SearchCoverage.
1360
- * Use `create(SearchCoverageSchema)` to create a new message.
1635
+ * Describes the message agentfactory.docs.v1.PublishedRelease.
1636
+ * Use `create(PublishedReleaseSchema)` to create a new message.
1361
1637
  */
1362
- export declare const SearchCoverageSchema: GenMessage<SearchCoverage>;
1638
+ export declare const PublishedReleaseSchema: GenMessage<PublishedRelease>;
1363
1639
  /**
1364
- * @generated from message agentfactory.docs.v1.SearchResponse
1640
+ * @generated from message agentfactory.docs.v1.PublishedReleaseSummary
1365
1641
  */
1366
- export type SearchResponse = Message<"agentfactory.docs.v1.SearchResponse"> & {
1642
+ export type PublishedReleaseSummary = Message<"agentfactory.docs.v1.PublishedReleaseSummary"> & {
1367
1643
  /**
1368
- * @generated from field: repeated agentfactory.docs.v1.SearchHit hits = 1;
1644
+ * @generated from field: string id = 1;
1369
1645
  */
1370
- hits: SearchHit[];
1646
+ id: string;
1371
1647
  /**
1372
- * @generated from field: string availability = 2 [deprecated = true];
1373
- * @deprecated
1648
+ * @generated from field: string version = 2;
1374
1649
  */
1375
- availability: string;
1650
+ version: string;
1376
1651
  /**
1377
- * @generated from field: agentfactory.docs.v1.SearchMode mode = 3;
1652
+ * @generated from field: string locale = 3;
1653
+ */
1654
+ locale: string;
1655
+ /**
1656
+ * @generated from field: google.protobuf.Timestamp created_at = 4;
1657
+ */
1658
+ createdAt?: Timestamp;
1659
+ };
1660
+ /**
1661
+ * Describes the message agentfactory.docs.v1.PublishedReleaseSummary.
1662
+ * Use `create(PublishedReleaseSummarySchema)` to create a new message.
1663
+ */
1664
+ export declare const PublishedReleaseSummarySchema: GenMessage<PublishedReleaseSummary>;
1665
+ /**
1666
+ * @generated from message agentfactory.docs.v1.GetPublishedReleaseRequest
1667
+ */
1668
+ export type GetPublishedReleaseRequest = Message<"agentfactory.docs.v1.GetPublishedReleaseRequest"> & {
1669
+ /**
1670
+ * @generated from field: string tenant_id = 1;
1671
+ */
1672
+ tenantId: string;
1673
+ /**
1674
+ * @generated from field: string space_id = 2;
1675
+ */
1676
+ spaceId: string;
1677
+ /**
1678
+ * @generated from field: string version = 3;
1679
+ */
1680
+ version: string;
1681
+ /**
1682
+ * @generated from field: string locale = 4;
1683
+ */
1684
+ locale: string;
1685
+ };
1686
+ /**
1687
+ * Describes the message agentfactory.docs.v1.GetPublishedReleaseRequest.
1688
+ * Use `create(GetPublishedReleaseRequestSchema)` to create a new message.
1689
+ */
1690
+ export declare const GetPublishedReleaseRequestSchema: GenMessage<GetPublishedReleaseRequest>;
1691
+ /**
1692
+ * @generated from message agentfactory.docs.v1.GetLatestPublishedReleaseRequest
1693
+ */
1694
+ export type GetLatestPublishedReleaseRequest = Message<"agentfactory.docs.v1.GetLatestPublishedReleaseRequest"> & {
1695
+ /**
1696
+ * @generated from field: string tenant_id = 1;
1697
+ */
1698
+ tenantId: string;
1699
+ /**
1700
+ * @generated from field: string space_id = 2;
1701
+ */
1702
+ spaceId: string;
1703
+ /**
1704
+ * @generated from field: string locale = 3;
1705
+ */
1706
+ locale: string;
1707
+ };
1708
+ /**
1709
+ * Describes the message agentfactory.docs.v1.GetLatestPublishedReleaseRequest.
1710
+ * Use `create(GetLatestPublishedReleaseRequestSchema)` to create a new message.
1711
+ */
1712
+ export declare const GetLatestPublishedReleaseRequestSchema: GenMessage<GetLatestPublishedReleaseRequest>;
1713
+ /**
1714
+ * @generated from message agentfactory.docs.v1.ListPublishedReleasesRequest
1715
+ */
1716
+ export type ListPublishedReleasesRequest = Message<"agentfactory.docs.v1.ListPublishedReleasesRequest"> & {
1717
+ /**
1718
+ * @generated from field: string tenant_id = 1;
1719
+ */
1720
+ tenantId: string;
1721
+ /**
1722
+ * @generated from field: string space_id = 2;
1723
+ */
1724
+ spaceId: string;
1725
+ /**
1726
+ * @generated from field: uint32 page_size = 3;
1727
+ */
1728
+ pageSize: number;
1729
+ /**
1730
+ * @generated from field: string page_token = 4;
1731
+ */
1732
+ pageToken: string;
1733
+ };
1734
+ /**
1735
+ * Describes the message agentfactory.docs.v1.ListPublishedReleasesRequest.
1736
+ * Use `create(ListPublishedReleasesRequestSchema)` to create a new message.
1737
+ */
1738
+ export declare const ListPublishedReleasesRequestSchema: GenMessage<ListPublishedReleasesRequest>;
1739
+ /**
1740
+ * @generated from message agentfactory.docs.v1.ListPublishedReleasesResponse
1741
+ */
1742
+ export type ListPublishedReleasesResponse = Message<"agentfactory.docs.v1.ListPublishedReleasesResponse"> & {
1743
+ /**
1744
+ * @generated from field: repeated agentfactory.docs.v1.PublishedReleaseSummary releases = 1;
1745
+ */
1746
+ releases: PublishedReleaseSummary[];
1747
+ /**
1748
+ * @generated from field: string next_page_token = 2;
1749
+ */
1750
+ nextPageToken: string;
1751
+ };
1752
+ /**
1753
+ * Describes the message agentfactory.docs.v1.ListPublishedReleasesResponse.
1754
+ * Use `create(ListPublishedReleasesResponseSchema)` to create a new message.
1755
+ */
1756
+ export declare const ListPublishedReleasesResponseSchema: GenMessage<ListPublishedReleasesResponse>;
1757
+ /**
1758
+ * @generated from message agentfactory.docs.v1.LocaleVariant
1759
+ */
1760
+ export type LocaleVariant = Message<"agentfactory.docs.v1.LocaleVariant"> & {
1761
+ /**
1762
+ * @generated from field: string id = 1;
1763
+ */
1764
+ id: string;
1765
+ /**
1766
+ * @generated from field: string space_id = 2;
1767
+ */
1768
+ spaceId: string;
1769
+ /**
1770
+ * @generated from field: string source_node_id = 3;
1771
+ */
1772
+ sourceNodeId: string;
1773
+ /**
1774
+ * @generated from field: string target_node_id = 4;
1775
+ */
1776
+ targetNodeId: string;
1777
+ /**
1778
+ * @generated from field: string source_revision_id = 5;
1779
+ */
1780
+ sourceRevisionId: string;
1781
+ /**
1782
+ * @generated from field: string target_revision_id = 6;
1783
+ */
1784
+ targetRevisionId: string;
1785
+ /**
1786
+ * @generated from field: string target_locale = 7;
1787
+ */
1788
+ targetLocale: string;
1789
+ /**
1790
+ * @generated from field: uint64 expected_target_revision = 8;
1791
+ */
1792
+ expectedTargetRevision: bigint;
1793
+ /**
1794
+ * @generated from field: string workflow_instance_id = 9;
1795
+ */
1796
+ workflowInstanceId: string;
1797
+ /**
1798
+ * @generated from field: agentfactory.docs.v1.TranslationStatus status = 10;
1799
+ */
1800
+ status: TranslationStatus;
1801
+ /**
1802
+ * @generated from field: string expected_target_revision_id = 11;
1803
+ */
1804
+ expectedTargetRevisionId: string;
1805
+ };
1806
+ /**
1807
+ * Describes the message agentfactory.docs.v1.LocaleVariant.
1808
+ * Use `create(LocaleVariantSchema)` to create a new message.
1809
+ */
1810
+ export declare const LocaleVariantSchema: GenMessage<LocaleVariant>;
1811
+ /**
1812
+ * @generated from message agentfactory.docs.v1.RequestTranslationRequest
1813
+ */
1814
+ export type RequestTranslationRequest = Message<"agentfactory.docs.v1.RequestTranslationRequest"> & {
1815
+ /**
1816
+ * @generated from field: string source_node_id = 1;
1817
+ */
1818
+ sourceNodeId: string;
1819
+ /**
1820
+ * @generated from field: string target_node_id = 2;
1821
+ */
1822
+ targetNodeId: string;
1823
+ /**
1824
+ * @generated from field: string target_locale = 3;
1825
+ */
1826
+ targetLocale: string;
1827
+ /**
1828
+ * @generated from field: string command_id = 4;
1829
+ */
1830
+ commandId: string;
1831
+ };
1832
+ /**
1833
+ * Describes the message agentfactory.docs.v1.RequestTranslationRequest.
1834
+ * Use `create(RequestTranslationRequestSchema)` to create a new message.
1835
+ */
1836
+ export declare const RequestTranslationRequestSchema: GenMessage<RequestTranslationRequest>;
1837
+ /**
1838
+ * @generated from message agentfactory.docs.v1.GetLocaleVariantRequest
1839
+ */
1840
+ export type GetLocaleVariantRequest = Message<"agentfactory.docs.v1.GetLocaleVariantRequest"> & {
1841
+ /**
1842
+ * @generated from field: string source_node_id = 1;
1843
+ */
1844
+ sourceNodeId: string;
1845
+ /**
1846
+ * @generated from field: string target_locale = 2;
1847
+ */
1848
+ targetLocale: string;
1849
+ };
1850
+ /**
1851
+ * Describes the message agentfactory.docs.v1.GetLocaleVariantRequest.
1852
+ * Use `create(GetLocaleVariantRequestSchema)` to create a new message.
1853
+ */
1854
+ export declare const GetLocaleVariantRequestSchema: GenMessage<GetLocaleVariantRequest>;
1855
+ /**
1856
+ * @generated from message agentfactory.docs.v1.CompleteTranslationRequest
1857
+ */
1858
+ export type CompleteTranslationRequest = Message<"agentfactory.docs.v1.CompleteTranslationRequest"> & {
1859
+ /**
1860
+ * @generated from field: string request_id = 1;
1861
+ */
1862
+ requestId: string;
1863
+ /**
1864
+ * @generated from field: string workflow_instance_id = 2;
1865
+ */
1866
+ workflowInstanceId: string;
1867
+ /**
1868
+ * @generated from field: string source_revision_id = 3;
1869
+ */
1870
+ sourceRevisionId: string;
1871
+ /**
1872
+ * @generated from field: string schema = 4;
1873
+ */
1874
+ schema: string;
1875
+ /**
1876
+ * @generated from field: string content_json = 5;
1877
+ */
1878
+ contentJson: string;
1879
+ };
1880
+ /**
1881
+ * Describes the message agentfactory.docs.v1.CompleteTranslationRequest.
1882
+ * Use `create(CompleteTranslationRequestSchema)` to create a new message.
1883
+ */
1884
+ export declare const CompleteTranslationRequestSchema: GenMessage<CompleteTranslationRequest>;
1885
+ /**
1886
+ * @generated from message agentfactory.docs.v1.LocaleReleaseNode
1887
+ */
1888
+ export type LocaleReleaseNode = Message<"agentfactory.docs.v1.LocaleReleaseNode"> & {
1889
+ /**
1890
+ * @generated from field: string source_node_id = 1;
1891
+ */
1892
+ sourceNodeId: string;
1893
+ /**
1894
+ * @generated from field: string target_node_id = 2;
1895
+ */
1896
+ targetNodeId: string;
1897
+ };
1898
+ /**
1899
+ * Describes the message agentfactory.docs.v1.LocaleReleaseNode.
1900
+ * Use `create(LocaleReleaseNodeSchema)` to create a new message.
1901
+ */
1902
+ export declare const LocaleReleaseNodeSchema: GenMessage<LocaleReleaseNode>;
1903
+ /**
1904
+ * @generated from message agentfactory.docs.v1.LocaleRelease
1905
+ */
1906
+ export type LocaleRelease = Message<"agentfactory.docs.v1.LocaleRelease"> & {
1907
+ /**
1908
+ * @generated from field: string locale = 1;
1909
+ */
1910
+ locale: string;
1911
+ /**
1912
+ * @generated from field: repeated agentfactory.docs.v1.LocaleReleaseNode nodes = 2;
1913
+ */
1914
+ nodes: LocaleReleaseNode[];
1915
+ };
1916
+ /**
1917
+ * Describes the message agentfactory.docs.v1.LocaleRelease.
1918
+ * Use `create(LocaleReleaseSchema)` to create a new message.
1919
+ */
1920
+ export declare const LocaleReleaseSchema: GenMessage<LocaleRelease>;
1921
+ /**
1922
+ * @generated from message agentfactory.docs.v1.PublishReleaseBundleRequest
1923
+ */
1924
+ export type PublishReleaseBundleRequest = Message<"agentfactory.docs.v1.PublishReleaseBundleRequest"> & {
1925
+ /**
1926
+ * @generated from field: string space_id = 1;
1927
+ */
1928
+ spaceId: string;
1929
+ /**
1930
+ * @generated from field: string version = 2;
1931
+ */
1932
+ version: string;
1933
+ /**
1934
+ * @generated from field: string source_locale = 3;
1935
+ */
1936
+ sourceLocale: string;
1937
+ /**
1938
+ * @generated from field: repeated agentfactory.docs.v1.LocaleRelease releases = 4;
1939
+ */
1940
+ releases: LocaleRelease[];
1941
+ /**
1942
+ * @generated from field: string command_id = 5;
1943
+ */
1944
+ commandId: string;
1945
+ };
1946
+ /**
1947
+ * Describes the message agentfactory.docs.v1.PublishReleaseBundleRequest.
1948
+ * Use `create(PublishReleaseBundleRequestSchema)` to create a new message.
1949
+ */
1950
+ export declare const PublishReleaseBundleRequestSchema: GenMessage<PublishReleaseBundleRequest>;
1951
+ /**
1952
+ * @generated from message agentfactory.docs.v1.PublishReleaseBundleResponse
1953
+ */
1954
+ export type PublishReleaseBundleResponse = Message<"agentfactory.docs.v1.PublishReleaseBundleResponse"> & {
1955
+ /**
1956
+ * @generated from field: repeated agentfactory.docs.v1.Release releases = 1;
1957
+ */
1958
+ releases: Release[];
1959
+ };
1960
+ /**
1961
+ * Describes the message agentfactory.docs.v1.PublishReleaseBundleResponse.
1962
+ * Use `create(PublishReleaseBundleResponseSchema)` to create a new message.
1963
+ */
1964
+ export declare const PublishReleaseBundleResponseSchema: GenMessage<PublishReleaseBundleResponse>;
1965
+ /**
1966
+ * @generated from message agentfactory.docs.v1.SearchRequest
1967
+ */
1968
+ export type SearchRequest = Message<"agentfactory.docs.v1.SearchRequest"> & {
1969
+ /**
1970
+ * @generated from field: repeated string space_ids = 1;
1971
+ */
1972
+ spaceIds: string[];
1973
+ /**
1974
+ * @generated from field: string query = 2;
1975
+ */
1976
+ query: string;
1977
+ /**
1978
+ * @generated from field: uint32 limit = 3;
1979
+ */
1980
+ limit: number;
1981
+ /**
1982
+ * @generated from field: string locale = 4;
1983
+ */
1984
+ locale: string;
1985
+ };
1986
+ /**
1987
+ * Describes the message agentfactory.docs.v1.SearchRequest.
1988
+ * Use `create(SearchRequestSchema)` to create a new message.
1989
+ */
1990
+ export declare const SearchRequestSchema: GenMessage<SearchRequest>;
1991
+ /**
1992
+ * @generated from message agentfactory.docs.v1.SearchHit
1993
+ */
1994
+ export type SearchHit = Message<"agentfactory.docs.v1.SearchHit"> & {
1995
+ /**
1996
+ * @generated from field: string node_id = 1;
1997
+ */
1998
+ nodeId: string;
1999
+ /**
2000
+ * @generated from field: string revision_id = 2;
2001
+ */
2002
+ revisionId: string;
2003
+ /**
2004
+ * @generated from field: string title = 3;
2005
+ */
2006
+ title: string;
2007
+ /**
2008
+ * @generated from field: string excerpt = 4;
2009
+ */
2010
+ excerpt: string;
2011
+ /**
2012
+ * @generated from field: float score = 5;
2013
+ */
2014
+ score: number;
2015
+ /**
2016
+ * @generated from field: string chunk_id = 6;
2017
+ */
2018
+ chunkId: string;
2019
+ /**
2020
+ * @generated from field: uint32 start_offset = 7;
2021
+ */
2022
+ startOffset: number;
2023
+ /**
2024
+ * @generated from field: uint32 end_offset = 8;
2025
+ */
2026
+ endOffset: number;
2027
+ /**
2028
+ * @generated from field: bytes content_sha256 = 9;
2029
+ */
2030
+ contentSha256: Uint8Array;
2031
+ };
2032
+ /**
2033
+ * Describes the message agentfactory.docs.v1.SearchHit.
2034
+ * Use `create(SearchHitSchema)` to create a new message.
2035
+ */
2036
+ export declare const SearchHitSchema: GenMessage<SearchHit>;
2037
+ /**
2038
+ * @generated from message agentfactory.docs.v1.SearchCoverage
2039
+ */
2040
+ export type SearchCoverage = Message<"agentfactory.docs.v1.SearchCoverage"> & {
2041
+ /**
2042
+ * @generated from field: uint32 current_revisions = 1;
2043
+ */
2044
+ currentRevisions: number;
2045
+ /**
2046
+ * @generated from field: uint32 indexed_revisions = 2;
2047
+ */
2048
+ indexedRevisions: number;
2049
+ /**
2050
+ * @generated from field: uint32 pending_revisions = 3;
2051
+ */
2052
+ pendingRevisions: number;
2053
+ /**
2054
+ * @generated from field: uint32 dead_letter_revisions = 4;
2055
+ */
2056
+ deadLetterRevisions: number;
2057
+ };
2058
+ /**
2059
+ * Describes the message agentfactory.docs.v1.SearchCoverage.
2060
+ * Use `create(SearchCoverageSchema)` to create a new message.
2061
+ */
2062
+ export declare const SearchCoverageSchema: GenMessage<SearchCoverage>;
2063
+ /**
2064
+ * @generated from message agentfactory.docs.v1.SearchResponse
2065
+ */
2066
+ export type SearchResponse = Message<"agentfactory.docs.v1.SearchResponse"> & {
2067
+ /**
2068
+ * @generated from field: repeated agentfactory.docs.v1.SearchHit hits = 1;
2069
+ */
2070
+ hits: SearchHit[];
2071
+ /**
2072
+ * @generated from field: string availability = 2 [deprecated = true];
2073
+ * @deprecated
2074
+ */
2075
+ availability: string;
2076
+ /**
2077
+ * @generated from field: agentfactory.docs.v1.SearchMode mode = 3;
1378
2078
  */
1379
2079
  mode: SearchMode;
1380
2080
  /**
@@ -1485,6 +2185,277 @@ export type ListAuditEventsResponse = Message<"agentfactory.docs.v1.ListAuditEve
1485
2185
  * Use `create(ListAuditEventsResponseSchema)` to create a new message.
1486
2186
  */
1487
2187
  export declare const ListAuditEventsResponseSchema: GenMessage<ListAuditEventsResponse>;
2188
+ /**
2189
+ * @generated from message agentfactory.docs.v1.CollaborationOpen
2190
+ */
2191
+ export type CollaborationOpen = Message<"agentfactory.docs.v1.CollaborationOpen"> & {
2192
+ /**
2193
+ * @generated from field: string node_id = 1;
2194
+ */
2195
+ nodeId: string;
2196
+ /**
2197
+ * @generated from field: string client_id = 2;
2198
+ */
2199
+ clientId: string;
2200
+ /**
2201
+ * @generated from field: uint64 after_sequence = 3;
2202
+ */
2203
+ afterSequence: bigint;
2204
+ };
2205
+ /**
2206
+ * Describes the message agentfactory.docs.v1.CollaborationOpen.
2207
+ * Use `create(CollaborationOpenSchema)` to create a new message.
2208
+ */
2209
+ export declare const CollaborationOpenSchema: GenMessage<CollaborationOpen>;
2210
+ /**
2211
+ * @generated from message agentfactory.docs.v1.CollaborationPush
2212
+ */
2213
+ export type CollaborationPush = Message<"agentfactory.docs.v1.CollaborationPush"> & {
2214
+ /**
2215
+ * @generated from field: string session_id = 1;
2216
+ */
2217
+ sessionId: string;
2218
+ /**
2219
+ * @generated from field: uint64 client_clock = 2;
2220
+ */
2221
+ clientClock: bigint;
2222
+ /**
2223
+ * @generated from field: bytes update = 3;
2224
+ */
2225
+ update: Uint8Array;
2226
+ };
2227
+ /**
2228
+ * Describes the message agentfactory.docs.v1.CollaborationPush.
2229
+ * Use `create(CollaborationPushSchema)` to create a new message.
2230
+ */
2231
+ export declare const CollaborationPushSchema: GenMessage<CollaborationPush>;
2232
+ /**
2233
+ * @generated from message agentfactory.docs.v1.CollaborationPresenceInput
2234
+ */
2235
+ export type CollaborationPresenceInput = Message<"agentfactory.docs.v1.CollaborationPresenceInput"> & {
2236
+ /**
2237
+ * @generated from field: string session_id = 1;
2238
+ */
2239
+ sessionId: string;
2240
+ /**
2241
+ * @generated from field: bytes cursor = 2;
2242
+ */
2243
+ cursor: Uint8Array;
2244
+ };
2245
+ /**
2246
+ * Describes the message agentfactory.docs.v1.CollaborationPresenceInput.
2247
+ * Use `create(CollaborationPresenceInputSchema)` to create a new message.
2248
+ */
2249
+ export declare const CollaborationPresenceInputSchema: GenMessage<CollaborationPresenceInput>;
2250
+ /**
2251
+ * @generated from message agentfactory.docs.v1.CollaborationSyncRequest
2252
+ */
2253
+ export type CollaborationSyncRequest = Message<"agentfactory.docs.v1.CollaborationSyncRequest"> & {
2254
+ /**
2255
+ * @generated from field: string session_id = 1;
2256
+ */
2257
+ sessionId: string;
2258
+ /**
2259
+ * @generated from field: uint64 after_sequence = 2;
2260
+ */
2261
+ afterSequence: bigint;
2262
+ };
2263
+ /**
2264
+ * Describes the message agentfactory.docs.v1.CollaborationSyncRequest.
2265
+ * Use `create(CollaborationSyncRequestSchema)` to create a new message.
2266
+ */
2267
+ export declare const CollaborationSyncRequestSchema: GenMessage<CollaborationSyncRequest>;
2268
+ /**
2269
+ * @generated from message agentfactory.docs.v1.CollaborationClose
2270
+ */
2271
+ export type CollaborationClose = Message<"agentfactory.docs.v1.CollaborationClose"> & {
2272
+ /**
2273
+ * @generated from field: string session_id = 1;
2274
+ */
2275
+ sessionId: string;
2276
+ };
2277
+ /**
2278
+ * Describes the message agentfactory.docs.v1.CollaborationClose.
2279
+ * Use `create(CollaborationCloseSchema)` to create a new message.
2280
+ */
2281
+ export declare const CollaborationCloseSchema: GenMessage<CollaborationClose>;
2282
+ /**
2283
+ * @generated from message agentfactory.docs.v1.CollaborationFollow
2284
+ */
2285
+ export type CollaborationFollow = Message<"agentfactory.docs.v1.CollaborationFollow"> & {
2286
+ /**
2287
+ * @generated from field: string session_id = 1;
2288
+ */
2289
+ sessionId: string;
2290
+ /**
2291
+ * @generated from field: uint64 after_sequence = 2;
2292
+ */
2293
+ afterSequence: bigint;
2294
+ };
2295
+ /**
2296
+ * Describes the message agentfactory.docs.v1.CollaborationFollow.
2297
+ * Use `create(CollaborationFollowSchema)` to create a new message.
2298
+ */
2299
+ export declare const CollaborationFollowSchema: GenMessage<CollaborationFollow>;
2300
+ /**
2301
+ * @generated from message agentfactory.docs.v1.CollaborationUpdate
2302
+ */
2303
+ export type CollaborationUpdate = Message<"agentfactory.docs.v1.CollaborationUpdate"> & {
2304
+ /**
2305
+ * @generated from field: string node_id = 1;
2306
+ */
2307
+ nodeId: string;
2308
+ /**
2309
+ * @generated from field: string client_id = 2;
2310
+ */
2311
+ clientId: string;
2312
+ /**
2313
+ * @generated from field: uint64 client_clock = 3;
2314
+ */
2315
+ clientClock: bigint;
2316
+ /**
2317
+ * @generated from field: uint64 server_sequence = 4;
2318
+ */
2319
+ serverSequence: bigint;
2320
+ /**
2321
+ * @generated from field: bytes update = 5;
2322
+ */
2323
+ update: Uint8Array;
2324
+ /**
2325
+ * @generated from field: google.protobuf.Timestamp created_at = 6;
2326
+ */
2327
+ createdAt?: Timestamp;
2328
+ };
2329
+ /**
2330
+ * Describes the message agentfactory.docs.v1.CollaborationUpdate.
2331
+ * Use `create(CollaborationUpdateSchema)` to create a new message.
2332
+ */
2333
+ export declare const CollaborationUpdateSchema: GenMessage<CollaborationUpdate>;
2334
+ /**
2335
+ * @generated from message agentfactory.docs.v1.CollaborationReady
2336
+ */
2337
+ export type CollaborationReady = Message<"agentfactory.docs.v1.CollaborationReady"> & {
2338
+ /**
2339
+ * @generated from field: string session_id = 1;
2340
+ */
2341
+ sessionId: string;
2342
+ /**
2343
+ * @generated from field: string node_id = 2;
2344
+ */
2345
+ nodeId: string;
2346
+ /**
2347
+ * @generated from field: string client_id = 3;
2348
+ */
2349
+ clientId: string;
2350
+ /**
2351
+ * @generated from field: map<string, uint64> state_vector = 4;
2352
+ */
2353
+ stateVector: {
2354
+ [key: string]: bigint;
2355
+ };
2356
+ /**
2357
+ * @generated from field: repeated agentfactory.docs.v1.CollaborationUpdate updates = 5;
2358
+ */
2359
+ updates: CollaborationUpdate[];
2360
+ /**
2361
+ * @generated from field: uint64 server_sequence = 6;
2362
+ */
2363
+ serverSequence: bigint;
2364
+ /**
2365
+ * @generated from field: bool has_more = 7;
2366
+ */
2367
+ hasMore: boolean;
2368
+ /**
2369
+ * @generated from field: repeated agentfactory.docs.v1.CollaborationPresence presences = 8;
2370
+ */
2371
+ presences: CollaborationPresence[];
2372
+ };
2373
+ /**
2374
+ * Describes the message agentfactory.docs.v1.CollaborationReady.
2375
+ * Use `create(CollaborationReadySchema)` to create a new message.
2376
+ */
2377
+ export declare const CollaborationReadySchema: GenMessage<CollaborationReady>;
2378
+ /**
2379
+ * @generated from message agentfactory.docs.v1.CollaborationPresence
2380
+ */
2381
+ export type CollaborationPresence = Message<"agentfactory.docs.v1.CollaborationPresence"> & {
2382
+ /**
2383
+ * @generated from field: string session_id = 1;
2384
+ */
2385
+ sessionId: string;
2386
+ /**
2387
+ * @generated from field: string subject_id = 2;
2388
+ */
2389
+ subjectId: string;
2390
+ /**
2391
+ * @generated from field: bytes cursor = 3;
2392
+ */
2393
+ cursor: Uint8Array;
2394
+ /**
2395
+ * @generated from field: bool active = 4;
2396
+ */
2397
+ active: boolean;
2398
+ };
2399
+ /**
2400
+ * Describes the message agentfactory.docs.v1.CollaborationPresence.
2401
+ * Use `create(CollaborationPresenceSchema)` to create a new message.
2402
+ */
2403
+ export declare const CollaborationPresenceSchema: GenMessage<CollaborationPresence>;
2404
+ /**
2405
+ * @generated from message agentfactory.docs.v1.CollaborationDisconnected
2406
+ */
2407
+ export type CollaborationDisconnected = Message<"agentfactory.docs.v1.CollaborationDisconnected"> & {
2408
+ /**
2409
+ * @generated from field: string reason = 1;
2410
+ */
2411
+ reason: string;
2412
+ };
2413
+ /**
2414
+ * Describes the message agentfactory.docs.v1.CollaborationDisconnected.
2415
+ * Use `create(CollaborationDisconnectedSchema)` to create a new message.
2416
+ */
2417
+ export declare const CollaborationDisconnectedSchema: GenMessage<CollaborationDisconnected>;
2418
+ /**
2419
+ * @generated from message agentfactory.docs.v1.CollaborationEvent
2420
+ */
2421
+ export type CollaborationEvent = Message<"agentfactory.docs.v1.CollaborationEvent"> & {
2422
+ /**
2423
+ * @generated from oneof agentfactory.docs.v1.CollaborationEvent.kind
2424
+ */
2425
+ kind: {
2426
+ /**
2427
+ * @generated from field: agentfactory.docs.v1.CollaborationReady ready = 1;
2428
+ */
2429
+ value: CollaborationReady;
2430
+ case: "ready";
2431
+ } | {
2432
+ /**
2433
+ * @generated from field: agentfactory.docs.v1.CollaborationUpdate update = 2;
2434
+ */
2435
+ value: CollaborationUpdate;
2436
+ case: "update";
2437
+ } | {
2438
+ /**
2439
+ * @generated from field: agentfactory.docs.v1.CollaborationPresence presence = 3;
2440
+ */
2441
+ value: CollaborationPresence;
2442
+ case: "presence";
2443
+ } | {
2444
+ /**
2445
+ * @generated from field: agentfactory.docs.v1.CollaborationDisconnected disconnected = 4;
2446
+ */
2447
+ value: CollaborationDisconnected;
2448
+ case: "disconnected";
2449
+ } | {
2450
+ case: undefined;
2451
+ value?: undefined;
2452
+ };
2453
+ };
2454
+ /**
2455
+ * Describes the message agentfactory.docs.v1.CollaborationEvent.
2456
+ * Use `create(CollaborationEventSchema)` to create a new message.
2457
+ */
2458
+ export declare const CollaborationEventSchema: GenMessage<CollaborationEvent>;
1488
2459
  /**
1489
2460
  * @generated from enum agentfactory.docs.v1.NodeKind
1490
2461
  */
@@ -1597,6 +2568,31 @@ export declare enum AssetStatus {
1597
2568
  * Describes the enum agentfactory.docs.v1.AssetStatus.
1598
2569
  */
1599
2570
  export declare const AssetStatusSchema: GenEnum<AssetStatus>;
2571
+ /**
2572
+ * @generated from enum agentfactory.docs.v1.TranslationStatus
2573
+ */
2574
+ export declare enum TranslationStatus {
2575
+ /**
2576
+ * @generated from enum value: TRANSLATION_STATUS_UNSPECIFIED = 0;
2577
+ */
2578
+ UNSPECIFIED = 0,
2579
+ /**
2580
+ * @generated from enum value: TRANSLATION_STATUS_REQUESTED = 1;
2581
+ */
2582
+ REQUESTED = 1,
2583
+ /**
2584
+ * @generated from enum value: TRANSLATION_STATUS_READY = 2;
2585
+ */
2586
+ READY = 2,
2587
+ /**
2588
+ * @generated from enum value: TRANSLATION_STATUS_STALE = 3;
2589
+ */
2590
+ STALE = 3
2591
+ }
2592
+ /**
2593
+ * Describes the enum agentfactory.docs.v1.TranslationStatus.
2594
+ */
2595
+ export declare const TranslationStatusSchema: GenEnum<TranslationStatus>;
1600
2596
  /**
1601
2597
  * @generated from enum agentfactory.docs.v1.SearchMode
1602
2598
  */
@@ -1683,6 +2679,30 @@ export declare const DocsService: GenService<{
1683
2679
  input: typeof ListSpacesRequestSchema;
1684
2680
  output: typeof ListSpacesResponseSchema;
1685
2681
  };
2682
+ /**
2683
+ * @generated from rpc agentfactory.docs.v1.DocsService.UpdateSpace
2684
+ */
2685
+ updateSpace: {
2686
+ methodKind: "unary";
2687
+ input: typeof UpdateSpaceRequestSchema;
2688
+ output: typeof SpaceSchema;
2689
+ };
2690
+ /**
2691
+ * @generated from rpc agentfactory.docs.v1.DocsService.ArchiveSpace
2692
+ */
2693
+ archiveSpace: {
2694
+ methodKind: "unary";
2695
+ input: typeof ArchiveSpaceRequestSchema;
2696
+ output: typeof SpaceSchema;
2697
+ };
2698
+ /**
2699
+ * @generated from rpc agentfactory.docs.v1.DocsService.LeaveSpace
2700
+ */
2701
+ leaveSpace: {
2702
+ methodKind: "unary";
2703
+ input: typeof LeaveSpaceRequestSchema;
2704
+ output: typeof LeaveSpaceResponseSchema;
2705
+ };
1686
2706
  /**
1687
2707
  * @generated from rpc agentfactory.docs.v1.DocsService.UpsertNode
1688
2708
  * @deprecated
@@ -1756,6 +2776,14 @@ export declare const DocsService: GenService<{
1756
2776
  input: typeof RestoreNodeRequestSchema;
1757
2777
  output: typeof NodeSchema;
1758
2778
  };
2779
+ /**
2780
+ * @generated from rpc agentfactory.docs.v1.DocsService.ListTrash
2781
+ */
2782
+ listTrash: {
2783
+ methodKind: "unary";
2784
+ input: typeof ListTrashRequestSchema;
2785
+ output: typeof ListTrashResponseSchema;
2786
+ };
1759
2787
  /**
1760
2788
  * @generated from rpc agentfactory.docs.v1.DocsService.SaveRevision
1761
2789
  */
@@ -1764,6 +2792,14 @@ export declare const DocsService: GenService<{
1764
2792
  input: typeof SaveRevisionRequestSchema;
1765
2793
  output: typeof RevisionSchema;
1766
2794
  };
2795
+ /**
2796
+ * @generated from rpc agentfactory.docs.v1.DocsService.RestoreRevision
2797
+ */
2798
+ restoreRevision: {
2799
+ methodKind: "unary";
2800
+ input: typeof RestoreRevisionRequestSchema;
2801
+ output: typeof RevisionSchema;
2802
+ };
1767
2803
  /**
1768
2804
  * @generated from rpc agentfactory.docs.v1.DocsService.ListRevisions
1769
2805
  */
@@ -1901,6 +2937,62 @@ export declare const DocsService: GenService<{
1901
2937
  input: typeof GetReleaseRequestSchema;
1902
2938
  output: typeof ReleaseSchema;
1903
2939
  };
2940
+ /**
2941
+ * @generated from rpc agentfactory.docs.v1.DocsService.GetPublishedRelease
2942
+ */
2943
+ getPublishedRelease: {
2944
+ methodKind: "unary";
2945
+ input: typeof GetPublishedReleaseRequestSchema;
2946
+ output: typeof PublishedReleaseSchema;
2947
+ };
2948
+ /**
2949
+ * @generated from rpc agentfactory.docs.v1.DocsService.GetLatestPublishedRelease
2950
+ */
2951
+ getLatestPublishedRelease: {
2952
+ methodKind: "unary";
2953
+ input: typeof GetLatestPublishedReleaseRequestSchema;
2954
+ output: typeof PublishedReleaseSchema;
2955
+ };
2956
+ /**
2957
+ * @generated from rpc agentfactory.docs.v1.DocsService.ListPublishedReleases
2958
+ */
2959
+ listPublishedReleases: {
2960
+ methodKind: "unary";
2961
+ input: typeof ListPublishedReleasesRequestSchema;
2962
+ output: typeof ListPublishedReleasesResponseSchema;
2963
+ };
2964
+ /**
2965
+ * @generated from rpc agentfactory.docs.v1.DocsService.RequestTranslation
2966
+ */
2967
+ requestTranslation: {
2968
+ methodKind: "unary";
2969
+ input: typeof RequestTranslationRequestSchema;
2970
+ output: typeof LocaleVariantSchema;
2971
+ };
2972
+ /**
2973
+ * @generated from rpc agentfactory.docs.v1.DocsService.GetLocaleVariant
2974
+ */
2975
+ getLocaleVariant: {
2976
+ methodKind: "unary";
2977
+ input: typeof GetLocaleVariantRequestSchema;
2978
+ output: typeof LocaleVariantSchema;
2979
+ };
2980
+ /**
2981
+ * @generated from rpc agentfactory.docs.v1.DocsService.CompleteTranslation
2982
+ */
2983
+ completeTranslation: {
2984
+ methodKind: "unary";
2985
+ input: typeof CompleteTranslationRequestSchema;
2986
+ output: typeof LocaleVariantSchema;
2987
+ };
2988
+ /**
2989
+ * @generated from rpc agentfactory.docs.v1.DocsService.PublishReleaseBundle
2990
+ */
2991
+ publishReleaseBundle: {
2992
+ methodKind: "unary";
2993
+ input: typeof PublishReleaseBundleRequestSchema;
2994
+ output: typeof PublishReleaseBundleResponseSchema;
2995
+ };
1904
2996
  /**
1905
2997
  * @generated from rpc agentfactory.docs.v1.DocsService.Search
1906
2998
  */
@@ -1917,5 +3009,53 @@ export declare const DocsService: GenService<{
1917
3009
  input: typeof ListAuditEventsRequestSchema;
1918
3010
  output: typeof ListAuditEventsResponseSchema;
1919
3011
  };
3012
+ /**
3013
+ * @generated from rpc agentfactory.docs.v1.DocsService.OpenCollaboration
3014
+ */
3015
+ openCollaboration: {
3016
+ methodKind: "unary";
3017
+ input: typeof CollaborationOpenSchema;
3018
+ output: typeof CollaborationReadySchema;
3019
+ };
3020
+ /**
3021
+ * @generated from rpc agentfactory.docs.v1.DocsService.PushCollaboration
3022
+ */
3023
+ pushCollaboration: {
3024
+ methodKind: "unary";
3025
+ input: typeof CollaborationPushSchema;
3026
+ output: typeof CollaborationUpdateSchema;
3027
+ };
3028
+ /**
3029
+ * @generated from rpc agentfactory.docs.v1.DocsService.UpdateCollaborationPresence
3030
+ */
3031
+ updateCollaborationPresence: {
3032
+ methodKind: "unary";
3033
+ input: typeof CollaborationPresenceInputSchema;
3034
+ output: typeof CollaborationPresenceSchema;
3035
+ };
3036
+ /**
3037
+ * @generated from rpc agentfactory.docs.v1.DocsService.SyncCollaboration
3038
+ */
3039
+ syncCollaboration: {
3040
+ methodKind: "unary";
3041
+ input: typeof CollaborationSyncRequestSchema;
3042
+ output: typeof CollaborationReadySchema;
3043
+ };
3044
+ /**
3045
+ * @generated from rpc agentfactory.docs.v1.DocsService.CloseCollaboration
3046
+ */
3047
+ closeCollaboration: {
3048
+ methodKind: "unary";
3049
+ input: typeof CollaborationCloseSchema;
3050
+ output: typeof CollaborationDisconnectedSchema;
3051
+ };
3052
+ /**
3053
+ * @generated from rpc agentfactory.docs.v1.DocsService.FollowCollaboration
3054
+ */
3055
+ followCollaboration: {
3056
+ methodKind: "server_streaming";
3057
+ input: typeof CollaborationFollowSchema;
3058
+ output: typeof CollaborationEventSchema;
3059
+ };
1920
3060
  }>;
1921
3061
  //# sourceMappingURL=docs_pb.d.ts.map