@breign/client 1.0.13 → 1.0.15

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.
@@ -14,6 +14,7 @@
14
14
  * @export
15
15
  */
16
16
  export declare const FileStatusUio: {
17
+ readonly Scraping: "SCRAPING";
17
18
  readonly Pending: "PENDING";
18
19
  readonly Uploaded: "UPLOADED";
19
20
  readonly Indexed: "INDEXED";
@@ -24,6 +24,7 @@ exports.FileStatusUioToJSONTyped = FileStatusUioToJSONTyped;
24
24
  * @export
25
25
  */
26
26
  exports.FileStatusUio = {
27
+ Scraping: 'SCRAPING',
27
28
  Pending: 'PENDING',
28
29
  Uploaded: 'UPLOADED',
29
30
  Indexed: 'INDEXED'
@@ -21,7 +21,7 @@ export interface PersonaUio {
21
21
  * @type {string}
22
22
  * @memberof PersonaUio
23
23
  */
24
- _default: string;
24
+ default: string;
25
25
  }
26
26
  /**
27
27
  * Check if a given object implements the PersonaUio interface.
@@ -22,7 +22,7 @@ exports.PersonaUioToJSONTyped = PersonaUioToJSONTyped;
22
22
  * Check if a given object implements the PersonaUio interface.
23
23
  */
24
24
  function instanceOfPersonaUio(value) {
25
- if (!('_default' in value) || value['_default'] === undefined)
25
+ if (!('default' in value) || value['default'] === undefined)
26
26
  return false;
27
27
  return true;
28
28
  }
@@ -35,7 +35,7 @@ function PersonaUioFromJSONTyped(json, ignoreDiscriminator) {
35
35
  }
36
36
  return {
37
37
  ...json,
38
- '_default': json['default'],
38
+ 'default': json['default'],
39
39
  };
40
40
  }
41
41
  function PersonaUioToJSON(json) {
@@ -47,6 +47,6 @@ function PersonaUioToJSONTyped(value, ignoreDiscriminator = false) {
47
47
  }
48
48
  return {
49
49
  ...value,
50
- 'default': value['_default'],
50
+ 'default': value['default'],
51
51
  };
52
52
  }
@@ -21,7 +21,7 @@ export interface PromptInitUio {
21
21
  * @type {string}
22
22
  * @memberof PromptInitUio
23
23
  */
24
- _default: string;
24
+ default: string;
25
25
  }
26
26
  /**
27
27
  * Check if a given object implements the PromptInitUio interface.
@@ -22,7 +22,7 @@ exports.PromptInitUioToJSONTyped = PromptInitUioToJSONTyped;
22
22
  * Check if a given object implements the PromptInitUio interface.
23
23
  */
24
24
  function instanceOfPromptInitUio(value) {
25
- if (!('_default' in value) || value['_default'] === undefined)
25
+ if (!('default' in value) || value['default'] === undefined)
26
26
  return false;
27
27
  return true;
28
28
  }
@@ -35,7 +35,7 @@ function PromptInitUioFromJSONTyped(json, ignoreDiscriminator) {
35
35
  }
36
36
  return {
37
37
  ...json,
38
- '_default': json['default'],
38
+ 'default': json['default'],
39
39
  };
40
40
  }
41
41
  function PromptInitUioToJSON(json) {
@@ -47,6 +47,6 @@ function PromptInitUioToJSONTyped(value, ignoreDiscriminator = false) {
47
47
  }
48
48
  return {
49
49
  ...value,
50
- 'default': value['_default'],
50
+ 'default': value['default'],
51
51
  };
52
52
  }
package/dist/openapi.json CHANGED
@@ -7706,7 +7706,7 @@
7706
7706
  "type" : "string"
7707
7707
  },
7708
7708
  "FileStatus" : {
7709
- "enum" : [ "PENDING", "UPLOADED", "INDEXED" ],
7709
+ "enum" : [ "SCRAPING", "PENDING", "UPLOADED", "INDEXED" ],
7710
7710
  "type" : "string"
7711
7711
  },
7712
7712
  "ChatMessageRole" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",