@mixedbread/sdk 0.30.0 → 0.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +18 -18
- package/bin/migration-config.json +70 -0
- package/client.d.mts +3 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +3 -0
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/stores/files.d.mts +593 -0
- package/resources/stores/files.d.mts.map +1 -0
- package/resources/stores/files.d.ts +593 -0
- package/resources/stores/files.d.ts.map +1 -0
- package/resources/stores/files.js +136 -0
- package/resources/stores/files.js.map +1 -0
- package/resources/stores/files.mjs +131 -0
- package/resources/stores/files.mjs.map +1 -0
- package/resources/stores/index.d.mts +3 -0
- package/resources/stores/index.d.mts.map +1 -0
- package/resources/stores/index.d.ts +3 -0
- package/resources/stores/index.d.ts.map +1 -0
- package/resources/stores/index.js +9 -0
- package/resources/stores/index.js.map +1 -0
- package/resources/stores/index.mjs +4 -0
- package/resources/stores/index.mjs.map +1 -0
- package/resources/stores/stores.d.mts +372 -0
- package/resources/stores/stores.d.mts.map +1 -0
- package/resources/stores/stores.d.ts +372 -0
- package/resources/stores/stores.d.ts.map +1 -0
- package/resources/stores/stores.js +100 -0
- package/resources/stores/stores.js.map +1 -0
- package/resources/stores/stores.mjs +95 -0
- package/resources/stores/stores.mjs.map +1 -0
- package/resources/stores.d.mts +2 -0
- package/resources/stores.d.mts.map +1 -0
- package/resources/stores.d.ts +2 -0
- package/resources/stores.d.ts.map +1 -0
- package/resources/stores.js +6 -0
- package/resources/stores.js.map +1 -0
- package/resources/stores.mjs +3 -0
- package/resources/stores.mjs.map +1 -0
- package/resources/vector-stores/files.d.mts +11 -10
- package/resources/vector-stores/files.d.mts.map +1 -1
- package/resources/vector-stores/files.d.ts +11 -10
- package/resources/vector-stores/files.d.ts.map +1 -1
- package/resources/vector-stores/files.js +5 -5
- package/resources/vector-stores/files.js.map +1 -1
- package/resources/vector-stores/files.mjs +5 -5
- package/resources/vector-stores/files.mjs.map +1 -1
- package/resources/vector-stores/vector-stores.d.mts +7 -7
- package/resources/vector-stores/vector-stores.d.ts +7 -7
- package/resources/vector-stores/vector-stores.js +7 -7
- package/resources/vector-stores/vector-stores.mjs +7 -7
- package/src/client.ts +31 -0
- package/src/resources/index.ts +14 -0
- package/src/resources/stores/files.ts +796 -0
- package/src/resources/stores/index.ts +30 -0
- package/src/resources/stores/stores.ts +523 -0
- package/src/resources/stores.ts +3 -0
- package/src/resources/vector-stores/files.ts +11 -10
- package/src/resources/vector-stores/vector-stores.ts +7 -7
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,372 @@
|
|
|
1
|
+
import { APIResource } from "../../core/resource.mjs";
|
|
2
|
+
import * as Shared from "../shared.mjs";
|
|
3
|
+
import * as FilesAPI from "./files.mjs";
|
|
4
|
+
import { FileCreateParams, FileDeleteParams, FileDeleteResponse, FileListParams, FileListResponse, FileRetrieveParams, FileSearchParams, FileSearchResponse, Files, ScoredStoreFile, StoreFile, StoreFileStatus } from "./files.mjs";
|
|
5
|
+
import * as VectorStoresFilesAPI from "../vector-stores/files.mjs";
|
|
6
|
+
import * as VectorStoresAPI from "../vector-stores/vector-stores.mjs";
|
|
7
|
+
import { APIPromise } from "../../core/api-promise.mjs";
|
|
8
|
+
import { Cursor, type CursorParams, PagePromise } from "../../core/pagination.mjs";
|
|
9
|
+
import { RequestOptions } from "../../internal/request-options.mjs";
|
|
10
|
+
export declare class Stores extends APIResource {
|
|
11
|
+
files: FilesAPI.Files;
|
|
12
|
+
/**
|
|
13
|
+
* Create a new vector store.
|
|
14
|
+
*
|
|
15
|
+
* Args: vector_store_create: VectorStoreCreate object containing the name,
|
|
16
|
+
* description, and metadata.
|
|
17
|
+
*
|
|
18
|
+
* Returns: VectorStore: The response containing the created vector store details.
|
|
19
|
+
*/
|
|
20
|
+
create(body: StoreCreateParams, options?: RequestOptions): APIPromise<Store>;
|
|
21
|
+
/**
|
|
22
|
+
* Get a store by ID or name.
|
|
23
|
+
*
|
|
24
|
+
* Args: store_identifier: The ID or name of the store to retrieve.
|
|
25
|
+
*
|
|
26
|
+
* Returns: Store: The response containing the store details.
|
|
27
|
+
*/
|
|
28
|
+
retrieve(storeIdentifier: string, options?: RequestOptions): APIPromise<Store>;
|
|
29
|
+
/**
|
|
30
|
+
* Update a store by ID or name.
|
|
31
|
+
*
|
|
32
|
+
* Args: store_identifier: The ID or name of the store to update. store_update:
|
|
33
|
+
* StoreCreate object containing the name, description, and metadata.
|
|
34
|
+
*
|
|
35
|
+
* Returns: Store: The response containing the updated store details.
|
|
36
|
+
*/
|
|
37
|
+
update(storeIdentifier: string, body: StoreUpdateParams, options?: RequestOptions): APIPromise<Store>;
|
|
38
|
+
/**
|
|
39
|
+
* List all stores with optional search.
|
|
40
|
+
*
|
|
41
|
+
* Args: pagination: The pagination options. q: Optional search query to filter
|
|
42
|
+
* vector stores.
|
|
43
|
+
*
|
|
44
|
+
* Returns: StoreListResponse: The list of stores.
|
|
45
|
+
*/
|
|
46
|
+
list(query?: StoreListParams | null | undefined, options?: RequestOptions): PagePromise<StoresCursor, Store>;
|
|
47
|
+
/**
|
|
48
|
+
* Delete a store by ID or name.
|
|
49
|
+
*
|
|
50
|
+
* Args: store_identifier: The ID or name of the store to delete.
|
|
51
|
+
*
|
|
52
|
+
* Returns: Store: The response containing the deleted store details.
|
|
53
|
+
*/
|
|
54
|
+
delete(storeIdentifier: string, options?: RequestOptions): APIPromise<StoreDeleteResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* Question answering
|
|
57
|
+
*/
|
|
58
|
+
questionAnswering(body: StoreQuestionAnsweringParams, options?: RequestOptions): APIPromise<StoreQuestionAnsweringResponse>;
|
|
59
|
+
/**
|
|
60
|
+
* Perform semantic search across store chunks.
|
|
61
|
+
*
|
|
62
|
+
* This endpoint searches through store chunks using semantic similarity matching.
|
|
63
|
+
* It supports complex search queries with filters and returns relevance-scored
|
|
64
|
+
* results.
|
|
65
|
+
*
|
|
66
|
+
* Args: search_params: Search configuration including: - query text or
|
|
67
|
+
* embeddings - store_identifiers: List of store identifiers to search - file_ids:
|
|
68
|
+
* Optional list of file IDs to filter chunks by (or tuple of list and condition
|
|
69
|
+
* operator) - metadata filters - pagination parameters - sorting preferences
|
|
70
|
+
* \_state: API state dependency \_ctx: Service context dependency
|
|
71
|
+
*
|
|
72
|
+
* Returns: StoreSearchResponse containing: - List of matched chunks with relevance
|
|
73
|
+
* scores - Pagination details including total result count
|
|
74
|
+
*
|
|
75
|
+
* Raises: HTTPException (400): If search parameters are invalid HTTPException
|
|
76
|
+
* (404): If no vector stores are found to search
|
|
77
|
+
*/
|
|
78
|
+
search(body: StoreSearchParams, options?: RequestOptions): APIPromise<StoreSearchResponse>;
|
|
79
|
+
}
|
|
80
|
+
export type StoresCursor = Cursor<Store>;
|
|
81
|
+
/**
|
|
82
|
+
* Model representing a store with its metadata and timestamps.
|
|
83
|
+
*/
|
|
84
|
+
export interface Store {
|
|
85
|
+
/**
|
|
86
|
+
* Unique identifier for the store
|
|
87
|
+
*/
|
|
88
|
+
id: string;
|
|
89
|
+
/**
|
|
90
|
+
* Name of the store
|
|
91
|
+
*/
|
|
92
|
+
name: string;
|
|
93
|
+
/**
|
|
94
|
+
* Detailed description of the store's purpose and contents
|
|
95
|
+
*/
|
|
96
|
+
description?: string | null;
|
|
97
|
+
/**
|
|
98
|
+
* Whether the store can be accessed by anyone with valid login credentials
|
|
99
|
+
*/
|
|
100
|
+
is_public?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Additional metadata associated with the store
|
|
103
|
+
*/
|
|
104
|
+
metadata?: unknown;
|
|
105
|
+
/**
|
|
106
|
+
* Counts of files in different states
|
|
107
|
+
*/
|
|
108
|
+
file_counts?: Store.FileCounts;
|
|
109
|
+
/**
|
|
110
|
+
* Represents an expiration policy for a store.
|
|
111
|
+
*/
|
|
112
|
+
expires_after?: VectorStoresAPI.ExpiresAfter | null;
|
|
113
|
+
/**
|
|
114
|
+
* Processing status of the store
|
|
115
|
+
*/
|
|
116
|
+
status?: 'expired' | 'in_progress' | 'completed';
|
|
117
|
+
/**
|
|
118
|
+
* Timestamp when the store was created
|
|
119
|
+
*/
|
|
120
|
+
created_at: string;
|
|
121
|
+
/**
|
|
122
|
+
* Timestamp when the store was last updated
|
|
123
|
+
*/
|
|
124
|
+
updated_at: string;
|
|
125
|
+
/**
|
|
126
|
+
* Timestamp when the store was last used
|
|
127
|
+
*/
|
|
128
|
+
last_active_at?: string | null;
|
|
129
|
+
/**
|
|
130
|
+
* Total storage usage in bytes
|
|
131
|
+
*/
|
|
132
|
+
usage_bytes?: number;
|
|
133
|
+
/**
|
|
134
|
+
* Optional expiration timestamp for the store
|
|
135
|
+
*/
|
|
136
|
+
expires_at?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* Type of the object
|
|
139
|
+
*/
|
|
140
|
+
object?: 'store';
|
|
141
|
+
}
|
|
142
|
+
export declare namespace Store {
|
|
143
|
+
/**
|
|
144
|
+
* Counts of files in different states
|
|
145
|
+
*/
|
|
146
|
+
interface FileCounts {
|
|
147
|
+
/**
|
|
148
|
+
* Number of files waiting to be processed
|
|
149
|
+
*/
|
|
150
|
+
pending?: number;
|
|
151
|
+
/**
|
|
152
|
+
* Number of files currently being processed
|
|
153
|
+
*/
|
|
154
|
+
in_progress?: number;
|
|
155
|
+
/**
|
|
156
|
+
* Number of files whose processing was cancelled
|
|
157
|
+
*/
|
|
158
|
+
cancelled?: number;
|
|
159
|
+
/**
|
|
160
|
+
* Number of successfully processed files
|
|
161
|
+
*/
|
|
162
|
+
completed?: number;
|
|
163
|
+
/**
|
|
164
|
+
* Number of files that failed processing
|
|
165
|
+
*/
|
|
166
|
+
failed?: number;
|
|
167
|
+
/**
|
|
168
|
+
* Total number of files
|
|
169
|
+
*/
|
|
170
|
+
total?: number;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* Options for configuring store chunk searches.
|
|
175
|
+
*/
|
|
176
|
+
export interface StoreChunkSearchOptions {
|
|
177
|
+
/**
|
|
178
|
+
* Minimum similarity score threshold
|
|
179
|
+
*/
|
|
180
|
+
score_threshold?: number;
|
|
181
|
+
/**
|
|
182
|
+
* Whether to rewrite the query
|
|
183
|
+
*/
|
|
184
|
+
rewrite_query?: boolean;
|
|
185
|
+
/**
|
|
186
|
+
* Whether to rerank results and optional reranking configuration
|
|
187
|
+
*/
|
|
188
|
+
rerank?: boolean | VectorStoresFilesAPI.RerankConfig | null;
|
|
189
|
+
/**
|
|
190
|
+
* Whether to return file metadata
|
|
191
|
+
*/
|
|
192
|
+
return_metadata?: boolean;
|
|
193
|
+
/**
|
|
194
|
+
* Whether to apply search rules
|
|
195
|
+
*/
|
|
196
|
+
apply_search_rules?: boolean;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Response model for store deletion.
|
|
200
|
+
*/
|
|
201
|
+
export interface StoreDeleteResponse {
|
|
202
|
+
/**
|
|
203
|
+
* ID of the deleted store
|
|
204
|
+
*/
|
|
205
|
+
id: string;
|
|
206
|
+
/**
|
|
207
|
+
* Whether the deletion was successful
|
|
208
|
+
*/
|
|
209
|
+
deleted: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Type of the deleted object
|
|
212
|
+
*/
|
|
213
|
+
object?: 'store';
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* Results from a question answering operation.
|
|
217
|
+
*/
|
|
218
|
+
export interface StoreQuestionAnsweringResponse {
|
|
219
|
+
/**
|
|
220
|
+
* The answer generated by the LLM
|
|
221
|
+
*/
|
|
222
|
+
answer: string;
|
|
223
|
+
/**
|
|
224
|
+
* Source documents used to generate the answer
|
|
225
|
+
*/
|
|
226
|
+
sources?: Array<VectorStoresAPI.ScoredTextInputChunk | VectorStoresAPI.ScoredImageURLInputChunk | VectorStoresAPI.ScoredAudioURLInputChunk | VectorStoresAPI.ScoredVideoURLInputChunk>;
|
|
227
|
+
}
|
|
228
|
+
export interface StoreSearchResponse {
|
|
229
|
+
/**
|
|
230
|
+
* The object type of the response
|
|
231
|
+
*/
|
|
232
|
+
object?: 'list';
|
|
233
|
+
/**
|
|
234
|
+
* The list of scored store file chunks
|
|
235
|
+
*/
|
|
236
|
+
data: Array<VectorStoresAPI.ScoredTextInputChunk | VectorStoresAPI.ScoredImageURLInputChunk | VectorStoresAPI.ScoredAudioURLInputChunk | VectorStoresAPI.ScoredVideoURLInputChunk>;
|
|
237
|
+
}
|
|
238
|
+
export interface StoreCreateParams {
|
|
239
|
+
/**
|
|
240
|
+
* Name for the new store
|
|
241
|
+
*/
|
|
242
|
+
name?: string | null;
|
|
243
|
+
/**
|
|
244
|
+
* Description of the store
|
|
245
|
+
*/
|
|
246
|
+
description?: string | null;
|
|
247
|
+
/**
|
|
248
|
+
* Whether the store can be accessed by anyone with valid login credentials
|
|
249
|
+
*/
|
|
250
|
+
is_public?: boolean;
|
|
251
|
+
/**
|
|
252
|
+
* Represents an expiration policy for a store.
|
|
253
|
+
*/
|
|
254
|
+
expires_after?: VectorStoresAPI.ExpiresAfter | null;
|
|
255
|
+
/**
|
|
256
|
+
* Optional metadata key-value pairs
|
|
257
|
+
*/
|
|
258
|
+
metadata?: unknown;
|
|
259
|
+
/**
|
|
260
|
+
* Optional list of file IDs
|
|
261
|
+
*/
|
|
262
|
+
file_ids?: Array<string> | null;
|
|
263
|
+
}
|
|
264
|
+
export interface StoreUpdateParams {
|
|
265
|
+
/**
|
|
266
|
+
* New name for the store
|
|
267
|
+
*/
|
|
268
|
+
name?: string | null;
|
|
269
|
+
/**
|
|
270
|
+
* New description
|
|
271
|
+
*/
|
|
272
|
+
description?: string | null;
|
|
273
|
+
/**
|
|
274
|
+
* Whether the store can be accessed by anyone with valid login credentials
|
|
275
|
+
*/
|
|
276
|
+
is_public?: boolean | null;
|
|
277
|
+
/**
|
|
278
|
+
* Represents an expiration policy for a store.
|
|
279
|
+
*/
|
|
280
|
+
expires_after?: VectorStoresAPI.ExpiresAfter | null;
|
|
281
|
+
/**
|
|
282
|
+
* Optional metadata key-value pairs
|
|
283
|
+
*/
|
|
284
|
+
metadata?: unknown;
|
|
285
|
+
}
|
|
286
|
+
export interface StoreListParams extends CursorParams {
|
|
287
|
+
/**
|
|
288
|
+
* Search query for fuzzy matching over name and description fields
|
|
289
|
+
*/
|
|
290
|
+
q?: string | null;
|
|
291
|
+
}
|
|
292
|
+
export interface StoreQuestionAnsweringParams {
|
|
293
|
+
/**
|
|
294
|
+
* Question to answer. If not provided, the question will be extracted from the
|
|
295
|
+
* passed messages.
|
|
296
|
+
*/
|
|
297
|
+
query?: string;
|
|
298
|
+
/**
|
|
299
|
+
* IDs or names of stores to search
|
|
300
|
+
*/
|
|
301
|
+
store_identifiers: Array<string>;
|
|
302
|
+
/**
|
|
303
|
+
* Number of results to return
|
|
304
|
+
*/
|
|
305
|
+
top_k?: number;
|
|
306
|
+
/**
|
|
307
|
+
* Optional filter conditions
|
|
308
|
+
*/
|
|
309
|
+
filters?: Shared.SearchFilter | Shared.SearchFilterCondition | Array<Shared.SearchFilter | Shared.SearchFilterCondition> | null;
|
|
310
|
+
/**
|
|
311
|
+
* Optional list of file IDs to filter chunks by (inclusion filter)
|
|
312
|
+
*/
|
|
313
|
+
file_ids?: Array<unknown> | Array<string> | null;
|
|
314
|
+
/**
|
|
315
|
+
* Search configuration options
|
|
316
|
+
*/
|
|
317
|
+
search_options?: StoreChunkSearchOptions;
|
|
318
|
+
/**
|
|
319
|
+
* Whether to stream the answer
|
|
320
|
+
*/
|
|
321
|
+
stream?: boolean;
|
|
322
|
+
/**
|
|
323
|
+
* Question answering configuration options
|
|
324
|
+
*/
|
|
325
|
+
qa_options?: StoreQuestionAnsweringParams.QaOptions;
|
|
326
|
+
}
|
|
327
|
+
export declare namespace StoreQuestionAnsweringParams {
|
|
328
|
+
/**
|
|
329
|
+
* Question answering configuration options
|
|
330
|
+
*/
|
|
331
|
+
interface QaOptions {
|
|
332
|
+
/**
|
|
333
|
+
* Whether to use citations
|
|
334
|
+
*/
|
|
335
|
+
cite?: boolean;
|
|
336
|
+
/**
|
|
337
|
+
* Whether to use multimodal context
|
|
338
|
+
*/
|
|
339
|
+
multimodal?: boolean;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
export interface StoreSearchParams {
|
|
343
|
+
/**
|
|
344
|
+
* Search query text
|
|
345
|
+
*/
|
|
346
|
+
query: string;
|
|
347
|
+
/**
|
|
348
|
+
* IDs or names of stores to search
|
|
349
|
+
*/
|
|
350
|
+
store_identifiers: Array<string>;
|
|
351
|
+
/**
|
|
352
|
+
* Number of results to return
|
|
353
|
+
*/
|
|
354
|
+
top_k?: number;
|
|
355
|
+
/**
|
|
356
|
+
* Optional filter conditions
|
|
357
|
+
*/
|
|
358
|
+
filters?: Shared.SearchFilter | Shared.SearchFilterCondition | Array<Shared.SearchFilter | Shared.SearchFilterCondition> | null;
|
|
359
|
+
/**
|
|
360
|
+
* Optional list of file IDs to filter chunks by (inclusion filter)
|
|
361
|
+
*/
|
|
362
|
+
file_ids?: Array<unknown> | Array<string> | null;
|
|
363
|
+
/**
|
|
364
|
+
* Search configuration options
|
|
365
|
+
*/
|
|
366
|
+
search_options?: StoreChunkSearchOptions;
|
|
367
|
+
}
|
|
368
|
+
export declare namespace Stores {
|
|
369
|
+
export { type Store as Store, type StoreChunkSearchOptions as StoreChunkSearchOptions, type StoreDeleteResponse as StoreDeleteResponse, type StoreQuestionAnsweringResponse as StoreQuestionAnsweringResponse, type StoreSearchResponse as StoreSearchResponse, type StoresCursor as StoresCursor, type StoreCreateParams as StoreCreateParams, type StoreUpdateParams as StoreUpdateParams, type StoreListParams as StoreListParams, type StoreQuestionAnsweringParams as StoreQuestionAnsweringParams, type StoreSearchParams as StoreSearchParams, };
|
|
370
|
+
export { Files as Files, type ScoredStoreFile as ScoredStoreFile, type StoreFileStatus as StoreFileStatus, type StoreFile as StoreFile, type FileListResponse as FileListResponse, type FileDeleteResponse as FileDeleteResponse, type FileSearchResponse as FileSearchResponse, type FileCreateParams as FileCreateParams, type FileRetrieveParams as FileRetrieveParams, type FileListParams as FileListParams, type FileDeleteParams as FileDeleteParams, type FileSearchParams as FileSearchParams, };
|
|
371
|
+
}
|
|
372
|
+
//# sourceMappingURL=stores.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stores.d.mts","sourceRoot":"","sources":["../../src/resources/stores/stores.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,MAAM;OACX,KAAK,QAAQ;OACb,EACL,gBAAgB,EAChB,gBAAgB,EAChB,kBAAkB,EAClB,cAAc,EACd,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,KAAK,EACL,eAAe,EACf,SAAS,EACT,eAAe,EAChB;OACM,KAAK,oBAAoB;OACzB,KAAK,eAAe;OACpB,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAC1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,MAAO,SAAQ,WAAW;IACrC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAoC;IAEzD;;;;;;;OAOG;IACH,MAAM,CAAC,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;IAI5E;;;;;;OAMG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;IAI9E;;;;;;;OAOG;IACH,MAAM,CAAC,eAAe,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;IAIrG;;;;;;;OAOG;IACH,IAAI,CACF,KAAK,GAAE,eAAe,GAAG,IAAI,GAAG,SAAc,EAC9C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,YAAY,EAAE,KAAK,CAAC;IAInC;;;;;;OAMG;IACH,MAAM,CAAC,eAAe,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;IAI1F;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,8BAA8B,CAAC;IAI7C;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CAAC,IAAI,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,mBAAmB,CAAC;CAG3F;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;AAEzC;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC;IAE/B;;OAEG;IACH,aAAa,CAAC,EAAE,eAAe,CAAC,YAAY,GAAG,IAAI,CAAC;IAEpD;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,GAAG,aAAa,GAAG,WAAW,CAAC;IAEjD;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,yBAAiB,KAAK,CAAC;IACrB;;OAEG;IACH,UAAiB,UAAU;QACzB;;WAEG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,WAAW,CAAC,EAAE,MAAM,CAAC;QAErB;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAEhB;;WAEG;QACH,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB;CACF;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,oBAAoB,CAAC,YAAY,GAAG,IAAI,CAAC;IAE5D;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;OAEG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CACX,eAAe,CAAC,oBAAoB,GACpC,eAAe,CAAC,wBAAwB,GACxC,eAAe,CAAC,wBAAwB,GACxC,eAAe,CAAC,wBAAwB,CAC3C,CAAC;CACH;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,IAAI,EAAE,KAAK,CACP,eAAe,CAAC,oBAAoB,GACpC,eAAe,CAAC,wBAAwB,GACxC,eAAe,CAAC,wBAAwB,GACxC,eAAe,CAAC,wBAAwB,CAC3C,CAAC;CACH;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAErB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,aAAa,CAAC,EAAE,eAAe,CAAC,YAAY,GAAG,IAAI,CAAC;IAEpD;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CACjC;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAErB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,aAAa,CAAC,EAAE,eAAe,CAAC,YAAY,GAAG,IAAI,CAAC;IAEpD;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,eAAgB,SAAQ,YAAY;IACnD;;OAEG;IACH,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACnB;AAED,MAAM,WAAW,4BAA4B;IAC3C;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,OAAO,CAAC,EACJ,MAAM,CAAC,YAAY,GACnB,MAAM,CAAC,qBAAqB,GAC5B,KAAK,CAAC,MAAM,CAAC,YAAY,GAAG,MAAM,CAAC,qBAAqB,CAAC,GACzD,IAAI,CAAC;IAET;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAEjD;;OAEG;IACH,cAAc,CAAC,EAAE,uBAAuB,CAAC;IAEzC;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,UAAU,CAAC,EAAE,4BAA4B,CAAC,SAAS,CAAC;CACrD;AAED,yBAAiB,4BAA4B,CAAC;IAC5C;;OAEG;IACH,UAAiB,SAAS;QACxB;;WAEG;QACH,IAAI,CAAC,EAAE,OAAO,CAAC;QAEf;;WAEG;QACH,UAAU,CAAC,EAAE,OAAO,CAAC;KACtB;CACF;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,OAAO,CAAC,EACJ,MAAM,CAAC,YAAY,GACnB,MAAM,CAAC,qBAAqB,GAC5B,KAAK,CAAC,MAAM,CAAC,YAAY,GAAG,MAAM,CAAC,qBAAqB,CAAC,GACzD,IAAI,CAAC;IAET;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAEjD;;OAEG;IACH,cAAc,CAAC,EAAE,uBAAuB,CAAC;CAC1C;AAID,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EACL,KAAK,KAAK,IAAI,KAAK,EACnB,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,iBAAiB,IAAI,iBAAiB,GAC5C,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,SAAS,IAAI,SAAS,EAC3B,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,gBAAgB,IAAI,gBAAgB,GAC1C,CAAC;CACH"}
|