-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontents.ts
More file actions
240 lines (203 loc) · 5.23 KB
/
contents.ts
File metadata and controls
240 lines (203 loc) · 5.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import { isRequestOptions } from '../../core';
import * as Core from '../../core';
import { ContentsPage, type ContentsPageParams } from '../../pagination';
export class Contents extends APIResource {
/**
* Get Document Contents
*/
list(
datastoreId: string,
query?: ContentListParams,
options?: Core.RequestOptions,
): Core.PagePromise<ContentListResponsesContentsPage, ContentListResponse>;
list(
datastoreId: string,
options?: Core.RequestOptions,
): Core.PagePromise<ContentListResponsesContentsPage, ContentListResponse>;
list(
datastoreId: string,
query: ContentListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<ContentListResponsesContentsPage, ContentListResponse> {
if (isRequestOptions(query)) {
return this.list(datastoreId, {}, query);
}
return this._client.getAPIList(`/datastores/${datastoreId}/contents`, ContentListResponsesContentsPage, {
query,
...options,
});
}
/**
* Get Content Metadata
*/
metadata(
datastoreId: string,
contentId: string,
query?: ContentMetadataParams,
options?: Core.RequestOptions,
): Core.APIPromise<ContentMetadataResponse>;
metadata(
datastoreId: string,
contentId: string,
options?: Core.RequestOptions,
): Core.APIPromise<ContentMetadataResponse>;
metadata(
datastoreId: string,
contentId: string,
query: ContentMetadataParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<ContentMetadataResponse> {
if (isRequestOptions(query)) {
return this.metadata(datastoreId, contentId, {}, query);
}
return this._client.get(`/datastores/${datastoreId}/contents/${contentId}/metadata`, {
query,
...options,
});
}
}
export class ContentListResponsesContentsPage extends ContentsPage<ContentListResponse> {}
/**
* Content entry type
*/
export type ContentListResponse =
| ContentListResponse.DocumentContentEntry
| ContentListResponse.StructuredContentEntry;
export namespace ContentListResponse {
export interface DocumentContentEntry {
/**
* ID of the content
*/
content_id: string;
/**
* Page number of the content
*/
page_number: number;
content_type?: 'unstructured';
}
/**
* Tabular content entry used in query retrieval.
*/
export interface StructuredContentEntry {
/**
* ID of the content
*/
content_id: string;
/**
* Name of the table
*/
table_name: string;
content_type?: 'structured';
/**
* Name of the schema of the table
*/
schema?: string | null;
}
}
/**
* Content type
*/
export type ContentMetadataResponse =
| ContentMetadataResponse.UnstructuredContentMetadata
| ContentMetadataResponse.StructuredContentMetadata
| ContentMetadataResponse.FileAnalysisContentMetadata;
export namespace ContentMetadataResponse {
export interface UnstructuredContentMetadata {
/**
* Id of the content.
*/
content_id: string;
/**
* Text of the content.
*/
content_text: string;
/**
* Id of the document which the content belongs to.
*/
document_id: string;
/**
* Height of the image.
*/
height: number;
/**
* Page number of the content.
*/
page: number;
/**
* Image of the page on which the content occurs.
*/
page_img: string;
/**
* Width of the image.
*/
width: number;
/**
* X coordinate of the top left corner on the bounding box.
*/
x0: number;
/**
* X coordinate of the bottom right corner on the bounding box.
*/
x1: number;
/**
* Y coordinate of the top left corner on the bounding box.
*/
y0: number;
/**
* Y coordinate of the bottom right corner on the bounding box.
*/
y1: number;
content_type?: 'unstructured';
}
export interface StructuredContentMetadata {
/**
* Id of the content.
*/
content_id: string;
/**
* Text of the content.
*/
content_text: unknown;
content_type?: 'structured';
}
export interface FileAnalysisContentMetadata {
/**
* Id of the content.
*/
content_id: string;
/**
* Format of the file.
*/
file_format: string;
/**
* GCP location of the file.
*/
gcp_location: string;
content_type?: 'file_analysis';
}
}
export interface ContentListParams extends ContentsPageParams {
/**
* Document ID of the document to retrieve details for
*/
document_id?: string;
/**
* The query to search keywords for
*/
search?: string;
}
export interface ContentMetadataParams {
cursor?: string;
}
Contents.ContentListResponsesContentsPage = ContentListResponsesContentsPage;
export declare namespace Contents {
export {
type ContentListResponse as ContentListResponse,
type ContentMetadataResponse as ContentMetadataResponse,
ContentListResponsesContentsPage as ContentListResponsesContentsPage,
type ContentListParams as ContentListParams,
type ContentMetadataParams as ContentMetadataParams,
};
}