@xata.io/client 0.25.1 → 0.25.3
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 -9
- package/CHANGELOG.md +14 -0
- package/dist/index.cjs +56 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +243 -260
- package/dist/index.mjs +49 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -109,33 +109,25 @@ type ErrorWrapper$1<TError> = TError | {
|
|
109
109
|
*
|
110
110
|
* @version 1.0
|
111
111
|
*/
|
112
|
-
type
|
112
|
+
type OAuthResponseType = 'code';
|
113
|
+
type OAuthScope = 'admin:all';
|
114
|
+
type AuthorizationCodeResponse = {
|
113
115
|
state?: string;
|
114
116
|
redirectUri?: string;
|
115
|
-
scopes?:
|
117
|
+
scopes?: OAuthScope[];
|
118
|
+
clientId?: string;
|
116
119
|
/**
|
117
120
|
* @format date-time
|
118
121
|
*/
|
119
122
|
expires?: string;
|
123
|
+
code?: string;
|
120
124
|
};
|
121
|
-
type
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
refreshToken: string;
|
126
|
-
} | {
|
127
|
-
grantType: string;
|
125
|
+
type AuthorizationCodeRequest = {
|
126
|
+
state?: string;
|
127
|
+
redirectUri?: string;
|
128
|
+
scopes?: OAuthScope[];
|
128
129
|
clientId: string;
|
129
|
-
|
130
|
-
code: string;
|
131
|
-
redirectUri: string;
|
132
|
-
codeVerifier?: string;
|
133
|
-
};
|
134
|
-
type AccessTokenOutput = {
|
135
|
-
accessToken: string;
|
136
|
-
refreshToken: string;
|
137
|
-
tokenType: string;
|
138
|
-
expires?: number;
|
130
|
+
responseType: OAuthResponseType;
|
139
131
|
};
|
140
132
|
type User = {
|
141
133
|
/**
|
@@ -161,6 +153,31 @@ type DateTime$1 = string;
|
|
161
153
|
* @pattern [a-zA-Z0-9_\-~]*
|
162
154
|
*/
|
163
155
|
type APIKeyName = string;
|
156
|
+
type OAuthClientPublicDetails = {
|
157
|
+
name?: string;
|
158
|
+
description?: string;
|
159
|
+
icon?: string;
|
160
|
+
clientId: string;
|
161
|
+
};
|
162
|
+
type OAuthClientID = string;
|
163
|
+
type OAuthAccessToken = {
|
164
|
+
token: string;
|
165
|
+
scopes: string[];
|
166
|
+
/**
|
167
|
+
* @format date-time
|
168
|
+
*/
|
169
|
+
createdAt: string;
|
170
|
+
/**
|
171
|
+
* @format date-time
|
172
|
+
*/
|
173
|
+
updatedAt: string;
|
174
|
+
/**
|
175
|
+
* @format date-time
|
176
|
+
*/
|
177
|
+
expiresAt: string;
|
178
|
+
clientId: string;
|
179
|
+
};
|
180
|
+
type AccessToken = string;
|
164
181
|
/**
|
165
182
|
* @pattern ^([a-zA-Z0-9][a-zA-Z0-9_\-~]+-)?[a-zA-Z0-9]{6}
|
166
183
|
* @x-go-type auth.WorkspaceID
|
@@ -212,7 +229,6 @@ type WorkspaceMembers = {
|
|
212
229
|
* @pattern ^ik_[a-zA-Z0-9]+
|
213
230
|
*/
|
214
231
|
type InviteKey = string;
|
215
|
-
type AccessToken = string;
|
216
232
|
/**
|
217
233
|
* Metadata of databases
|
218
234
|
*/
|
@@ -329,7 +345,14 @@ type SimpleError$1 = {
|
|
329
345
|
* @version 1.0
|
330
346
|
*/
|
331
347
|
|
332
|
-
type
|
348
|
+
type GetAuthorizationCodeQueryParams = {
|
349
|
+
clientID: string;
|
350
|
+
responseType: OAuthResponseType;
|
351
|
+
redirectUri?: string;
|
352
|
+
scopes?: OAuthScope[];
|
353
|
+
state?: string;
|
354
|
+
};
|
355
|
+
type GetAuthorizationCodeError = ErrorWrapper$1<{
|
333
356
|
status: 400;
|
334
357
|
payload: BadRequestError$1;
|
335
358
|
} | {
|
@@ -342,23 +365,14 @@ type GrantAuthorizationCodeError = ErrorWrapper$1<{
|
|
342
365
|
status: 409;
|
343
366
|
payload: SimpleError$1;
|
344
367
|
}>;
|
345
|
-
type
|
346
|
-
|
347
|
-
};
|
348
|
-
type GrantAuthorizationCodeRequestBody = AuthorizationCode & {
|
349
|
-
responseType: string;
|
350
|
-
clientId: string;
|
351
|
-
codeChallenge?: string;
|
352
|
-
codeChallengeMethod?: string;
|
353
|
-
};
|
354
|
-
type GrantAuthorizationCodeVariables = {
|
355
|
-
body?: GrantAuthorizationCodeRequestBody;
|
368
|
+
type GetAuthorizationCodeVariables = {
|
369
|
+
queryParams: GetAuthorizationCodeQueryParams;
|
356
370
|
} & ControlPlaneFetcherExtraProps;
|
357
371
|
/**
|
358
|
-
* Creates, stores and returns an authorization code to be used by a third party app
|
372
|
+
* Creates, stores and returns an authorization code to be used by a third party app. Supporting use of GET is required by OAuth2 spec
|
359
373
|
*/
|
360
|
-
declare const
|
361
|
-
type
|
374
|
+
declare const getAuthorizationCode: (variables: GetAuthorizationCodeVariables, signal?: AbortSignal) => Promise<AuthorizationCodeResponse>;
|
375
|
+
type GrantAuthorizationCodeError = ErrorWrapper$1<{
|
362
376
|
status: 400;
|
363
377
|
payload: BadRequestError$1;
|
364
378
|
} | {
|
@@ -371,13 +385,13 @@ type GenerateAccessTokenError = ErrorWrapper$1<{
|
|
371
385
|
status: 409;
|
372
386
|
payload: SimpleError$1;
|
373
387
|
}>;
|
374
|
-
type
|
375
|
-
body
|
388
|
+
type GrantAuthorizationCodeVariables = {
|
389
|
+
body: AuthorizationCodeRequest;
|
376
390
|
} & ControlPlaneFetcherExtraProps;
|
377
391
|
/**
|
378
|
-
* Creates
|
392
|
+
* Creates, stores and returns an authorization code to be used by a third party app
|
379
393
|
*/
|
380
|
-
declare const
|
394
|
+
declare const grantAuthorizationCode: (variables: GrantAuthorizationCodeVariables, signal?: AbortSignal) => Promise<AuthorizationCodeResponse>;
|
381
395
|
type GetUserError = ErrorWrapper$1<{
|
382
396
|
status: 400;
|
383
397
|
payload: BadRequestError$1;
|
@@ -497,6 +511,115 @@ type DeleteUserAPIKeyVariables = {
|
|
497
511
|
* Delete an existing API key
|
498
512
|
*/
|
499
513
|
declare const deleteUserAPIKey: (variables: DeleteUserAPIKeyVariables, signal?: AbortSignal) => Promise<undefined>;
|
514
|
+
type GetUserOAuthClientsError = ErrorWrapper$1<{
|
515
|
+
status: 400;
|
516
|
+
payload: BadRequestError$1;
|
517
|
+
} | {
|
518
|
+
status: 401;
|
519
|
+
payload: AuthError$1;
|
520
|
+
} | {
|
521
|
+
status: 404;
|
522
|
+
payload: SimpleError$1;
|
523
|
+
}>;
|
524
|
+
type GetUserOAuthClientsResponse = {
|
525
|
+
clients?: OAuthClientPublicDetails[];
|
526
|
+
};
|
527
|
+
type GetUserOAuthClientsVariables = ControlPlaneFetcherExtraProps;
|
528
|
+
/**
|
529
|
+
* Retrieve the list of OAuth Clients that a user has authorized
|
530
|
+
*/
|
531
|
+
declare const getUserOAuthClients: (variables: GetUserOAuthClientsVariables, signal?: AbortSignal) => Promise<GetUserOAuthClientsResponse>;
|
532
|
+
type DeleteUserOAuthClientPathParams = {
|
533
|
+
clientId: OAuthClientID;
|
534
|
+
};
|
535
|
+
type DeleteUserOAuthClientError = ErrorWrapper$1<{
|
536
|
+
status: 400;
|
537
|
+
payload: BadRequestError$1;
|
538
|
+
} | {
|
539
|
+
status: 401;
|
540
|
+
payload: AuthError$1;
|
541
|
+
} | {
|
542
|
+
status: 404;
|
543
|
+
payload: SimpleError$1;
|
544
|
+
}>;
|
545
|
+
type DeleteUserOAuthClientVariables = {
|
546
|
+
pathParams: DeleteUserOAuthClientPathParams;
|
547
|
+
} & ControlPlaneFetcherExtraProps;
|
548
|
+
/**
|
549
|
+
* Delete the oauth client for the user and revoke all access
|
550
|
+
*/
|
551
|
+
declare const deleteUserOAuthClient: (variables: DeleteUserOAuthClientVariables, signal?: AbortSignal) => Promise<undefined>;
|
552
|
+
type GetUserOAuthAccessTokensError = ErrorWrapper$1<{
|
553
|
+
status: 400;
|
554
|
+
payload: BadRequestError$1;
|
555
|
+
} | {
|
556
|
+
status: 401;
|
557
|
+
payload: AuthError$1;
|
558
|
+
} | {
|
559
|
+
status: 404;
|
560
|
+
payload: SimpleError$1;
|
561
|
+
}>;
|
562
|
+
type GetUserOAuthAccessTokensResponse = {
|
563
|
+
accessTokens: OAuthAccessToken[];
|
564
|
+
};
|
565
|
+
type GetUserOAuthAccessTokensVariables = ControlPlaneFetcherExtraProps;
|
566
|
+
/**
|
567
|
+
* Retrieve the list of valid OAuth Access Tokens on the current user's account
|
568
|
+
*/
|
569
|
+
declare const getUserOAuthAccessTokens: (variables: GetUserOAuthAccessTokensVariables, signal?: AbortSignal) => Promise<GetUserOAuthAccessTokensResponse>;
|
570
|
+
type DeleteOAuthAccessTokenPathParams = {
|
571
|
+
token: AccessToken;
|
572
|
+
};
|
573
|
+
type DeleteOAuthAccessTokenError = ErrorWrapper$1<{
|
574
|
+
status: 400;
|
575
|
+
payload: BadRequestError$1;
|
576
|
+
} | {
|
577
|
+
status: 401;
|
578
|
+
payload: AuthError$1;
|
579
|
+
} | {
|
580
|
+
status: 404;
|
581
|
+
payload: SimpleError$1;
|
582
|
+
} | {
|
583
|
+
status: 409;
|
584
|
+
payload: SimpleError$1;
|
585
|
+
}>;
|
586
|
+
type DeleteOAuthAccessTokenVariables = {
|
587
|
+
pathParams: DeleteOAuthAccessTokenPathParams;
|
588
|
+
} & ControlPlaneFetcherExtraProps;
|
589
|
+
/**
|
590
|
+
* Expires the access token for a third party app
|
591
|
+
*/
|
592
|
+
declare const deleteOAuthAccessToken: (variables: DeleteOAuthAccessTokenVariables, signal?: AbortSignal) => Promise<undefined>;
|
593
|
+
type UpdateOAuthAccessTokenPathParams = {
|
594
|
+
token: AccessToken;
|
595
|
+
};
|
596
|
+
type UpdateOAuthAccessTokenError = ErrorWrapper$1<{
|
597
|
+
status: 400;
|
598
|
+
payload: BadRequestError$1;
|
599
|
+
} | {
|
600
|
+
status: 401;
|
601
|
+
payload: AuthError$1;
|
602
|
+
} | {
|
603
|
+
status: 404;
|
604
|
+
payload: SimpleError$1;
|
605
|
+
} | {
|
606
|
+
status: 409;
|
607
|
+
payload: SimpleError$1;
|
608
|
+
}>;
|
609
|
+
type UpdateOAuthAccessTokenRequestBody = {
|
610
|
+
/**
|
611
|
+
* expiration time of the token as a unix timestamp
|
612
|
+
*/
|
613
|
+
expires: number;
|
614
|
+
};
|
615
|
+
type UpdateOAuthAccessTokenVariables = {
|
616
|
+
body: UpdateOAuthAccessTokenRequestBody;
|
617
|
+
pathParams: UpdateOAuthAccessTokenPathParams;
|
618
|
+
} & ControlPlaneFetcherExtraProps;
|
619
|
+
/**
|
620
|
+
* Updates partially the access token for a third party app
|
621
|
+
*/
|
622
|
+
declare const updateOAuthAccessToken: (variables: UpdateOAuthAccessTokenVariables, signal?: AbortSignal) => Promise<OAuthAccessToken>;
|
500
623
|
type GetWorkspacesListError = ErrorWrapper$1<{
|
501
624
|
status: 400;
|
502
625
|
payload: BadRequestError$1;
|
@@ -1259,7 +1382,7 @@ type ColumnFile = {
|
|
1259
1382
|
};
|
1260
1383
|
type Column = {
|
1261
1384
|
name: string;
|
1262
|
-
type: 'bool' | 'int' | 'float' | 'string' | 'text' | 'email' | 'multiple' | 'link' | 'object' | 'datetime' | 'vector' | 'file[]' | 'file';
|
1385
|
+
type: 'bool' | 'int' | 'float' | 'string' | 'text' | 'email' | 'multiple' | 'link' | 'object' | 'datetime' | 'vector' | 'file[]' | 'file' | 'json';
|
1263
1386
|
link?: ColumnLink;
|
1264
1387
|
vector?: ColumnVector;
|
1265
1388
|
file?: ColumnFile;
|
@@ -2144,12 +2267,6 @@ type SearchPageConfig = {
|
|
2144
2267
|
*/
|
2145
2268
|
offset?: number;
|
2146
2269
|
};
|
2147
|
-
/**
|
2148
|
-
* Xata Table SQL Record
|
2149
|
-
*/
|
2150
|
-
type SQLRecord = {
|
2151
|
-
[key: string]: any;
|
2152
|
-
};
|
2153
2270
|
/**
|
2154
2271
|
* A summary expression is the description of a single summary operation. It consists of a single
|
2155
2272
|
* key representing the operation, and a value representing the column to be operated on.
|
@@ -2389,6 +2506,12 @@ type FileAccessID = string;
|
|
2389
2506
|
* File signature
|
2390
2507
|
*/
|
2391
2508
|
type FileSignature = string;
|
2509
|
+
/**
|
2510
|
+
* Xata Table SQL Record
|
2511
|
+
*/
|
2512
|
+
type SQLRecord = {
|
2513
|
+
[key: string]: any;
|
2514
|
+
};
|
2392
2515
|
/**
|
2393
2516
|
* Xata Table Record Metadata
|
2394
2517
|
*/
|
@@ -2475,10 +2598,6 @@ type SearchResponse = {
|
|
2475
2598
|
*/
|
2476
2599
|
totalCount: number;
|
2477
2600
|
};
|
2478
|
-
type SQLResponse = {
|
2479
|
-
records: SQLRecord[];
|
2480
|
-
warning?: string;
|
2481
|
-
};
|
2482
2601
|
type SummarizeResponse = {
|
2483
2602
|
summaries: Record<string, any>[];
|
2484
2603
|
};
|
@@ -2490,6 +2609,10 @@ type AggResponse = {
|
|
2490
2609
|
[key: string]: AggResponse$1;
|
2491
2610
|
};
|
2492
2611
|
};
|
2612
|
+
type SQLResponse = {
|
2613
|
+
records?: SQLRecord[];
|
2614
|
+
warning?: string;
|
2615
|
+
};
|
2493
2616
|
|
2494
2617
|
type DataPlaneFetcherExtraProps = {
|
2495
2618
|
apiUrl: string;
|
@@ -5401,53 +5524,6 @@ type SearchTableVariables = {
|
|
5401
5524
|
* * filtering on columns of type `multiple` is currently unsupported
|
5402
5525
|
*/
|
5403
5526
|
declare const searchTable: (variables: SearchTableVariables, signal?: AbortSignal) => Promise<SearchResponse>;
|
5404
|
-
type SqlQueryPathParams = {
|
5405
|
-
/**
|
5406
|
-
* The DBBranchName matches the pattern `{db_name}:{branch_name}`.
|
5407
|
-
*/
|
5408
|
-
dbBranchName: DBBranchName;
|
5409
|
-
workspace: string;
|
5410
|
-
region: string;
|
5411
|
-
};
|
5412
|
-
type SqlQueryError = ErrorWrapper<{
|
5413
|
-
status: 400;
|
5414
|
-
payload: BadRequestError;
|
5415
|
-
} | {
|
5416
|
-
status: 401;
|
5417
|
-
payload: AuthError;
|
5418
|
-
} | {
|
5419
|
-
status: 404;
|
5420
|
-
payload: SimpleError;
|
5421
|
-
} | {
|
5422
|
-
status: 503;
|
5423
|
-
payload: ServiceUnavailableError;
|
5424
|
-
}>;
|
5425
|
-
type SqlQueryRequestBody = {
|
5426
|
-
/**
|
5427
|
-
* The query string.
|
5428
|
-
*
|
5429
|
-
* @minLength 1
|
5430
|
-
*/
|
5431
|
-
query: string;
|
5432
|
-
/**
|
5433
|
-
* The query parameter list.
|
5434
|
-
*/
|
5435
|
-
params?: any[] | null;
|
5436
|
-
/**
|
5437
|
-
* The consistency level for this request.
|
5438
|
-
*
|
5439
|
-
* @default strong
|
5440
|
-
*/
|
5441
|
-
consistency?: 'strong' | 'eventual';
|
5442
|
-
};
|
5443
|
-
type SqlQueryVariables = {
|
5444
|
-
body: SqlQueryRequestBody;
|
5445
|
-
pathParams: SqlQueryPathParams;
|
5446
|
-
} & DataPlaneFetcherExtraProps;
|
5447
|
-
/**
|
5448
|
-
* Run an SQL query across the database branch.
|
5449
|
-
*/
|
5450
|
-
declare const sqlQuery: (variables: SqlQueryVariables, signal?: AbortSignal) => Promise<SQLResponse>;
|
5451
5527
|
type VectorSearchTablePathParams = {
|
5452
5528
|
/**
|
5453
5529
|
* The DBBranchName matches the pattern `{db_name}:{branch_name}`.
|
@@ -5839,6 +5915,53 @@ type FileAccessVariables = {
|
|
5839
5915
|
* Retrieve file content by access id
|
5840
5916
|
*/
|
5841
5917
|
declare const fileAccess: (variables: FileAccessVariables, signal?: AbortSignal) => Promise<Blob>;
|
5918
|
+
type SqlQueryPathParams = {
|
5919
|
+
/**
|
5920
|
+
* The DBBranchName matches the pattern `{db_name}:{branch_name}`.
|
5921
|
+
*/
|
5922
|
+
dbBranchName: DBBranchName;
|
5923
|
+
workspace: string;
|
5924
|
+
region: string;
|
5925
|
+
};
|
5926
|
+
type SqlQueryError = ErrorWrapper<{
|
5927
|
+
status: 400;
|
5928
|
+
payload: BadRequestError;
|
5929
|
+
} | {
|
5930
|
+
status: 401;
|
5931
|
+
payload: AuthError;
|
5932
|
+
} | {
|
5933
|
+
status: 404;
|
5934
|
+
payload: SimpleError;
|
5935
|
+
} | {
|
5936
|
+
status: 503;
|
5937
|
+
payload: ServiceUnavailableError;
|
5938
|
+
}>;
|
5939
|
+
type SqlQueryRequestBody = {
|
5940
|
+
/**
|
5941
|
+
* The SQL statement.
|
5942
|
+
*
|
5943
|
+
* @minLength 1
|
5944
|
+
*/
|
5945
|
+
statement: string;
|
5946
|
+
/**
|
5947
|
+
* The query parameter list.
|
5948
|
+
*/
|
5949
|
+
params?: any[] | null;
|
5950
|
+
/**
|
5951
|
+
* The consistency level for this request.
|
5952
|
+
*
|
5953
|
+
* @default strong
|
5954
|
+
*/
|
5955
|
+
consistency?: 'strong' | 'eventual';
|
5956
|
+
};
|
5957
|
+
type SqlQueryVariables = {
|
5958
|
+
body: SqlQueryRequestBody;
|
5959
|
+
pathParams: SqlQueryPathParams;
|
5960
|
+
} & DataPlaneFetcherExtraProps;
|
5961
|
+
/**
|
5962
|
+
* Run an SQL query across the database branch.
|
5963
|
+
*/
|
5964
|
+
declare const sqlQuery: (variables: SqlQueryVariables, signal?: AbortSignal) => Promise<SQLResponse>;
|
5842
5965
|
|
5843
5966
|
declare const operationsByTag: {
|
5844
5967
|
branch: {
|
@@ -5912,16 +6035,23 @@ declare const operationsByTag: {
|
|
5912
6035
|
queryTable: (variables: QueryTableVariables, signal?: AbortSignal | undefined) => Promise<QueryResponse>;
|
5913
6036
|
searchBranch: (variables: SearchBranchVariables, signal?: AbortSignal | undefined) => Promise<SearchResponse>;
|
5914
6037
|
searchTable: (variables: SearchTableVariables, signal?: AbortSignal | undefined) => Promise<SearchResponse>;
|
5915
|
-
sqlQuery: (variables: SqlQueryVariables, signal?: AbortSignal | undefined) => Promise<SQLResponse>;
|
5916
6038
|
vectorSearchTable: (variables: VectorSearchTableVariables, signal?: AbortSignal | undefined) => Promise<SearchResponse>;
|
5917
6039
|
askTable: (variables: AskTableVariables, signal?: AbortSignal | undefined) => Promise<AskTableResponse>;
|
5918
6040
|
askTableSession: (variables: AskTableSessionVariables, signal?: AbortSignal | undefined) => Promise<AskTableSessionResponse>;
|
5919
6041
|
summarizeTable: (variables: SummarizeTableVariables, signal?: AbortSignal | undefined) => Promise<SummarizeResponse>;
|
5920
6042
|
aggregateTable: (variables: AggregateTableVariables, signal?: AbortSignal | undefined) => Promise<AggResponse>;
|
5921
6043
|
};
|
5922
|
-
|
5923
|
-
|
5924
|
-
|
6044
|
+
sql: {
|
6045
|
+
sqlQuery: (variables: SqlQueryVariables, signal?: AbortSignal | undefined) => Promise<SQLResponse>;
|
6046
|
+
};
|
6047
|
+
oAuth: {
|
6048
|
+
getAuthorizationCode: (variables: GetAuthorizationCodeVariables, signal?: AbortSignal | undefined) => Promise<AuthorizationCodeResponse>;
|
6049
|
+
grantAuthorizationCode: (variables: GrantAuthorizationCodeVariables, signal?: AbortSignal | undefined) => Promise<AuthorizationCodeResponse>;
|
6050
|
+
getUserOAuthClients: (variables: ControlPlaneFetcherExtraProps, signal?: AbortSignal | undefined) => Promise<GetUserOAuthClientsResponse>;
|
6051
|
+
deleteUserOAuthClient: (variables: DeleteUserOAuthClientVariables, signal?: AbortSignal | undefined) => Promise<undefined>;
|
6052
|
+
getUserOAuthAccessTokens: (variables: ControlPlaneFetcherExtraProps, signal?: AbortSignal | undefined) => Promise<GetUserOAuthAccessTokensResponse>;
|
6053
|
+
deleteOAuthAccessToken: (variables: DeleteOAuthAccessTokenVariables, signal?: AbortSignal | undefined) => Promise<undefined>;
|
6054
|
+
updateOAuthAccessToken: (variables: UpdateOAuthAccessTokenVariables, signal?: AbortSignal | undefined) => Promise<OAuthAccessToken>;
|
5925
6055
|
};
|
5926
6056
|
users: {
|
5927
6057
|
getUser: (variables: ControlPlaneFetcherExtraProps, signal?: AbortSignal | undefined) => Promise<UserWithID>;
|
@@ -5999,35 +6129,15 @@ type responses_ServiceUnavailableError = ServiceUnavailableError;
|
|
5999
6129
|
type responses_SimpleError = SimpleError;
|
6000
6130
|
type responses_SummarizeResponse = SummarizeResponse;
|
6001
6131
|
declare namespace responses {
|
6002
|
-
export {
|
6003
|
-
responses_AggResponse as AggResponse,
|
6004
|
-
responses_AuthError as AuthError,
|
6005
|
-
responses_BadRequestError as BadRequestError,
|
6006
|
-
responses_BranchMigrationPlan as BranchMigrationPlan,
|
6007
|
-
responses_BulkError as BulkError,
|
6008
|
-
responses_BulkInsertResponse as BulkInsertResponse,
|
6009
|
-
responses_PutFileResponse as PutFileResponse,
|
6010
|
-
responses_QueryResponse as QueryResponse,
|
6011
|
-
responses_RateLimitError as RateLimitError,
|
6012
|
-
responses_RecordResponse as RecordResponse,
|
6013
|
-
responses_RecordUpdateResponse as RecordUpdateResponse,
|
6014
|
-
responses_SQLResponse as SQLResponse,
|
6015
|
-
responses_SchemaCompareResponse as SchemaCompareResponse,
|
6016
|
-
responses_SchemaUpdateResponse as SchemaUpdateResponse,
|
6017
|
-
responses_SearchResponse as SearchResponse,
|
6018
|
-
responses_ServiceUnavailableError as ServiceUnavailableError,
|
6019
|
-
responses_SimpleError as SimpleError,
|
6020
|
-
responses_SummarizeResponse as SummarizeResponse,
|
6021
|
-
};
|
6132
|
+
export type { responses_AggResponse as AggResponse, responses_AuthError as AuthError, responses_BadRequestError as BadRequestError, responses_BranchMigrationPlan as BranchMigrationPlan, responses_BulkError as BulkError, responses_BulkInsertResponse as BulkInsertResponse, responses_PutFileResponse as PutFileResponse, responses_QueryResponse as QueryResponse, responses_RateLimitError as RateLimitError, responses_RecordResponse as RecordResponse, responses_RecordUpdateResponse as RecordUpdateResponse, responses_SQLResponse as SQLResponse, responses_SchemaCompareResponse as SchemaCompareResponse, responses_SchemaUpdateResponse as SchemaUpdateResponse, responses_SearchResponse as SearchResponse, responses_ServiceUnavailableError as ServiceUnavailableError, responses_SimpleError as SimpleError, responses_SummarizeResponse as SummarizeResponse };
|
6022
6133
|
}
|
6023
6134
|
|
6024
6135
|
type schemas_APIKeyName = APIKeyName;
|
6025
6136
|
type schemas_AccessToken = AccessToken;
|
6026
|
-
type schemas_AccessTokenInput = AccessTokenInput;
|
6027
|
-
type schemas_AccessTokenOutput = AccessTokenOutput;
|
6028
6137
|
type schemas_AggExpression = AggExpression;
|
6029
6138
|
type schemas_AggExpressionMap = AggExpressionMap;
|
6030
|
-
type
|
6139
|
+
type schemas_AuthorizationCodeRequest = AuthorizationCodeRequest;
|
6140
|
+
type schemas_AuthorizationCodeResponse = AuthorizationCodeResponse;
|
6031
6141
|
type schemas_AverageAgg = AverageAgg;
|
6032
6142
|
type schemas_BoosterExpression = BoosterExpression;
|
6033
6143
|
type schemas_Branch = Branch;
|
@@ -6095,6 +6205,11 @@ type schemas_MigrationStatus = MigrationStatus;
|
|
6095
6205
|
type schemas_MigrationTableOp = MigrationTableOp;
|
6096
6206
|
type schemas_MinAgg = MinAgg;
|
6097
6207
|
type schemas_NumericHistogramAgg = NumericHistogramAgg;
|
6208
|
+
type schemas_OAuthAccessToken = OAuthAccessToken;
|
6209
|
+
type schemas_OAuthClientID = OAuthClientID;
|
6210
|
+
type schemas_OAuthClientPublicDetails = OAuthClientPublicDetails;
|
6211
|
+
type schemas_OAuthResponseType = OAuthResponseType;
|
6212
|
+
type schemas_OAuthScope = OAuthScope;
|
6098
6213
|
type schemas_ObjectValue = ObjectValue;
|
6099
6214
|
type schemas_PageConfig = PageConfig;
|
6100
6215
|
type schemas_PrefixExpression = PrefixExpression;
|
@@ -6148,140 +6263,7 @@ type schemas_WorkspaceMember = WorkspaceMember;
|
|
6148
6263
|
type schemas_WorkspaceMembers = WorkspaceMembers;
|
6149
6264
|
type schemas_WorkspaceMeta = WorkspaceMeta;
|
6150
6265
|
declare namespace schemas {
|
6151
|
-
export {
|
6152
|
-
schemas_APIKeyName as APIKeyName,
|
6153
|
-
schemas_AccessToken as AccessToken,
|
6154
|
-
schemas_AccessTokenInput as AccessTokenInput,
|
6155
|
-
schemas_AccessTokenOutput as AccessTokenOutput,
|
6156
|
-
schemas_AggExpression as AggExpression,
|
6157
|
-
schemas_AggExpressionMap as AggExpressionMap,
|
6158
|
-
AggResponse$1 as AggResponse,
|
6159
|
-
schemas_AuthorizationCode as AuthorizationCode,
|
6160
|
-
schemas_AverageAgg as AverageAgg,
|
6161
|
-
schemas_BoosterExpression as BoosterExpression,
|
6162
|
-
schemas_Branch as Branch,
|
6163
|
-
schemas_BranchMetadata as BranchMetadata,
|
6164
|
-
schemas_BranchMigration as BranchMigration,
|
6165
|
-
schemas_BranchName as BranchName,
|
6166
|
-
schemas_BranchOp as BranchOp,
|
6167
|
-
schemas_BranchWithCopyID as BranchWithCopyID,
|
6168
|
-
schemas_Column as Column,
|
6169
|
-
schemas_ColumnFile as ColumnFile,
|
6170
|
-
schemas_ColumnLink as ColumnLink,
|
6171
|
-
schemas_ColumnMigration as ColumnMigration,
|
6172
|
-
schemas_ColumnName as ColumnName,
|
6173
|
-
schemas_ColumnOpAdd as ColumnOpAdd,
|
6174
|
-
schemas_ColumnOpRemove as ColumnOpRemove,
|
6175
|
-
schemas_ColumnOpRename as ColumnOpRename,
|
6176
|
-
schemas_ColumnVector as ColumnVector,
|
6177
|
-
schemas_ColumnsProjection as ColumnsProjection,
|
6178
|
-
schemas_Commit as Commit,
|
6179
|
-
schemas_CountAgg as CountAgg,
|
6180
|
-
schemas_DBBranch as DBBranch,
|
6181
|
-
schemas_DBBranchName as DBBranchName,
|
6182
|
-
schemas_DBName as DBName,
|
6183
|
-
schemas_DataInputRecord as DataInputRecord,
|
6184
|
-
schemas_DatabaseGithubSettings as DatabaseGithubSettings,
|
6185
|
-
schemas_DatabaseMetadata as DatabaseMetadata,
|
6186
|
-
DateBooster$1 as DateBooster,
|
6187
|
-
schemas_DateHistogramAgg as DateHistogramAgg,
|
6188
|
-
schemas_DateTime as DateTime,
|
6189
|
-
schemas_FileAccessID as FileAccessID,
|
6190
|
-
schemas_FileItemID as FileItemID,
|
6191
|
-
schemas_FileName as FileName,
|
6192
|
-
schemas_FileResponse as FileResponse,
|
6193
|
-
schemas_FileSignature as FileSignature,
|
6194
|
-
schemas_FilterColumn as FilterColumn,
|
6195
|
-
schemas_FilterColumnIncludes as FilterColumnIncludes,
|
6196
|
-
schemas_FilterExpression as FilterExpression,
|
6197
|
-
schemas_FilterList as FilterList,
|
6198
|
-
schemas_FilterPredicate as FilterPredicate,
|
6199
|
-
schemas_FilterPredicateOp as FilterPredicateOp,
|
6200
|
-
schemas_FilterPredicateRangeOp as FilterPredicateRangeOp,
|
6201
|
-
schemas_FilterRangeValue as FilterRangeValue,
|
6202
|
-
schemas_FilterValue as FilterValue,
|
6203
|
-
schemas_FuzzinessExpression as FuzzinessExpression,
|
6204
|
-
schemas_HighlightExpression as HighlightExpression,
|
6205
|
-
schemas_InputFile as InputFile,
|
6206
|
-
schemas_InputFileArray as InputFileArray,
|
6207
|
-
schemas_InputFileEntry as InputFileEntry,
|
6208
|
-
schemas_InviteID as InviteID,
|
6209
|
-
schemas_InviteKey as InviteKey,
|
6210
|
-
schemas_ListBranchesResponse as ListBranchesResponse,
|
6211
|
-
schemas_ListDatabasesResponse as ListDatabasesResponse,
|
6212
|
-
schemas_ListGitBranchesResponse as ListGitBranchesResponse,
|
6213
|
-
schemas_ListRegionsResponse as ListRegionsResponse,
|
6214
|
-
schemas_MaxAgg as MaxAgg,
|
6215
|
-
schemas_MediaType as MediaType,
|
6216
|
-
schemas_MetricsDatapoint as MetricsDatapoint,
|
6217
|
-
schemas_MetricsLatency as MetricsLatency,
|
6218
|
-
schemas_Migration as Migration,
|
6219
|
-
schemas_MigrationColumnOp as MigrationColumnOp,
|
6220
|
-
schemas_MigrationObject as MigrationObject,
|
6221
|
-
schemas_MigrationOp as MigrationOp,
|
6222
|
-
schemas_MigrationRequest as MigrationRequest,
|
6223
|
-
schemas_MigrationRequestNumber as MigrationRequestNumber,
|
6224
|
-
schemas_MigrationStatus as MigrationStatus,
|
6225
|
-
schemas_MigrationTableOp as MigrationTableOp,
|
6226
|
-
schemas_MinAgg as MinAgg,
|
6227
|
-
NumericBooster$1 as NumericBooster,
|
6228
|
-
schemas_NumericHistogramAgg as NumericHistogramAgg,
|
6229
|
-
schemas_ObjectValue as ObjectValue,
|
6230
|
-
schemas_PageConfig as PageConfig,
|
6231
|
-
schemas_PrefixExpression as PrefixExpression,
|
6232
|
-
schemas_ProjectionConfig as ProjectionConfig,
|
6233
|
-
schemas_QueryColumnsProjection as QueryColumnsProjection,
|
6234
|
-
schemas_RecordID as RecordID,
|
6235
|
-
schemas_RecordMeta as RecordMeta,
|
6236
|
-
schemas_RecordsMetadata as RecordsMetadata,
|
6237
|
-
schemas_Region as Region,
|
6238
|
-
schemas_RevLink as RevLink,
|
6239
|
-
schemas_Role as Role,
|
6240
|
-
schemas_SQLRecord as SQLRecord,
|
6241
|
-
schemas_Schema as Schema,
|
6242
|
-
schemas_SchemaEditScript as SchemaEditScript,
|
6243
|
-
schemas_SearchPageConfig as SearchPageConfig,
|
6244
|
-
schemas_SortExpression as SortExpression,
|
6245
|
-
schemas_SortOrder as SortOrder,
|
6246
|
-
schemas_StartedFromMetadata as StartedFromMetadata,
|
6247
|
-
schemas_SumAgg as SumAgg,
|
6248
|
-
schemas_SummaryExpression as SummaryExpression,
|
6249
|
-
schemas_SummaryExpressionList as SummaryExpressionList,
|
6250
|
-
schemas_Table as Table,
|
6251
|
-
schemas_TableMigration as TableMigration,
|
6252
|
-
schemas_TableName as TableName,
|
6253
|
-
schemas_TableOpAdd as TableOpAdd,
|
6254
|
-
schemas_TableOpRemove as TableOpRemove,
|
6255
|
-
schemas_TableOpRename as TableOpRename,
|
6256
|
-
schemas_TableRename as TableRename,
|
6257
|
-
schemas_TargetExpression as TargetExpression,
|
6258
|
-
schemas_TopValuesAgg as TopValuesAgg,
|
6259
|
-
schemas_TransactionDeleteOp as TransactionDeleteOp,
|
6260
|
-
schemas_TransactionError as TransactionError,
|
6261
|
-
schemas_TransactionFailure as TransactionFailure,
|
6262
|
-
schemas_TransactionGetOp as TransactionGetOp,
|
6263
|
-
schemas_TransactionInsertOp as TransactionInsertOp,
|
6264
|
-
TransactionOperation$1 as TransactionOperation,
|
6265
|
-
schemas_TransactionResultColumns as TransactionResultColumns,
|
6266
|
-
schemas_TransactionResultDelete as TransactionResultDelete,
|
6267
|
-
schemas_TransactionResultGet as TransactionResultGet,
|
6268
|
-
schemas_TransactionResultInsert as TransactionResultInsert,
|
6269
|
-
schemas_TransactionResultUpdate as TransactionResultUpdate,
|
6270
|
-
schemas_TransactionSuccess as TransactionSuccess,
|
6271
|
-
schemas_TransactionUpdateOp as TransactionUpdateOp,
|
6272
|
-
schemas_UniqueCountAgg as UniqueCountAgg,
|
6273
|
-
schemas_User as User,
|
6274
|
-
schemas_UserID as UserID,
|
6275
|
-
schemas_UserWithID as UserWithID,
|
6276
|
-
ValueBooster$1 as ValueBooster,
|
6277
|
-
schemas_Workspace as Workspace,
|
6278
|
-
schemas_WorkspaceID as WorkspaceID,
|
6279
|
-
schemas_WorkspaceInvite as WorkspaceInvite,
|
6280
|
-
schemas_WorkspaceMember as WorkspaceMember,
|
6281
|
-
schemas_WorkspaceMembers as WorkspaceMembers,
|
6282
|
-
schemas_WorkspaceMeta as WorkspaceMeta,
|
6283
|
-
XataRecord$1 as XataRecord,
|
6284
|
-
};
|
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 };
|
6285
6267
|
}
|
6286
6268
|
|
6287
6269
|
type ApiExtraProps = Omit<FetcherExtraProps, 'endpoint'>;
|
@@ -7185,6 +7167,7 @@ interface ImageTransformations {
|
|
7185
7167
|
*/
|
7186
7168
|
width?: number;
|
7187
7169
|
}
|
7170
|
+
declare function transformImage(url: string | undefined, transformations: ImageTransformations[]): string | undefined;
|
7188
7171
|
|
7189
7172
|
type XataFileEditableFields = Partial<Pick<XataArrayFile, keyof InputFileEntry>>;
|
7190
7173
|
declare class XataFile {
|
@@ -7276,7 +7259,7 @@ type NestedValueAtColumn<O, Key extends SelectableColumn<O>> = Key extends `${in
|
|
7276
7259
|
} : unknown;
|
7277
7260
|
type ForwardNullable<T, R> = T extends NonNullable<T> ? R : R | null;
|
7278
7261
|
|
7279
|
-
declare const RecordColumnTypes: readonly ["bool", "int", "float", "string", "text", "email", "multiple", "link", "object", "datetime", "vector", "file[]", "file"];
|
7262
|
+
declare const RecordColumnTypes: readonly ["bool", "int", "float", "string", "text", "email", "multiple", "link", "object", "datetime", "vector", "file[]", "file", "json"];
|
7280
7263
|
type Identifier = string;
|
7281
7264
|
/**
|
7282
7265
|
* Represents an identifiable record from the database.
|
@@ -9424,4 +9407,4 @@ declare class XataError extends Error {
|
|
9424
9407
|
constructor(message: string, status: number);
|
9425
9408
|
}
|
9426
9409
|
|
9427
|
-
export { AcceptWorkspaceMemberInviteError, AcceptWorkspaceMemberInvitePathParams, AcceptWorkspaceMemberInviteVariables, AddGitBranchesEntryError, AddGitBranchesEntryPathParams, AddGitBranchesEntryRequestBody, AddGitBranchesEntryResponse, AddGitBranchesEntryVariables, AddTableColumnError, AddTableColumnPathParams, AddTableColumnVariables, AggregateTableError, AggregateTablePathParams, AggregateTableRequestBody, AggregateTableVariables, ApiExtraProps, ApplyBranchSchemaEditError, ApplyBranchSchemaEditPathParams, ApplyBranchSchemaEditRequestBody, ApplyBranchSchemaEditVariables, AskOptions, AskResult, AskTableError, AskTablePathParams, AskTableRequestBody, AskTableResponse, AskTableSessionError, AskTableSessionPathParams, AskTableSessionRequestBody, AskTableSessionResponse, AskTableSessionVariables, AskTableVariables, BaseClient, BaseClientOptions, BaseData, BaseSchema, BranchTransactionError, BranchTransactionPathParams, BranchTransactionRequestBody, BranchTransactionVariables, BulkInsertTableRecordsError, BulkInsertTableRecordsPathParams, BulkInsertTableRecordsQueryParams, BulkInsertTableRecordsRequestBody, BulkInsertTableRecordsVariables, CacheImpl, CancelWorkspaceMemberInviteError, CancelWorkspaceMemberInvitePathParams, CancelWorkspaceMemberInviteVariables, ClientConstructor, ColumnsByValue, CompareBranchSchemasError, CompareBranchSchemasPathParams, CompareBranchSchemasRequestBody, CompareBranchSchemasVariables, CompareBranchWithUserSchemaError, CompareBranchWithUserSchemaPathParams, CompareBranchWithUserSchemaRequestBody, CompareBranchWithUserSchemaVariables, CompareMigrationRequestError, CompareMigrationRequestPathParams, CompareMigrationRequestVariables, CopyBranchError, CopyBranchPathParams, CopyBranchRequestBody, CopyBranchVariables, CreateBranchError, CreateBranchPathParams, CreateBranchQueryParams, CreateBranchRequestBody, CreateBranchResponse, CreateBranchVariables, CreateDatabaseError, CreateDatabasePathParams, CreateDatabaseRequestBody, CreateDatabaseResponse, CreateDatabaseVariables, CreateMigrationRequestError, CreateMigrationRequestPathParams, CreateMigrationRequestRequestBody, CreateMigrationRequestResponse, CreateMigrationRequestVariables, CreateTableError, CreateTablePathParams, CreateTableResponse, CreateTableVariables, CreateUserAPIKeyError, CreateUserAPIKeyPathParams, CreateUserAPIKeyResponse, CreateUserAPIKeyVariables, CreateWorkspaceError, CreateWorkspaceVariables, CursorNavigationOptions, DeleteBranchError, DeleteBranchPathParams, DeleteBranchResponse, DeleteBranchVariables, DeleteColumnError, DeleteColumnPathParams, DeleteColumnVariables, DeleteDatabaseError, DeleteDatabaseGithubSettingsError, DeleteDatabaseGithubSettingsPathParams, DeleteDatabaseGithubSettingsVariables, DeleteDatabasePathParams, DeleteDatabaseResponse, DeleteDatabaseVariables, DeleteFileError, DeleteFileItemError, DeleteFileItemPathParams, DeleteFileItemVariables, DeleteFilePathParams, DeleteFileVariables, DeleteRecordError, DeleteRecordPathParams, DeleteRecordQueryParams, DeleteRecordVariables, DeleteTableError, DeleteTablePathParams, DeleteTableResponse, DeleteTableVariables, DeleteUserAPIKeyError, DeleteUserAPIKeyPathParams, DeleteUserAPIKeyVariables, DeleteUserError, DeleteUserVariables, DeleteWorkspaceError, DeleteWorkspacePathParams, DeleteWorkspaceVariables, DeserializedType, EditableData, ExecuteBranchMigrationPlanError, ExecuteBranchMigrationPlanPathParams, ExecuteBranchMigrationPlanRequestBody, ExecuteBranchMigrationPlanVariables, FetchImpl, FetcherError, FetcherExtraProps, FileAccessError, FileAccessPathParams, FileAccessQueryParams, FileAccessVariables, GenerateAccessTokenError, GenerateAccessTokenVariables, GetBranchDetailsError, GetBranchDetailsPathParams, GetBranchDetailsVariables, GetBranchListError, GetBranchListPathParams, GetBranchListVariables, GetBranchMetadataError, GetBranchMetadataPathParams, GetBranchMetadataVariables, GetBranchMigrationHistoryError, GetBranchMigrationHistoryPathParams, GetBranchMigrationHistoryRequestBody, GetBranchMigrationHistoryResponse, GetBranchMigrationHistoryVariables, GetBranchMigrationPlanError, GetBranchMigrationPlanPathParams, GetBranchMigrationPlanVariables, GetBranchSchemaHistoryError, GetBranchSchemaHistoryPathParams, GetBranchSchemaHistoryRequestBody, GetBranchSchemaHistoryResponse, GetBranchSchemaHistoryVariables, GetBranchStatsError, GetBranchStatsPathParams, GetBranchStatsResponse, GetBranchStatsVariables, GetColumnError, GetColumnPathParams, GetColumnVariables, GetDatabaseGithubSettingsError, GetDatabaseGithubSettingsPathParams, GetDatabaseGithubSettingsVariables, GetDatabaseListError, GetDatabaseListPathParams, GetDatabaseListVariables, GetDatabaseMetadataError, GetDatabaseMetadataPathParams, GetDatabaseMetadataVariables, GetFileError, GetFileItemError, GetFileItemPathParams, GetFileItemVariables, GetFilePathParams, GetFileVariables, GetGitBranchesMappingError, GetGitBranchesMappingPathParams, GetGitBranchesMappingVariables, GetMigrationRequestError, GetMigrationRequestIsMergedError, GetMigrationRequestIsMergedPathParams, GetMigrationRequestIsMergedResponse, GetMigrationRequestIsMergedVariables, GetMigrationRequestPathParams, GetMigrationRequestVariables, GetRecordError, GetRecordPathParams, GetRecordQueryParams, GetRecordVariables, GetTableColumnsError, GetTableColumnsPathParams, GetTableColumnsResponse, GetTableColumnsVariables, GetTableSchemaError, GetTableSchemaPathParams, GetTableSchemaResponse, GetTableSchemaVariables, GetUserAPIKeysError, GetUserAPIKeysResponse, GetUserAPIKeysVariables, GetUserError, GetUserVariables, GetWorkspaceError, GetWorkspaceMembersListError, GetWorkspaceMembersListPathParams, GetWorkspaceMembersListVariables, GetWorkspacePathParams, GetWorkspaceVariables, GetWorkspacesListError, GetWorkspacesListResponse, GetWorkspacesListVariables, GrantAuthorizationCodeError, GrantAuthorizationCodeRequestBody, GrantAuthorizationCodeResponse, GrantAuthorizationCodeVariables, HostProvider, Identifiable, InsertRecordError, InsertRecordPathParams, InsertRecordQueryParams, InsertRecordVariables, InsertRecordWithIDError, InsertRecordWithIDPathParams, InsertRecordWithIDQueryParams, InsertRecordWithIDVariables, InviteWorkspaceMemberError, InviteWorkspaceMemberPathParams, InviteWorkspaceMemberRequestBody, InviteWorkspaceMemberVariables, JSONData, KeywordAskOptions, Link, ListMigrationRequestsCommitsError, ListMigrationRequestsCommitsPathParams, ListMigrationRequestsCommitsRequestBody, ListMigrationRequestsCommitsResponse, ListMigrationRequestsCommitsVariables, ListRegionsError, ListRegionsPathParams, ListRegionsVariables, MergeMigrationRequestError, MergeMigrationRequestPathParams, MergeMigrationRequestVariables, OffsetNavigationOptions, operationsByTag as Operations, PAGINATION_DEFAULT_OFFSET, PAGINATION_DEFAULT_SIZE, PAGINATION_MAX_OFFSET, PAGINATION_MAX_SIZE, Page, Paginable, PaginationQueryMeta, PreviewBranchSchemaEditError, PreviewBranchSchemaEditPathParams, PreviewBranchSchemaEditRequestBody, PreviewBranchSchemaEditResponse, PreviewBranchSchemaEditVariables, PushBranchMigrationsError, PushBranchMigrationsPathParams, PushBranchMigrationsRequestBody, PushBranchMigrationsVariables, PutFileError, PutFileItemError, PutFileItemPathParams, PutFileItemVariables, PutFilePathParams, PutFileVariables, Query, QueryMigrationRequestsError, QueryMigrationRequestsPathParams, QueryMigrationRequestsRequestBody, QueryMigrationRequestsResponse, QueryMigrationRequestsVariables, QueryTableError, QueryTablePathParams, QueryTableRequestBody, QueryTableVariables, RecordArray, RecordColumnTypes, RemoveGitBranchesEntryError, RemoveGitBranchesEntryPathParams, RemoveGitBranchesEntryQueryParams, RemoveGitBranchesEntryVariables, RemoveWorkspaceMemberError, RemoveWorkspaceMemberPathParams, RemoveWorkspaceMemberVariables, RenameDatabaseError, RenameDatabasePathParams, RenameDatabaseRequestBody, RenameDatabaseVariables, Repository, ResendWorkspaceMemberInviteError, ResendWorkspaceMemberInvitePathParams, ResendWorkspaceMemberInviteVariables, ResolveBranchError, ResolveBranchPathParams, ResolveBranchQueryParams, ResolveBranchResponse, ResolveBranchVariables, responses as Responses, RestRepository, SchemaDefinition, SchemaInference, SchemaPlugin, SchemaPluginResult, schemas as Schemas, SearchBranchError, SearchBranchPathParams, SearchBranchRequestBody, SearchBranchVariables, SearchOptions, SearchPlugin, SearchPluginResult, SearchTableError, SearchTablePathParams, SearchTableRequestBody, SearchTableVariables, SearchXataRecord, SelectableColumn, SelectedPick, SerializedString, Serializer, SerializerResult, SetTableSchemaError, SetTableSchemaPathParams, SetTableSchemaRequestBody, SetTableSchemaVariables, SimpleCache, SimpleCacheOptions, SqlQueryError, SqlQueryPathParams, SqlQueryRequestBody, SqlQueryVariables, SummarizeTableError, SummarizeTablePathParams, SummarizeTableRequestBody, SummarizeTableVariables, UpdateBranchMetadataError, UpdateBranchMetadataPathParams, UpdateBranchMetadataVariables, UpdateBranchSchemaError, UpdateBranchSchemaPathParams, UpdateBranchSchemaVariables, UpdateColumnError, UpdateColumnPathParams, UpdateColumnRequestBody, UpdateColumnVariables, UpdateDatabaseGithubSettingsError, UpdateDatabaseGithubSettingsPathParams, UpdateDatabaseGithubSettingsVariables, UpdateDatabaseMetadataError, UpdateDatabaseMetadataPathParams, UpdateDatabaseMetadataRequestBody, UpdateDatabaseMetadataVariables, UpdateMigrationRequestError, UpdateMigrationRequestPathParams, UpdateMigrationRequestRequestBody, UpdateMigrationRequestVariables, UpdateRecordWithIDError, UpdateRecordWithIDPathParams, UpdateRecordWithIDQueryParams, UpdateRecordWithIDVariables, UpdateTableError, UpdateTablePathParams, UpdateTableRequestBody, UpdateTableVariables, UpdateUserError, UpdateUserVariables, UpdateWorkspaceError, UpdateWorkspaceMemberInviteError, UpdateWorkspaceMemberInvitePathParams, UpdateWorkspaceMemberInviteRequestBody, UpdateWorkspaceMemberInviteVariables, UpdateWorkspaceMemberRoleError, UpdateWorkspaceMemberRolePathParams, UpdateWorkspaceMemberRoleRequestBody, UpdateWorkspaceMemberRoleVariables, UpdateWorkspacePathParams, UpdateWorkspaceVariables, UpsertRecordWithIDError, UpsertRecordWithIDPathParams, UpsertRecordWithIDQueryParams, UpsertRecordWithIDVariables, ValueAtColumn, VectorAskOptions, VectorSearchTableError, VectorSearchTablePathParams, VectorSearchTableRequestBody, VectorSearchTableVariables, XataApiClient, XataApiClientOptions, XataApiPlugin, XataArrayFile, XataError, XataFile, XataPlugin, XataPluginOptions, 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, deleteRecord, deleteTable, deleteUser, deleteUserAPIKey, deleteWorkspace, deserialize, endsWith, equals, executeBranchMigrationPlan, exists, fileAccess, ge, generateAccessToken, getAPIKey, 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, getWorkspace, getWorkspaceMembersList, getWorkspacesList, grantAuthorizationCode, greaterEquals, greaterThan, greaterThanEquals, gt, gte, includes, includesAll, includesAny, includesNone, insertRecord, insertRecordWithID, inviteWorkspaceMember, is, isCursorPaginationOptions, isHostProviderAlias, isHostProviderBuilder, isIdentifiable, isNot, 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, updateBranchMetadata, updateBranchSchema, updateColumn, updateDatabaseGithubSettings, updateDatabaseMetadata, updateMigrationRequest, updateRecordWithID, updateTable, updateUser, updateWorkspace, updateWorkspaceMemberInvite, updateWorkspaceMemberRole, upsertRecordWithID, vectorSearchTable };
|
9410
|
+
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 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, 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 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, 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 };
|