@llamaindex/llama-cloud 2.1.0 → 2.2.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/CHANGELOG.md +14 -0
- package/client.d.mts +5 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +5 -2
- 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/configurations.d.mts +1095 -0
- package/resources/configurations.d.mts.map +1 -0
- package/resources/configurations.d.ts +1095 -0
- package/resources/configurations.d.ts.map +1 -0
- package/resources/configurations.js +63 -0
- package/resources/configurations.js.map +1 -0
- package/resources/configurations.mjs +59 -0
- package/resources/configurations.mjs.map +1 -0
- package/resources/extract.d.mts +5 -973
- package/resources/extract.d.mts.map +1 -1
- package/resources/extract.d.ts +5 -973
- package/resources/extract.d.ts.map +1 -1
- package/resources/extract.js +2 -1
- package/resources/extract.js.map +1 -1
- package/resources/extract.mjs +2 -1
- package/resources/extract.mjs.map +1 -1
- package/resources/index.d.mts +2 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -1
- 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/src/client.ts +35 -2
- package/src/resources/configurations.ts +1443 -0
- package/src/resources/extract.ts +4 -1214
- package/src/resources/index.ts +16 -1
- 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
package/src/resources/index.ts
CHANGED
|
@@ -16,6 +16,22 @@ export {
|
|
|
16
16
|
type ClassifyGetParams,
|
|
17
17
|
type ClassifyListResponsesPaginatedCursor,
|
|
18
18
|
} from './classify';
|
|
19
|
+
export {
|
|
20
|
+
Configurations,
|
|
21
|
+
type ClassifyV2Parameters,
|
|
22
|
+
type ConfigurationCreate,
|
|
23
|
+
type ConfigurationResponse,
|
|
24
|
+
type ExtractV2Parameters,
|
|
25
|
+
type ParseV2Parameters,
|
|
26
|
+
type SplitV1Parameters,
|
|
27
|
+
type UntypedParameters,
|
|
28
|
+
type ConfigurationCreateParams,
|
|
29
|
+
type ConfigurationRetrieveParams,
|
|
30
|
+
type ConfigurationUpdateParams,
|
|
31
|
+
type ConfigurationListParams,
|
|
32
|
+
type ConfigurationDeleteParams,
|
|
33
|
+
type ConfigurationResponsesPaginatedCursor,
|
|
34
|
+
} from './configurations';
|
|
19
35
|
export {
|
|
20
36
|
DataSinks,
|
|
21
37
|
type DataSink,
|
|
@@ -46,7 +62,6 @@ export {
|
|
|
46
62
|
type ExtractV2SchemaValidateResponse,
|
|
47
63
|
type ExtractedFieldMetadata,
|
|
48
64
|
type ExtractDeleteResponse,
|
|
49
|
-
type ExtractGenerateSchemaResponse,
|
|
50
65
|
type ExtractCreateParams,
|
|
51
66
|
type ExtractListParams,
|
|
52
67
|
type ExtractDeleteParams,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.2.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.2.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "2.
|
|
1
|
+
export declare const VERSION = "2.2.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '2.
|
|
1
|
+
export const VERSION = '2.2.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|