@nestbox-ai/admin 1.0.66 → 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 +3 -3
- package/api.ts +4 -4
- package/dist/api.d.ts +4 -4
- package/dist/api.js +4 -4
- package/dist/esm/api.d.ts +4 -4
- package/dist/esm/api.js +4 -4
- package/docs/DocumentProcessingApi.md +1 -1
- 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):_
|
|
@@ -65,7 +65,7 @@ Class | Method | HTTP request | Description
|
|
|
65
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
|
package/api.ts
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
package/dist/api.d.ts
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
package/dist/api.js
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
package/dist/esm/api.js
CHANGED
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -10,7 +10,7 @@ All URIs are relative to *http://localhost*
|
|
|
10
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|
|