@expandai/sdk 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dts/FetchJson.d.ts +94 -61
- package/build/dts/FetchJson.d.ts.map +1 -1
- package/build/dts/Generated.d.ts +149 -10
- package/build/dts/Generated.d.ts.map +1 -1
- package/build/dts/Internal.d.ts.map +1 -1
- package/build/dts/Service.d.ts +15 -0
- package/build/dts/Service.d.ts.map +1 -1
- package/build/esm/FetchJson.js +7 -11
- package/build/esm/FetchJson.js.map +1 -1
- package/build/esm/Generated.js +57 -3
- package/build/esm/Generated.js.map +1 -1
- package/build/esm/Internal.js +22 -3
- package/build/esm/Internal.js.map +1 -1
- package/build/esm/Service.js +23 -1
- package/build/esm/Service.js.map +1 -1
- package/package.json +3 -2
- package/src/FetchJson.ts +7 -11
- package/src/Generated.ts +66 -3
- package/src/Internal.ts +31 -4
- package/src/Service.ts +40 -1
package/build/dts/FetchJson.d.ts
CHANGED
|
@@ -9,16 +9,19 @@ export declare const FetchSearchSnippetWithJson: S.Struct<{
|
|
|
9
9
|
}>;
|
|
10
10
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
11
11
|
text: typeof S.String;
|
|
12
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
13
|
-
nullable: true;
|
|
14
|
-
}>;
|
|
15
12
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
16
13
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
17
14
|
nullable: true;
|
|
18
15
|
}>;
|
|
16
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
17
|
+
nullable: true;
|
|
18
|
+
}>;
|
|
19
19
|
}>;
|
|
20
20
|
export declare const FetchSearchResultWithJson: S.Struct<{
|
|
21
21
|
query: typeof S.String;
|
|
22
|
+
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
23
|
+
nullable: true;
|
|
24
|
+
}>;
|
|
22
25
|
snippets: S.Array$<S.Struct<{
|
|
23
26
|
type: S.optionalWith<S.Literal<["text"]>, {
|
|
24
27
|
nullable: true;
|
|
@@ -26,17 +29,14 @@ export declare const FetchSearchResultWithJson: S.Struct<{
|
|
|
26
29
|
}>;
|
|
27
30
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
28
31
|
text: typeof S.String;
|
|
29
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
30
|
-
nullable: true;
|
|
31
|
-
}>;
|
|
32
32
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
33
33
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
34
34
|
nullable: true;
|
|
35
35
|
}>;
|
|
36
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
37
|
+
nullable: true;
|
|
38
|
+
}>;
|
|
36
39
|
}>>;
|
|
37
|
-
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
38
|
-
nullable: true;
|
|
39
|
-
}>;
|
|
40
40
|
}>;
|
|
41
41
|
declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultWithJson, {
|
|
42
42
|
meta: typeof Generated.FetchObjectModeMeta;
|
|
@@ -46,8 +46,20 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
46
46
|
assets: S.optionalWith<S.Array$<typeof Generated.FetchAssetReference>, {
|
|
47
47
|
nullable: true;
|
|
48
48
|
}>;
|
|
49
|
+
degraded: S.optionalWith<typeof Generated.FetchDegradedInfo, {
|
|
50
|
+
nullable: true;
|
|
51
|
+
}>;
|
|
52
|
+
screenshot: S.optionalWith<S.Struct<{
|
|
53
|
+
url: typeof S.String;
|
|
54
|
+
fullPage: typeof S.Boolean;
|
|
55
|
+
}>, {
|
|
56
|
+
nullable: true;
|
|
57
|
+
}>;
|
|
49
58
|
search: S.optionalWith<S.Struct<{
|
|
50
59
|
query: typeof S.String;
|
|
60
|
+
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
61
|
+
nullable: true;
|
|
62
|
+
}>;
|
|
51
63
|
snippets: S.Array$<S.Struct<{
|
|
52
64
|
type: S.optionalWith<S.Literal<["text"]>, {
|
|
53
65
|
nullable: true;
|
|
@@ -55,17 +67,14 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
55
67
|
}>;
|
|
56
68
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
57
69
|
text: typeof S.String;
|
|
58
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
59
|
-
nullable: true;
|
|
60
|
-
}>;
|
|
61
70
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
62
71
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
63
72
|
nullable: true;
|
|
64
73
|
}>;
|
|
74
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
75
|
+
nullable: true;
|
|
76
|
+
}>;
|
|
65
77
|
}>>;
|
|
66
|
-
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
67
|
-
nullable: true;
|
|
68
|
-
}>;
|
|
69
78
|
}>, {
|
|
70
79
|
nullable: true;
|
|
71
80
|
}>;
|
|
@@ -80,8 +89,20 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
80
89
|
assets: S.optionalWith<S.Array$<typeof Generated.FetchAssetReference>, {
|
|
81
90
|
nullable: true;
|
|
82
91
|
}>;
|
|
92
|
+
degraded: S.optionalWith<typeof Generated.FetchDegradedInfo, {
|
|
93
|
+
nullable: true;
|
|
94
|
+
}>;
|
|
95
|
+
screenshot: S.optionalWith<S.Struct<{
|
|
96
|
+
url: typeof S.String;
|
|
97
|
+
fullPage: typeof S.Boolean;
|
|
98
|
+
}>, {
|
|
99
|
+
nullable: true;
|
|
100
|
+
}>;
|
|
83
101
|
search: S.optionalWith<S.Struct<{
|
|
84
102
|
query: typeof S.String;
|
|
103
|
+
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
104
|
+
nullable: true;
|
|
105
|
+
}>;
|
|
85
106
|
snippets: S.Array$<S.Struct<{
|
|
86
107
|
type: S.optionalWith<S.Literal<["text"]>, {
|
|
87
108
|
nullable: true;
|
|
@@ -89,17 +110,14 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
89
110
|
}>;
|
|
90
111
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
91
112
|
text: typeof S.String;
|
|
92
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
93
|
-
nullable: true;
|
|
94
|
-
}>;
|
|
95
113
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
96
114
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
97
115
|
nullable: true;
|
|
98
116
|
}>;
|
|
117
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
118
|
+
nullable: true;
|
|
119
|
+
}>;
|
|
99
120
|
}>>;
|
|
100
|
-
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
101
|
-
nullable: true;
|
|
102
|
-
}>;
|
|
103
121
|
}>, {
|
|
104
122
|
nullable: true;
|
|
105
123
|
}>;
|
|
@@ -117,13 +135,37 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
117
135
|
readonly sha256: string;
|
|
118
136
|
readonly bytes: number;
|
|
119
137
|
}[] | undefined;
|
|
138
|
+
readonly degraded?: {
|
|
139
|
+
readonly reason: "modelInputTooLarge" | "pageTooLarge";
|
|
140
|
+
readonly skipped: readonly "hfc"[];
|
|
141
|
+
readonly limitKind: "ast_bytes" | "domsnapshot_bytes" | "hfc_tokens";
|
|
142
|
+
readonly measuredBytes?: number | undefined;
|
|
143
|
+
readonly thresholdBytes?: number | undefined;
|
|
144
|
+
readonly measuredTokens?: number | undefined;
|
|
145
|
+
readonly thresholdTokens?: number | undefined;
|
|
146
|
+
} | undefined;
|
|
147
|
+
readonly screenshot?: {
|
|
148
|
+
readonly url: string;
|
|
149
|
+
readonly fullPage: boolean;
|
|
150
|
+
} | undefined;
|
|
120
151
|
readonly search?: {
|
|
121
152
|
readonly query: string;
|
|
153
|
+
readonly meta?: {
|
|
154
|
+
readonly durationMs: number;
|
|
155
|
+
readonly sources: readonly {
|
|
156
|
+
readonly source: "appendix" | "markdown" | "statejson";
|
|
157
|
+
readonly chunkCount: number;
|
|
158
|
+
readonly batchCount: number;
|
|
159
|
+
readonly ranker: "local_lexical" | "mixedbread" | "zeroentropy";
|
|
160
|
+
readonly fallback: boolean;
|
|
161
|
+
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
162
|
+
readonly durationMs: number;
|
|
163
|
+
}[];
|
|
164
|
+
} | undefined;
|
|
122
165
|
readonly snippets: readonly {
|
|
123
166
|
readonly type: "text";
|
|
124
167
|
readonly source: "appendix" | "markdown" | "statejson";
|
|
125
168
|
readonly text: string;
|
|
126
|
-
readonly json?: unknown;
|
|
127
169
|
readonly score: number;
|
|
128
170
|
readonly location?: {
|
|
129
171
|
readonly evidenceId?: number | undefined;
|
|
@@ -132,19 +174,8 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
132
174
|
readonly stateJsonSourceId?: number | undefined;
|
|
133
175
|
readonly jsonPath?: string | undefined;
|
|
134
176
|
} | undefined;
|
|
177
|
+
readonly json?: unknown;
|
|
135
178
|
}[];
|
|
136
|
-
readonly meta?: {
|
|
137
|
-
readonly durationMs: number;
|
|
138
|
-
readonly sources: readonly {
|
|
139
|
-
readonly source: "appendix" | "markdown" | "statejson";
|
|
140
|
-
readonly chunkCount: number;
|
|
141
|
-
readonly batchCount: number;
|
|
142
|
-
readonly ranker: "local_lexical" | "zeroentropy";
|
|
143
|
-
readonly fallback: boolean;
|
|
144
|
-
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
145
|
-
readonly durationMs: number;
|
|
146
|
-
}[];
|
|
147
|
-
} | undefined;
|
|
148
179
|
} | undefined;
|
|
149
180
|
} | undefined;
|
|
150
181
|
} & {
|
|
@@ -157,6 +188,8 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
157
188
|
readonly method?: string | undefined;
|
|
158
189
|
readonly moreTokens?: number | undefined;
|
|
159
190
|
readonly keys?: readonly string[] | undefined;
|
|
191
|
+
readonly urlRedacted?: true | undefined;
|
|
192
|
+
readonly urlOmitted?: "invalid" | "too-long" | "unsafe" | undefined;
|
|
160
193
|
}[];
|
|
161
194
|
} & {
|
|
162
195
|
readonly markdown: string;
|
|
@@ -190,7 +223,7 @@ declare const FetchObjectModeResultWithJson_base: S.Class<FetchObjectModeResultW
|
|
|
190
223
|
} | undefined;
|
|
191
224
|
readonly markdown?: {
|
|
192
225
|
readonly url: string;
|
|
193
|
-
readonly moreTokens
|
|
226
|
+
readonly moreTokens?: number | undefined;
|
|
194
227
|
} | undefined;
|
|
195
228
|
readonly blocked?: string | undefined;
|
|
196
229
|
readonly loadingStatus?: string | undefined;
|
|
@@ -203,6 +236,9 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
203
236
|
response: typeof Generated.ResponseInfo;
|
|
204
237
|
search: S.Struct<{
|
|
205
238
|
query: typeof S.String;
|
|
239
|
+
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
240
|
+
nullable: true;
|
|
241
|
+
}>;
|
|
206
242
|
snippets: S.Array$<S.Struct<{
|
|
207
243
|
type: S.optionalWith<S.Literal<["text"]>, {
|
|
208
244
|
nullable: true;
|
|
@@ -210,17 +246,14 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
210
246
|
}>;
|
|
211
247
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
212
248
|
text: typeof S.String;
|
|
213
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
214
|
-
nullable: true;
|
|
215
|
-
}>;
|
|
216
249
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
217
250
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
218
251
|
nullable: true;
|
|
219
252
|
}>;
|
|
253
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
254
|
+
nullable: true;
|
|
255
|
+
}>;
|
|
220
256
|
}>>;
|
|
221
|
-
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
222
|
-
nullable: true;
|
|
223
|
-
}>;
|
|
224
257
|
}>;
|
|
225
258
|
durationMs: S.filter<typeof S.Number>;
|
|
226
259
|
playground: typeof S.String;
|
|
@@ -229,6 +262,9 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
229
262
|
response: typeof Generated.ResponseInfo;
|
|
230
263
|
search: S.Struct<{
|
|
231
264
|
query: typeof S.String;
|
|
265
|
+
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
266
|
+
nullable: true;
|
|
267
|
+
}>;
|
|
232
268
|
snippets: S.Array$<S.Struct<{
|
|
233
269
|
type: S.optionalWith<S.Literal<["text"]>, {
|
|
234
270
|
nullable: true;
|
|
@@ -236,17 +272,14 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
236
272
|
}>;
|
|
237
273
|
source: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
238
274
|
text: typeof S.String;
|
|
239
|
-
json: S.optionalWith<typeof S.Unknown, {
|
|
240
|
-
nullable: true;
|
|
241
|
-
}>;
|
|
242
275
|
score: S.filter<S.filter<typeof S.Number>>;
|
|
243
276
|
location: S.optionalWith<typeof Generated.FetchSearchSnippetLocation, {
|
|
244
277
|
nullable: true;
|
|
245
278
|
}>;
|
|
279
|
+
json: S.optionalWith<typeof S.Unknown, {
|
|
280
|
+
nullable: true;
|
|
281
|
+
}>;
|
|
246
282
|
}>>;
|
|
247
|
-
meta: S.optionalWith<typeof Generated.FetchSearchMeta, {
|
|
248
|
-
nullable: true;
|
|
249
|
-
}>;
|
|
250
283
|
}>;
|
|
251
284
|
durationMs: S.filter<typeof S.Number>;
|
|
252
285
|
playground: typeof S.String;
|
|
@@ -265,11 +298,22 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
265
298
|
} & {
|
|
266
299
|
readonly search: {
|
|
267
300
|
readonly query: string;
|
|
301
|
+
readonly meta?: {
|
|
302
|
+
readonly durationMs: number;
|
|
303
|
+
readonly sources: readonly {
|
|
304
|
+
readonly source: "appendix" | "markdown" | "statejson";
|
|
305
|
+
readonly chunkCount: number;
|
|
306
|
+
readonly batchCount: number;
|
|
307
|
+
readonly ranker: "local_lexical" | "mixedbread" | "zeroentropy";
|
|
308
|
+
readonly fallback: boolean;
|
|
309
|
+
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
310
|
+
readonly durationMs: number;
|
|
311
|
+
}[];
|
|
312
|
+
} | undefined;
|
|
268
313
|
readonly snippets: readonly {
|
|
269
314
|
readonly type: "text";
|
|
270
315
|
readonly source: "appendix" | "markdown" | "statejson";
|
|
271
316
|
readonly text: string;
|
|
272
|
-
readonly json?: unknown;
|
|
273
317
|
readonly score: number;
|
|
274
318
|
readonly location?: {
|
|
275
319
|
readonly evidenceId?: number | undefined;
|
|
@@ -278,19 +322,8 @@ declare const FetchSnapshotSearchResultWithJson_base: S.Class<FetchSnapshotSearc
|
|
|
278
322
|
readonly stateJsonSourceId?: number | undefined;
|
|
279
323
|
readonly jsonPath?: string | undefined;
|
|
280
324
|
} | undefined;
|
|
325
|
+
readonly json?: unknown;
|
|
281
326
|
}[];
|
|
282
|
-
readonly meta?: {
|
|
283
|
-
readonly durationMs: number;
|
|
284
|
-
readonly sources: readonly {
|
|
285
|
-
readonly source: "appendix" | "markdown" | "statejson";
|
|
286
|
-
readonly chunkCount: number;
|
|
287
|
-
readonly batchCount: number;
|
|
288
|
-
readonly ranker: "local_lexical" | "zeroentropy";
|
|
289
|
-
readonly fallback: boolean;
|
|
290
|
-
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
291
|
-
readonly durationMs: number;
|
|
292
|
-
}[];
|
|
293
|
-
} | undefined;
|
|
294
327
|
};
|
|
295
328
|
} & {
|
|
296
329
|
readonly snapshotId: string;
|
|
@@ -301,7 +334,7 @@ export declare class FetchSnapshotSearchResultWithJson extends FetchSnapshotSear
|
|
|
301
334
|
export declare const fetchObjectModeJson: (httpClient: HttpClient.HttpClient, options: {
|
|
302
335
|
readonly params: typeof Generated.FetchFetchJsonParams.Encoded;
|
|
303
336
|
readonly payload: typeof Generated.FetchFetchJsonRequest.Encoded;
|
|
304
|
-
}) => Effect.Effect<FetchObjectModeResultWithJson, Generated.AuthFailed | Generated.InternalError | import("effect/ParseResult").ParseError | Generated.ServiceUnavailable | Generated.TooManyRequests | {
|
|
337
|
+
}) => Effect.Effect<FetchObjectModeResultWithJson, Generated.AuthFailed | Generated.FetchCapacityTimeout | Generated.FetchCaptureTimeout | Generated.FetchNavigationFailed | Generated.InternalError | import("effect/ParseResult").ParseError | Generated.ServiceUnavailable | Generated.TooManyRequests | {
|
|
305
338
|
readonly issues: readonly {
|
|
306
339
|
readonly _tag: "Composite" | "Forbidden" | "Missing" | "Pointer" | "Refinement" | "Transformation" | "Type" | "Unexpected";
|
|
307
340
|
readonly path: readonly (string | number | {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FetchJson.d.ts","sourceRoot":"","sources":["../../src/FetchJson.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,UAAU,EAAyC,MAAM,kBAAkB,CAAA;AACpF,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAG3C,0FAA0F;AAC1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FetchJson.d.ts","sourceRoot":"","sources":["../../src/FetchJson.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,UAAU,EAAyC,MAAM,kBAAkB,CAAA;AACpF,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAA;AAG3C,0FAA0F;AAC1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;EAGrC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;EAGpC,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEF,qBAAa,6BAA8B,SAAQ,kCAWjD;CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEL,qBAAa,iCAAkC,SAAQ,sCAQrD;CAAG;AAEL,mGAAmG;AACnG,eAAO,MAAM,mBAAmB,eACnB,UAAU,CAAC,UAAU,WACxB;IACR,QAAQ,CAAC,MAAM,EAAE,OAAO,SAAS,CAAC,oBAAoB,CAAC,OAAO,CAAA;IAC9D,QAAQ,CAAC,OAAO,EAAE,OAAO,SAAS,CAAC,qBAAqB,CAAC,OAAO,CAAA;CAChE;;;;;;;;;;;;;;;;;;;;;;;;sEAwBA,CAAA;AAEF,qGAAqG;AACrG,eAAO,MAAM,mBAAmB,eACnB,UAAU,CAAC,UAAU,WACxB,OAAO,SAAS,CAAC,uBAAuB,CAAC,OAAO;;;;;;;;;;;;;;;;;;;;sEAqBxD,CAAA"}
|
package/build/dts/Generated.d.ts
CHANGED
|
@@ -348,6 +348,29 @@ declare const InternalError_base: S.Class<InternalError, {
|
|
|
348
348
|
}, {}, {}>;
|
|
349
349
|
export declare class InternalError extends InternalError_base {
|
|
350
350
|
}
|
|
351
|
+
declare const FetchNavigationFailedFailureType_base: S.Literal<["browserInternalDocument"]>;
|
|
352
|
+
export declare class FetchNavigationFailedFailureType extends FetchNavigationFailedFailureType_base {
|
|
353
|
+
}
|
|
354
|
+
declare const FetchNavigationFailedTag_base: S.Literal<["FetchNavigationFailed"]>;
|
|
355
|
+
export declare class FetchNavigationFailedTag extends FetchNavigationFailedTag_base {
|
|
356
|
+
}
|
|
357
|
+
declare const FetchNavigationFailed_base: S.Class<FetchNavigationFailed, {
|
|
358
|
+
url: typeof S.String;
|
|
359
|
+
failureType: typeof FetchNavigationFailedFailureType;
|
|
360
|
+
_tag: typeof FetchNavigationFailedTag;
|
|
361
|
+
}, S.Struct.Encoded<{
|
|
362
|
+
url: typeof S.String;
|
|
363
|
+
failureType: typeof FetchNavigationFailedFailureType;
|
|
364
|
+
_tag: typeof FetchNavigationFailedTag;
|
|
365
|
+
}>, never, {
|
|
366
|
+
readonly _tag: "FetchNavigationFailed";
|
|
367
|
+
} & {
|
|
368
|
+
readonly failureType: "browserInternalDocument";
|
|
369
|
+
} & {
|
|
370
|
+
readonly url: string;
|
|
371
|
+
}, {}, {}>;
|
|
372
|
+
export declare class FetchNavigationFailed extends FetchNavigationFailed_base {
|
|
373
|
+
}
|
|
351
374
|
declare const ServiceUnavailableTag_base: S.Literal<["ServiceUnavailable"]>;
|
|
352
375
|
export declare class ServiceUnavailableTag extends ServiceUnavailableTag_base {
|
|
353
376
|
}
|
|
@@ -376,6 +399,54 @@ declare const ServiceUnavailable_base: S.Class<ServiceUnavailable, {
|
|
|
376
399
|
}, {}, {}>;
|
|
377
400
|
export declare class ServiceUnavailable extends ServiceUnavailable_base {
|
|
378
401
|
}
|
|
402
|
+
declare const FetchCaptureTimeoutTag_base: S.Literal<["FetchCaptureTimeout"]>;
|
|
403
|
+
export declare class FetchCaptureTimeoutTag extends FetchCaptureTimeoutTag_base {
|
|
404
|
+
}
|
|
405
|
+
declare const FetchCaptureTimeout_base: S.Class<FetchCaptureTimeout, {
|
|
406
|
+
url: typeof S.String;
|
|
407
|
+
timeoutMs: S.optionalWith<typeof S.Number, {
|
|
408
|
+
nullable: true;
|
|
409
|
+
}>;
|
|
410
|
+
_tag: typeof FetchCaptureTimeoutTag;
|
|
411
|
+
}, S.Struct.Encoded<{
|
|
412
|
+
url: typeof S.String;
|
|
413
|
+
timeoutMs: S.optionalWith<typeof S.Number, {
|
|
414
|
+
nullable: true;
|
|
415
|
+
}>;
|
|
416
|
+
_tag: typeof FetchCaptureTimeoutTag;
|
|
417
|
+
}>, never, {
|
|
418
|
+
readonly timeoutMs?: number | undefined;
|
|
419
|
+
} & {
|
|
420
|
+
readonly _tag: "FetchCaptureTimeout";
|
|
421
|
+
} & {
|
|
422
|
+
readonly url: string;
|
|
423
|
+
}, {}, {}>;
|
|
424
|
+
export declare class FetchCaptureTimeout extends FetchCaptureTimeout_base {
|
|
425
|
+
}
|
|
426
|
+
declare const FetchCapacityTimeoutTag_base: S.Literal<["FetchCapacityTimeout"]>;
|
|
427
|
+
export declare class FetchCapacityTimeoutTag extends FetchCapacityTimeoutTag_base {
|
|
428
|
+
}
|
|
429
|
+
declare const FetchCapacityTimeout_base: S.Class<FetchCapacityTimeout, {
|
|
430
|
+
url: typeof S.String;
|
|
431
|
+
timeoutMs: S.optionalWith<typeof S.Number, {
|
|
432
|
+
nullable: true;
|
|
433
|
+
}>;
|
|
434
|
+
_tag: typeof FetchCapacityTimeoutTag;
|
|
435
|
+
}, S.Struct.Encoded<{
|
|
436
|
+
url: typeof S.String;
|
|
437
|
+
timeoutMs: S.optionalWith<typeof S.Number, {
|
|
438
|
+
nullable: true;
|
|
439
|
+
}>;
|
|
440
|
+
_tag: typeof FetchCapacityTimeoutTag;
|
|
441
|
+
}>, never, {
|
|
442
|
+
readonly timeoutMs?: number | undefined;
|
|
443
|
+
} & {
|
|
444
|
+
readonly _tag: "FetchCapacityTimeout";
|
|
445
|
+
} & {
|
|
446
|
+
readonly url: string;
|
|
447
|
+
}, {}, {}>;
|
|
448
|
+
export declare class FetchCapacityTimeout extends FetchCapacityTimeout_base {
|
|
449
|
+
}
|
|
379
450
|
declare const FetchFetchJsonParams_base: S.Struct<{
|
|
380
451
|
include: S.optionalWith<typeof S.String, {
|
|
381
452
|
nullable: true;
|
|
@@ -589,7 +660,9 @@ export declare class FetchObjectModeStateJsonHint extends FetchObjectModeStateJs
|
|
|
589
660
|
}
|
|
590
661
|
declare const FetchObjectModeMarkdownHint_base: S.Struct<{
|
|
591
662
|
url: typeof S.String;
|
|
592
|
-
moreTokens: typeof S.Number
|
|
663
|
+
moreTokens: S.optionalWith<typeof S.Number, {
|
|
664
|
+
nullable: true;
|
|
665
|
+
}>;
|
|
593
666
|
}>;
|
|
594
667
|
export declare class FetchObjectModeMarkdownHint extends FetchObjectModeMarkdownHint_base {
|
|
595
668
|
}
|
|
@@ -652,6 +725,12 @@ export declare class FetchObjectModeEvidenceKind extends FetchObjectModeEvidence
|
|
|
652
725
|
declare const FetchObjectModeEvidenceRole_base: S.Literal<["ld+json", "next-data", "nuxt", "apollo-state", "initial-state", "application-json", "script-tag", "data-attribute", "network-json", "network-response", "other"]>;
|
|
653
726
|
export declare class FetchObjectModeEvidenceRole extends FetchObjectModeEvidenceRole_base {
|
|
654
727
|
}
|
|
728
|
+
declare const FetchObjectModeEvidenceUrlRedacted_base: S.Literal<[true]>;
|
|
729
|
+
export declare class FetchObjectModeEvidenceUrlRedacted extends FetchObjectModeEvidenceUrlRedacted_base {
|
|
730
|
+
}
|
|
731
|
+
declare const FetchObjectModeEvidenceUrlOmitted_base: S.Literal<["invalid", "unsafe", "too-long"]>;
|
|
732
|
+
export declare class FetchObjectModeEvidenceUrlOmitted extends FetchObjectModeEvidenceUrlOmitted_base {
|
|
733
|
+
}
|
|
655
734
|
declare const FetchObjectModeEvidence_base: S.Struct<{
|
|
656
735
|
id: typeof S.Number;
|
|
657
736
|
kind: typeof FetchObjectModeEvidenceKind;
|
|
@@ -669,6 +748,12 @@ declare const FetchObjectModeEvidence_base: S.Struct<{
|
|
|
669
748
|
keys: S.optionalWith<S.Array$<typeof S.String>, {
|
|
670
749
|
nullable: true;
|
|
671
750
|
}>;
|
|
751
|
+
urlRedacted: S.optionalWith<typeof FetchObjectModeEvidenceUrlRedacted, {
|
|
752
|
+
nullable: true;
|
|
753
|
+
}>;
|
|
754
|
+
urlOmitted: S.optionalWith<typeof FetchObjectModeEvidenceUrlOmitted, {
|
|
755
|
+
nullable: true;
|
|
756
|
+
}>;
|
|
672
757
|
}>;
|
|
673
758
|
export declare class FetchObjectModeEvidence extends FetchObjectModeEvidence_base {
|
|
674
759
|
}
|
|
@@ -686,6 +771,31 @@ declare const FetchAssetReference_base: S.Struct<{
|
|
|
686
771
|
}>;
|
|
687
772
|
export declare class FetchAssetReference extends FetchAssetReference_base {
|
|
688
773
|
}
|
|
774
|
+
declare const FetchDegradedInfoReason_base: S.Literal<["pageTooLarge", "modelInputTooLarge"]>;
|
|
775
|
+
export declare class FetchDegradedInfoReason extends FetchDegradedInfoReason_base {
|
|
776
|
+
}
|
|
777
|
+
declare const FetchDegradedInfoLimitKind_base: S.Literal<["domsnapshot_bytes", "ast_bytes", "hfc_tokens"]>;
|
|
778
|
+
export declare class FetchDegradedInfoLimitKind extends FetchDegradedInfoLimitKind_base {
|
|
779
|
+
}
|
|
780
|
+
declare const FetchDegradedInfo_base: S.Struct<{
|
|
781
|
+
reason: typeof FetchDegradedInfoReason;
|
|
782
|
+
skipped: S.Array$<S.Literal<["hfc"]>>;
|
|
783
|
+
limitKind: typeof FetchDegradedInfoLimitKind;
|
|
784
|
+
measuredBytes: S.optionalWith<S.filter<typeof S.Int>, {
|
|
785
|
+
nullable: true;
|
|
786
|
+
}>;
|
|
787
|
+
thresholdBytes: S.optionalWith<S.filter<typeof S.Int>, {
|
|
788
|
+
nullable: true;
|
|
789
|
+
}>;
|
|
790
|
+
measuredTokens: S.optionalWith<S.filter<typeof S.Int>, {
|
|
791
|
+
nullable: true;
|
|
792
|
+
}>;
|
|
793
|
+
thresholdTokens: S.optionalWith<S.filter<typeof S.Int>, {
|
|
794
|
+
nullable: true;
|
|
795
|
+
}>;
|
|
796
|
+
}>;
|
|
797
|
+
export declare class FetchDegradedInfo extends FetchDegradedInfo_base {
|
|
798
|
+
}
|
|
689
799
|
export declare class Int extends S.Int {
|
|
690
800
|
}
|
|
691
801
|
declare const FetchSearchSnippetLocation_base: S.Struct<{
|
|
@@ -710,7 +820,7 @@ export declare class FetchSearchSnippetLocation extends FetchSearchSnippetLocati
|
|
|
710
820
|
declare const FetchSearchSourceMetaSource_base: S.Literal<["markdown", "appendix", "statejson"]>;
|
|
711
821
|
export declare class FetchSearchSourceMetaSource extends FetchSearchSourceMetaSource_base {
|
|
712
822
|
}
|
|
713
|
-
declare const FetchSearchSourceMetaRanker_base: S.Literal<["zeroentropy", "local_lexical"]>;
|
|
823
|
+
declare const FetchSearchSourceMetaRanker_base: S.Literal<["zeroentropy", "mixedbread", "local_lexical"]>;
|
|
714
824
|
export declare class FetchSearchSourceMetaRanker extends FetchSearchSourceMetaRanker_base {
|
|
715
825
|
}
|
|
716
826
|
declare const FetchSearchSourceMetaFallbackReason_base: S.Literal<["timeout", "error"]>;
|
|
@@ -763,6 +873,9 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
763
873
|
assets: S.optionalWith<S.Array$<typeof FetchAssetReference>, {
|
|
764
874
|
nullable: true;
|
|
765
875
|
}>;
|
|
876
|
+
degraded: S.optionalWith<typeof FetchDegradedInfo, {
|
|
877
|
+
nullable: true;
|
|
878
|
+
}>;
|
|
766
879
|
search: S.optionalWith<typeof FetchSearchResult, {
|
|
767
880
|
nullable: true;
|
|
768
881
|
}>;
|
|
@@ -783,6 +896,9 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
783
896
|
assets: S.optionalWith<S.Array$<typeof FetchAssetReference>, {
|
|
784
897
|
nullable: true;
|
|
785
898
|
}>;
|
|
899
|
+
degraded: S.optionalWith<typeof FetchDegradedInfo, {
|
|
900
|
+
nullable: true;
|
|
901
|
+
}>;
|
|
786
902
|
search: S.optionalWith<typeof FetchSearchResult, {
|
|
787
903
|
nullable: true;
|
|
788
904
|
}>;
|
|
@@ -806,6 +922,15 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
806
922
|
readonly sha256: string;
|
|
807
923
|
readonly bytes: number;
|
|
808
924
|
}[] | undefined;
|
|
925
|
+
readonly degraded?: {
|
|
926
|
+
readonly reason: "modelInputTooLarge" | "pageTooLarge";
|
|
927
|
+
readonly skipped: readonly "hfc"[];
|
|
928
|
+
readonly limitKind: "ast_bytes" | "domsnapshot_bytes" | "hfc_tokens";
|
|
929
|
+
readonly measuredBytes?: number | undefined;
|
|
930
|
+
readonly thresholdBytes?: number | undefined;
|
|
931
|
+
readonly measuredTokens?: number | undefined;
|
|
932
|
+
readonly thresholdTokens?: number | undefined;
|
|
933
|
+
} | undefined;
|
|
809
934
|
readonly search?: {
|
|
810
935
|
readonly query: string;
|
|
811
936
|
readonly snippets: readonly {
|
|
@@ -827,7 +952,7 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
827
952
|
readonly source: "appendix" | "markdown" | "statejson";
|
|
828
953
|
readonly chunkCount: number;
|
|
829
954
|
readonly batchCount: number;
|
|
830
|
-
readonly ranker: "local_lexical" | "zeroentropy";
|
|
955
|
+
readonly ranker: "local_lexical" | "mixedbread" | "zeroentropy";
|
|
831
956
|
readonly fallback: boolean;
|
|
832
957
|
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
833
958
|
readonly durationMs: number;
|
|
@@ -849,6 +974,8 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
849
974
|
readonly method?: string | undefined;
|
|
850
975
|
readonly moreTokens?: number | undefined;
|
|
851
976
|
readonly keys?: readonly string[] | undefined;
|
|
977
|
+
readonly urlRedacted?: true | undefined;
|
|
978
|
+
readonly urlOmitted?: "invalid" | "too-long" | "unsafe" | undefined;
|
|
852
979
|
}[];
|
|
853
980
|
} & {
|
|
854
981
|
readonly markdown: string;
|
|
@@ -882,7 +1009,7 @@ declare const FetchObjectModeResult_base: S.Class<FetchObjectModeResult, {
|
|
|
882
1009
|
} | undefined;
|
|
883
1010
|
readonly markdown?: {
|
|
884
1011
|
readonly url: string;
|
|
885
|
-
readonly moreTokens
|
|
1012
|
+
readonly moreTokens?: number | undefined;
|
|
886
1013
|
} | undefined;
|
|
887
1014
|
readonly blocked?: string | undefined;
|
|
888
1015
|
readonly loadingStatus?: string | undefined;
|
|
@@ -1130,7 +1257,7 @@ declare const FetchSnapshotSearchResult_base: S.Class<FetchSnapshotSearchResult,
|
|
|
1130
1257
|
readonly source: "appendix" | "markdown" | "statejson";
|
|
1131
1258
|
readonly chunkCount: number;
|
|
1132
1259
|
readonly batchCount: number;
|
|
1133
|
-
readonly ranker: "local_lexical" | "zeroentropy";
|
|
1260
|
+
readonly ranker: "local_lexical" | "mixedbread" | "zeroentropy";
|
|
1134
1261
|
readonly fallback: boolean;
|
|
1135
1262
|
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
1136
1263
|
readonly durationMs: number;
|
|
@@ -1578,10 +1705,13 @@ declare const BatchedFetchItem_base: S.Struct<{
|
|
|
1578
1705
|
assets: S.optionalWith<S.Array$<typeof FetchAssetReference>, {
|
|
1579
1706
|
nullable: true;
|
|
1580
1707
|
}>;
|
|
1708
|
+
degraded: S.optionalWith<typeof FetchDegradedInfo, {
|
|
1709
|
+
nullable: true;
|
|
1710
|
+
}>;
|
|
1581
1711
|
}>, {
|
|
1582
1712
|
nullable: true;
|
|
1583
1713
|
}>;
|
|
1584
|
-
error: S.optionalWith<S.Union<[typeof FetchBlocked, typeof FetchPageTooLarge]>, {
|
|
1714
|
+
error: S.optionalWith<S.Union<[typeof FetchBlocked, typeof FetchPageTooLarge, typeof FetchNavigationFailed, typeof FetchCaptureTimeout, typeof FetchCapacityTimeout]>, {
|
|
1585
1715
|
nullable: true;
|
|
1586
1716
|
}>;
|
|
1587
1717
|
}>;
|
|
@@ -1696,7 +1826,7 @@ declare const BatchedStatus_base: S.Class<BatchedStatus, {
|
|
|
1696
1826
|
readonly source: "appendix" | "markdown" | "statejson";
|
|
1697
1827
|
readonly chunkCount: number;
|
|
1698
1828
|
readonly batchCount: number;
|
|
1699
|
-
readonly ranker: "local_lexical" | "zeroentropy";
|
|
1829
|
+
readonly ranker: "local_lexical" | "mixedbread" | "zeroentropy";
|
|
1700
1830
|
readonly fallback: boolean;
|
|
1701
1831
|
readonly fallbackReason?: "error" | "timeout" | undefined;
|
|
1702
1832
|
readonly durationMs: number;
|
|
@@ -1722,8 +1852,17 @@ declare const BatchedStatus_base: S.Class<BatchedStatus, {
|
|
|
1722
1852
|
readonly sha256: string;
|
|
1723
1853
|
readonly bytes: number;
|
|
1724
1854
|
}[] | undefined;
|
|
1855
|
+
readonly degraded?: {
|
|
1856
|
+
readonly reason: "modelInputTooLarge" | "pageTooLarge";
|
|
1857
|
+
readonly skipped: readonly "hfc"[];
|
|
1858
|
+
readonly limitKind: "ast_bytes" | "domsnapshot_bytes" | "hfc_tokens";
|
|
1859
|
+
readonly measuredBytes?: number | undefined;
|
|
1860
|
+
readonly thresholdBytes?: number | undefined;
|
|
1861
|
+
readonly measuredTokens?: number | undefined;
|
|
1862
|
+
readonly thresholdTokens?: number | undefined;
|
|
1863
|
+
} | undefined;
|
|
1725
1864
|
} | undefined;
|
|
1726
|
-
readonly error?: {
|
|
1865
|
+
readonly error?: FetchCapacityTimeout | FetchCaptureTimeout | FetchNavigationFailed | {
|
|
1727
1866
|
readonly url: string;
|
|
1728
1867
|
readonly blockedType?: string | undefined;
|
|
1729
1868
|
readonly _tag: "FetchBlocked";
|
|
@@ -1800,11 +1939,11 @@ export interface Client {
|
|
|
1800
1939
|
readonly fetchFetch: (options: {
|
|
1801
1940
|
readonly params: typeof FetchFetchParams.Encoded;
|
|
1802
1941
|
readonly payload: typeof FetchFetchRequest.Encoded;
|
|
1803
|
-
}) => Effect.Effect<void, HttpClientError.HttpClientError | ParseError | typeof FetchFetch400.Type | typeof AuthFailed.Type | typeof FetchFetch403.Type | typeof FetchFetch413.Type | typeof TooManyRequests.Type | typeof InternalError.Type | typeof ServiceUnavailable.Type>;
|
|
1942
|
+
}) => Effect.Effect<void, HttpClientError.HttpClientError | ParseError | typeof FetchFetch400.Type | typeof AuthFailed.Type | typeof FetchFetch403.Type | typeof FetchFetch413.Type | typeof TooManyRequests.Type | typeof InternalError.Type | typeof FetchNavigationFailed.Type | typeof ServiceUnavailable.Type | typeof FetchCaptureTimeout.Type | typeof FetchCapacityTimeout.Type>;
|
|
1804
1943
|
readonly fetchFetchJson: (options: {
|
|
1805
1944
|
readonly params: typeof FetchFetchJsonParams.Encoded;
|
|
1806
1945
|
readonly payload: typeof FetchFetchJsonRequest.Encoded;
|
|
1807
|
-
}) => Effect.Effect<typeof FetchObjectModeResult.Type, HttpClientError.HttpClientError | ParseError | typeof FetchFetchJson400.Type | typeof AuthFailed.Type | typeof FetchFetchJson403.Type | typeof FetchFetchJson413.Type | typeof TooManyRequests.Type | typeof InternalError.Type | typeof ServiceUnavailable.Type>;
|
|
1946
|
+
}) => Effect.Effect<typeof FetchObjectModeResult.Type, HttpClientError.HttpClientError | ParseError | typeof FetchFetchJson400.Type | typeof AuthFailed.Type | typeof FetchFetchJson403.Type | typeof FetchFetchJson413.Type | typeof TooManyRequests.Type | typeof InternalError.Type | typeof FetchNavigationFailed.Type | typeof ServiceUnavailable.Type | typeof FetchCaptureTimeout.Type | typeof FetchCapacityTimeout.Type>;
|
|
1808
1947
|
readonly fetchFetchSearch: (options: typeof FetchFetchSearchRequest.Encoded) => Effect.Effect<typeof FetchSnapshotSearchResult.Type, HttpClientError.HttpClientError | ParseError | typeof FetchFetchSearch400.Type | typeof AuthFailed.Type | typeof FetchFetchSearch403.Type | typeof FetchSnapshotSearchNotFound.Type | typeof PayloadTooLarge.Type | typeof TooManyRequests.Type | typeof InternalError.Type | typeof ServiceUnavailable.Type>;
|
|
1809
1948
|
readonly fetchBatched: (options: {
|
|
1810
1949
|
readonly params: typeof FetchBatchedParams.Encoded;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Generated.d.ts","sourceRoot":"","sources":["../../src/Generated.ts"],"names":[],"mappings":"AAAA,wDAAwD;AACxD,OAAO,KAAK,KAAK,UAAU,MAAM,6BAA6B,CAAA;AAC9D,OAAO,KAAK,eAAe,MAAM,kCAAkC,CAAA;AAInE,OAAO,KAAK,MAAM,MAAM,eAAe,CAAA;AACvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,KAAK,CAAC,MAAM,eAAe,CAAA;;;;;;AAElC,qBAAa,gBAAiB,SAAQ,qBAEpC;CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEL,qBAAa,iBAAkB,SAAQ,sBA0DrC;CAAG;;AAEL,qBAAa,QAAS,SAAQ,aAS7B;CAAG;;AAEJ,qBAAa,kBAAmB,SAAQ,uBAAmB;CAAG;;;;;AAE9D,qBAAa,WAAY,SAAQ,gBAOhC;CAAG;;;;;;AAEJ,qBAAa,KAAM,SAAQ,UAIzB;CAAG;;AAEL,qBAAa,qBAAsB,SAAQ,0BAA+B;CAAG;;;;;;AAE7E,qBAAa,kBAAmB,SAAQ,uBAItC;CAAG;;AAEL,qBAAa,aAAc,SAAQ,kBAAuB;CAAG;;;;;AAE7D,qBAAa,UAAW,SAAQ,eAG9B;CAAG;;AAEL,qBAAa,aAAc,SAAQ,kBAAuC;CAAG;;AAE7E,qBAAa,gBAAiB,SAAQ,qBAA6E;CAAG;;AAEtH,qBAAa,aAAc,SAAQ,kBAAuB;CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;AAE7D,qBAAa,UAAW,SAAQ,eAY9B;CAAG;AAEL,qBAAa,WAAY,SAAQ,CAAC,CAAC,MAAM;CAAG;;AAE5C,qBAAa,eAAgB,SAAQ,oBAAyB;CAAG;;;;;;;;AAEjE,qBAAa,YAAa,SAAQ,iBAIhC;CAAG;;;;;;;;AAEL,qBAAa,aAAc,SAAQ,kBAOlC;CAAG;;AAEJ,qBAAa,kBAAmB,SAAQ,uBAA4B;CAAG;;;;AAEvE,qBAAa,eAAgB,SAAQ,oBAEnC;CAAG;;AAEL,qBAAa,0BAA2B,SAAQ,+BAA6D;CAAG;;AAEhH,qBAAa,oBAAqB,SAAQ,yBAA8B;CAAG;;;;;;;;;;;;;;AAE3E,qBAAa,iBAAkB,SAAQ,sBAMrC;CAAG;;AAEL,qBAAa,aAAc,SAAQ,kBAA2C;CAAG;;AAEjF,qBAAa,kBAAmB,SAAQ,uBAA4B;CAAG;;;;;;;;AAEvE,qBAAa,eAAgB,SAAQ,oBAEnC;CAAG;;AAEL,qBAAa,gBAAiB,SAAQ,qBAA0B;CAAG;;;;;;;;AAEnE,qBAAa,aAAc,SAAQ,kBAEjC;CAAG;;AAEL,qBAAa,qBAAsB,SAAQ,0BAA+B;CAAG;;;;;;;;;;;;;;;;;;;;;;;;AAE7E,qBAAa,kBAAmB,SAAQ,uBAItC;CAAG;;;;;;AAEL,qBAAa,oBAAqB,SAAQ,yBAExC;CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEL,qBAAa,qBAAsB,SAAQ,0BA0DzC;CAAG;;AAEL,qBAAa,0BAA2B,SAAQ,+BAAY;CAAG;;;;;AAE/D,qBAAa,4BAA6B,SAAQ,iCAGhD;CAAG;;;;;AAEL,qBAAa,2BAA4B,SAAQ,gCAG/C;CAAG;;;;AAEL,qBAAa,4BAA6B,SAAQ,iCAEhD;CAAG
|
|
1
|
+
{"version":3,"file":"Generated.d.ts","sourceRoot":"","sources":["../../src/Generated.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Internal.d.ts","sourceRoot":"","sources":["../../src/Internal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAW,KAAK,EAA8B,MAAM,QAAQ,CAAA;AAClF,OAAO,EAEN,iBAAiB,EAEjB,KAAK,WAAW,EAChB,cAAc,EAEd,MAAM,YAAY,CAAA;AAEnB,OAAO,EACN,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,EACpB,KAAK,qBAAqB,EAC1B,aAAa,EACb,KAAK,oBAAoB,EACzB,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,iBAAiB,EACtB,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,MAAM,cAAc,CAAA;AA0BrB;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,GAAG,WAAW,
|
|
1
|
+
{"version":3,"file":"Internal.d.ts","sourceRoot":"","sources":["../../src/Internal.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAW,KAAK,EAA8B,MAAM,QAAQ,CAAA;AAClF,OAAO,EAEN,iBAAiB,EAEjB,KAAK,WAAW,EAChB,cAAc,EAEd,MAAM,YAAY,CAAA;AAEnB,OAAO,EACN,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,EACpB,KAAK,qBAAqB,EAC1B,aAAa,EACb,KAAK,oBAAoB,EACzB,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,iBAAiB,EACtB,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,MAAM,cAAc,CAAA;AA0BrB;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,GAAG,WAAW,CA0G5E;AAED;;;GAGG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAwCtE;;;iCAeU,WAAW,YACV,cAAc,KACrB,MAAM,CAAC,MAAM,CAAC,aAAa,EAAE,iBAAiB,CAAC;qCAIzC,eAAe,YACd,cAAc,KACrB,MAAM,CAAC,MAAM,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;uCAI7C,iBAAiB,YAChB,cAAc,KACrB,MAAM,CAAC,MAAM,CAAC,mBAAmB,EAAE,iBAAiB,CAAC;mCAI/C,aAAa,WACZ,qBAAqB,KAC5B,MAAM,CAAC,MAAM,CAAC,eAAe,EAAE,iBAAiB,CAAC;kCAI/C,MAAM,YACD,gBAAgB,GAAG,cAAc,KACxC,MAAM,CAAC,MAAM,CAAC,kBAAkB,EAAE,iBAAiB,CAAC;qCAIlD,MAAM,YACD,cAAc,KACrB,MAAM,CAAC,MAAM,CAAC,qBAAqB,EAAE,iBAAiB,CAAC;;;AA7C5D;;;;;;;GAOG;AACH,qBAAa,cAAe,SAAQ,mBA0ClC;IACD;;;;;OAKG;IACH,MAAM,CAAC,KAAK,CAAC,OAAO,GAAE,oBAAyB,GAAG,KAAK,CAAC,KAAK,CAAC,cAAc,EAAE,cAAc,CAAC,CAE5F;IAED;;;;OAIG;IACH,MAAM,CAAC,cAAc,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,OAAO,CAM1D;IAED,OAAO,CAAC,MAAM,CAAC,wBAAwB;CAQvC"}
|