@nestbox-ai/admin 1.0.65 → 1.0.67
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/README.md +9 -9
- package/api.ts +28 -28
- package/dist/api.d.ts +28 -28
- package/dist/api.js +28 -28
- package/dist/esm/api.d.ts +28 -28
- package/dist/esm/api.js +28 -28
- package/docs/DocumentProcessingApi.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @nestbox-ai/admin@1.0.
|
|
1
|
+
## @nestbox-ai/admin@1.0.67
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @nestbox-ai/admin@1.0.
|
|
39
|
+
npm install @nestbox-ai/admin@1.0.67 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -59,13 +59,13 @@ Class | Method | HTTP request | Description
|
|
|
59
59
|
*AuthApi* | [**authControllerRefreshToken**](docs/AuthApi.md#authcontrollerrefreshtoken) | **POST** /auth/google/refresh/{token} | Refresh Google access token
|
|
60
60
|
*AuthApi* | [**authControllerResetPassword**](docs/AuthApi.md#authcontrollerresetpassword) | **POST** /auth/reset-password | Forget password initiate
|
|
61
61
|
*AuthApi* | [**authControllerSignup**](docs/AuthApi.md#authcontrollersignup) | **POST** /auth/signup | Signup in the application
|
|
62
|
-
*DocumentProcessingApi* | [**documentProcessingControllerCreateBatchQuery**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreatebatchquery) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries | Create batch query from YAML file
|
|
63
|
-
*DocumentProcessingApi* | [**documentProcessingControllerCreateDocumentProcessingJob**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreatedocumentprocessingjob) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents | Create document processing job by uploading file
|
|
64
|
-
*DocumentProcessingApi* | [**documentProcessingControllerCreateEval**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreateeval) | **POST** /projects/{projectId}/document-processing/{instanceId}/evals | Create evaluation from YAML file
|
|
65
|
-
*DocumentProcessingApi* | [**documentProcessingControllerCreateProfile**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreateprofile) | **POST** /projects/{projectId}/document-processing/{instanceId}/profiles | Create processing profile from YAML
|
|
62
|
+
*DocumentProcessingApi* | [**documentProcessingControllerCreateBatchQuery**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreatebatchquery) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries | Create batch query from YAML file (multipart)
|
|
63
|
+
*DocumentProcessingApi* | [**documentProcessingControllerCreateDocumentProcessingJob**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreatedocumentprocessingjob) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents | Create document processing job by uploading file (multipart)
|
|
64
|
+
*DocumentProcessingApi* | [**documentProcessingControllerCreateEval**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreateeval) | **POST** /projects/{projectId}/document-processing/{instanceId}/evals | Create evaluation from YAML file (multipart)
|
|
65
|
+
*DocumentProcessingApi* | [**documentProcessingControllerCreateProfile**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreateprofile) | **POST** /projects/{projectId}/document-processing/{instanceId}/profiles | Create processing profile from YAML file (multipart)
|
|
66
66
|
*DocumentProcessingApi* | [**documentProcessingControllerCreateWebhook**](docs/DocumentProcessingApi.md#documentprocessingcontrollercreatewebhook) | **POST** /projects/{projectId}/document-processing/{instanceId}/webhooks | Create webhook for receiving notifications
|
|
67
67
|
*DocumentProcessingApi* | [**documentProcessingControllerDeleteWebhook**](docs/DocumentProcessingApi.md#documentprocessingcontrollerdeletewebhook) | **DELETE** /projects/{projectId}/document-processing/{instanceId}/webhooks/{webhookId} | Delete webhook
|
|
68
|
-
*DocumentProcessingApi* | [**documentProcessingControllerDownloadDocumentArtifacts**](docs/DocumentProcessingApi.md#documentprocessingcontrollerdownloaddocumentartifacts) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/artifacts | Download document artifacts as archive
|
|
68
|
+
*DocumentProcessingApi* | [**documentProcessingControllerDownloadDocumentArtifacts**](docs/DocumentProcessingApi.md#documentprocessingcontrollerdownloaddocumentartifacts) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/artifacts | Download document artifacts as ZIP archive
|
|
69
69
|
*DocumentProcessingApi* | [**documentProcessingControllerGetDocument**](docs/DocumentProcessingApi.md#documentprocessingcontrollergetdocument) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId} | Get processed document by ID
|
|
70
70
|
*DocumentProcessingApi* | [**documentProcessingControllerGetEval**](docs/DocumentProcessingApi.md#documentprocessingcontrollergeteval) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/{evalId} | Get evaluation details by document ID and eval ID
|
|
71
71
|
*DocumentProcessingApi* | [**documentProcessingControllerGetHealth**](docs/DocumentProcessingApi.md#documentprocessingcontrollergethealth) | **GET** /projects/{projectId}/document-processing/{instanceId}/health | Get document processing API client health
|
|
@@ -82,8 +82,8 @@ Class | Method | HTTP request | Description
|
|
|
82
82
|
*DocumentProcessingApi* | [**documentProcessingControllerListQueries**](docs/DocumentProcessingApi.md#documentprocessingcontrollerlistqueries) | **GET** /projects/{projectId}/document-processing/{instanceId}/queries | List batch queries with pagination and filters
|
|
83
83
|
*DocumentProcessingApi* | [**documentProcessingControllerListWebhooks**](docs/DocumentProcessingApi.md#documentprocessingcontrollerlistwebhooks) | **GET** /projects/{projectId}/document-processing/{instanceId}/webhooks | List webhooks with pagination
|
|
84
84
|
*DocumentProcessingApi* | [**documentProcessingControllerUpdateWebhook**](docs/DocumentProcessingApi.md#documentprocessingcontrollerupdatewebhook) | **PUT** /projects/{projectId}/document-processing/{instanceId}/webhooks/{webhookId} | Update webhook configuration
|
|
85
|
-
*DocumentProcessingApi* | [**documentProcessingControllerValidateEvalYaml**](docs/DocumentProcessingApi.md#documentprocessingcontrollervalidateevalyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/validate | Validate eval YAML without creating evaluation
|
|
86
|
-
*DocumentProcessingApi* | [**documentProcessingControllerValidateQueryYaml**](docs/DocumentProcessingApi.md#documentprocessingcontrollervalidatequeryyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries/validate | Validate batch query YAML without creating query
|
|
85
|
+
*DocumentProcessingApi* | [**documentProcessingControllerValidateEvalYaml**](docs/DocumentProcessingApi.md#documentprocessingcontrollervalidateevalyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/validate | Validate eval YAML without creating evaluation (multipart)
|
|
86
|
+
*DocumentProcessingApi* | [**documentProcessingControllerValidateQueryYaml**](docs/DocumentProcessingApi.md#documentprocessingcontrollervalidatequeryyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries/validate | Validate batch query YAML without creating query (multipart)
|
|
87
87
|
*DocumentsApi* | [**documentControllerAddDocToCollection**](docs/DocumentsApi.md#documentcontrolleradddoctocollection) | **POST** /projects/{projectId}/document/{instanceId}/collections/{collectionId}/docs | Add a new doc
|
|
88
88
|
*DocumentsApi* | [**documentControllerAddDocToCollectionFromFile**](docs/DocumentsApi.md#documentcontrolleradddoctocollectionfromfile) | **POST** /projects/{projectId}/document/{instanceId}/collections/{collectionId}/docs/file | Use a file to chunk and add to collection
|
|
89
89
|
*DocumentsApi* | [**documentControllerCreateCollection**](docs/DocumentsApi.md#documentcontrollercreatecollection) | **POST** /projects/{projectId}/document/{instanceId}/collections | Create collection
|
package/api.ts
CHANGED
|
@@ -977,7 +977,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
977
977
|
return {
|
|
978
978
|
/**
|
|
979
979
|
*
|
|
980
|
-
* @summary Create batch query from YAML file
|
|
980
|
+
* @summary Create batch query from YAML file (multipart)
|
|
981
981
|
* @param {string} projectId
|
|
982
982
|
* @param {string} instanceId
|
|
983
983
|
* @param {*} [options] Override http request option.
|
|
@@ -1015,7 +1015,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1015
1015
|
},
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
|
-
* @summary Create document processing job by uploading file
|
|
1018
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1019
1019
|
* @param {string} projectId
|
|
1020
1020
|
* @param {string} instanceId
|
|
1021
1021
|
* @param {*} [options] Override http request option.
|
|
@@ -1053,7 +1053,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1053
1053
|
},
|
|
1054
1054
|
/**
|
|
1055
1055
|
*
|
|
1056
|
-
* @summary Create evaluation from YAML file
|
|
1056
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1057
1057
|
* @param {string} projectId
|
|
1058
1058
|
* @param {string} instanceId
|
|
1059
1059
|
* @param {*} [options] Override http request option.
|
|
@@ -1091,7 +1091,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1091
1091
|
},
|
|
1092
1092
|
/**
|
|
1093
1093
|
*
|
|
1094
|
-
* @summary Create processing profile from YAML
|
|
1094
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1095
1095
|
* @param {string} projectId
|
|
1096
1096
|
* @param {string} instanceId
|
|
1097
1097
|
* @param {*} [options] Override http request option.
|
|
@@ -1209,7 +1209,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1209
1209
|
},
|
|
1210
1210
|
/**
|
|
1211
1211
|
*
|
|
1212
|
-
* @summary Download document artifacts as archive
|
|
1212
|
+
* @summary Download document artifacts as ZIP archive
|
|
1213
1213
|
* @param {string} projectId
|
|
1214
1214
|
* @param {string} instanceId
|
|
1215
1215
|
* @param {string} documentId
|
|
@@ -1899,7 +1899,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1899
1899
|
},
|
|
1900
1900
|
/**
|
|
1901
1901
|
*
|
|
1902
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1902
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1903
1903
|
* @param {string} projectId
|
|
1904
1904
|
* @param {string} instanceId
|
|
1905
1905
|
* @param {string} documentId
|
|
@@ -1941,7 +1941,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration?:
|
|
|
1941
1941
|
},
|
|
1942
1942
|
/**
|
|
1943
1943
|
*
|
|
1944
|
-
* @summary Validate batch query YAML without creating query
|
|
1944
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1945
1945
|
* @param {string} projectId
|
|
1946
1946
|
* @param {string} instanceId
|
|
1947
1947
|
* @param {*} [options] Override http request option.
|
|
@@ -1988,7 +1988,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
1988
1988
|
return {
|
|
1989
1989
|
/**
|
|
1990
1990
|
*
|
|
1991
|
-
* @summary Create batch query from YAML file
|
|
1991
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1992
1992
|
* @param {string} projectId
|
|
1993
1993
|
* @param {string} instanceId
|
|
1994
1994
|
* @param {*} [options] Override http request option.
|
|
@@ -2002,7 +2002,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2002
2002
|
},
|
|
2003
2003
|
/**
|
|
2004
2004
|
*
|
|
2005
|
-
* @summary Create document processing job by uploading file
|
|
2005
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
2006
2006
|
* @param {string} projectId
|
|
2007
2007
|
* @param {string} instanceId
|
|
2008
2008
|
* @param {*} [options] Override http request option.
|
|
@@ -2016,7 +2016,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2016
2016
|
},
|
|
2017
2017
|
/**
|
|
2018
2018
|
*
|
|
2019
|
-
* @summary Create evaluation from YAML file
|
|
2019
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
2020
2020
|
* @param {string} projectId
|
|
2021
2021
|
* @param {string} instanceId
|
|
2022
2022
|
* @param {*} [options] Override http request option.
|
|
@@ -2030,7 +2030,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2030
2030
|
},
|
|
2031
2031
|
/**
|
|
2032
2032
|
*
|
|
2033
|
-
* @summary Create processing profile from YAML
|
|
2033
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2034
2034
|
* @param {string} projectId
|
|
2035
2035
|
* @param {string} instanceId
|
|
2036
2036
|
* @param {*} [options] Override http request option.
|
|
@@ -2073,7 +2073,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2073
2073
|
},
|
|
2074
2074
|
/**
|
|
2075
2075
|
*
|
|
2076
|
-
* @summary Download document artifacts as archive
|
|
2076
|
+
* @summary Download document artifacts as ZIP archive
|
|
2077
2077
|
* @param {string} projectId
|
|
2078
2078
|
* @param {string} instanceId
|
|
2079
2079
|
* @param {string} documentId
|
|
@@ -2322,7 +2322,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2322
2322
|
},
|
|
2323
2323
|
/**
|
|
2324
2324
|
*
|
|
2325
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2325
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2326
2326
|
* @param {string} projectId
|
|
2327
2327
|
* @param {string} instanceId
|
|
2328
2328
|
* @param {string} documentId
|
|
@@ -2337,7 +2337,7 @@ export const DocumentProcessingApiFp = function(configuration?: Configuration) {
|
|
|
2337
2337
|
},
|
|
2338
2338
|
/**
|
|
2339
2339
|
*
|
|
2340
|
-
* @summary Validate batch query YAML without creating query
|
|
2340
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2341
2341
|
* @param {string} projectId
|
|
2342
2342
|
* @param {string} instanceId
|
|
2343
2343
|
* @param {*} [options] Override http request option.
|
|
@@ -2360,7 +2360,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2360
2360
|
return {
|
|
2361
2361
|
/**
|
|
2362
2362
|
*
|
|
2363
|
-
* @summary Create batch query from YAML file
|
|
2363
|
+
* @summary Create batch query from YAML file (multipart)
|
|
2364
2364
|
* @param {string} projectId
|
|
2365
2365
|
* @param {string} instanceId
|
|
2366
2366
|
* @param {*} [options] Override http request option.
|
|
@@ -2371,7 +2371,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2371
2371
|
},
|
|
2372
2372
|
/**
|
|
2373
2373
|
*
|
|
2374
|
-
* @summary Create document processing job by uploading file
|
|
2374
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
2375
2375
|
* @param {string} projectId
|
|
2376
2376
|
* @param {string} instanceId
|
|
2377
2377
|
* @param {*} [options] Override http request option.
|
|
@@ -2382,7 +2382,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2382
2382
|
},
|
|
2383
2383
|
/**
|
|
2384
2384
|
*
|
|
2385
|
-
* @summary Create evaluation from YAML file
|
|
2385
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
2386
2386
|
* @param {string} projectId
|
|
2387
2387
|
* @param {string} instanceId
|
|
2388
2388
|
* @param {*} [options] Override http request option.
|
|
@@ -2393,7 +2393,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2393
2393
|
},
|
|
2394
2394
|
/**
|
|
2395
2395
|
*
|
|
2396
|
-
* @summary Create processing profile from YAML
|
|
2396
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2397
2397
|
* @param {string} projectId
|
|
2398
2398
|
* @param {string} instanceId
|
|
2399
2399
|
* @param {*} [options] Override http request option.
|
|
@@ -2427,7 +2427,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2427
2427
|
},
|
|
2428
2428
|
/**
|
|
2429
2429
|
*
|
|
2430
|
-
* @summary Download document artifacts as archive
|
|
2430
|
+
* @summary Download document artifacts as ZIP archive
|
|
2431
2431
|
* @param {string} projectId
|
|
2432
2432
|
* @param {string} instanceId
|
|
2433
2433
|
* @param {string} documentId
|
|
@@ -2625,7 +2625,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2625
2625
|
},
|
|
2626
2626
|
/**
|
|
2627
2627
|
*
|
|
2628
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2628
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2629
2629
|
* @param {string} projectId
|
|
2630
2630
|
* @param {string} instanceId
|
|
2631
2631
|
* @param {string} documentId
|
|
@@ -2637,7 +2637,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2637
2637
|
},
|
|
2638
2638
|
/**
|
|
2639
2639
|
*
|
|
2640
|
-
* @summary Validate batch query YAML without creating query
|
|
2640
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2641
2641
|
* @param {string} projectId
|
|
2642
2642
|
* @param {string} instanceId
|
|
2643
2643
|
* @param {*} [options] Override http request option.
|
|
@@ -2655,7 +2655,7 @@ export const DocumentProcessingApiFactory = function (configuration?: Configurat
|
|
|
2655
2655
|
export class DocumentProcessingApi extends BaseAPI {
|
|
2656
2656
|
/**
|
|
2657
2657
|
*
|
|
2658
|
-
* @summary Create batch query from YAML file
|
|
2658
|
+
* @summary Create batch query from YAML file (multipart)
|
|
2659
2659
|
* @param {string} projectId
|
|
2660
2660
|
* @param {string} instanceId
|
|
2661
2661
|
* @param {*} [options] Override http request option.
|
|
@@ -2667,7 +2667,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2667
2667
|
|
|
2668
2668
|
/**
|
|
2669
2669
|
*
|
|
2670
|
-
* @summary Create document processing job by uploading file
|
|
2670
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
2671
2671
|
* @param {string} projectId
|
|
2672
2672
|
* @param {string} instanceId
|
|
2673
2673
|
* @param {*} [options] Override http request option.
|
|
@@ -2679,7 +2679,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
2681
|
*
|
|
2682
|
-
* @summary Create evaluation from YAML file
|
|
2682
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
2683
2683
|
* @param {string} projectId
|
|
2684
2684
|
* @param {string} instanceId
|
|
2685
2685
|
* @param {*} [options] Override http request option.
|
|
@@ -2691,7 +2691,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2691
2691
|
|
|
2692
2692
|
/**
|
|
2693
2693
|
*
|
|
2694
|
-
* @summary Create processing profile from YAML
|
|
2694
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2695
2695
|
* @param {string} projectId
|
|
2696
2696
|
* @param {string} instanceId
|
|
2697
2697
|
* @param {*} [options] Override http request option.
|
|
@@ -2728,7 +2728,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2728
2728
|
|
|
2729
2729
|
/**
|
|
2730
2730
|
*
|
|
2731
|
-
* @summary Download document artifacts as archive
|
|
2731
|
+
* @summary Download document artifacts as ZIP archive
|
|
2732
2732
|
* @param {string} projectId
|
|
2733
2733
|
* @param {string} instanceId
|
|
2734
2734
|
* @param {string} documentId
|
|
@@ -2943,7 +2943,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2943
2943
|
|
|
2944
2944
|
/**
|
|
2945
2945
|
*
|
|
2946
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2946
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2947
2947
|
* @param {string} projectId
|
|
2948
2948
|
* @param {string} instanceId
|
|
2949
2949
|
* @param {string} documentId
|
|
@@ -2956,7 +2956,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2956
2956
|
|
|
2957
2957
|
/**
|
|
2958
2958
|
*
|
|
2959
|
-
* @summary Validate batch query YAML without creating query
|
|
2959
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2960
2960
|
* @param {string} projectId
|
|
2961
2961
|
* @param {string} instanceId
|
|
2962
2962
|
* @param {*} [options] Override http request option.
|
package/dist/api.d.ts
CHANGED
|
@@ -652,7 +652,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
652
652
|
export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
653
653
|
/**
|
|
654
654
|
*
|
|
655
|
-
* @summary Create batch query from YAML file
|
|
655
|
+
* @summary Create batch query from YAML file (multipart)
|
|
656
656
|
* @param {string} projectId
|
|
657
657
|
* @param {string} instanceId
|
|
658
658
|
* @param {*} [options] Override http request option.
|
|
@@ -661,7 +661,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
661
661
|
documentProcessingControllerCreateBatchQuery: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
662
662
|
/**
|
|
663
663
|
*
|
|
664
|
-
* @summary Create document processing job by uploading file
|
|
664
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
665
665
|
* @param {string} projectId
|
|
666
666
|
* @param {string} instanceId
|
|
667
667
|
* @param {*} [options] Override http request option.
|
|
@@ -670,7 +670,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
670
670
|
documentProcessingControllerCreateDocumentProcessingJob: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
671
671
|
/**
|
|
672
672
|
*
|
|
673
|
-
* @summary Create evaluation from YAML file
|
|
673
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
674
674
|
* @param {string} projectId
|
|
675
675
|
* @param {string} instanceId
|
|
676
676
|
* @param {*} [options] Override http request option.
|
|
@@ -679,7 +679,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
679
679
|
documentProcessingControllerCreateEval: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
680
680
|
/**
|
|
681
681
|
*
|
|
682
|
-
* @summary Create processing profile from YAML
|
|
682
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
683
683
|
* @param {string} projectId
|
|
684
684
|
* @param {string} instanceId
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
@@ -707,7 +707,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
707
707
|
documentProcessingControllerDeleteWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
708
708
|
/**
|
|
709
709
|
*
|
|
710
|
-
* @summary Download document artifacts as archive
|
|
710
|
+
* @summary Download document artifacts as ZIP archive
|
|
711
711
|
* @param {string} projectId
|
|
712
712
|
* @param {string} instanceId
|
|
713
713
|
* @param {string} documentId
|
|
@@ -871,7 +871,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
871
871
|
documentProcessingControllerUpdateWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
872
872
|
/**
|
|
873
873
|
*
|
|
874
|
-
* @summary Validate eval YAML without creating evaluation
|
|
874
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
875
875
|
* @param {string} projectId
|
|
876
876
|
* @param {string} instanceId
|
|
877
877
|
* @param {string} documentId
|
|
@@ -881,7 +881,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
881
881
|
documentProcessingControllerValidateEvalYaml: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
882
882
|
/**
|
|
883
883
|
*
|
|
884
|
-
* @summary Validate batch query YAML without creating query
|
|
884
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
885
885
|
* @param {string} projectId
|
|
886
886
|
* @param {string} instanceId
|
|
887
887
|
* @param {*} [options] Override http request option.
|
|
@@ -895,7 +895,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
895
895
|
export declare const DocumentProcessingApiFp: (configuration?: Configuration) => {
|
|
896
896
|
/**
|
|
897
897
|
*
|
|
898
|
-
* @summary Create batch query from YAML file
|
|
898
|
+
* @summary Create batch query from YAML file (multipart)
|
|
899
899
|
* @param {string} projectId
|
|
900
900
|
* @param {string} instanceId
|
|
901
901
|
* @param {*} [options] Override http request option.
|
|
@@ -904,7 +904,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
904
904
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
905
905
|
/**
|
|
906
906
|
*
|
|
907
|
-
* @summary Create document processing job by uploading file
|
|
907
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
908
908
|
* @param {string} projectId
|
|
909
909
|
* @param {string} instanceId
|
|
910
910
|
* @param {*} [options] Override http request option.
|
|
@@ -913,7 +913,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
913
913
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
914
914
|
/**
|
|
915
915
|
*
|
|
916
|
-
* @summary Create evaluation from YAML file
|
|
916
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
917
917
|
* @param {string} projectId
|
|
918
918
|
* @param {string} instanceId
|
|
919
919
|
* @param {*} [options] Override http request option.
|
|
@@ -922,7 +922,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
922
922
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
923
923
|
/**
|
|
924
924
|
*
|
|
925
|
-
* @summary Create processing profile from YAML
|
|
925
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
926
926
|
* @param {string} projectId
|
|
927
927
|
* @param {string} instanceId
|
|
928
928
|
* @param {*} [options] Override http request option.
|
|
@@ -950,7 +950,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
950
950
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
951
951
|
/**
|
|
952
952
|
*
|
|
953
|
-
* @summary Download document artifacts as archive
|
|
953
|
+
* @summary Download document artifacts as ZIP archive
|
|
954
954
|
* @param {string} projectId
|
|
955
955
|
* @param {string} instanceId
|
|
956
956
|
* @param {string} documentId
|
|
@@ -1114,7 +1114,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1114
1114
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1115
1115
|
/**
|
|
1116
1116
|
*
|
|
1117
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1117
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1118
1118
|
* @param {string} projectId
|
|
1119
1119
|
* @param {string} instanceId
|
|
1120
1120
|
* @param {string} documentId
|
|
@@ -1124,7 +1124,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1124
1124
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1125
1125
|
/**
|
|
1126
1126
|
*
|
|
1127
|
-
* @summary Validate batch query YAML without creating query
|
|
1127
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1128
1128
|
* @param {string} projectId
|
|
1129
1129
|
* @param {string} instanceId
|
|
1130
1130
|
* @param {*} [options] Override http request option.
|
|
@@ -1138,7 +1138,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1138
1138
|
export declare const DocumentProcessingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1139
1139
|
/**
|
|
1140
1140
|
*
|
|
1141
|
-
* @summary Create batch query from YAML file
|
|
1141
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1142
1142
|
* @param {string} projectId
|
|
1143
1143
|
* @param {string} instanceId
|
|
1144
1144
|
* @param {*} [options] Override http request option.
|
|
@@ -1147,7 +1147,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1147
1147
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1148
1148
|
/**
|
|
1149
1149
|
*
|
|
1150
|
-
* @summary Create document processing job by uploading file
|
|
1150
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1151
1151
|
* @param {string} projectId
|
|
1152
1152
|
* @param {string} instanceId
|
|
1153
1153
|
* @param {*} [options] Override http request option.
|
|
@@ -1156,7 +1156,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1156
1156
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1157
1157
|
/**
|
|
1158
1158
|
*
|
|
1159
|
-
* @summary Create evaluation from YAML file
|
|
1159
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1160
1160
|
* @param {string} projectId
|
|
1161
1161
|
* @param {string} instanceId
|
|
1162
1162
|
* @param {*} [options] Override http request option.
|
|
@@ -1165,7 +1165,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1165
1165
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1166
1166
|
/**
|
|
1167
1167
|
*
|
|
1168
|
-
* @summary Create processing profile from YAML
|
|
1168
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1169
1169
|
* @param {string} projectId
|
|
1170
1170
|
* @param {string} instanceId
|
|
1171
1171
|
* @param {*} [options] Override http request option.
|
|
@@ -1193,7 +1193,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1193
1193
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1194
1194
|
/**
|
|
1195
1195
|
*
|
|
1196
|
-
* @summary Download document artifacts as archive
|
|
1196
|
+
* @summary Download document artifacts as ZIP archive
|
|
1197
1197
|
* @param {string} projectId
|
|
1198
1198
|
* @param {string} instanceId
|
|
1199
1199
|
* @param {string} documentId
|
|
@@ -1357,7 +1357,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1357
1357
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1358
1358
|
/**
|
|
1359
1359
|
*
|
|
1360
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1360
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1361
1361
|
* @param {string} projectId
|
|
1362
1362
|
* @param {string} instanceId
|
|
1363
1363
|
* @param {string} documentId
|
|
@@ -1367,7 +1367,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1367
1367
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1368
1368
|
/**
|
|
1369
1369
|
*
|
|
1370
|
-
* @summary Validate batch query YAML without creating query
|
|
1370
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1371
1371
|
* @param {string} projectId
|
|
1372
1372
|
* @param {string} instanceId
|
|
1373
1373
|
* @param {*} [options] Override http request option.
|
|
@@ -1381,7 +1381,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1381
1381
|
export declare class DocumentProcessingApi extends BaseAPI {
|
|
1382
1382
|
/**
|
|
1383
1383
|
*
|
|
1384
|
-
* @summary Create batch query from YAML file
|
|
1384
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1385
1385
|
* @param {string} projectId
|
|
1386
1386
|
* @param {string} instanceId
|
|
1387
1387
|
* @param {*} [options] Override http request option.
|
|
@@ -1390,7 +1390,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1390
1390
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1391
1391
|
/**
|
|
1392
1392
|
*
|
|
1393
|
-
* @summary Create document processing job by uploading file
|
|
1393
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1394
1394
|
* @param {string} projectId
|
|
1395
1395
|
* @param {string} instanceId
|
|
1396
1396
|
* @param {*} [options] Override http request option.
|
|
@@ -1399,7 +1399,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1399
1399
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1400
1400
|
/**
|
|
1401
1401
|
*
|
|
1402
|
-
* @summary Create evaluation from YAML file
|
|
1402
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1403
1403
|
* @param {string} projectId
|
|
1404
1404
|
* @param {string} instanceId
|
|
1405
1405
|
* @param {*} [options] Override http request option.
|
|
@@ -1408,7 +1408,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1408
1408
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1409
1409
|
/**
|
|
1410
1410
|
*
|
|
1411
|
-
* @summary Create processing profile from YAML
|
|
1411
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1412
1412
|
* @param {string} projectId
|
|
1413
1413
|
* @param {string} instanceId
|
|
1414
1414
|
* @param {*} [options] Override http request option.
|
|
@@ -1436,7 +1436,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1436
1436
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1437
1437
|
/**
|
|
1438
1438
|
*
|
|
1439
|
-
* @summary Download document artifacts as archive
|
|
1439
|
+
* @summary Download document artifacts as ZIP archive
|
|
1440
1440
|
* @param {string} projectId
|
|
1441
1441
|
* @param {string} instanceId
|
|
1442
1442
|
* @param {string} documentId
|
|
@@ -1600,7 +1600,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1600
1600
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1601
1601
|
/**
|
|
1602
1602
|
*
|
|
1603
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1603
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1604
1604
|
* @param {string} projectId
|
|
1605
1605
|
* @param {string} instanceId
|
|
1606
1606
|
* @param {string} documentId
|
|
@@ -1610,7 +1610,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1610
1610
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1611
1611
|
/**
|
|
1612
1612
|
*
|
|
1613
|
-
* @summary Validate batch query YAML without creating query
|
|
1613
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1614
1614
|
* @param {string} projectId
|
|
1615
1615
|
* @param {string} instanceId
|
|
1616
1616
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -611,7 +611,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
611
611
|
return {
|
|
612
612
|
/**
|
|
613
613
|
*
|
|
614
|
-
* @summary Create batch query from YAML file
|
|
614
|
+
* @summary Create batch query from YAML file (multipart)
|
|
615
615
|
* @param {string} projectId
|
|
616
616
|
* @param {string} instanceId
|
|
617
617
|
* @param {*} [options] Override http request option.
|
|
@@ -645,7 +645,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
645
645
|
}),
|
|
646
646
|
/**
|
|
647
647
|
*
|
|
648
|
-
* @summary Create document processing job by uploading file
|
|
648
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
649
649
|
* @param {string} projectId
|
|
650
650
|
* @param {string} instanceId
|
|
651
651
|
* @param {*} [options] Override http request option.
|
|
@@ -679,7 +679,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
679
679
|
}),
|
|
680
680
|
/**
|
|
681
681
|
*
|
|
682
|
-
* @summary Create evaluation from YAML file
|
|
682
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
683
683
|
* @param {string} projectId
|
|
684
684
|
* @param {string} instanceId
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
@@ -713,7 +713,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
713
713
|
}),
|
|
714
714
|
/**
|
|
715
715
|
*
|
|
716
|
-
* @summary Create processing profile from YAML
|
|
716
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
717
717
|
* @param {string} projectId
|
|
718
718
|
* @param {string} instanceId
|
|
719
719
|
* @param {*} [options] Override http request option.
|
|
@@ -819,7 +819,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
819
819
|
}),
|
|
820
820
|
/**
|
|
821
821
|
*
|
|
822
|
-
* @summary Download document artifacts as archive
|
|
822
|
+
* @summary Download document artifacts as ZIP archive
|
|
823
823
|
* @param {string} projectId
|
|
824
824
|
* @param {string} instanceId
|
|
825
825
|
* @param {string} documentId
|
|
@@ -1441,7 +1441,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
1441
1441
|
}),
|
|
1442
1442
|
/**
|
|
1443
1443
|
*
|
|
1444
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1444
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1445
1445
|
* @param {string} projectId
|
|
1446
1446
|
* @param {string} instanceId
|
|
1447
1447
|
* @param {string} documentId
|
|
@@ -1479,7 +1479,7 @@ const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
1479
1479
|
}),
|
|
1480
1480
|
/**
|
|
1481
1481
|
*
|
|
1482
|
-
* @summary Validate batch query YAML without creating query
|
|
1482
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1483
1483
|
* @param {string} projectId
|
|
1484
1484
|
* @param {string} instanceId
|
|
1485
1485
|
* @param {*} [options] Override http request option.
|
|
@@ -1522,7 +1522,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1522
1522
|
return {
|
|
1523
1523
|
/**
|
|
1524
1524
|
*
|
|
1525
|
-
* @summary Create batch query from YAML file
|
|
1525
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1526
1526
|
* @param {string} projectId
|
|
1527
1527
|
* @param {string} instanceId
|
|
1528
1528
|
* @param {*} [options] Override http request option.
|
|
@@ -1539,7 +1539,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1539
1539
|
},
|
|
1540
1540
|
/**
|
|
1541
1541
|
*
|
|
1542
|
-
* @summary Create document processing job by uploading file
|
|
1542
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1543
1543
|
* @param {string} projectId
|
|
1544
1544
|
* @param {string} instanceId
|
|
1545
1545
|
* @param {*} [options] Override http request option.
|
|
@@ -1556,7 +1556,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1556
1556
|
},
|
|
1557
1557
|
/**
|
|
1558
1558
|
*
|
|
1559
|
-
* @summary Create evaluation from YAML file
|
|
1559
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1560
1560
|
* @param {string} projectId
|
|
1561
1561
|
* @param {string} instanceId
|
|
1562
1562
|
* @param {*} [options] Override http request option.
|
|
@@ -1573,7 +1573,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1573
1573
|
},
|
|
1574
1574
|
/**
|
|
1575
1575
|
*
|
|
1576
|
-
* @summary Create processing profile from YAML
|
|
1576
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1577
1577
|
* @param {string} projectId
|
|
1578
1578
|
* @param {string} instanceId
|
|
1579
1579
|
* @param {*} [options] Override http request option.
|
|
@@ -1625,7 +1625,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1625
1625
|
},
|
|
1626
1626
|
/**
|
|
1627
1627
|
*
|
|
1628
|
-
* @summary Download document artifacts as archive
|
|
1628
|
+
* @summary Download document artifacts as ZIP archive
|
|
1629
1629
|
* @param {string} projectId
|
|
1630
1630
|
* @param {string} instanceId
|
|
1631
1631
|
* @param {string} documentId
|
|
@@ -1925,7 +1925,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1925
1925
|
},
|
|
1926
1926
|
/**
|
|
1927
1927
|
*
|
|
1928
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1928
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1929
1929
|
* @param {string} projectId
|
|
1930
1930
|
* @param {string} instanceId
|
|
1931
1931
|
* @param {string} documentId
|
|
@@ -1943,7 +1943,7 @@ const DocumentProcessingApiFp = function (configuration) {
|
|
|
1943
1943
|
},
|
|
1944
1944
|
/**
|
|
1945
1945
|
*
|
|
1946
|
-
* @summary Validate batch query YAML without creating query
|
|
1946
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1947
1947
|
* @param {string} projectId
|
|
1948
1948
|
* @param {string} instanceId
|
|
1949
1949
|
* @param {*} [options] Override http request option.
|
|
@@ -1969,7 +1969,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
1969
1969
|
return {
|
|
1970
1970
|
/**
|
|
1971
1971
|
*
|
|
1972
|
-
* @summary Create batch query from YAML file
|
|
1972
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1973
1973
|
* @param {string} projectId
|
|
1974
1974
|
* @param {string} instanceId
|
|
1975
1975
|
* @param {*} [options] Override http request option.
|
|
@@ -1980,7 +1980,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
1980
1980
|
},
|
|
1981
1981
|
/**
|
|
1982
1982
|
*
|
|
1983
|
-
* @summary Create document processing job by uploading file
|
|
1983
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1984
1984
|
* @param {string} projectId
|
|
1985
1985
|
* @param {string} instanceId
|
|
1986
1986
|
* @param {*} [options] Override http request option.
|
|
@@ -1991,7 +1991,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
1991
1991
|
},
|
|
1992
1992
|
/**
|
|
1993
1993
|
*
|
|
1994
|
-
* @summary Create evaluation from YAML file
|
|
1994
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1995
1995
|
* @param {string} projectId
|
|
1996
1996
|
* @param {string} instanceId
|
|
1997
1997
|
* @param {*} [options] Override http request option.
|
|
@@ -2002,7 +2002,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
2002
2002
|
},
|
|
2003
2003
|
/**
|
|
2004
2004
|
*
|
|
2005
|
-
* @summary Create processing profile from YAML
|
|
2005
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2006
2006
|
* @param {string} projectId
|
|
2007
2007
|
* @param {string} instanceId
|
|
2008
2008
|
* @param {*} [options] Override http request option.
|
|
@@ -2036,7 +2036,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
2036
2036
|
},
|
|
2037
2037
|
/**
|
|
2038
2038
|
*
|
|
2039
|
-
* @summary Download document artifacts as archive
|
|
2039
|
+
* @summary Download document artifacts as ZIP archive
|
|
2040
2040
|
* @param {string} projectId
|
|
2041
2041
|
* @param {string} instanceId
|
|
2042
2042
|
* @param {string} documentId
|
|
@@ -2234,7 +2234,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
2234
2234
|
},
|
|
2235
2235
|
/**
|
|
2236
2236
|
*
|
|
2237
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2237
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2238
2238
|
* @param {string} projectId
|
|
2239
2239
|
* @param {string} instanceId
|
|
2240
2240
|
* @param {string} documentId
|
|
@@ -2246,7 +2246,7 @@ const DocumentProcessingApiFactory = function (configuration, basePath, axios) {
|
|
|
2246
2246
|
},
|
|
2247
2247
|
/**
|
|
2248
2248
|
*
|
|
2249
|
-
* @summary Validate batch query YAML without creating query
|
|
2249
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2250
2250
|
* @param {string} projectId
|
|
2251
2251
|
* @param {string} instanceId
|
|
2252
2252
|
* @param {*} [options] Override http request option.
|
|
@@ -2264,7 +2264,7 @@ exports.DocumentProcessingApiFactory = DocumentProcessingApiFactory;
|
|
|
2264
2264
|
class DocumentProcessingApi extends base_1.BaseAPI {
|
|
2265
2265
|
/**
|
|
2266
2266
|
*
|
|
2267
|
-
* @summary Create batch query from YAML file
|
|
2267
|
+
* @summary Create batch query from YAML file (multipart)
|
|
2268
2268
|
* @param {string} projectId
|
|
2269
2269
|
* @param {string} instanceId
|
|
2270
2270
|
* @param {*} [options] Override http request option.
|
|
@@ -2275,7 +2275,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2275
2275
|
}
|
|
2276
2276
|
/**
|
|
2277
2277
|
*
|
|
2278
|
-
* @summary Create document processing job by uploading file
|
|
2278
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
2279
2279
|
* @param {string} projectId
|
|
2280
2280
|
* @param {string} instanceId
|
|
2281
2281
|
* @param {*} [options] Override http request option.
|
|
@@ -2286,7 +2286,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2286
2286
|
}
|
|
2287
2287
|
/**
|
|
2288
2288
|
*
|
|
2289
|
-
* @summary Create evaluation from YAML file
|
|
2289
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
2290
2290
|
* @param {string} projectId
|
|
2291
2291
|
* @param {string} instanceId
|
|
2292
2292
|
* @param {*} [options] Override http request option.
|
|
@@ -2297,7 +2297,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2297
2297
|
}
|
|
2298
2298
|
/**
|
|
2299
2299
|
*
|
|
2300
|
-
* @summary Create processing profile from YAML
|
|
2300
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2301
2301
|
* @param {string} projectId
|
|
2302
2302
|
* @param {string} instanceId
|
|
2303
2303
|
* @param {*} [options] Override http request option.
|
|
@@ -2331,7 +2331,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2331
2331
|
}
|
|
2332
2332
|
/**
|
|
2333
2333
|
*
|
|
2334
|
-
* @summary Download document artifacts as archive
|
|
2334
|
+
* @summary Download document artifacts as ZIP archive
|
|
2335
2335
|
* @param {string} projectId
|
|
2336
2336
|
* @param {string} instanceId
|
|
2337
2337
|
* @param {string} documentId
|
|
@@ -2529,7 +2529,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2529
2529
|
}
|
|
2530
2530
|
/**
|
|
2531
2531
|
*
|
|
2532
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2532
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2533
2533
|
* @param {string} projectId
|
|
2534
2534
|
* @param {string} instanceId
|
|
2535
2535
|
* @param {string} documentId
|
|
@@ -2541,7 +2541,7 @@ class DocumentProcessingApi extends base_1.BaseAPI {
|
|
|
2541
2541
|
}
|
|
2542
2542
|
/**
|
|
2543
2543
|
*
|
|
2544
|
-
* @summary Validate batch query YAML without creating query
|
|
2544
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2545
2545
|
* @param {string} projectId
|
|
2546
2546
|
* @param {string} instanceId
|
|
2547
2547
|
* @param {*} [options] Override http request option.
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -652,7 +652,7 @@ export declare class AuthApi extends BaseAPI {
|
|
|
652
652
|
export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
653
653
|
/**
|
|
654
654
|
*
|
|
655
|
-
* @summary Create batch query from YAML file
|
|
655
|
+
* @summary Create batch query from YAML file (multipart)
|
|
656
656
|
* @param {string} projectId
|
|
657
657
|
* @param {string} instanceId
|
|
658
658
|
* @param {*} [options] Override http request option.
|
|
@@ -661,7 +661,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
661
661
|
documentProcessingControllerCreateBatchQuery: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
662
662
|
/**
|
|
663
663
|
*
|
|
664
|
-
* @summary Create document processing job by uploading file
|
|
664
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
665
665
|
* @param {string} projectId
|
|
666
666
|
* @param {string} instanceId
|
|
667
667
|
* @param {*} [options] Override http request option.
|
|
@@ -670,7 +670,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
670
670
|
documentProcessingControllerCreateDocumentProcessingJob: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
671
671
|
/**
|
|
672
672
|
*
|
|
673
|
-
* @summary Create evaluation from YAML file
|
|
673
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
674
674
|
* @param {string} projectId
|
|
675
675
|
* @param {string} instanceId
|
|
676
676
|
* @param {*} [options] Override http request option.
|
|
@@ -679,7 +679,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
679
679
|
documentProcessingControllerCreateEval: (projectId: string, instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
680
680
|
/**
|
|
681
681
|
*
|
|
682
|
-
* @summary Create processing profile from YAML
|
|
682
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
683
683
|
* @param {string} projectId
|
|
684
684
|
* @param {string} instanceId
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
@@ -707,7 +707,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
707
707
|
documentProcessingControllerDeleteWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
708
708
|
/**
|
|
709
709
|
*
|
|
710
|
-
* @summary Download document artifacts as archive
|
|
710
|
+
* @summary Download document artifacts as ZIP archive
|
|
711
711
|
* @param {string} projectId
|
|
712
712
|
* @param {string} instanceId
|
|
713
713
|
* @param {string} documentId
|
|
@@ -871,7 +871,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
871
871
|
documentProcessingControllerUpdateWebhook: (projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
872
872
|
/**
|
|
873
873
|
*
|
|
874
|
-
* @summary Validate eval YAML without creating evaluation
|
|
874
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
875
875
|
* @param {string} projectId
|
|
876
876
|
* @param {string} instanceId
|
|
877
877
|
* @param {string} documentId
|
|
@@ -881,7 +881,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
881
881
|
documentProcessingControllerValidateEvalYaml: (projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
882
882
|
/**
|
|
883
883
|
*
|
|
884
|
-
* @summary Validate batch query YAML without creating query
|
|
884
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
885
885
|
* @param {string} projectId
|
|
886
886
|
* @param {string} instanceId
|
|
887
887
|
* @param {*} [options] Override http request option.
|
|
@@ -895,7 +895,7 @@ export declare const DocumentProcessingApiAxiosParamCreator: (configuration?: Co
|
|
|
895
895
|
export declare const DocumentProcessingApiFp: (configuration?: Configuration) => {
|
|
896
896
|
/**
|
|
897
897
|
*
|
|
898
|
-
* @summary Create batch query from YAML file
|
|
898
|
+
* @summary Create batch query from YAML file (multipart)
|
|
899
899
|
* @param {string} projectId
|
|
900
900
|
* @param {string} instanceId
|
|
901
901
|
* @param {*} [options] Override http request option.
|
|
@@ -904,7 +904,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
904
904
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
905
905
|
/**
|
|
906
906
|
*
|
|
907
|
-
* @summary Create document processing job by uploading file
|
|
907
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
908
908
|
* @param {string} projectId
|
|
909
909
|
* @param {string} instanceId
|
|
910
910
|
* @param {*} [options] Override http request option.
|
|
@@ -913,7 +913,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
913
913
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
914
914
|
/**
|
|
915
915
|
*
|
|
916
|
-
* @summary Create evaluation from YAML file
|
|
916
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
917
917
|
* @param {string} projectId
|
|
918
918
|
* @param {string} instanceId
|
|
919
919
|
* @param {*} [options] Override http request option.
|
|
@@ -922,7 +922,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
922
922
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
923
923
|
/**
|
|
924
924
|
*
|
|
925
|
-
* @summary Create processing profile from YAML
|
|
925
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
926
926
|
* @param {string} projectId
|
|
927
927
|
* @param {string} instanceId
|
|
928
928
|
* @param {*} [options] Override http request option.
|
|
@@ -950,7 +950,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
950
950
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
951
951
|
/**
|
|
952
952
|
*
|
|
953
|
-
* @summary Download document artifacts as archive
|
|
953
|
+
* @summary Download document artifacts as ZIP archive
|
|
954
954
|
* @param {string} projectId
|
|
955
955
|
* @param {string} instanceId
|
|
956
956
|
* @param {string} documentId
|
|
@@ -1114,7 +1114,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1114
1114
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1115
1115
|
/**
|
|
1116
1116
|
*
|
|
1117
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1117
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1118
1118
|
* @param {string} projectId
|
|
1119
1119
|
* @param {string} instanceId
|
|
1120
1120
|
* @param {string} documentId
|
|
@@ -1124,7 +1124,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1124
1124
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1125
1125
|
/**
|
|
1126
1126
|
*
|
|
1127
|
-
* @summary Validate batch query YAML without creating query
|
|
1127
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1128
1128
|
* @param {string} projectId
|
|
1129
1129
|
* @param {string} instanceId
|
|
1130
1130
|
* @param {*} [options] Override http request option.
|
|
@@ -1138,7 +1138,7 @@ export declare const DocumentProcessingApiFp: (configuration?: Configuration) =>
|
|
|
1138
1138
|
export declare const DocumentProcessingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1139
1139
|
/**
|
|
1140
1140
|
*
|
|
1141
|
-
* @summary Create batch query from YAML file
|
|
1141
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1142
1142
|
* @param {string} projectId
|
|
1143
1143
|
* @param {string} instanceId
|
|
1144
1144
|
* @param {*} [options] Override http request option.
|
|
@@ -1147,7 +1147,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1147
1147
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1148
1148
|
/**
|
|
1149
1149
|
*
|
|
1150
|
-
* @summary Create document processing job by uploading file
|
|
1150
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1151
1151
|
* @param {string} projectId
|
|
1152
1152
|
* @param {string} instanceId
|
|
1153
1153
|
* @param {*} [options] Override http request option.
|
|
@@ -1156,7 +1156,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1156
1156
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1157
1157
|
/**
|
|
1158
1158
|
*
|
|
1159
|
-
* @summary Create evaluation from YAML file
|
|
1159
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1160
1160
|
* @param {string} projectId
|
|
1161
1161
|
* @param {string} instanceId
|
|
1162
1162
|
* @param {*} [options] Override http request option.
|
|
@@ -1165,7 +1165,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1165
1165
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1166
1166
|
/**
|
|
1167
1167
|
*
|
|
1168
|
-
* @summary Create processing profile from YAML
|
|
1168
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1169
1169
|
* @param {string} projectId
|
|
1170
1170
|
* @param {string} instanceId
|
|
1171
1171
|
* @param {*} [options] Override http request option.
|
|
@@ -1193,7 +1193,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1193
1193
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1194
1194
|
/**
|
|
1195
1195
|
*
|
|
1196
|
-
* @summary Download document artifacts as archive
|
|
1196
|
+
* @summary Download document artifacts as ZIP archive
|
|
1197
1197
|
* @param {string} projectId
|
|
1198
1198
|
* @param {string} instanceId
|
|
1199
1199
|
* @param {string} documentId
|
|
@@ -1357,7 +1357,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1357
1357
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1358
1358
|
/**
|
|
1359
1359
|
*
|
|
1360
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1360
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1361
1361
|
* @param {string} projectId
|
|
1362
1362
|
* @param {string} instanceId
|
|
1363
1363
|
* @param {string} documentId
|
|
@@ -1367,7 +1367,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1367
1367
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
1368
1368
|
/**
|
|
1369
1369
|
*
|
|
1370
|
-
* @summary Validate batch query YAML without creating query
|
|
1370
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1371
1371
|
* @param {string} projectId
|
|
1372
1372
|
* @param {string} instanceId
|
|
1373
1373
|
* @param {*} [options] Override http request option.
|
|
@@ -1381,7 +1381,7 @@ export declare const DocumentProcessingApiFactory: (configuration?: Configuratio
|
|
|
1381
1381
|
export declare class DocumentProcessingApi extends BaseAPI {
|
|
1382
1382
|
/**
|
|
1383
1383
|
*
|
|
1384
|
-
* @summary Create batch query from YAML file
|
|
1384
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1385
1385
|
* @param {string} projectId
|
|
1386
1386
|
* @param {string} instanceId
|
|
1387
1387
|
* @param {*} [options] Override http request option.
|
|
@@ -1390,7 +1390,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1390
1390
|
documentProcessingControllerCreateBatchQuery(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1391
1391
|
/**
|
|
1392
1392
|
*
|
|
1393
|
-
* @summary Create document processing job by uploading file
|
|
1393
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1394
1394
|
* @param {string} projectId
|
|
1395
1395
|
* @param {string} instanceId
|
|
1396
1396
|
* @param {*} [options] Override http request option.
|
|
@@ -1399,7 +1399,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1399
1399
|
documentProcessingControllerCreateDocumentProcessingJob(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1400
1400
|
/**
|
|
1401
1401
|
*
|
|
1402
|
-
* @summary Create evaluation from YAML file
|
|
1402
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1403
1403
|
* @param {string} projectId
|
|
1404
1404
|
* @param {string} instanceId
|
|
1405
1405
|
* @param {*} [options] Override http request option.
|
|
@@ -1408,7 +1408,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1408
1408
|
documentProcessingControllerCreateEval(projectId: string, instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1409
1409
|
/**
|
|
1410
1410
|
*
|
|
1411
|
-
* @summary Create processing profile from YAML
|
|
1411
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1412
1412
|
* @param {string} projectId
|
|
1413
1413
|
* @param {string} instanceId
|
|
1414
1414
|
* @param {*} [options] Override http request option.
|
|
@@ -1436,7 +1436,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1436
1436
|
documentProcessingControllerDeleteWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1437
1437
|
/**
|
|
1438
1438
|
*
|
|
1439
|
-
* @summary Download document artifacts as archive
|
|
1439
|
+
* @summary Download document artifacts as ZIP archive
|
|
1440
1440
|
* @param {string} projectId
|
|
1441
1441
|
* @param {string} instanceId
|
|
1442
1442
|
* @param {string} documentId
|
|
@@ -1600,7 +1600,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1600
1600
|
documentProcessingControllerUpdateWebhook(projectId: string, instanceId: string, webhookId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1601
1601
|
/**
|
|
1602
1602
|
*
|
|
1603
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1603
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1604
1604
|
* @param {string} projectId
|
|
1605
1605
|
* @param {string} instanceId
|
|
1606
1606
|
* @param {string} documentId
|
|
@@ -1610,7 +1610,7 @@ export declare class DocumentProcessingApi extends BaseAPI {
|
|
|
1610
1610
|
documentProcessingControllerValidateEvalYaml(projectId: string, instanceId: string, documentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
1611
1611
|
/**
|
|
1612
1612
|
*
|
|
1613
|
-
* @summary Validate batch query YAML without creating query
|
|
1613
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1614
1614
|
* @param {string} projectId
|
|
1615
1615
|
* @param {string} instanceId
|
|
1616
1616
|
* @param {*} [options] Override http request option.
|
package/dist/esm/api.js
CHANGED
|
@@ -603,7 +603,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
603
603
|
return {
|
|
604
604
|
/**
|
|
605
605
|
*
|
|
606
|
-
* @summary Create batch query from YAML file
|
|
606
|
+
* @summary Create batch query from YAML file (multipart)
|
|
607
607
|
* @param {string} projectId
|
|
608
608
|
* @param {string} instanceId
|
|
609
609
|
* @param {*} [options] Override http request option.
|
|
@@ -637,7 +637,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
637
637
|
}),
|
|
638
638
|
/**
|
|
639
639
|
*
|
|
640
|
-
* @summary Create document processing job by uploading file
|
|
640
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
641
641
|
* @param {string} projectId
|
|
642
642
|
* @param {string} instanceId
|
|
643
643
|
* @param {*} [options] Override http request option.
|
|
@@ -671,7 +671,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
671
671
|
}),
|
|
672
672
|
/**
|
|
673
673
|
*
|
|
674
|
-
* @summary Create evaluation from YAML file
|
|
674
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
675
675
|
* @param {string} projectId
|
|
676
676
|
* @param {string} instanceId
|
|
677
677
|
* @param {*} [options] Override http request option.
|
|
@@ -705,7 +705,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
705
705
|
}),
|
|
706
706
|
/**
|
|
707
707
|
*
|
|
708
|
-
* @summary Create processing profile from YAML
|
|
708
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
709
709
|
* @param {string} projectId
|
|
710
710
|
* @param {string} instanceId
|
|
711
711
|
* @param {*} [options] Override http request option.
|
|
@@ -811,7 +811,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
811
811
|
}),
|
|
812
812
|
/**
|
|
813
813
|
*
|
|
814
|
-
* @summary Download document artifacts as archive
|
|
814
|
+
* @summary Download document artifacts as ZIP archive
|
|
815
815
|
* @param {string} projectId
|
|
816
816
|
* @param {string} instanceId
|
|
817
817
|
* @param {string} documentId
|
|
@@ -1433,7 +1433,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
1433
1433
|
}),
|
|
1434
1434
|
/**
|
|
1435
1435
|
*
|
|
1436
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1436
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1437
1437
|
* @param {string} projectId
|
|
1438
1438
|
* @param {string} instanceId
|
|
1439
1439
|
* @param {string} documentId
|
|
@@ -1471,7 +1471,7 @@ export const DocumentProcessingApiAxiosParamCreator = function (configuration) {
|
|
|
1471
1471
|
}),
|
|
1472
1472
|
/**
|
|
1473
1473
|
*
|
|
1474
|
-
* @summary Validate batch query YAML without creating query
|
|
1474
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1475
1475
|
* @param {string} projectId
|
|
1476
1476
|
* @param {string} instanceId
|
|
1477
1477
|
* @param {*} [options] Override http request option.
|
|
@@ -1513,7 +1513,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1513
1513
|
return {
|
|
1514
1514
|
/**
|
|
1515
1515
|
*
|
|
1516
|
-
* @summary Create batch query from YAML file
|
|
1516
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1517
1517
|
* @param {string} projectId
|
|
1518
1518
|
* @param {string} instanceId
|
|
1519
1519
|
* @param {*} [options] Override http request option.
|
|
@@ -1530,7 +1530,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1530
1530
|
},
|
|
1531
1531
|
/**
|
|
1532
1532
|
*
|
|
1533
|
-
* @summary Create document processing job by uploading file
|
|
1533
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1534
1534
|
* @param {string} projectId
|
|
1535
1535
|
* @param {string} instanceId
|
|
1536
1536
|
* @param {*} [options] Override http request option.
|
|
@@ -1547,7 +1547,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1547
1547
|
},
|
|
1548
1548
|
/**
|
|
1549
1549
|
*
|
|
1550
|
-
* @summary Create evaluation from YAML file
|
|
1550
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1551
1551
|
* @param {string} projectId
|
|
1552
1552
|
* @param {string} instanceId
|
|
1553
1553
|
* @param {*} [options] Override http request option.
|
|
@@ -1564,7 +1564,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1564
1564
|
},
|
|
1565
1565
|
/**
|
|
1566
1566
|
*
|
|
1567
|
-
* @summary Create processing profile from YAML
|
|
1567
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1568
1568
|
* @param {string} projectId
|
|
1569
1569
|
* @param {string} instanceId
|
|
1570
1570
|
* @param {*} [options] Override http request option.
|
|
@@ -1616,7 +1616,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1616
1616
|
},
|
|
1617
1617
|
/**
|
|
1618
1618
|
*
|
|
1619
|
-
* @summary Download document artifacts as archive
|
|
1619
|
+
* @summary Download document artifacts as ZIP archive
|
|
1620
1620
|
* @param {string} projectId
|
|
1621
1621
|
* @param {string} instanceId
|
|
1622
1622
|
* @param {string} documentId
|
|
@@ -1916,7 +1916,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1916
1916
|
},
|
|
1917
1917
|
/**
|
|
1918
1918
|
*
|
|
1919
|
-
* @summary Validate eval YAML without creating evaluation
|
|
1919
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
1920
1920
|
* @param {string} projectId
|
|
1921
1921
|
* @param {string} instanceId
|
|
1922
1922
|
* @param {string} documentId
|
|
@@ -1934,7 +1934,7 @@ export const DocumentProcessingApiFp = function (configuration) {
|
|
|
1934
1934
|
},
|
|
1935
1935
|
/**
|
|
1936
1936
|
*
|
|
1937
|
-
* @summary Validate batch query YAML without creating query
|
|
1937
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
1938
1938
|
* @param {string} projectId
|
|
1939
1939
|
* @param {string} instanceId
|
|
1940
1940
|
* @param {*} [options] Override http request option.
|
|
@@ -1959,7 +1959,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
1959
1959
|
return {
|
|
1960
1960
|
/**
|
|
1961
1961
|
*
|
|
1962
|
-
* @summary Create batch query from YAML file
|
|
1962
|
+
* @summary Create batch query from YAML file (multipart)
|
|
1963
1963
|
* @param {string} projectId
|
|
1964
1964
|
* @param {string} instanceId
|
|
1965
1965
|
* @param {*} [options] Override http request option.
|
|
@@ -1970,7 +1970,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
1970
1970
|
},
|
|
1971
1971
|
/**
|
|
1972
1972
|
*
|
|
1973
|
-
* @summary Create document processing job by uploading file
|
|
1973
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
1974
1974
|
* @param {string} projectId
|
|
1975
1975
|
* @param {string} instanceId
|
|
1976
1976
|
* @param {*} [options] Override http request option.
|
|
@@ -1981,7 +1981,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
1981
1981
|
},
|
|
1982
1982
|
/**
|
|
1983
1983
|
*
|
|
1984
|
-
* @summary Create evaluation from YAML file
|
|
1984
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
1985
1985
|
* @param {string} projectId
|
|
1986
1986
|
* @param {string} instanceId
|
|
1987
1987
|
* @param {*} [options] Override http request option.
|
|
@@ -1992,7 +1992,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
1992
1992
|
},
|
|
1993
1993
|
/**
|
|
1994
1994
|
*
|
|
1995
|
-
* @summary Create processing profile from YAML
|
|
1995
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
1996
1996
|
* @param {string} projectId
|
|
1997
1997
|
* @param {string} instanceId
|
|
1998
1998
|
* @param {*} [options] Override http request option.
|
|
@@ -2026,7 +2026,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
2026
2026
|
},
|
|
2027
2027
|
/**
|
|
2028
2028
|
*
|
|
2029
|
-
* @summary Download document artifacts as archive
|
|
2029
|
+
* @summary Download document artifacts as ZIP archive
|
|
2030
2030
|
* @param {string} projectId
|
|
2031
2031
|
* @param {string} instanceId
|
|
2032
2032
|
* @param {string} documentId
|
|
@@ -2224,7 +2224,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
2224
2224
|
},
|
|
2225
2225
|
/**
|
|
2226
2226
|
*
|
|
2227
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2227
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2228
2228
|
* @param {string} projectId
|
|
2229
2229
|
* @param {string} instanceId
|
|
2230
2230
|
* @param {string} documentId
|
|
@@ -2236,7 +2236,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
2236
2236
|
},
|
|
2237
2237
|
/**
|
|
2238
2238
|
*
|
|
2239
|
-
* @summary Validate batch query YAML without creating query
|
|
2239
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2240
2240
|
* @param {string} projectId
|
|
2241
2241
|
* @param {string} instanceId
|
|
2242
2242
|
* @param {*} [options] Override http request option.
|
|
@@ -2253,7 +2253,7 @@ export const DocumentProcessingApiFactory = function (configuration, basePath, a
|
|
|
2253
2253
|
export class DocumentProcessingApi extends BaseAPI {
|
|
2254
2254
|
/**
|
|
2255
2255
|
*
|
|
2256
|
-
* @summary Create batch query from YAML file
|
|
2256
|
+
* @summary Create batch query from YAML file (multipart)
|
|
2257
2257
|
* @param {string} projectId
|
|
2258
2258
|
* @param {string} instanceId
|
|
2259
2259
|
* @param {*} [options] Override http request option.
|
|
@@ -2264,7 +2264,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2264
2264
|
}
|
|
2265
2265
|
/**
|
|
2266
2266
|
*
|
|
2267
|
-
* @summary Create document processing job by uploading file
|
|
2267
|
+
* @summary Create document processing job by uploading file (multipart)
|
|
2268
2268
|
* @param {string} projectId
|
|
2269
2269
|
* @param {string} instanceId
|
|
2270
2270
|
* @param {*} [options] Override http request option.
|
|
@@ -2275,7 +2275,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2275
2275
|
}
|
|
2276
2276
|
/**
|
|
2277
2277
|
*
|
|
2278
|
-
* @summary Create evaluation from YAML file
|
|
2278
|
+
* @summary Create evaluation from YAML file (multipart)
|
|
2279
2279
|
* @param {string} projectId
|
|
2280
2280
|
* @param {string} instanceId
|
|
2281
2281
|
* @param {*} [options] Override http request option.
|
|
@@ -2286,7 +2286,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2286
2286
|
}
|
|
2287
2287
|
/**
|
|
2288
2288
|
*
|
|
2289
|
-
* @summary Create processing profile from YAML
|
|
2289
|
+
* @summary Create processing profile from YAML file (multipart)
|
|
2290
2290
|
* @param {string} projectId
|
|
2291
2291
|
* @param {string} instanceId
|
|
2292
2292
|
* @param {*} [options] Override http request option.
|
|
@@ -2320,7 +2320,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2320
2320
|
}
|
|
2321
2321
|
/**
|
|
2322
2322
|
*
|
|
2323
|
-
* @summary Download document artifacts as archive
|
|
2323
|
+
* @summary Download document artifacts as ZIP archive
|
|
2324
2324
|
* @param {string} projectId
|
|
2325
2325
|
* @param {string} instanceId
|
|
2326
2326
|
* @param {string} documentId
|
|
@@ -2518,7 +2518,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2518
2518
|
}
|
|
2519
2519
|
/**
|
|
2520
2520
|
*
|
|
2521
|
-
* @summary Validate eval YAML without creating evaluation
|
|
2521
|
+
* @summary Validate eval YAML without creating evaluation (multipart)
|
|
2522
2522
|
* @param {string} projectId
|
|
2523
2523
|
* @param {string} instanceId
|
|
2524
2524
|
* @param {string} documentId
|
|
@@ -2530,7 +2530,7 @@ export class DocumentProcessingApi extends BaseAPI {
|
|
|
2530
2530
|
}
|
|
2531
2531
|
/**
|
|
2532
2532
|
*
|
|
2533
|
-
* @summary Validate batch query YAML without creating query
|
|
2533
|
+
* @summary Validate batch query YAML without creating query (multipart)
|
|
2534
2534
|
* @param {string} projectId
|
|
2535
2535
|
* @param {string} instanceId
|
|
2536
2536
|
* @param {*} [options] Override http request option.
|
|
@@ -4,13 +4,13 @@ All URIs are relative to *http://localhost*
|
|
|
4
4
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
-
|[**documentProcessingControllerCreateBatchQuery**](#documentprocessingcontrollercreatebatchquery) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries | Create batch query from YAML file|
|
|
8
|
-
|[**documentProcessingControllerCreateDocumentProcessingJob**](#documentprocessingcontrollercreatedocumentprocessingjob) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents | Create document processing job by uploading file|
|
|
9
|
-
|[**documentProcessingControllerCreateEval**](#documentprocessingcontrollercreateeval) | **POST** /projects/{projectId}/document-processing/{instanceId}/evals | Create evaluation from YAML file|
|
|
10
|
-
|[**documentProcessingControllerCreateProfile**](#documentprocessingcontrollercreateprofile) | **POST** /projects/{projectId}/document-processing/{instanceId}/profiles | Create processing profile from YAML|
|
|
7
|
+
|[**documentProcessingControllerCreateBatchQuery**](#documentprocessingcontrollercreatebatchquery) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries | Create batch query from YAML file (multipart)|
|
|
8
|
+
|[**documentProcessingControllerCreateDocumentProcessingJob**](#documentprocessingcontrollercreatedocumentprocessingjob) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents | Create document processing job by uploading file (multipart)|
|
|
9
|
+
|[**documentProcessingControllerCreateEval**](#documentprocessingcontrollercreateeval) | **POST** /projects/{projectId}/document-processing/{instanceId}/evals | Create evaluation from YAML file (multipart)|
|
|
10
|
+
|[**documentProcessingControllerCreateProfile**](#documentprocessingcontrollercreateprofile) | **POST** /projects/{projectId}/document-processing/{instanceId}/profiles | Create processing profile from YAML file (multipart)|
|
|
11
11
|
|[**documentProcessingControllerCreateWebhook**](#documentprocessingcontrollercreatewebhook) | **POST** /projects/{projectId}/document-processing/{instanceId}/webhooks | Create webhook for receiving notifications|
|
|
12
12
|
|[**documentProcessingControllerDeleteWebhook**](#documentprocessingcontrollerdeletewebhook) | **DELETE** /projects/{projectId}/document-processing/{instanceId}/webhooks/{webhookId} | Delete webhook|
|
|
13
|
-
|[**documentProcessingControllerDownloadDocumentArtifacts**](#documentprocessingcontrollerdownloaddocumentartifacts) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/artifacts | Download document artifacts as archive|
|
|
13
|
+
|[**documentProcessingControllerDownloadDocumentArtifacts**](#documentprocessingcontrollerdownloaddocumentartifacts) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/artifacts | Download document artifacts as ZIP archive|
|
|
14
14
|
|[**documentProcessingControllerGetDocument**](#documentprocessingcontrollergetdocument) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId} | Get processed document by ID|
|
|
15
15
|
|[**documentProcessingControllerGetEval**](#documentprocessingcontrollergeteval) | **GET** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/{evalId} | Get evaluation details by document ID and eval ID|
|
|
16
16
|
|[**documentProcessingControllerGetHealth**](#documentprocessingcontrollergethealth) | **GET** /projects/{projectId}/document-processing/{instanceId}/health | Get document processing API client health|
|
|
@@ -27,8 +27,8 @@ All URIs are relative to *http://localhost*
|
|
|
27
27
|
|[**documentProcessingControllerListQueries**](#documentprocessingcontrollerlistqueries) | **GET** /projects/{projectId}/document-processing/{instanceId}/queries | List batch queries with pagination and filters|
|
|
28
28
|
|[**documentProcessingControllerListWebhooks**](#documentprocessingcontrollerlistwebhooks) | **GET** /projects/{projectId}/document-processing/{instanceId}/webhooks | List webhooks with pagination|
|
|
29
29
|
|[**documentProcessingControllerUpdateWebhook**](#documentprocessingcontrollerupdatewebhook) | **PUT** /projects/{projectId}/document-processing/{instanceId}/webhooks/{webhookId} | Update webhook configuration|
|
|
30
|
-
|[**documentProcessingControllerValidateEvalYaml**](#documentprocessingcontrollervalidateevalyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/validate | Validate eval YAML without creating evaluation|
|
|
31
|
-
|[**documentProcessingControllerValidateQueryYaml**](#documentprocessingcontrollervalidatequeryyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries/validate | Validate batch query YAML without creating query|
|
|
30
|
+
|[**documentProcessingControllerValidateEvalYaml**](#documentprocessingcontrollervalidateevalyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/documents/{documentId}/evals/validate | Validate eval YAML without creating evaluation (multipart)|
|
|
31
|
+
|[**documentProcessingControllerValidateQueryYaml**](#documentprocessingcontrollervalidatequeryyaml) | **POST** /projects/{projectId}/document-processing/{instanceId}/queries/validate | Validate batch query YAML without creating query (multipart)|
|
|
32
32
|
|
|
33
33
|
# **documentProcessingControllerCreateBatchQuery**
|
|
34
34
|
> object documentProcessingControllerCreateBatchQuery()
|