@eide/foir-proto-ts 0.76.0 → 0.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/analytics/v1/analytics_pb.d.ts +109 -8
- package/src/analytics/v1/analytics_pb.js +2 -1
- package/src/apps/v1/apps_service_pb.d.ts +28 -2
- package/src/apps/v1/apps_service_pb.js +2 -1
- package/src/billing/v1/billing_pb.d.ts +25 -4
- package/src/billing/v1/billing_pb.js +2 -1
- package/src/common/v1/pagination_pb.d.ts +57 -0
- package/src/common/v1/pagination_pb.js +19 -0
- package/src/configs/v1/configs_pb.d.ts +49 -8
- package/src/configs/v1/configs_pb.js +2 -1
- package/src/email/v1/email_pb.d.ts +25 -4
- package/src/email/v1/email_pb.js +2 -1
- package/src/hooks/v1/hooks_pb.d.ts +49 -8
- package/src/hooks/v1/hooks_pb.js +2 -1
- package/src/identity/v1/identity_pb.d.ts +193 -32
- package/src/identity/v1/identity_pb.js +2 -1
- package/src/models/v1/models_pb.d.ts +49 -8
- package/src/models/v1/models_pb.js +2 -1
- package/src/notifications/v1/notifications_pb.d.ts +97 -16
- package/src/notifications/v1/notifications_pb.js +2 -1
- package/src/operations/v1/operations_pb.d.ts +124 -18
- package/src/operations/v1/operations_pb.js +2 -1
- package/src/records/v1/records_connect.d.ts +5 -22
- package/src/records/v1/records_connect.js +5 -22
- package/src/records/v1/records_pb.d.ts +180 -169
- package/src/records/v1/records_pb.js +86 -120
- package/src/schedules/v1/schedules_pb.d.ts +49 -8
- package/src/schedules/v1/schedules_pb.js +2 -1
- package/src/segments/v1/segments_pb.d.ts +25 -4
- package/src/segments/v1/segments_pb.js +2 -1
- package/src/settings/v1/settings_pb.d.ts +268 -42
- package/src/settings/v1/settings_pb.js +2 -1
- package/src/storage/v1/storage_pb.d.ts +30 -4
- package/src/storage/v1/storage_pb.js +2 -1
|
@@ -6,6 +6,7 @@ import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobu
|
|
|
6
6
|
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
7
7
|
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
8
|
import type { RuleExpression } from "../../expressions/v1/expressions_pb.js";
|
|
9
|
+
import type { PageInfo } from "../../common/v1/pagination_pb.js";
|
|
9
10
|
|
|
10
11
|
/**
|
|
11
12
|
* Describes the file records/v1/records.proto.
|
|
@@ -644,7 +645,7 @@ export declare type ListRecordsResponse = Message<"records.v1.ListRecordsRespons
|
|
|
644
645
|
* after/before; empty for legacy limit/offset callers (Stage 6 removes
|
|
645
646
|
* the legacy path so this becomes always-populated).
|
|
646
647
|
*
|
|
647
|
-
* @generated from field: optional
|
|
648
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
648
649
|
*/
|
|
649
650
|
pageInfo?: PageInfo | undefined;
|
|
650
651
|
|
|
@@ -666,42 +667,6 @@ export declare type ListRecordsResponse = Message<"records.v1.ListRecordsRespons
|
|
|
666
667
|
*/
|
|
667
668
|
export declare const ListRecordsResponseSchema: GenMessage<ListRecordsResponse>;
|
|
668
669
|
|
|
669
|
-
/**
|
|
670
|
-
* PageInfo carries the cursor-page metadata for ListRecordsResponse.
|
|
671
|
-
* has_next_page / has_previous_page are relative to the requested
|
|
672
|
-
* direction; under forward pagination has_previous_page is true when
|
|
673
|
-
* `after` was supplied, under backward it's the inverse.
|
|
674
|
-
*
|
|
675
|
-
* @generated from message records.v1.PageInfo
|
|
676
|
-
*/
|
|
677
|
-
export declare type PageInfo = Message<"records.v1.PageInfo"> & {
|
|
678
|
-
/**
|
|
679
|
-
* @generated from field: bool has_next_page = 1;
|
|
680
|
-
*/
|
|
681
|
-
hasNextPage: boolean;
|
|
682
|
-
|
|
683
|
-
/**
|
|
684
|
-
* @generated from field: bool has_previous_page = 2;
|
|
685
|
-
*/
|
|
686
|
-
hasPreviousPage: boolean;
|
|
687
|
-
|
|
688
|
-
/**
|
|
689
|
-
* @generated from field: optional string start_cursor = 3;
|
|
690
|
-
*/
|
|
691
|
-
startCursor?: string | undefined;
|
|
692
|
-
|
|
693
|
-
/**
|
|
694
|
-
* @generated from field: optional string end_cursor = 4;
|
|
695
|
-
*/
|
|
696
|
-
endCursor?: string | undefined;
|
|
697
|
-
};
|
|
698
|
-
|
|
699
|
-
/**
|
|
700
|
-
* Describes the message records.v1.PageInfo.
|
|
701
|
-
* Use `create(PageInfoSchema)` to create a new message.
|
|
702
|
-
*/
|
|
703
|
-
export declare const PageInfoSchema: GenMessage<PageInfo>;
|
|
704
|
-
|
|
705
670
|
/**
|
|
706
671
|
* @generated from message records.v1.UpdateRecordRequest
|
|
707
672
|
*/
|
|
@@ -1140,48 +1105,6 @@ export declare type DuplicateRecordsBulkResponse = Message<"records.v1.Duplicate
|
|
|
1140
1105
|
*/
|
|
1141
1106
|
export declare const DuplicateRecordsBulkResponseSchema: GenMessage<DuplicateRecordsBulkResponse>;
|
|
1142
1107
|
|
|
1143
|
-
/**
|
|
1144
|
-
* @generated from message records.v1.CreateVersionRequest
|
|
1145
|
-
*/
|
|
1146
|
-
export declare type CreateVersionRequest = Message<"records.v1.CreateVersionRequest"> & {
|
|
1147
|
-
/**
|
|
1148
|
-
* @generated from field: string parent_id = 1;
|
|
1149
|
-
*/
|
|
1150
|
-
parentId: string;
|
|
1151
|
-
|
|
1152
|
-
/**
|
|
1153
|
-
* @generated from field: google.protobuf.Struct data = 2;
|
|
1154
|
-
*/
|
|
1155
|
-
data?: JsonObject | undefined;
|
|
1156
|
-
|
|
1157
|
-
/**
|
|
1158
|
-
* @generated from field: optional string change_description = 3;
|
|
1159
|
-
*/
|
|
1160
|
-
changeDescription?: string | undefined;
|
|
1161
|
-
};
|
|
1162
|
-
|
|
1163
|
-
/**
|
|
1164
|
-
* Describes the message records.v1.CreateVersionRequest.
|
|
1165
|
-
* Use `create(CreateVersionRequestSchema)` to create a new message.
|
|
1166
|
-
*/
|
|
1167
|
-
export declare const CreateVersionRequestSchema: GenMessage<CreateVersionRequest>;
|
|
1168
|
-
|
|
1169
|
-
/**
|
|
1170
|
-
* @generated from message records.v1.CreateVersionResponse
|
|
1171
|
-
*/
|
|
1172
|
-
export declare type CreateVersionResponse = Message<"records.v1.CreateVersionResponse"> & {
|
|
1173
|
-
/**
|
|
1174
|
-
* @generated from field: records.v1.Record version = 1;
|
|
1175
|
-
*/
|
|
1176
|
-
version?: Record | undefined;
|
|
1177
|
-
};
|
|
1178
|
-
|
|
1179
|
-
/**
|
|
1180
|
-
* Describes the message records.v1.CreateVersionResponse.
|
|
1181
|
-
* Use `create(CreateVersionResponseSchema)` to create a new message.
|
|
1182
|
-
*/
|
|
1183
|
-
export declare const CreateVersionResponseSchema: GenMessage<CreateVersionResponse>;
|
|
1184
|
-
|
|
1185
1108
|
/**
|
|
1186
1109
|
* @generated from message records.v1.PublishVersionRequest
|
|
1187
1110
|
*/
|
|
@@ -1288,14 +1211,24 @@ export declare type ListRecordVersionsRequest = Message<"records.v1.ListRecordVe
|
|
|
1288
1211
|
parentId: string;
|
|
1289
1212
|
|
|
1290
1213
|
/**
|
|
1291
|
-
* @generated from field:
|
|
1214
|
+
* @generated from field: optional string after = 2;
|
|
1215
|
+
*/
|
|
1216
|
+
after?: string | undefined;
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* @generated from field: optional string before = 3;
|
|
1220
|
+
*/
|
|
1221
|
+
before?: string | undefined;
|
|
1222
|
+
|
|
1223
|
+
/**
|
|
1224
|
+
* @generated from field: optional int32 first = 4;
|
|
1292
1225
|
*/
|
|
1293
|
-
|
|
1226
|
+
first?: number | undefined;
|
|
1294
1227
|
|
|
1295
1228
|
/**
|
|
1296
|
-
* @generated from field: int32
|
|
1229
|
+
* @generated from field: optional int32 last = 5;
|
|
1297
1230
|
*/
|
|
1298
|
-
|
|
1231
|
+
last?: number | undefined;
|
|
1299
1232
|
};
|
|
1300
1233
|
|
|
1301
1234
|
/**
|
|
@@ -1317,6 +1250,16 @@ export declare type ListRecordVersionsResponse = Message<"records.v1.ListRecordV
|
|
|
1317
1250
|
* @generated from field: int32 total = 2;
|
|
1318
1251
|
*/
|
|
1319
1252
|
total: number;
|
|
1253
|
+
|
|
1254
|
+
/**
|
|
1255
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
1256
|
+
*/
|
|
1257
|
+
pageInfo?: PageInfo | undefined;
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* @generated from field: repeated string cursors = 4;
|
|
1261
|
+
*/
|
|
1262
|
+
cursors: string[];
|
|
1320
1263
|
};
|
|
1321
1264
|
|
|
1322
1265
|
/**
|
|
@@ -1492,14 +1435,24 @@ export declare type ListRecordVariantsRequest = Message<"records.v1.ListRecordVa
|
|
|
1492
1435
|
recordId: string;
|
|
1493
1436
|
|
|
1494
1437
|
/**
|
|
1495
|
-
* @generated from field:
|
|
1438
|
+
* @generated from field: optional string after = 2;
|
|
1496
1439
|
*/
|
|
1497
|
-
|
|
1440
|
+
after?: string | undefined;
|
|
1498
1441
|
|
|
1499
1442
|
/**
|
|
1500
|
-
* @generated from field:
|
|
1443
|
+
* @generated from field: optional string before = 3;
|
|
1501
1444
|
*/
|
|
1502
|
-
|
|
1445
|
+
before?: string | undefined;
|
|
1446
|
+
|
|
1447
|
+
/**
|
|
1448
|
+
* @generated from field: optional int32 first = 4;
|
|
1449
|
+
*/
|
|
1450
|
+
first?: number | undefined;
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* @generated from field: optional int32 last = 5;
|
|
1454
|
+
*/
|
|
1455
|
+
last?: number | undefined;
|
|
1503
1456
|
};
|
|
1504
1457
|
|
|
1505
1458
|
/**
|
|
@@ -1521,65 +1474,23 @@ export declare type ListRecordVariantsResponse = Message<"records.v1.ListRecordV
|
|
|
1521
1474
|
* @generated from field: int32 total = 2;
|
|
1522
1475
|
*/
|
|
1523
1476
|
total: number;
|
|
1524
|
-
};
|
|
1525
|
-
|
|
1526
|
-
/**
|
|
1527
|
-
* Describes the message records.v1.ListRecordVariantsResponse.
|
|
1528
|
-
* Use `create(ListRecordVariantsResponseSchema)` to create a new message.
|
|
1529
|
-
*/
|
|
1530
|
-
export declare const ListRecordVariantsResponseSchema: GenMessage<ListRecordVariantsResponse>;
|
|
1531
|
-
|
|
1532
|
-
/**
|
|
1533
|
-
* @generated from message records.v1.SaveContentRequest
|
|
1534
|
-
*/
|
|
1535
|
-
export declare type SaveContentRequest = Message<"records.v1.SaveContentRequest"> & {
|
|
1536
|
-
/**
|
|
1537
|
-
* @generated from field: string record_id = 1;
|
|
1538
|
-
*/
|
|
1539
|
-
recordId: string;
|
|
1540
|
-
|
|
1541
|
-
/**
|
|
1542
|
-
* @generated from field: google.protobuf.Struct data = 2;
|
|
1543
|
-
*/
|
|
1544
|
-
data?: JsonObject | undefined;
|
|
1545
|
-
|
|
1546
|
-
/**
|
|
1547
|
-
* @generated from field: optional string variant_key = 3;
|
|
1548
|
-
*/
|
|
1549
|
-
variantKey?: string | undefined;
|
|
1550
1477
|
|
|
1551
1478
|
/**
|
|
1552
|
-
* @generated from field: optional
|
|
1479
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
1553
1480
|
*/
|
|
1554
|
-
|
|
1555
|
-
};
|
|
1556
|
-
|
|
1557
|
-
/**
|
|
1558
|
-
* Describes the message records.v1.SaveContentRequest.
|
|
1559
|
-
* Use `create(SaveContentRequestSchema)` to create a new message.
|
|
1560
|
-
*/
|
|
1561
|
-
export declare const SaveContentRequestSchema: GenMessage<SaveContentRequest>;
|
|
1562
|
-
|
|
1563
|
-
/**
|
|
1564
|
-
* @generated from message records.v1.SaveContentResponse
|
|
1565
|
-
*/
|
|
1566
|
-
export declare type SaveContentResponse = Message<"records.v1.SaveContentResponse"> & {
|
|
1567
|
-
/**
|
|
1568
|
-
* @generated from field: records.v1.Record record = 1;
|
|
1569
|
-
*/
|
|
1570
|
-
record?: Record | undefined;
|
|
1481
|
+
pageInfo?: PageInfo | undefined;
|
|
1571
1482
|
|
|
1572
1483
|
/**
|
|
1573
|
-
* @generated from field:
|
|
1484
|
+
* @generated from field: repeated string cursors = 4;
|
|
1574
1485
|
*/
|
|
1575
|
-
|
|
1486
|
+
cursors: string[];
|
|
1576
1487
|
};
|
|
1577
1488
|
|
|
1578
1489
|
/**
|
|
1579
|
-
* Describes the message records.v1.
|
|
1580
|
-
* Use `create(
|
|
1490
|
+
* Describes the message records.v1.ListRecordVariantsResponse.
|
|
1491
|
+
* Use `create(ListRecordVariantsResponseSchema)` to create a new message.
|
|
1581
1492
|
*/
|
|
1582
|
-
export declare const
|
|
1493
|
+
export declare const ListRecordVariantsResponseSchema: GenMessage<ListRecordVariantsResponse>;
|
|
1583
1494
|
|
|
1584
1495
|
/**
|
|
1585
1496
|
* @generated from message records.v1.ScheduleRecordPublishRequest
|
|
@@ -1675,14 +1586,24 @@ export declare type ListScheduledPublishesRequest = Message<"records.v1.ListSche
|
|
|
1675
1586
|
modelKey?: string | undefined;
|
|
1676
1587
|
|
|
1677
1588
|
/**
|
|
1678
|
-
* @generated from field:
|
|
1589
|
+
* @generated from field: optional string after = 4;
|
|
1679
1590
|
*/
|
|
1680
|
-
|
|
1591
|
+
after?: string | undefined;
|
|
1681
1592
|
|
|
1682
1593
|
/**
|
|
1683
|
-
* @generated from field:
|
|
1594
|
+
* @generated from field: optional string before = 5;
|
|
1684
1595
|
*/
|
|
1685
|
-
|
|
1596
|
+
before?: string | undefined;
|
|
1597
|
+
|
|
1598
|
+
/**
|
|
1599
|
+
* @generated from field: optional int32 first = 6;
|
|
1600
|
+
*/
|
|
1601
|
+
first?: number | undefined;
|
|
1602
|
+
|
|
1603
|
+
/**
|
|
1604
|
+
* @generated from field: optional int32 last = 7;
|
|
1605
|
+
*/
|
|
1606
|
+
last?: number | undefined;
|
|
1686
1607
|
};
|
|
1687
1608
|
|
|
1688
1609
|
/**
|
|
@@ -1704,6 +1625,16 @@ export declare type ListScheduledPublishesResponse = Message<"records.v1.ListSch
|
|
|
1704
1625
|
* @generated from field: int32 total = 2;
|
|
1705
1626
|
*/
|
|
1706
1627
|
total: number;
|
|
1628
|
+
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
1631
|
+
*/
|
|
1632
|
+
pageInfo?: PageInfo | undefined;
|
|
1633
|
+
|
|
1634
|
+
/**
|
|
1635
|
+
* @generated from field: repeated string cursors = 4;
|
|
1636
|
+
*/
|
|
1637
|
+
cursors: string[];
|
|
1707
1638
|
};
|
|
1708
1639
|
|
|
1709
1640
|
/**
|
|
@@ -1759,14 +1690,24 @@ export declare type ListDraftVersionsRequest = Message<"records.v1.ListDraftVers
|
|
|
1759
1690
|
search?: string | undefined;
|
|
1760
1691
|
|
|
1761
1692
|
/**
|
|
1762
|
-
* @generated from field:
|
|
1693
|
+
* @generated from field: optional string after = 6;
|
|
1694
|
+
*/
|
|
1695
|
+
after?: string | undefined;
|
|
1696
|
+
|
|
1697
|
+
/**
|
|
1698
|
+
* @generated from field: optional string before = 7;
|
|
1699
|
+
*/
|
|
1700
|
+
before?: string | undefined;
|
|
1701
|
+
|
|
1702
|
+
/**
|
|
1703
|
+
* @generated from field: optional int32 first = 8;
|
|
1763
1704
|
*/
|
|
1764
|
-
|
|
1705
|
+
first?: number | undefined;
|
|
1765
1706
|
|
|
1766
1707
|
/**
|
|
1767
|
-
* @generated from field: int32
|
|
1708
|
+
* @generated from field: optional int32 last = 9;
|
|
1768
1709
|
*/
|
|
1769
|
-
|
|
1710
|
+
last?: number | undefined;
|
|
1770
1711
|
|
|
1771
1712
|
/**
|
|
1772
1713
|
* When true the handler returns one row per owning record-or-variant
|
|
@@ -1800,6 +1741,16 @@ export declare type ListDraftVersionsResponse = Message<"records.v1.ListDraftVer
|
|
|
1800
1741
|
* @generated from field: int32 total = 2;
|
|
1801
1742
|
*/
|
|
1802
1743
|
total: number;
|
|
1744
|
+
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
1747
|
+
*/
|
|
1748
|
+
pageInfo?: PageInfo | undefined;
|
|
1749
|
+
|
|
1750
|
+
/**
|
|
1751
|
+
* @generated from field: repeated string cursors = 4;
|
|
1752
|
+
*/
|
|
1753
|
+
cursors: string[];
|
|
1803
1754
|
};
|
|
1804
1755
|
|
|
1805
1756
|
/**
|
|
@@ -2049,9 +2000,24 @@ export declare type GlobalSearchRequest = Message<"records.v1.GlobalSearchReques
|
|
|
2049
2000
|
modelKeys: string[];
|
|
2050
2001
|
|
|
2051
2002
|
/**
|
|
2052
|
-
* @generated from field:
|
|
2003
|
+
* @generated from field: optional string after = 3;
|
|
2053
2004
|
*/
|
|
2054
|
-
|
|
2005
|
+
after?: string | undefined;
|
|
2006
|
+
|
|
2007
|
+
/**
|
|
2008
|
+
* @generated from field: optional string before = 4;
|
|
2009
|
+
*/
|
|
2010
|
+
before?: string | undefined;
|
|
2011
|
+
|
|
2012
|
+
/**
|
|
2013
|
+
* @generated from field: optional int32 first = 5;
|
|
2014
|
+
*/
|
|
2015
|
+
first?: number | undefined;
|
|
2016
|
+
|
|
2017
|
+
/**
|
|
2018
|
+
* @generated from field: optional int32 last = 6;
|
|
2019
|
+
*/
|
|
2020
|
+
last?: number | undefined;
|
|
2055
2021
|
};
|
|
2056
2022
|
|
|
2057
2023
|
/**
|
|
@@ -2109,6 +2075,16 @@ export declare type GlobalSearchResponse = Message<"records.v1.GlobalSearchRespo
|
|
|
2109
2075
|
* @generated from field: int32 total = 2;
|
|
2110
2076
|
*/
|
|
2111
2077
|
total: number;
|
|
2078
|
+
|
|
2079
|
+
/**
|
|
2080
|
+
* @generated from field: optional common.v1.PageInfo page_info = 3;
|
|
2081
|
+
*/
|
|
2082
|
+
pageInfo?: PageInfo | undefined;
|
|
2083
|
+
|
|
2084
|
+
/**
|
|
2085
|
+
* @generated from field: repeated string cursors = 4;
|
|
2086
|
+
*/
|
|
2087
|
+
cursors: string[];
|
|
2112
2088
|
};
|
|
2113
2089
|
|
|
2114
2090
|
/**
|
|
@@ -2299,9 +2275,24 @@ export declare type FindSimilarRecordsRequest = Message<"records.v1.FindSimilarR
|
|
|
2299
2275
|
modelKey?: string | undefined;
|
|
2300
2276
|
|
|
2301
2277
|
/**
|
|
2302
|
-
* @generated from field:
|
|
2278
|
+
* @generated from field: optional string after = 3;
|
|
2279
|
+
*/
|
|
2280
|
+
after?: string | undefined;
|
|
2281
|
+
|
|
2282
|
+
/**
|
|
2283
|
+
* @generated from field: optional string before = 4;
|
|
2284
|
+
*/
|
|
2285
|
+
before?: string | undefined;
|
|
2286
|
+
|
|
2287
|
+
/**
|
|
2288
|
+
* @generated from field: optional int32 first = 5;
|
|
2303
2289
|
*/
|
|
2304
|
-
|
|
2290
|
+
first?: number | undefined;
|
|
2291
|
+
|
|
2292
|
+
/**
|
|
2293
|
+
* @generated from field: optional int32 last = 6;
|
|
2294
|
+
*/
|
|
2295
|
+
last?: number | undefined;
|
|
2305
2296
|
};
|
|
2306
2297
|
|
|
2307
2298
|
/**
|
|
@@ -2318,6 +2309,16 @@ export declare type FindSimilarRecordsResponse = Message<"records.v1.FindSimilar
|
|
|
2318
2309
|
* @generated from field: repeated records.v1.SimilarRecord records = 1;
|
|
2319
2310
|
*/
|
|
2320
2311
|
records: SimilarRecord[];
|
|
2312
|
+
|
|
2313
|
+
/**
|
|
2314
|
+
* @generated from field: optional common.v1.PageInfo page_info = 2;
|
|
2315
|
+
*/
|
|
2316
|
+
pageInfo?: PageInfo | undefined;
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* @generated from field: repeated string cursors = 3;
|
|
2320
|
+
*/
|
|
2321
|
+
cursors: string[];
|
|
2321
2322
|
};
|
|
2322
2323
|
|
|
2323
2324
|
/**
|
|
@@ -2477,9 +2478,24 @@ export declare type SearchEmbeddingsRequest = Message<"records.v1.SearchEmbeddin
|
|
|
2477
2478
|
modelKey?: string | undefined;
|
|
2478
2479
|
|
|
2479
2480
|
/**
|
|
2480
|
-
* @generated from field:
|
|
2481
|
+
* @generated from field: optional string after = 3;
|
|
2482
|
+
*/
|
|
2483
|
+
after?: string | undefined;
|
|
2484
|
+
|
|
2485
|
+
/**
|
|
2486
|
+
* @generated from field: optional string before = 4;
|
|
2487
|
+
*/
|
|
2488
|
+
before?: string | undefined;
|
|
2489
|
+
|
|
2490
|
+
/**
|
|
2491
|
+
* @generated from field: optional int32 first = 5;
|
|
2481
2492
|
*/
|
|
2482
|
-
|
|
2493
|
+
first?: number | undefined;
|
|
2494
|
+
|
|
2495
|
+
/**
|
|
2496
|
+
* @generated from field: optional int32 last = 6;
|
|
2497
|
+
*/
|
|
2498
|
+
last?: number | undefined;
|
|
2483
2499
|
};
|
|
2484
2500
|
|
|
2485
2501
|
/**
|
|
@@ -2496,6 +2512,16 @@ export declare type SearchEmbeddingsResponse = Message<"records.v1.SearchEmbeddi
|
|
|
2496
2512
|
* @generated from field: repeated records.v1.SimilarRecord results = 1;
|
|
2497
2513
|
*/
|
|
2498
2514
|
results: SimilarRecord[];
|
|
2515
|
+
|
|
2516
|
+
/**
|
|
2517
|
+
* @generated from field: optional common.v1.PageInfo page_info = 2;
|
|
2518
|
+
*/
|
|
2519
|
+
pageInfo?: PageInfo | undefined;
|
|
2520
|
+
|
|
2521
|
+
/**
|
|
2522
|
+
* @generated from field: repeated string cursors = 3;
|
|
2523
|
+
*/
|
|
2524
|
+
cursors: string[];
|
|
2499
2525
|
};
|
|
2500
2526
|
|
|
2501
2527
|
/**
|
|
@@ -3030,16 +3056,11 @@ export declare const RecordsService: GenService<{
|
|
|
3030
3056
|
output: typeof DuplicateRecordsBulkResponseSchema;
|
|
3031
3057
|
},
|
|
3032
3058
|
/**
|
|
3033
|
-
* Versioning.
|
|
3059
|
+
* Versioning. "Save the full content blob as a new version" lives on
|
|
3060
|
+
* UpdateRecord with replace_data (+ optional variant_key /
|
|
3061
|
+
* change_description) — that one RPC subsumed CreateVersion and
|
|
3062
|
+
* SaveContent.
|
|
3034
3063
|
*
|
|
3035
|
-
* @generated from rpc records.v1.RecordsService.CreateVersion
|
|
3036
|
-
*/
|
|
3037
|
-
createVersion: {
|
|
3038
|
-
methodKind: "unary";
|
|
3039
|
-
input: typeof CreateVersionRequestSchema;
|
|
3040
|
-
output: typeof CreateVersionResponseSchema;
|
|
3041
|
-
},
|
|
3042
|
-
/**
|
|
3043
3064
|
* @generated from rpc records.v1.RecordsService.PublishVersion
|
|
3044
3065
|
*/
|
|
3045
3066
|
publishVersion: {
|
|
@@ -3071,16 +3092,6 @@ export declare const RecordsService: GenService<{
|
|
|
3071
3092
|
input: typeof ListRecordVersionsRequestSchema;
|
|
3072
3093
|
output: typeof ListRecordVersionsResponseSchema;
|
|
3073
3094
|
},
|
|
3074
|
-
/**
|
|
3075
|
-
* Content save (consolidated editor save path).
|
|
3076
|
-
*
|
|
3077
|
-
* @generated from rpc records.v1.RecordsService.SaveContent
|
|
3078
|
-
*/
|
|
3079
|
-
saveContent: {
|
|
3080
|
-
methodKind: "unary";
|
|
3081
|
-
input: typeof SaveContentRequestSchema;
|
|
3082
|
-
output: typeof SaveContentResponseSchema;
|
|
3083
|
-
},
|
|
3084
3095
|
/**
|
|
3085
3096
|
* Variants.
|
|
3086
3097
|
*
|