@nestbox-ai/doc-processing-api 1.0.63 → 1.0.65

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.
@@ -1,6 +1,5 @@
1
1
  .gitignore
2
2
  .npmignore
3
- .openapi-generator-ignore
4
3
  README.md
5
4
  api.ts
6
5
  base.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @nestbox-ai/doc-processing-api@1.0.63
1
+ ## @nestbox-ai/doc-processing-api@1.0.65
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.63 --save
39
+ npm install @nestbox-ai/doc-processing-api@1.0.65 --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
  /**
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestbox-ai/doc-processing-api",
3
- "version": "1.0.63",
3
+ "version": "1.0.65",
4
4
  "description": "OpenAPI client for @nestbox-ai/doc-processing-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {