@xata.io/client 0.26.5 → 0.26.7
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/.turbo/turbo-add-version.log +1 -1
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +16 -0
- package/dist/index.cjs +33 -138
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +275 -9
- package/dist/index.mjs +28 -139
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -229,6 +229,117 @@ type WorkspaceMembers = {
|
|
|
229
229
|
* @pattern ^ik_[a-zA-Z0-9]+
|
|
230
230
|
*/
|
|
231
231
|
type InviteKey = string;
|
|
232
|
+
/**
|
|
233
|
+
* @x-internal true
|
|
234
|
+
* @pattern [a-zA-Z0-9_-~:]+
|
|
235
|
+
*/
|
|
236
|
+
type ClusterID = string;
|
|
237
|
+
/**
|
|
238
|
+
* @x-internal true
|
|
239
|
+
*/
|
|
240
|
+
type ClusterShortMetadata = {
|
|
241
|
+
id: ClusterID;
|
|
242
|
+
state: string;
|
|
243
|
+
region: string;
|
|
244
|
+
name: string;
|
|
245
|
+
/**
|
|
246
|
+
* @format int64
|
|
247
|
+
*/
|
|
248
|
+
branches: number;
|
|
249
|
+
};
|
|
250
|
+
/**
|
|
251
|
+
* @x-internal true
|
|
252
|
+
*/
|
|
253
|
+
type ListClustersResponse = {
|
|
254
|
+
clusters: ClusterShortMetadata[];
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* @x-internal true
|
|
258
|
+
*/
|
|
259
|
+
type AutoscalingConfig = {
|
|
260
|
+
enabled: boolean;
|
|
261
|
+
/**
|
|
262
|
+
* @format int64
|
|
263
|
+
*/
|
|
264
|
+
minCapacity: number;
|
|
265
|
+
/**
|
|
266
|
+
* @format int64
|
|
267
|
+
*/
|
|
268
|
+
maxCapacity: number;
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* @x-internal true
|
|
272
|
+
*/
|
|
273
|
+
type MaintenanceConfig = {
|
|
274
|
+
autoMinorVersionUpgrade?: boolean;
|
|
275
|
+
maintenanceWindow?: string;
|
|
276
|
+
plannedChangesWindow?: string;
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @x-internal true
|
|
280
|
+
*/
|
|
281
|
+
type ClusterConfiguration = {
|
|
282
|
+
instanceType: string;
|
|
283
|
+
/**
|
|
284
|
+
* @format int64
|
|
285
|
+
*/
|
|
286
|
+
replicas?: number;
|
|
287
|
+
deletionProtection?: boolean;
|
|
288
|
+
autoscaling?: AutoscalingConfig;
|
|
289
|
+
maintenance?: MaintenanceConfig;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* @x-internal true
|
|
293
|
+
*/
|
|
294
|
+
type ClusterCreateDetails = {
|
|
295
|
+
/**
|
|
296
|
+
* @minLength 1
|
|
297
|
+
*/
|
|
298
|
+
region: string;
|
|
299
|
+
/**
|
|
300
|
+
* @maxLength 63
|
|
301
|
+
* @minLength 1
|
|
302
|
+
* @pattern [a-zA-Z0-9_-~:]+
|
|
303
|
+
*/
|
|
304
|
+
name: string;
|
|
305
|
+
configuration: ClusterConfiguration;
|
|
306
|
+
};
|
|
307
|
+
/**
|
|
308
|
+
* @x-internal true
|
|
309
|
+
*/
|
|
310
|
+
type ClusterResponse = {
|
|
311
|
+
state: string;
|
|
312
|
+
clusterID: string;
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* @x-internal true
|
|
316
|
+
*/
|
|
317
|
+
type ClusterMetadata = {
|
|
318
|
+
id: ClusterID;
|
|
319
|
+
state: string;
|
|
320
|
+
region: string;
|
|
321
|
+
name: string;
|
|
322
|
+
/**
|
|
323
|
+
* @format int64
|
|
324
|
+
*/
|
|
325
|
+
branches: number;
|
|
326
|
+
configuration?: ClusterConfiguration;
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* @x-internal true
|
|
330
|
+
*/
|
|
331
|
+
type ClusterUpdateDetails = {
|
|
332
|
+
id: ClusterID;
|
|
333
|
+
/**
|
|
334
|
+
* @maxLength 63
|
|
335
|
+
* @minLength 1
|
|
336
|
+
* @pattern [a-zA-Z0-9_-~:]+
|
|
337
|
+
*/
|
|
338
|
+
name?: string;
|
|
339
|
+
configuration?: ClusterConfiguration;
|
|
340
|
+
state?: string;
|
|
341
|
+
region?: string;
|
|
342
|
+
};
|
|
232
343
|
/**
|
|
233
344
|
* Metadata of databases
|
|
234
345
|
*/
|
|
@@ -993,6 +1104,99 @@ type ResendWorkspaceMemberInviteVariables = {
|
|
|
993
1104
|
* This operation provides a way to resend an Invite notification. Invite notifications can only be sent for Invites not yet accepted.
|
|
994
1105
|
*/
|
|
995
1106
|
declare const resendWorkspaceMemberInvite: (variables: ResendWorkspaceMemberInviteVariables, signal?: AbortSignal) => Promise<undefined>;
|
|
1107
|
+
type ListClustersPathParams = {
|
|
1108
|
+
/**
|
|
1109
|
+
* Workspace ID
|
|
1110
|
+
*/
|
|
1111
|
+
workspaceId: WorkspaceID;
|
|
1112
|
+
};
|
|
1113
|
+
type ListClustersError = ErrorWrapper$1<{
|
|
1114
|
+
status: 400;
|
|
1115
|
+
payload: BadRequestError$1;
|
|
1116
|
+
} | {
|
|
1117
|
+
status: 401;
|
|
1118
|
+
payload: AuthError$1;
|
|
1119
|
+
}>;
|
|
1120
|
+
type ListClustersVariables = {
|
|
1121
|
+
pathParams: ListClustersPathParams;
|
|
1122
|
+
} & ControlPlaneFetcherExtraProps;
|
|
1123
|
+
/**
|
|
1124
|
+
* List all clusters available in your Workspace.
|
|
1125
|
+
*/
|
|
1126
|
+
declare const listClusters: (variables: ListClustersVariables, signal?: AbortSignal) => Promise<ListClustersResponse>;
|
|
1127
|
+
type CreateClusterPathParams = {
|
|
1128
|
+
/**
|
|
1129
|
+
* Workspace ID
|
|
1130
|
+
*/
|
|
1131
|
+
workspaceId: WorkspaceID;
|
|
1132
|
+
};
|
|
1133
|
+
type CreateClusterError = ErrorWrapper$1<{
|
|
1134
|
+
status: 400;
|
|
1135
|
+
payload: BadRequestError$1;
|
|
1136
|
+
} | {
|
|
1137
|
+
status: 401;
|
|
1138
|
+
payload: AuthError$1;
|
|
1139
|
+
} | {
|
|
1140
|
+
status: 422;
|
|
1141
|
+
payload: SimpleError$1;
|
|
1142
|
+
} | {
|
|
1143
|
+
status: 423;
|
|
1144
|
+
payload: SimpleError$1;
|
|
1145
|
+
}>;
|
|
1146
|
+
type CreateClusterVariables = {
|
|
1147
|
+
body: ClusterCreateDetails;
|
|
1148
|
+
pathParams: CreateClusterPathParams;
|
|
1149
|
+
} & ControlPlaneFetcherExtraProps;
|
|
1150
|
+
declare const createCluster: (variables: CreateClusterVariables, signal?: AbortSignal) => Promise<ClusterResponse>;
|
|
1151
|
+
type GetClusterPathParams = {
|
|
1152
|
+
/**
|
|
1153
|
+
* Workspace ID
|
|
1154
|
+
*/
|
|
1155
|
+
workspaceId: WorkspaceID;
|
|
1156
|
+
/**
|
|
1157
|
+
* Cluster ID
|
|
1158
|
+
*/
|
|
1159
|
+
clusterId: ClusterID;
|
|
1160
|
+
};
|
|
1161
|
+
type GetClusterError = ErrorWrapper$1<{
|
|
1162
|
+
status: 400;
|
|
1163
|
+
payload: BadRequestError$1;
|
|
1164
|
+
} | {
|
|
1165
|
+
status: 401;
|
|
1166
|
+
payload: AuthError$1;
|
|
1167
|
+
}>;
|
|
1168
|
+
type GetClusterVariables = {
|
|
1169
|
+
pathParams: GetClusterPathParams;
|
|
1170
|
+
} & ControlPlaneFetcherExtraProps;
|
|
1171
|
+
/**
|
|
1172
|
+
* Retrieve metadata for given cluster ID
|
|
1173
|
+
*/
|
|
1174
|
+
declare const getCluster: (variables: GetClusterVariables, signal?: AbortSignal) => Promise<ClusterMetadata>;
|
|
1175
|
+
type UpdateClusterPathParams = {
|
|
1176
|
+
/**
|
|
1177
|
+
* Workspace ID
|
|
1178
|
+
*/
|
|
1179
|
+
workspaceId: WorkspaceID;
|
|
1180
|
+
/**
|
|
1181
|
+
* Cluster ID
|
|
1182
|
+
*/
|
|
1183
|
+
clusterId: ClusterID;
|
|
1184
|
+
};
|
|
1185
|
+
type UpdateClusterError = ErrorWrapper$1<{
|
|
1186
|
+
status: 400;
|
|
1187
|
+
payload: BadRequestError$1;
|
|
1188
|
+
} | {
|
|
1189
|
+
status: 401;
|
|
1190
|
+
payload: AuthError$1;
|
|
1191
|
+
}>;
|
|
1192
|
+
type UpdateClusterVariables = {
|
|
1193
|
+
body: ClusterUpdateDetails;
|
|
1194
|
+
pathParams: UpdateClusterPathParams;
|
|
1195
|
+
} & ControlPlaneFetcherExtraProps;
|
|
1196
|
+
/**
|
|
1197
|
+
* Update cluster for given cluster ID
|
|
1198
|
+
*/
|
|
1199
|
+
declare const updateCluster: (variables: UpdateClusterVariables, signal?: AbortSignal) => Promise<ClusterMetadata>;
|
|
996
1200
|
type GetDatabaseListPathParams = {
|
|
997
1201
|
/**
|
|
998
1202
|
* Workspace ID
|
|
@@ -1516,9 +1720,11 @@ type FilterPredicateOp = {
|
|
|
1516
1720
|
$gt?: FilterRangeValue;
|
|
1517
1721
|
$ge?: FilterRangeValue;
|
|
1518
1722
|
$contains?: string;
|
|
1723
|
+
$iContains?: string;
|
|
1519
1724
|
$startsWith?: string;
|
|
1520
1725
|
$endsWith?: string;
|
|
1521
1726
|
$pattern?: string;
|
|
1727
|
+
$iPattern?: string;
|
|
1522
1728
|
};
|
|
1523
1729
|
/**
|
|
1524
1730
|
* @maxProperties 2
|
|
@@ -2363,6 +2569,16 @@ type AverageAgg = {
|
|
|
2363
2569
|
*/
|
|
2364
2570
|
column: string;
|
|
2365
2571
|
};
|
|
2572
|
+
/**
|
|
2573
|
+
* Calculate given percentiles of the numeric values in a particular column.
|
|
2574
|
+
*/
|
|
2575
|
+
type PercentilesAgg = {
|
|
2576
|
+
/**
|
|
2577
|
+
* The column on which to compute the average. Must be a numeric type.
|
|
2578
|
+
*/
|
|
2579
|
+
column: string;
|
|
2580
|
+
percentiles: number[];
|
|
2581
|
+
};
|
|
2366
2582
|
/**
|
|
2367
2583
|
* Count the number of distinct values in a particular column.
|
|
2368
2584
|
*/
|
|
@@ -2477,6 +2693,8 @@ type AggExpression = {
|
|
|
2477
2693
|
min?: MinAgg;
|
|
2478
2694
|
} | {
|
|
2479
2695
|
average?: AverageAgg;
|
|
2696
|
+
} | {
|
|
2697
|
+
percentiles?: PercentilesAgg;
|
|
2480
2698
|
} | {
|
|
2481
2699
|
uniqueCount?: UniqueCountAgg;
|
|
2482
2700
|
} | {
|
|
@@ -2492,7 +2710,9 @@ type AggResponse$1 = (number | null) | {
|
|
|
2492
2710
|
$count: number;
|
|
2493
2711
|
} & {
|
|
2494
2712
|
[key: string]: AggResponse$1;
|
|
2495
|
-
})[]
|
|
2713
|
+
})[] | {
|
|
2714
|
+
[key: string]: number;
|
|
2715
|
+
};
|
|
2496
2716
|
};
|
|
2497
2717
|
/**
|
|
2498
2718
|
* File identifier in access URLs
|
|
@@ -6080,6 +6300,12 @@ declare const operationsByTag: {
|
|
|
6080
6300
|
acceptWorkspaceMemberInvite: (variables: AcceptWorkspaceMemberInviteVariables, signal?: AbortSignal | undefined) => Promise<undefined>;
|
|
6081
6301
|
resendWorkspaceMemberInvite: (variables: ResendWorkspaceMemberInviteVariables, signal?: AbortSignal | undefined) => Promise<undefined>;
|
|
6082
6302
|
};
|
|
6303
|
+
xbcontrolOther: {
|
|
6304
|
+
listClusters: (variables: ListClustersVariables, signal?: AbortSignal | undefined) => Promise<ListClustersResponse>;
|
|
6305
|
+
createCluster: (variables: CreateClusterVariables, signal?: AbortSignal | undefined) => Promise<ClusterResponse>;
|
|
6306
|
+
getCluster: (variables: GetClusterVariables, signal?: AbortSignal | undefined) => Promise<ClusterMetadata>;
|
|
6307
|
+
updateCluster: (variables: UpdateClusterVariables, signal?: AbortSignal | undefined) => Promise<ClusterMetadata>;
|
|
6308
|
+
};
|
|
6083
6309
|
databases: {
|
|
6084
6310
|
getDatabaseList: (variables: GetDatabaseListVariables, signal?: AbortSignal | undefined) => Promise<ListDatabasesResponse>;
|
|
6085
6311
|
createDatabase: (variables: CreateDatabaseVariables, signal?: AbortSignal | undefined) => Promise<CreateDatabaseResponse>;
|
|
@@ -6138,6 +6364,7 @@ type schemas_AggExpression = AggExpression;
|
|
|
6138
6364
|
type schemas_AggExpressionMap = AggExpressionMap;
|
|
6139
6365
|
type schemas_AuthorizationCodeRequest = AuthorizationCodeRequest;
|
|
6140
6366
|
type schemas_AuthorizationCodeResponse = AuthorizationCodeResponse;
|
|
6367
|
+
type schemas_AutoscalingConfig = AutoscalingConfig;
|
|
6141
6368
|
type schemas_AverageAgg = AverageAgg;
|
|
6142
6369
|
type schemas_BoosterExpression = BoosterExpression;
|
|
6143
6370
|
type schemas_Branch = Branch;
|
|
@@ -6146,6 +6373,13 @@ type schemas_BranchMigration = BranchMigration;
|
|
|
6146
6373
|
type schemas_BranchName = BranchName;
|
|
6147
6374
|
type schemas_BranchOp = BranchOp;
|
|
6148
6375
|
type schemas_BranchWithCopyID = BranchWithCopyID;
|
|
6376
|
+
type schemas_ClusterConfiguration = ClusterConfiguration;
|
|
6377
|
+
type schemas_ClusterCreateDetails = ClusterCreateDetails;
|
|
6378
|
+
type schemas_ClusterID = ClusterID;
|
|
6379
|
+
type schemas_ClusterMetadata = ClusterMetadata;
|
|
6380
|
+
type schemas_ClusterResponse = ClusterResponse;
|
|
6381
|
+
type schemas_ClusterShortMetadata = ClusterShortMetadata;
|
|
6382
|
+
type schemas_ClusterUpdateDetails = ClusterUpdateDetails;
|
|
6149
6383
|
type schemas_Column = Column;
|
|
6150
6384
|
type schemas_ColumnFile = ColumnFile;
|
|
6151
6385
|
type schemas_ColumnLink = ColumnLink;
|
|
@@ -6188,9 +6422,11 @@ type schemas_InputFileEntry = InputFileEntry;
|
|
|
6188
6422
|
type schemas_InviteID = InviteID;
|
|
6189
6423
|
type schemas_InviteKey = InviteKey;
|
|
6190
6424
|
type schemas_ListBranchesResponse = ListBranchesResponse;
|
|
6425
|
+
type schemas_ListClustersResponse = ListClustersResponse;
|
|
6191
6426
|
type schemas_ListDatabasesResponse = ListDatabasesResponse;
|
|
6192
6427
|
type schemas_ListGitBranchesResponse = ListGitBranchesResponse;
|
|
6193
6428
|
type schemas_ListRegionsResponse = ListRegionsResponse;
|
|
6429
|
+
type schemas_MaintenanceConfig = MaintenanceConfig;
|
|
6194
6430
|
type schemas_MaxAgg = MaxAgg;
|
|
6195
6431
|
type schemas_MediaType = MediaType;
|
|
6196
6432
|
type schemas_MetricsDatapoint = MetricsDatapoint;
|
|
@@ -6212,6 +6448,7 @@ type schemas_OAuthResponseType = OAuthResponseType;
|
|
|
6212
6448
|
type schemas_OAuthScope = OAuthScope;
|
|
6213
6449
|
type schemas_ObjectValue = ObjectValue;
|
|
6214
6450
|
type schemas_PageConfig = PageConfig;
|
|
6451
|
+
type schemas_PercentilesAgg = PercentilesAgg;
|
|
6215
6452
|
type schemas_PrefixExpression = PrefixExpression;
|
|
6216
6453
|
type schemas_ProjectionConfig = ProjectionConfig;
|
|
6217
6454
|
type schemas_QueryColumnsProjection = QueryColumnsProjection;
|
|
@@ -6263,7 +6500,7 @@ type schemas_WorkspaceMember = WorkspaceMember;
|
|
|
6263
6500
|
type schemas_WorkspaceMembers = WorkspaceMembers;
|
|
6264
6501
|
type schemas_WorkspaceMeta = WorkspaceMeta;
|
|
6265
6502
|
declare namespace schemas {
|
|
6266
|
-
export type { schemas_APIKeyName as APIKeyName, schemas_AccessToken as AccessToken, schemas_AggExpression as AggExpression, schemas_AggExpressionMap as AggExpressionMap, AggResponse$1 as AggResponse, schemas_AuthorizationCodeRequest as AuthorizationCodeRequest, schemas_AuthorizationCodeResponse as AuthorizationCodeResponse, schemas_AverageAgg as AverageAgg, schemas_BoosterExpression as BoosterExpression, schemas_Branch as Branch, schemas_BranchMetadata as BranchMetadata, schemas_BranchMigration as BranchMigration, schemas_BranchName as BranchName, schemas_BranchOp as BranchOp, schemas_BranchWithCopyID as BranchWithCopyID, schemas_Column as Column, schemas_ColumnFile as ColumnFile, schemas_ColumnLink as ColumnLink, schemas_ColumnMigration as ColumnMigration, schemas_ColumnName as ColumnName, schemas_ColumnOpAdd as ColumnOpAdd, schemas_ColumnOpRemove as ColumnOpRemove, schemas_ColumnOpRename as ColumnOpRename, schemas_ColumnVector as ColumnVector, schemas_ColumnsProjection as ColumnsProjection, schemas_Commit as Commit, schemas_CountAgg as CountAgg, schemas_DBBranch as DBBranch, schemas_DBBranchName as DBBranchName, schemas_DBName as DBName, schemas_DataInputRecord as DataInputRecord, schemas_DatabaseGithubSettings as DatabaseGithubSettings, schemas_DatabaseMetadata as DatabaseMetadata, DateBooster$1 as DateBooster, schemas_DateHistogramAgg as DateHistogramAgg, schemas_DateTime as DateTime, schemas_FileAccessID as FileAccessID, schemas_FileItemID as FileItemID, schemas_FileName as FileName, schemas_FileResponse as FileResponse, schemas_FileSignature as FileSignature, schemas_FilterColumn as FilterColumn, schemas_FilterColumnIncludes as FilterColumnIncludes, schemas_FilterExpression as FilterExpression, schemas_FilterList as FilterList, schemas_FilterPredicate as FilterPredicate, schemas_FilterPredicateOp as FilterPredicateOp, schemas_FilterPredicateRangeOp as FilterPredicateRangeOp, schemas_FilterRangeValue as FilterRangeValue, schemas_FilterValue as FilterValue, schemas_FuzzinessExpression as FuzzinessExpression, schemas_HighlightExpression as HighlightExpression, schemas_InputFile as InputFile, schemas_InputFileArray as InputFileArray, schemas_InputFileEntry as InputFileEntry, schemas_InviteID as InviteID, schemas_InviteKey as InviteKey, schemas_ListBranchesResponse as ListBranchesResponse, schemas_ListDatabasesResponse as ListDatabasesResponse, schemas_ListGitBranchesResponse as ListGitBranchesResponse, schemas_ListRegionsResponse as ListRegionsResponse, schemas_MaxAgg as MaxAgg, schemas_MediaType as MediaType, schemas_MetricsDatapoint as MetricsDatapoint, schemas_MetricsLatency as MetricsLatency, schemas_Migration as Migration, schemas_MigrationColumnOp as MigrationColumnOp, schemas_MigrationObject as MigrationObject, schemas_MigrationOp as MigrationOp, schemas_MigrationRequest as MigrationRequest, schemas_MigrationRequestNumber as MigrationRequestNumber, schemas_MigrationStatus as MigrationStatus, schemas_MigrationTableOp as MigrationTableOp, schemas_MinAgg as MinAgg, NumericBooster$1 as NumericBooster, schemas_NumericHistogramAgg as NumericHistogramAgg, schemas_OAuthAccessToken as OAuthAccessToken, schemas_OAuthClientID as OAuthClientID, schemas_OAuthClientPublicDetails as OAuthClientPublicDetails, schemas_OAuthResponseType as OAuthResponseType, schemas_OAuthScope as OAuthScope, schemas_ObjectValue as ObjectValue, schemas_PageConfig as PageConfig, schemas_PrefixExpression as PrefixExpression, schemas_ProjectionConfig as ProjectionConfig, schemas_QueryColumnsProjection as QueryColumnsProjection, schemas_RecordID as RecordID, schemas_RecordMeta as RecordMeta, schemas_RecordsMetadata as RecordsMetadata, schemas_Region as Region, schemas_RevLink as RevLink, schemas_Role as Role, schemas_SQLRecord as SQLRecord, schemas_Schema as Schema, schemas_SchemaEditScript as SchemaEditScript, schemas_SearchPageConfig as SearchPageConfig, schemas_SortExpression as SortExpression, schemas_SortOrder as SortOrder, schemas_StartedFromMetadata as StartedFromMetadata, schemas_SumAgg as SumAgg, schemas_SummaryExpression as SummaryExpression, schemas_SummaryExpressionList as SummaryExpressionList, schemas_Table as Table, schemas_TableMigration as TableMigration, schemas_TableName as TableName, schemas_TableOpAdd as TableOpAdd, schemas_TableOpRemove as TableOpRemove, schemas_TableOpRename as TableOpRename, schemas_TableRename as TableRename, schemas_TargetExpression as TargetExpression, schemas_TopValuesAgg as TopValuesAgg, schemas_TransactionDeleteOp as TransactionDeleteOp, schemas_TransactionError as TransactionError, schemas_TransactionFailure as TransactionFailure, schemas_TransactionGetOp as TransactionGetOp, schemas_TransactionInsertOp as TransactionInsertOp, TransactionOperation$1 as TransactionOperation, schemas_TransactionResultColumns as TransactionResultColumns, schemas_TransactionResultDelete as TransactionResultDelete, schemas_TransactionResultGet as TransactionResultGet, schemas_TransactionResultInsert as TransactionResultInsert, schemas_TransactionResultUpdate as TransactionResultUpdate, schemas_TransactionSuccess as TransactionSuccess, schemas_TransactionUpdateOp as TransactionUpdateOp, schemas_UniqueCountAgg as UniqueCountAgg, schemas_User as User, schemas_UserID as UserID, schemas_UserWithID as UserWithID, ValueBooster$1 as ValueBooster, schemas_Workspace as Workspace, schemas_WorkspaceID as WorkspaceID, schemas_WorkspaceInvite as WorkspaceInvite, schemas_WorkspaceMember as WorkspaceMember, schemas_WorkspaceMembers as WorkspaceMembers, schemas_WorkspaceMeta as WorkspaceMeta, XataRecord$1 as XataRecord };
|
|
6503
|
+
export type { schemas_APIKeyName as APIKeyName, schemas_AccessToken as AccessToken, schemas_AggExpression as AggExpression, schemas_AggExpressionMap as AggExpressionMap, AggResponse$1 as AggResponse, schemas_AuthorizationCodeRequest as AuthorizationCodeRequest, schemas_AuthorizationCodeResponse as AuthorizationCodeResponse, schemas_AutoscalingConfig as AutoscalingConfig, schemas_AverageAgg as AverageAgg, schemas_BoosterExpression as BoosterExpression, schemas_Branch as Branch, schemas_BranchMetadata as BranchMetadata, schemas_BranchMigration as BranchMigration, schemas_BranchName as BranchName, schemas_BranchOp as BranchOp, schemas_BranchWithCopyID as BranchWithCopyID, schemas_ClusterConfiguration as ClusterConfiguration, schemas_ClusterCreateDetails as ClusterCreateDetails, schemas_ClusterID as ClusterID, schemas_ClusterMetadata as ClusterMetadata, schemas_ClusterResponse as ClusterResponse, schemas_ClusterShortMetadata as ClusterShortMetadata, schemas_ClusterUpdateDetails as ClusterUpdateDetails, schemas_Column as Column, schemas_ColumnFile as ColumnFile, schemas_ColumnLink as ColumnLink, schemas_ColumnMigration as ColumnMigration, schemas_ColumnName as ColumnName, schemas_ColumnOpAdd as ColumnOpAdd, schemas_ColumnOpRemove as ColumnOpRemove, schemas_ColumnOpRename as ColumnOpRename, schemas_ColumnVector as ColumnVector, schemas_ColumnsProjection as ColumnsProjection, schemas_Commit as Commit, schemas_CountAgg as CountAgg, schemas_DBBranch as DBBranch, schemas_DBBranchName as DBBranchName, schemas_DBName as DBName, schemas_DataInputRecord as DataInputRecord, schemas_DatabaseGithubSettings as DatabaseGithubSettings, schemas_DatabaseMetadata as DatabaseMetadata, DateBooster$1 as DateBooster, schemas_DateHistogramAgg as DateHistogramAgg, schemas_DateTime as DateTime, schemas_FileAccessID as FileAccessID, schemas_FileItemID as FileItemID, schemas_FileName as FileName, schemas_FileResponse as FileResponse, schemas_FileSignature as FileSignature, schemas_FilterColumn as FilterColumn, schemas_FilterColumnIncludes as FilterColumnIncludes, schemas_FilterExpression as FilterExpression, schemas_FilterList as FilterList, schemas_FilterPredicate as FilterPredicate, schemas_FilterPredicateOp as FilterPredicateOp, schemas_FilterPredicateRangeOp as FilterPredicateRangeOp, schemas_FilterRangeValue as FilterRangeValue, schemas_FilterValue as FilterValue, schemas_FuzzinessExpression as FuzzinessExpression, schemas_HighlightExpression as HighlightExpression, schemas_InputFile as InputFile, schemas_InputFileArray as InputFileArray, schemas_InputFileEntry as InputFileEntry, schemas_InviteID as InviteID, schemas_InviteKey as InviteKey, schemas_ListBranchesResponse as ListBranchesResponse, schemas_ListClustersResponse as ListClustersResponse, schemas_ListDatabasesResponse as ListDatabasesResponse, schemas_ListGitBranchesResponse as ListGitBranchesResponse, schemas_ListRegionsResponse as ListRegionsResponse, schemas_MaintenanceConfig as MaintenanceConfig, schemas_MaxAgg as MaxAgg, schemas_MediaType as MediaType, schemas_MetricsDatapoint as MetricsDatapoint, schemas_MetricsLatency as MetricsLatency, schemas_Migration as Migration, schemas_MigrationColumnOp as MigrationColumnOp, schemas_MigrationObject as MigrationObject, schemas_MigrationOp as MigrationOp, schemas_MigrationRequest as MigrationRequest, schemas_MigrationRequestNumber as MigrationRequestNumber, schemas_MigrationStatus as MigrationStatus, schemas_MigrationTableOp as MigrationTableOp, schemas_MinAgg as MinAgg, NumericBooster$1 as NumericBooster, schemas_NumericHistogramAgg as NumericHistogramAgg, schemas_OAuthAccessToken as OAuthAccessToken, schemas_OAuthClientID as OAuthClientID, schemas_OAuthClientPublicDetails as OAuthClientPublicDetails, schemas_OAuthResponseType as OAuthResponseType, schemas_OAuthScope as OAuthScope, schemas_ObjectValue as ObjectValue, schemas_PageConfig as PageConfig, schemas_PercentilesAgg as PercentilesAgg, schemas_PrefixExpression as PrefixExpression, schemas_ProjectionConfig as ProjectionConfig, schemas_QueryColumnsProjection as QueryColumnsProjection, schemas_RecordID as RecordID, schemas_RecordMeta as RecordMeta, schemas_RecordsMetadata as RecordsMetadata, schemas_Region as Region, schemas_RevLink as RevLink, schemas_Role as Role, schemas_SQLRecord as SQLRecord, schemas_Schema as Schema, schemas_SchemaEditScript as SchemaEditScript, schemas_SearchPageConfig as SearchPageConfig, schemas_SortExpression as SortExpression, schemas_SortOrder as SortOrder, schemas_StartedFromMetadata as StartedFromMetadata, schemas_SumAgg as SumAgg, schemas_SummaryExpression as SummaryExpression, schemas_SummaryExpressionList as SummaryExpressionList, schemas_Table as Table, schemas_TableMigration as TableMigration, schemas_TableName as TableName, schemas_TableOpAdd as TableOpAdd, schemas_TableOpRemove as TableOpRemove, schemas_TableOpRename as TableOpRename, schemas_TableRename as TableRename, schemas_TargetExpression as TargetExpression, schemas_TopValuesAgg as TopValuesAgg, schemas_TransactionDeleteOp as TransactionDeleteOp, schemas_TransactionError as TransactionError, schemas_TransactionFailure as TransactionFailure, schemas_TransactionGetOp as TransactionGetOp, schemas_TransactionInsertOp as TransactionInsertOp, TransactionOperation$1 as TransactionOperation, schemas_TransactionResultColumns as TransactionResultColumns, schemas_TransactionResultDelete as TransactionResultDelete, schemas_TransactionResultGet as TransactionResultGet, schemas_TransactionResultInsert as TransactionResultInsert, schemas_TransactionResultUpdate as TransactionResultUpdate, schemas_TransactionSuccess as TransactionSuccess, schemas_TransactionUpdateOp as TransactionUpdateOp, schemas_UniqueCountAgg as UniqueCountAgg, schemas_User as User, schemas_UserID as UserID, schemas_UserWithID as UserWithID, ValueBooster$1 as ValueBooster, schemas_Workspace as Workspace, schemas_WorkspaceID as WorkspaceID, schemas_WorkspaceInvite as WorkspaceInvite, schemas_WorkspaceMember as WorkspaceMember, schemas_WorkspaceMembers as WorkspaceMembers, schemas_WorkspaceMeta as WorkspaceMeta, XataRecord$1 as XataRecord };
|
|
6267
6504
|
}
|
|
6268
6505
|
|
|
6269
6506
|
type ApiExtraProps = Omit<FetcherExtraProps, 'endpoint'>;
|
|
@@ -7176,6 +7413,9 @@ declare function transformImage(url: string, ...transformations: ImageTransforma
|
|
|
7176
7413
|
declare function transformImage(url: string | undefined, ...transformations: ImageTransformations[]): string | undefined;
|
|
7177
7414
|
|
|
7178
7415
|
type XataFileEditableFields = Partial<Pick<XataArrayFile, keyof InputFileEntry>>;
|
|
7416
|
+
type XataFileFields = Partial<Pick<XataArrayFile, {
|
|
7417
|
+
[K in StringKeys<XataArrayFile>]: XataArrayFile[K] extends Function ? never : K;
|
|
7418
|
+
}[keyof XataArrayFile]>>;
|
|
7179
7419
|
declare class XataFile {
|
|
7180
7420
|
/**
|
|
7181
7421
|
* Identifier of the file.
|
|
@@ -7282,7 +7522,7 @@ type ValueAtColumn<Object, Key> = Key extends '*' ? Values<Object> : Key extends
|
|
|
7282
7522
|
} : never : Object[K] : never> : never : never;
|
|
7283
7523
|
type MAX_RECURSION = 2;
|
|
7284
7524
|
type NestedColumns<O, RecursivePath extends any[]> = RecursivePath['length'] extends MAX_RECURSION ? never : If<IsObject<O>, Values<{
|
|
7285
|
-
[K in DataProps<O>]: NonNullable<O[K]> extends infer Item ? If<IsArray<Item>, Item extends (infer Type)[] ? Type extends XataArrayFile ? K | `${K}.${keyof
|
|
7525
|
+
[K in DataProps<O>]: NonNullable<O[K]> extends infer Item ? If<IsArray<Item>, Item extends (infer Type)[] ? Type extends XataArrayFile ? K | `${K}.${keyof XataFileFields | '*'}` : K | `${K}.${StringKeys<Type> | '*'}` : never, If<IsObject<Item>, Item extends XataRecord ? SelectableColumn<Item, [...RecursivePath, Item]> extends infer Column ? Column extends string ? K | `${K}.${Column}` : never : never : Item extends Date ? K : Item extends XataFile ? K | `${K}.${keyof XataFileFields | '*'}` : `${K}.${StringKeys<Item> | '*'}`, // This allows usage of objects that are not links
|
|
7286
7526
|
K>> : never;
|
|
7287
7527
|
}>, never>;
|
|
7288
7528
|
type DataProps<O> = Exclude<StringKeys<O>, StringKeys<XataRecord>>;
|
|
@@ -7430,7 +7670,7 @@ type EditableData<O extends XataRecord> = Identifiable & Partial<Omit<{
|
|
|
7430
7670
|
type JSONDataFile = {
|
|
7431
7671
|
[K in keyof XataFile]: XataFile[K] extends Function ? never : XataFile[K];
|
|
7432
7672
|
};
|
|
7433
|
-
type JSONDataFields<T> = T extends XataFile ? JSONDataFile : NonNullable<T> extends XataFile ? JSONDataFile | null | undefined : T extends XataRecord ?
|
|
7673
|
+
type JSONDataFields<T> = T extends XataFile ? JSONDataFile : NonNullable<T> extends XataFile ? JSONDataFile | null | undefined : T extends XataRecord ? JSONData<T> : NonNullable<T> extends XataRecord ? JSONData<T> | null | undefined : T extends Date ? string : NonNullable<T> extends Date ? string | null | undefined : T;
|
|
7434
7674
|
type JSONDataBase = Identifiable & {
|
|
7435
7675
|
/**
|
|
7436
7676
|
* Metadata about the record.
|
|
@@ -7501,7 +7741,7 @@ type IncludesFilter<T> = PropertyFilter<T> | {
|
|
|
7501
7741
|
}>;
|
|
7502
7742
|
};
|
|
7503
7743
|
type StringTypeFilter = {
|
|
7504
|
-
[key in '$contains' | '$pattern' | '$startsWith' | '$endsWith']?: string;
|
|
7744
|
+
[key in '$contains' | '$iContains' | '$pattern' | '$iPattern' | '$startsWith' | '$endsWith']?: string;
|
|
7505
7745
|
};
|
|
7506
7746
|
type ComparableType = number | Date;
|
|
7507
7747
|
type ComparableTypeFilter<T extends ComparableType> = {
|
|
@@ -7713,6 +7953,7 @@ type AggregationExpression<O extends XataRecord> = ExactlyOne<{
|
|
|
7713
7953
|
max: MaxAggregation<O>;
|
|
7714
7954
|
min: MinAggregation<O>;
|
|
7715
7955
|
average: AverageAggregation<O>;
|
|
7956
|
+
percentiles: PercentilesAggregation<O>;
|
|
7716
7957
|
uniqueCount: UniqueCountAggregation<O>;
|
|
7717
7958
|
dateHistogram: DateHistogramAggregation<O>;
|
|
7718
7959
|
topValues: TopValuesAggregation<O>;
|
|
@@ -7767,6 +8008,16 @@ type AverageAggregation<O extends XataRecord> = {
|
|
|
7767
8008
|
*/
|
|
7768
8009
|
column: ColumnsByValue<O, number>;
|
|
7769
8010
|
};
|
|
8011
|
+
/**
|
|
8012
|
+
* Calculate given percentiles of the numeric values in a particular column.
|
|
8013
|
+
*/
|
|
8014
|
+
type PercentilesAggregation<O extends XataRecord> = {
|
|
8015
|
+
/**
|
|
8016
|
+
* The column on which to compute the average. Must be a numeric type.
|
|
8017
|
+
*/
|
|
8018
|
+
column: ColumnsByValue<O, number>;
|
|
8019
|
+
percentiles: number[];
|
|
8020
|
+
};
|
|
7770
8021
|
/**
|
|
7771
8022
|
* Count the number of distinct values in a particular column.
|
|
7772
8023
|
*/
|
|
@@ -7862,6 +8113,11 @@ type AggregationExpressionResultTypes = {
|
|
|
7862
8113
|
max: number | null;
|
|
7863
8114
|
min: number | null;
|
|
7864
8115
|
average: number | null;
|
|
8116
|
+
percentiles: {
|
|
8117
|
+
values: {
|
|
8118
|
+
[key: string]: number;
|
|
8119
|
+
};
|
|
8120
|
+
};
|
|
7865
8121
|
uniqueCount: number;
|
|
7866
8122
|
dateHistogram: ComplexAggregationResult;
|
|
7867
8123
|
topValues: ComplexAggregationResult;
|
|
@@ -8308,9 +8564,9 @@ type OffsetNavigationOptions = {
|
|
|
8308
8564
|
size?: number;
|
|
8309
8565
|
offset?: number;
|
|
8310
8566
|
};
|
|
8311
|
-
declare const PAGINATION_MAX_SIZE =
|
|
8567
|
+
declare const PAGINATION_MAX_SIZE = 1000;
|
|
8312
8568
|
declare const PAGINATION_DEFAULT_SIZE = 20;
|
|
8313
|
-
declare const PAGINATION_MAX_OFFSET =
|
|
8569
|
+
declare const PAGINATION_MAX_OFFSET = 49000;
|
|
8314
8570
|
declare const PAGINATION_DEFAULT_OFFSET = 0;
|
|
8315
8571
|
declare function isCursorPaginationOptions(options: Record<string, unknown> | undefined | null): options is CursorNavigationOptions;
|
|
8316
8572
|
declare class RecordArray<Result extends XataRecord> extends Array<Result> {
|
|
@@ -9153,6 +9409,10 @@ declare const endsWith: (value: string) => StringTypeFilter;
|
|
|
9153
9409
|
* Operator to restrict results to only values that match the given pattern.
|
|
9154
9410
|
*/
|
|
9155
9411
|
declare const pattern: (value: string) => StringTypeFilter;
|
|
9412
|
+
/**
|
|
9413
|
+
* Operator to restrict results to only values that match the given pattern (case insensitive).
|
|
9414
|
+
*/
|
|
9415
|
+
declare const iPattern: (value: string) => StringTypeFilter;
|
|
9156
9416
|
/**
|
|
9157
9417
|
* Operator to restrict results to only values that are equal to the given value.
|
|
9158
9418
|
*/
|
|
@@ -9169,6 +9429,10 @@ declare const isNot: <T>(value: T) => PropertyFilter<T>;
|
|
|
9169
9429
|
* Operator to restrict results to only values that contain the given value.
|
|
9170
9430
|
*/
|
|
9171
9431
|
declare const contains: (value: string) => StringTypeFilter;
|
|
9432
|
+
/**
|
|
9433
|
+
* Operator to restrict results to only values that contain the given value (case insensitive).
|
|
9434
|
+
*/
|
|
9435
|
+
declare const iContains: (value: string) => StringTypeFilter;
|
|
9172
9436
|
/**
|
|
9173
9437
|
* Operator to restrict results if some array items match the predicate.
|
|
9174
9438
|
*/
|
|
@@ -9201,7 +9465,9 @@ declare class SchemaPlugin<Schemas extends Record<string, XataRecord>> extends X
|
|
|
9201
9465
|
type BinaryFile = string | Blob | ArrayBuffer;
|
|
9202
9466
|
type FilesPluginResult<Schemas extends Record<string, BaseData>> = {
|
|
9203
9467
|
download: <Tables extends StringKeys<Schemas>>(location: DownloadDestination<Schemas, Tables>) => Promise<Blob>;
|
|
9204
|
-
upload: <Tables extends StringKeys<Schemas>>(location: UploadDestination<Schemas, Tables>, file: BinaryFile
|
|
9468
|
+
upload: <Tables extends StringKeys<Schemas>>(location: UploadDestination<Schemas, Tables>, file: BinaryFile, options?: {
|
|
9469
|
+
mediaType?: string;
|
|
9470
|
+
}) => Promise<FileResponse>;
|
|
9205
9471
|
delete: <Tables extends StringKeys<Schemas>>(location: DownloadDestination<Schemas, Tables>) => Promise<FileResponse>;
|
|
9206
9472
|
};
|
|
9207
9473
|
type UploadDestination<Schemas extends Record<string, BaseData>, Tables extends StringKeys<Schemas>> = Values<{
|
|
@@ -9471,4 +9737,4 @@ declare class XataError extends Error {
|
|
|
9471
9737
|
constructor(message: string, status: number);
|
|
9472
9738
|
}
|
|
9473
9739
|
|
|
9474
|
-
export { type AcceptWorkspaceMemberInviteError, type AcceptWorkspaceMemberInvitePathParams, type AcceptWorkspaceMemberInviteVariables, type AddGitBranchesEntryError, type AddGitBranchesEntryPathParams, type AddGitBranchesEntryRequestBody, type AddGitBranchesEntryResponse, type AddGitBranchesEntryVariables, type AddTableColumnError, type AddTableColumnPathParams, type AddTableColumnVariables, type AggregateTableError, type AggregateTablePathParams, type AggregateTableRequestBody, type AggregateTableVariables, type ApiExtraProps, type ApplyBranchSchemaEditError, type ApplyBranchSchemaEditPathParams, type ApplyBranchSchemaEditRequestBody, type ApplyBranchSchemaEditVariables, type AskOptions, type AskResult, type AskTableError, type AskTablePathParams, type AskTableRequestBody, type AskTableResponse, type AskTableSessionError, type AskTableSessionPathParams, type AskTableSessionRequestBody, type AskTableSessionResponse, type AskTableSessionVariables, type AskTableVariables, BaseClient, type BaseClientOptions, type BaseData, type BaseSchema, type BinaryFile, type BranchTransactionError, type BranchTransactionPathParams, type BranchTransactionRequestBody, type BranchTransactionVariables, type BulkInsertTableRecordsError, type BulkInsertTableRecordsPathParams, type BulkInsertTableRecordsQueryParams, type BulkInsertTableRecordsRequestBody, type BulkInsertTableRecordsVariables, type CacheImpl, type CancelWorkspaceMemberInviteError, type CancelWorkspaceMemberInvitePathParams, type CancelWorkspaceMemberInviteVariables, type ClientConstructor, type ColumnsByValue, type CompareBranchSchemasError, type CompareBranchSchemasPathParams, type CompareBranchSchemasRequestBody, type CompareBranchSchemasVariables, type CompareBranchWithUserSchemaError, type CompareBranchWithUserSchemaPathParams, type CompareBranchWithUserSchemaRequestBody, type CompareBranchWithUserSchemaVariables, type CompareMigrationRequestError, type CompareMigrationRequestPathParams, type CompareMigrationRequestVariables, type CopyBranchError, type CopyBranchPathParams, type CopyBranchRequestBody, type CopyBranchVariables, type CreateBranchError, type CreateBranchPathParams, type CreateBranchQueryParams, type CreateBranchRequestBody, type CreateBranchResponse, type CreateBranchVariables, type CreateDatabaseError, type CreateDatabasePathParams, type CreateDatabaseRequestBody, type CreateDatabaseResponse, type CreateDatabaseVariables, type CreateMigrationRequestError, type CreateMigrationRequestPathParams, type CreateMigrationRequestRequestBody, type CreateMigrationRequestResponse, type CreateMigrationRequestVariables, type CreateTableError, type CreateTablePathParams, type CreateTableResponse, type CreateTableVariables, type CreateUserAPIKeyError, type CreateUserAPIKeyPathParams, type CreateUserAPIKeyResponse, type CreateUserAPIKeyVariables, type CreateWorkspaceError, type CreateWorkspaceVariables, type CursorNavigationOptions, type DeleteBranchError, type DeleteBranchPathParams, type DeleteBranchResponse, type DeleteBranchVariables, type DeleteColumnError, type DeleteColumnPathParams, type DeleteColumnVariables, type DeleteDatabaseError, type DeleteDatabaseGithubSettingsError, type DeleteDatabaseGithubSettingsPathParams, type DeleteDatabaseGithubSettingsVariables, type DeleteDatabasePathParams, type DeleteDatabaseResponse, type DeleteDatabaseVariables, type DeleteFileError, type DeleteFileItemError, type DeleteFileItemPathParams, type DeleteFileItemVariables, type DeleteFilePathParams, type DeleteFileVariables, type DeleteOAuthAccessTokenError, type DeleteOAuthAccessTokenPathParams, type DeleteOAuthAccessTokenVariables, type DeleteRecordError, type DeleteRecordPathParams, type DeleteRecordQueryParams, type DeleteRecordVariables, type DeleteTableError, type DeleteTablePathParams, type DeleteTableResponse, type DeleteTableVariables, type DeleteUserAPIKeyError, type DeleteUserAPIKeyPathParams, type DeleteUserAPIKeyVariables, type DeleteUserError, type DeleteUserOAuthClientError, type DeleteUserOAuthClientPathParams, type DeleteUserOAuthClientVariables, type DeleteUserVariables, type DeleteWorkspaceError, type DeleteWorkspacePathParams, type DeleteWorkspaceVariables, type DeserializedType, type DownloadDestination, type EditableData, type ExecuteBranchMigrationPlanError, type ExecuteBranchMigrationPlanPathParams, type ExecuteBranchMigrationPlanRequestBody, type ExecuteBranchMigrationPlanVariables, type FetchImpl, FetcherError, type FetcherExtraProps, type FileAccessError, type FileAccessPathParams, type FileAccessQueryParams, type FileAccessVariables, FilesPlugin, type FilesPluginResult, type GetAuthorizationCodeError, type GetAuthorizationCodeQueryParams, type GetAuthorizationCodeVariables, type GetBranchDetailsError, type GetBranchDetailsPathParams, type GetBranchDetailsVariables, type GetBranchListError, type GetBranchListPathParams, type GetBranchListVariables, type GetBranchMetadataError, type GetBranchMetadataPathParams, type GetBranchMetadataVariables, type GetBranchMigrationHistoryError, type GetBranchMigrationHistoryPathParams, type GetBranchMigrationHistoryRequestBody, type GetBranchMigrationHistoryResponse, type GetBranchMigrationHistoryVariables, type GetBranchMigrationPlanError, type GetBranchMigrationPlanPathParams, type GetBranchMigrationPlanVariables, type GetBranchSchemaHistoryError, type GetBranchSchemaHistoryPathParams, type GetBranchSchemaHistoryRequestBody, type GetBranchSchemaHistoryResponse, type GetBranchSchemaHistoryVariables, type GetBranchStatsError, type GetBranchStatsPathParams, type GetBranchStatsResponse, type GetBranchStatsVariables, type GetColumnError, type GetColumnPathParams, type GetColumnVariables, type GetDatabaseGithubSettingsError, type GetDatabaseGithubSettingsPathParams, type GetDatabaseGithubSettingsVariables, type GetDatabaseListError, type GetDatabaseListPathParams, type GetDatabaseListVariables, type GetDatabaseMetadataError, type GetDatabaseMetadataPathParams, type GetDatabaseMetadataVariables, type GetFileError, type GetFileItemError, type GetFileItemPathParams, type GetFileItemVariables, type GetFilePathParams, type GetFileVariables, type GetGitBranchesMappingError, type GetGitBranchesMappingPathParams, type GetGitBranchesMappingVariables, type GetMigrationRequestError, type GetMigrationRequestIsMergedError, type GetMigrationRequestIsMergedPathParams, type GetMigrationRequestIsMergedResponse, type GetMigrationRequestIsMergedVariables, type GetMigrationRequestPathParams, type GetMigrationRequestVariables, type GetRecordError, type GetRecordPathParams, type GetRecordQueryParams, type GetRecordVariables, type GetTableColumnsError, type GetTableColumnsPathParams, type GetTableColumnsResponse, type GetTableColumnsVariables, type GetTableSchemaError, type GetTableSchemaPathParams, type GetTableSchemaResponse, type GetTableSchemaVariables, type GetUserAPIKeysError, type GetUserAPIKeysResponse, type GetUserAPIKeysVariables, type GetUserError, type GetUserOAuthAccessTokensError, type GetUserOAuthAccessTokensResponse, type GetUserOAuthAccessTokensVariables, type GetUserOAuthClientsError, type GetUserOAuthClientsResponse, type GetUserOAuthClientsVariables, type GetUserVariables, type GetWorkspaceError, type GetWorkspaceMembersListError, type GetWorkspaceMembersListPathParams, type GetWorkspaceMembersListVariables, type GetWorkspacePathParams, type GetWorkspaceVariables, type GetWorkspacesListError, type GetWorkspacesListResponse, type GetWorkspacesListVariables, type GrantAuthorizationCodeError, type GrantAuthorizationCodeVariables, type HostProvider, type Identifiable, type ImageTransformations, type InsertRecordError, type InsertRecordPathParams, type InsertRecordQueryParams, type InsertRecordVariables, type InsertRecordWithIDError, type InsertRecordWithIDPathParams, type InsertRecordWithIDQueryParams, type InsertRecordWithIDVariables, type InviteWorkspaceMemberError, type InviteWorkspaceMemberPathParams, type InviteWorkspaceMemberRequestBody, type InviteWorkspaceMemberVariables, type JSONData, type KeywordAskOptions, type Link, type ListMigrationRequestsCommitsError, type ListMigrationRequestsCommitsPathParams, type ListMigrationRequestsCommitsRequestBody, type ListMigrationRequestsCommitsResponse, type ListMigrationRequestsCommitsVariables, type ListRegionsError, type ListRegionsPathParams, type ListRegionsVariables, type MergeMigrationRequestError, type MergeMigrationRequestPathParams, type MergeMigrationRequestVariables, type OffsetNavigationOptions, operationsByTag as Operations, PAGINATION_DEFAULT_OFFSET, PAGINATION_DEFAULT_SIZE, PAGINATION_MAX_OFFSET, PAGINATION_MAX_SIZE, Page, type Paginable, type PaginationQueryMeta, type PreviewBranchSchemaEditError, type PreviewBranchSchemaEditPathParams, type PreviewBranchSchemaEditRequestBody, type PreviewBranchSchemaEditResponse, type PreviewBranchSchemaEditVariables, type PushBranchMigrationsError, type PushBranchMigrationsPathParams, type PushBranchMigrationsRequestBody, type PushBranchMigrationsVariables, type PutFileError, type PutFileItemError, type PutFileItemPathParams, type PutFileItemVariables, type PutFilePathParams, type PutFileVariables, Query, type QueryMigrationRequestsError, type QueryMigrationRequestsPathParams, type QueryMigrationRequestsRequestBody, type QueryMigrationRequestsResponse, type QueryMigrationRequestsVariables, type QueryTableError, type QueryTablePathParams, type QueryTableRequestBody, type QueryTableVariables, RecordArray, RecordColumnTypes, type RemoveGitBranchesEntryError, type RemoveGitBranchesEntryPathParams, type RemoveGitBranchesEntryQueryParams, type RemoveGitBranchesEntryVariables, type RemoveWorkspaceMemberError, type RemoveWorkspaceMemberPathParams, type RemoveWorkspaceMemberVariables, type RenameDatabaseError, type RenameDatabasePathParams, type RenameDatabaseRequestBody, type RenameDatabaseVariables, Repository, type ResendWorkspaceMemberInviteError, type ResendWorkspaceMemberInvitePathParams, type ResendWorkspaceMemberInviteVariables, type ResolveBranchError, type ResolveBranchPathParams, type ResolveBranchQueryParams, type ResolveBranchResponse, type ResolveBranchVariables, responses as Responses, RestRepository, SQLPlugin, type SQLPluginResult, type SQLQuery, type SQLQueryParams, type SchemaDefinition, type SchemaInference, SchemaPlugin, type SchemaPluginResult, schemas as Schemas, type SearchBranchError, type SearchBranchPathParams, type SearchBranchRequestBody, type SearchBranchVariables, type SearchOptions, SearchPlugin, type SearchPluginResult, type SearchTableError, type SearchTablePathParams, type SearchTableRequestBody, type SearchTableVariables, type SearchXataRecord, type SelectableColumn, type SelectableColumnWithObjectNotation, type SelectedPick, type SerializedString, Serializer, type SerializerResult, type SetTableSchemaError, type SetTableSchemaPathParams, type SetTableSchemaRequestBody, type SetTableSchemaVariables, SimpleCache, type SimpleCacheOptions, type SqlQueryError, type SqlQueryPathParams, type SqlQueryRequestBody, type SqlQueryVariables, type SummarizeTableError, type SummarizeTablePathParams, type SummarizeTableRequestBody, type SummarizeTableVariables, type UpdateBranchMetadataError, type UpdateBranchMetadataPathParams, type UpdateBranchMetadataVariables, type UpdateBranchSchemaError, type UpdateBranchSchemaPathParams, type UpdateBranchSchemaVariables, type UpdateColumnError, type UpdateColumnPathParams, type UpdateColumnRequestBody, type UpdateColumnVariables, type UpdateDatabaseGithubSettingsError, type UpdateDatabaseGithubSettingsPathParams, type UpdateDatabaseGithubSettingsVariables, type UpdateDatabaseMetadataError, type UpdateDatabaseMetadataPathParams, type UpdateDatabaseMetadataRequestBody, type UpdateDatabaseMetadataVariables, type UpdateMigrationRequestError, type UpdateMigrationRequestPathParams, type UpdateMigrationRequestRequestBody, type UpdateMigrationRequestVariables, type UpdateOAuthAccessTokenError, type UpdateOAuthAccessTokenPathParams, type UpdateOAuthAccessTokenRequestBody, type UpdateOAuthAccessTokenVariables, type UpdateRecordWithIDError, type UpdateRecordWithIDPathParams, type UpdateRecordWithIDQueryParams, type UpdateRecordWithIDVariables, type UpdateTableError, type UpdateTablePathParams, type UpdateTableRequestBody, type UpdateTableVariables, type UpdateUserError, type UpdateUserVariables, type UpdateWorkspaceError, type UpdateWorkspaceMemberInviteError, type UpdateWorkspaceMemberInvitePathParams, type UpdateWorkspaceMemberInviteRequestBody, type UpdateWorkspaceMemberInviteVariables, type UpdateWorkspaceMemberRoleError, type UpdateWorkspaceMemberRolePathParams, type UpdateWorkspaceMemberRoleRequestBody, type UpdateWorkspaceMemberRoleVariables, type UpdateWorkspacePathParams, type UpdateWorkspaceVariables, type UploadDestination, type UpsertRecordWithIDError, type UpsertRecordWithIDPathParams, type UpsertRecordWithIDQueryParams, type UpsertRecordWithIDVariables, type ValueAtColumn, type VectorAskOptions, type VectorSearchTableError, type VectorSearchTablePathParams, type VectorSearchTableRequestBody, type VectorSearchTableVariables, XataApiClient, type XataApiClientOptions, XataApiPlugin, type XataArrayFile, XataError, XataFile, XataPlugin, type XataPluginOptions, type XataRecord, acceptWorkspaceMemberInvite, addGitBranchesEntry, addTableColumn, aggregateTable, applyBranchSchemaEdit, askTable, askTableSession, branchTransaction, buildClient, buildPreviewBranchName, buildProviderString, buildWorkerRunner, bulkInsertTableRecords, cancelWorkspaceMemberInvite, compareBranchSchemas, compareBranchWithUserSchema, compareMigrationRequest, contains, copyBranch, createBranch, createDatabase, createMigrationRequest, createTable, createUserAPIKey, createWorkspace, deleteBranch, deleteColumn, deleteDatabase, deleteDatabaseGithubSettings, deleteFile, deleteFileItem, deleteOAuthAccessToken, deleteRecord, deleteTable, deleteUser, deleteUserAPIKey, deleteUserOAuthClient, deleteWorkspace, deserialize, endsWith, equals, executeBranchMigrationPlan, exists, fileAccess, ge, getAPIKey, getAuthorizationCode, getBranch, getBranchDetails, getBranchList, getBranchMetadata, getBranchMigrationHistory, getBranchMigrationPlan, getBranchSchemaHistory, getBranchStats, getColumn, getDatabaseGithubSettings, getDatabaseList, getDatabaseMetadata, getDatabaseURL, getFile, getFileItem, getGitBranchesMapping, getHostUrl, getMigrationRequest, getMigrationRequestIsMerged, getPreviewBranch, getRecord, getTableColumns, getTableSchema, getUser, getUserAPIKeys, getUserOAuthAccessTokens, getUserOAuthClients, getWorkspace, getWorkspaceMembersList, getWorkspacesList, grantAuthorizationCode, greaterEquals, greaterThan, greaterThanEquals, gt, gte, includes, includesAll, includesAny, includesNone, insertRecord, insertRecordWithID, inviteWorkspaceMember, is, isCursorPaginationOptions, isHostProviderAlias, isHostProviderBuilder, isIdentifiable, isNot, isValidExpandedColumn, isValidSelectableColumns, isXataRecord, le, lessEquals, lessThan, lessThanEquals, listMigrationRequestsCommits, listRegions, lt, lte, mergeMigrationRequest, notExists, operationsByTag, parseProviderString, parseWorkspacesUrlParts, pattern, previewBranchSchemaEdit, pushBranchMigrations, putFile, putFileItem, queryMigrationRequests, queryTable, removeGitBranchesEntry, removeWorkspaceMember, renameDatabase, resendWorkspaceMemberInvite, resolveBranch, searchBranch, searchTable, serialize, setTableSchema, sqlQuery, startsWith, summarizeTable, transformImage, updateBranchMetadata, updateBranchSchema, updateColumn, updateDatabaseGithubSettings, updateDatabaseMetadata, updateMigrationRequest, updateOAuthAccessToken, updateRecordWithID, updateTable, updateUser, updateWorkspace, updateWorkspaceMemberInvite, updateWorkspaceMemberRole, upsertRecordWithID, vectorSearchTable };
|
|
9740
|
+
export { type AcceptWorkspaceMemberInviteError, type AcceptWorkspaceMemberInvitePathParams, type AcceptWorkspaceMemberInviteVariables, type AddGitBranchesEntryError, type AddGitBranchesEntryPathParams, type AddGitBranchesEntryRequestBody, type AddGitBranchesEntryResponse, type AddGitBranchesEntryVariables, type AddTableColumnError, type AddTableColumnPathParams, type AddTableColumnVariables, type AggregateTableError, type AggregateTablePathParams, type AggregateTableRequestBody, type AggregateTableVariables, type ApiExtraProps, type ApplyBranchSchemaEditError, type ApplyBranchSchemaEditPathParams, type ApplyBranchSchemaEditRequestBody, type ApplyBranchSchemaEditVariables, type AskOptions, type AskResult, type AskTableError, type AskTablePathParams, type AskTableRequestBody, type AskTableResponse, type AskTableSessionError, type AskTableSessionPathParams, type AskTableSessionRequestBody, type AskTableSessionResponse, type AskTableSessionVariables, type AskTableVariables, BaseClient, type BaseClientOptions, type BaseData, type BaseSchema, type BinaryFile, type BranchTransactionError, type BranchTransactionPathParams, type BranchTransactionRequestBody, type BranchTransactionVariables, type BulkInsertTableRecordsError, type BulkInsertTableRecordsPathParams, type BulkInsertTableRecordsQueryParams, type BulkInsertTableRecordsRequestBody, type BulkInsertTableRecordsVariables, type CacheImpl, type CancelWorkspaceMemberInviteError, type CancelWorkspaceMemberInvitePathParams, type CancelWorkspaceMemberInviteVariables, type ClientConstructor, type ColumnsByValue, type CompareBranchSchemasError, type CompareBranchSchemasPathParams, type CompareBranchSchemasRequestBody, type CompareBranchSchemasVariables, type CompareBranchWithUserSchemaError, type CompareBranchWithUserSchemaPathParams, type CompareBranchWithUserSchemaRequestBody, type CompareBranchWithUserSchemaVariables, type CompareMigrationRequestError, type CompareMigrationRequestPathParams, type CompareMigrationRequestVariables, type CopyBranchError, type CopyBranchPathParams, type CopyBranchRequestBody, type CopyBranchVariables, type CreateBranchError, type CreateBranchPathParams, type CreateBranchQueryParams, type CreateBranchRequestBody, type CreateBranchResponse, type CreateBranchVariables, type CreateClusterError, type CreateClusterPathParams, type CreateClusterVariables, type CreateDatabaseError, type CreateDatabasePathParams, type CreateDatabaseRequestBody, type CreateDatabaseResponse, type CreateDatabaseVariables, type CreateMigrationRequestError, type CreateMigrationRequestPathParams, type CreateMigrationRequestRequestBody, type CreateMigrationRequestResponse, type CreateMigrationRequestVariables, type CreateTableError, type CreateTablePathParams, type CreateTableResponse, type CreateTableVariables, type CreateUserAPIKeyError, type CreateUserAPIKeyPathParams, type CreateUserAPIKeyResponse, type CreateUserAPIKeyVariables, type CreateWorkspaceError, type CreateWorkspaceVariables, type CursorNavigationOptions, type DeleteBranchError, type DeleteBranchPathParams, type DeleteBranchResponse, type DeleteBranchVariables, type DeleteColumnError, type DeleteColumnPathParams, type DeleteColumnVariables, type DeleteDatabaseError, type DeleteDatabaseGithubSettingsError, type DeleteDatabaseGithubSettingsPathParams, type DeleteDatabaseGithubSettingsVariables, type DeleteDatabasePathParams, type DeleteDatabaseResponse, type DeleteDatabaseVariables, type DeleteFileError, type DeleteFileItemError, type DeleteFileItemPathParams, type DeleteFileItemVariables, type DeleteFilePathParams, type DeleteFileVariables, type DeleteOAuthAccessTokenError, type DeleteOAuthAccessTokenPathParams, type DeleteOAuthAccessTokenVariables, type DeleteRecordError, type DeleteRecordPathParams, type DeleteRecordQueryParams, type DeleteRecordVariables, type DeleteTableError, type DeleteTablePathParams, type DeleteTableResponse, type DeleteTableVariables, type DeleteUserAPIKeyError, type DeleteUserAPIKeyPathParams, type DeleteUserAPIKeyVariables, type DeleteUserError, type DeleteUserOAuthClientError, type DeleteUserOAuthClientPathParams, type DeleteUserOAuthClientVariables, type DeleteUserVariables, type DeleteWorkspaceError, type DeleteWorkspacePathParams, type DeleteWorkspaceVariables, type DeserializedType, type DownloadDestination, type EditableData, type ExecuteBranchMigrationPlanError, type ExecuteBranchMigrationPlanPathParams, type ExecuteBranchMigrationPlanRequestBody, type ExecuteBranchMigrationPlanVariables, type FetchImpl, FetcherError, type FetcherExtraProps, type FileAccessError, type FileAccessPathParams, type FileAccessQueryParams, type FileAccessVariables, FilesPlugin, type FilesPluginResult, type GetAuthorizationCodeError, type GetAuthorizationCodeQueryParams, type GetAuthorizationCodeVariables, type GetBranchDetailsError, type GetBranchDetailsPathParams, type GetBranchDetailsVariables, type GetBranchListError, type GetBranchListPathParams, type GetBranchListVariables, type GetBranchMetadataError, type GetBranchMetadataPathParams, type GetBranchMetadataVariables, type GetBranchMigrationHistoryError, type GetBranchMigrationHistoryPathParams, type GetBranchMigrationHistoryRequestBody, type GetBranchMigrationHistoryResponse, type GetBranchMigrationHistoryVariables, type GetBranchMigrationPlanError, type GetBranchMigrationPlanPathParams, type GetBranchMigrationPlanVariables, type GetBranchSchemaHistoryError, type GetBranchSchemaHistoryPathParams, type GetBranchSchemaHistoryRequestBody, type GetBranchSchemaHistoryResponse, type GetBranchSchemaHistoryVariables, type GetBranchStatsError, type GetBranchStatsPathParams, type GetBranchStatsResponse, type GetBranchStatsVariables, type GetClusterError, type GetClusterPathParams, type GetClusterVariables, type GetColumnError, type GetColumnPathParams, type GetColumnVariables, type GetDatabaseGithubSettingsError, type GetDatabaseGithubSettingsPathParams, type GetDatabaseGithubSettingsVariables, type GetDatabaseListError, type GetDatabaseListPathParams, type GetDatabaseListVariables, type GetDatabaseMetadataError, type GetDatabaseMetadataPathParams, type GetDatabaseMetadataVariables, type GetFileError, type GetFileItemError, type GetFileItemPathParams, type GetFileItemVariables, type GetFilePathParams, type GetFileVariables, type GetGitBranchesMappingError, type GetGitBranchesMappingPathParams, type GetGitBranchesMappingVariables, type GetMigrationRequestError, type GetMigrationRequestIsMergedError, type GetMigrationRequestIsMergedPathParams, type GetMigrationRequestIsMergedResponse, type GetMigrationRequestIsMergedVariables, type GetMigrationRequestPathParams, type GetMigrationRequestVariables, type GetRecordError, type GetRecordPathParams, type GetRecordQueryParams, type GetRecordVariables, type GetTableColumnsError, type GetTableColumnsPathParams, type GetTableColumnsResponse, type GetTableColumnsVariables, type GetTableSchemaError, type GetTableSchemaPathParams, type GetTableSchemaResponse, type GetTableSchemaVariables, type GetUserAPIKeysError, type GetUserAPIKeysResponse, type GetUserAPIKeysVariables, type GetUserError, type GetUserOAuthAccessTokensError, type GetUserOAuthAccessTokensResponse, type GetUserOAuthAccessTokensVariables, type GetUserOAuthClientsError, type GetUserOAuthClientsResponse, type GetUserOAuthClientsVariables, type GetUserVariables, type GetWorkspaceError, type GetWorkspaceMembersListError, type GetWorkspaceMembersListPathParams, type GetWorkspaceMembersListVariables, type GetWorkspacePathParams, type GetWorkspaceVariables, type GetWorkspacesListError, type GetWorkspacesListResponse, type GetWorkspacesListVariables, type GrantAuthorizationCodeError, type GrantAuthorizationCodeVariables, type HostProvider, type Identifiable, type ImageTransformations, type InsertRecordError, type InsertRecordPathParams, type InsertRecordQueryParams, type InsertRecordVariables, type InsertRecordWithIDError, type InsertRecordWithIDPathParams, type InsertRecordWithIDQueryParams, type InsertRecordWithIDVariables, type InviteWorkspaceMemberError, type InviteWorkspaceMemberPathParams, type InviteWorkspaceMemberRequestBody, type InviteWorkspaceMemberVariables, type JSONData, type KeywordAskOptions, type Link, type ListClustersError, type ListClustersPathParams, type ListClustersVariables, type ListMigrationRequestsCommitsError, type ListMigrationRequestsCommitsPathParams, type ListMigrationRequestsCommitsRequestBody, type ListMigrationRequestsCommitsResponse, type ListMigrationRequestsCommitsVariables, type ListRegionsError, type ListRegionsPathParams, type ListRegionsVariables, type MergeMigrationRequestError, type MergeMigrationRequestPathParams, type MergeMigrationRequestVariables, type OffsetNavigationOptions, operationsByTag as Operations, PAGINATION_DEFAULT_OFFSET, PAGINATION_DEFAULT_SIZE, PAGINATION_MAX_OFFSET, PAGINATION_MAX_SIZE, Page, type Paginable, type PaginationQueryMeta, type PreviewBranchSchemaEditError, type PreviewBranchSchemaEditPathParams, type PreviewBranchSchemaEditRequestBody, type PreviewBranchSchemaEditResponse, type PreviewBranchSchemaEditVariables, type PushBranchMigrationsError, type PushBranchMigrationsPathParams, type PushBranchMigrationsRequestBody, type PushBranchMigrationsVariables, type PutFileError, type PutFileItemError, type PutFileItemPathParams, type PutFileItemVariables, type PutFilePathParams, type PutFileVariables, Query, type QueryMigrationRequestsError, type QueryMigrationRequestsPathParams, type QueryMigrationRequestsRequestBody, type QueryMigrationRequestsResponse, type QueryMigrationRequestsVariables, type QueryTableError, type QueryTablePathParams, type QueryTableRequestBody, type QueryTableVariables, RecordArray, RecordColumnTypes, type RemoveGitBranchesEntryError, type RemoveGitBranchesEntryPathParams, type RemoveGitBranchesEntryQueryParams, type RemoveGitBranchesEntryVariables, type RemoveWorkspaceMemberError, type RemoveWorkspaceMemberPathParams, type RemoveWorkspaceMemberVariables, type RenameDatabaseError, type RenameDatabasePathParams, type RenameDatabaseRequestBody, type RenameDatabaseVariables, Repository, type ResendWorkspaceMemberInviteError, type ResendWorkspaceMemberInvitePathParams, type ResendWorkspaceMemberInviteVariables, type ResolveBranchError, type ResolveBranchPathParams, type ResolveBranchQueryParams, type ResolveBranchResponse, type ResolveBranchVariables, responses as Responses, RestRepository, SQLPlugin, type SQLPluginResult, type SQLQuery, type SQLQueryParams, type SchemaDefinition, type SchemaInference, SchemaPlugin, type SchemaPluginResult, schemas as Schemas, type SearchBranchError, type SearchBranchPathParams, type SearchBranchRequestBody, type SearchBranchVariables, type SearchOptions, SearchPlugin, type SearchPluginResult, type SearchTableError, type SearchTablePathParams, type SearchTableRequestBody, type SearchTableVariables, type SearchXataRecord, type SelectableColumn, type SelectableColumnWithObjectNotation, type SelectedPick, type SerializedString, Serializer, type SerializerResult, type SetTableSchemaError, type SetTableSchemaPathParams, type SetTableSchemaRequestBody, type SetTableSchemaVariables, SimpleCache, type SimpleCacheOptions, type SqlQueryError, type SqlQueryPathParams, type SqlQueryRequestBody, type SqlQueryVariables, type SummarizeTableError, type SummarizeTablePathParams, type SummarizeTableRequestBody, type SummarizeTableVariables, type UpdateBranchMetadataError, type UpdateBranchMetadataPathParams, type UpdateBranchMetadataVariables, type UpdateBranchSchemaError, type UpdateBranchSchemaPathParams, type UpdateBranchSchemaVariables, type UpdateClusterError, type UpdateClusterPathParams, type UpdateClusterVariables, type UpdateColumnError, type UpdateColumnPathParams, type UpdateColumnRequestBody, type UpdateColumnVariables, type UpdateDatabaseGithubSettingsError, type UpdateDatabaseGithubSettingsPathParams, type UpdateDatabaseGithubSettingsVariables, type UpdateDatabaseMetadataError, type UpdateDatabaseMetadataPathParams, type UpdateDatabaseMetadataRequestBody, type UpdateDatabaseMetadataVariables, type UpdateMigrationRequestError, type UpdateMigrationRequestPathParams, type UpdateMigrationRequestRequestBody, type UpdateMigrationRequestVariables, type UpdateOAuthAccessTokenError, type UpdateOAuthAccessTokenPathParams, type UpdateOAuthAccessTokenRequestBody, type UpdateOAuthAccessTokenVariables, type UpdateRecordWithIDError, type UpdateRecordWithIDPathParams, type UpdateRecordWithIDQueryParams, type UpdateRecordWithIDVariables, type UpdateTableError, type UpdateTablePathParams, type UpdateTableRequestBody, type UpdateTableVariables, type UpdateUserError, type UpdateUserVariables, type UpdateWorkspaceError, type UpdateWorkspaceMemberInviteError, type UpdateWorkspaceMemberInvitePathParams, type UpdateWorkspaceMemberInviteRequestBody, type UpdateWorkspaceMemberInviteVariables, type UpdateWorkspaceMemberRoleError, type UpdateWorkspaceMemberRolePathParams, type UpdateWorkspaceMemberRoleRequestBody, type UpdateWorkspaceMemberRoleVariables, type UpdateWorkspacePathParams, type UpdateWorkspaceVariables, type UploadDestination, type UpsertRecordWithIDError, type UpsertRecordWithIDPathParams, type UpsertRecordWithIDQueryParams, type UpsertRecordWithIDVariables, type ValueAtColumn, type VectorAskOptions, type VectorSearchTableError, type VectorSearchTablePathParams, type VectorSearchTableRequestBody, type VectorSearchTableVariables, XataApiClient, type XataApiClientOptions, XataApiPlugin, type XataArrayFile, XataError, XataFile, XataPlugin, type XataPluginOptions, type XataRecord, acceptWorkspaceMemberInvite, addGitBranchesEntry, addTableColumn, aggregateTable, applyBranchSchemaEdit, askTable, askTableSession, branchTransaction, buildClient, buildPreviewBranchName, buildProviderString, buildWorkerRunner, bulkInsertTableRecords, cancelWorkspaceMemberInvite, compareBranchSchemas, compareBranchWithUserSchema, compareMigrationRequest, contains, copyBranch, createBranch, createCluster, createDatabase, createMigrationRequest, createTable, createUserAPIKey, createWorkspace, deleteBranch, deleteColumn, deleteDatabase, deleteDatabaseGithubSettings, deleteFile, deleteFileItem, deleteOAuthAccessToken, deleteRecord, deleteTable, deleteUser, deleteUserAPIKey, deleteUserOAuthClient, deleteWorkspace, deserialize, endsWith, equals, executeBranchMigrationPlan, exists, fileAccess, ge, getAPIKey, getAuthorizationCode, getBranch, getBranchDetails, getBranchList, getBranchMetadata, getBranchMigrationHistory, getBranchMigrationPlan, getBranchSchemaHistory, getBranchStats, getCluster, getColumn, getDatabaseGithubSettings, getDatabaseList, getDatabaseMetadata, getDatabaseURL, getFile, getFileItem, getGitBranchesMapping, getHostUrl, getMigrationRequest, getMigrationRequestIsMerged, getPreviewBranch, getRecord, getTableColumns, getTableSchema, getUser, getUserAPIKeys, getUserOAuthAccessTokens, getUserOAuthClients, getWorkspace, getWorkspaceMembersList, getWorkspacesList, grantAuthorizationCode, greaterEquals, greaterThan, greaterThanEquals, gt, gte, iContains, iPattern, includes, includesAll, includesAny, includesNone, insertRecord, insertRecordWithID, inviteWorkspaceMember, is, isCursorPaginationOptions, isHostProviderAlias, isHostProviderBuilder, isIdentifiable, isNot, isValidExpandedColumn, isValidSelectableColumns, isXataRecord, le, lessEquals, lessThan, lessThanEquals, listClusters, listMigrationRequestsCommits, listRegions, lt, lte, mergeMigrationRequest, notExists, operationsByTag, parseProviderString, parseWorkspacesUrlParts, pattern, previewBranchSchemaEdit, pushBranchMigrations, putFile, putFileItem, queryMigrationRequests, queryTable, removeGitBranchesEntry, removeWorkspaceMember, renameDatabase, resendWorkspaceMemberInvite, resolveBranch, searchBranch, searchTable, serialize, setTableSchema, sqlQuery, startsWith, summarizeTable, transformImage, updateBranchMetadata, updateBranchSchema, updateCluster, updateColumn, updateDatabaseGithubSettings, updateDatabaseMetadata, updateMigrationRequest, updateOAuthAccessToken, updateRecordWithID, updateTable, updateUser, updateWorkspace, updateWorkspaceMemberInvite, updateWorkspaceMemberRole, upsertRecordWithID, vectorSearchTable };
|