@breign/client 1.0.14 → 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.
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",