@nestbox-ai/doc-processing-api 1.0.64 → 1.0.66
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 +2 -2
- package/api.ts +4 -0
- package/dist/api.d.ts +4 -0
- package/dist/esm/api.d.ts +4 -0
- package/docs/ProfileDto.md +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @nestbox-ai/doc-processing-api@1.0.
|
|
1
|
+
## @nestbox-ai/doc-processing-api@1.0.66
|
|
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/doc-processing-api@1.0.
|
|
39
|
+
npm install @nestbox-ai/doc-processing-api@1.0.66 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -566,6 +566,10 @@ export interface ProfileDto {
|
|
|
566
566
|
* Optional checksum of the uploaded YAML file
|
|
567
567
|
*/
|
|
568
568
|
'yamlSha256'?: string;
|
|
569
|
+
/**
|
|
570
|
+
* Content of the YAML file
|
|
571
|
+
*/
|
|
572
|
+
'yamlFileContent'?: string;
|
|
569
573
|
}
|
|
570
574
|
export interface QueryCreateResponseDto {
|
|
571
575
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -545,6 +545,10 @@ export interface ProfileDto {
|
|
|
545
545
|
* Optional checksum of the uploaded YAML file
|
|
546
546
|
*/
|
|
547
547
|
'yamlSha256'?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Content of the YAML file
|
|
550
|
+
*/
|
|
551
|
+
'yamlFileContent'?: string;
|
|
548
552
|
}
|
|
549
553
|
export interface QueryCreateResponseDto {
|
|
550
554
|
/**
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -545,6 +545,10 @@ export interface ProfileDto {
|
|
|
545
545
|
* Optional checksum of the uploaded YAML file
|
|
546
546
|
*/
|
|
547
547
|
'yamlSha256'?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Content of the YAML file
|
|
550
|
+
*/
|
|
551
|
+
'yamlFileContent'?: string;
|
|
548
552
|
}
|
|
549
553
|
export interface QueryCreateResponseDto {
|
|
550
554
|
/**
|
package/docs/ProfileDto.md
CHANGED
|
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**updatedAt** | **string** | Profile last update timestamp | [optional] [default to undefined]
|
|
13
13
|
**yamlFileName** | **string** | YAML file name | [optional] [default to undefined]
|
|
14
14
|
**yamlSha256** | **string** | Optional checksum of the uploaded YAML file | [optional] [default to undefined]
|
|
15
|
+
**yamlFileContent** | **string** | Content of the YAML file | [optional] [default to undefined]
|
|
15
16
|
|
|
16
17
|
## Example
|
|
17
18
|
|
|
@@ -26,6 +27,7 @@ const instance: ProfileDto = {
|
|
|
26
27
|
updatedAt,
|
|
27
28
|
yamlFileName,
|
|
28
29
|
yamlSha256,
|
|
30
|
+
yamlFileContent,
|
|
29
31
|
};
|
|
30
32
|
```
|
|
31
33
|
|