@breign/client 1.0.79 → 1.0.80

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.
@@ -54,6 +54,12 @@ export interface AppConfigurationUio {
54
54
  * @memberof AppConfigurationUio
55
55
  */
56
56
  language?: Array<AppConfigurationLanguageInnerUio>;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof AppConfigurationUio
61
+ */
62
+ name?: string;
57
63
  /**
58
64
  *
59
65
  * @type {string}
@@ -41,6 +41,7 @@ function AppConfigurationUioFromJSONTyped(json, ignoreDiscriminator) {
41
41
  'imageAgent': json['imageAgent'] == null ? undefined : json['imageAgent'],
42
42
  'agentImage': json['agentImage'] == null ? undefined : json['agentImage'],
43
43
  'language': json['language'] == null ? undefined : (json['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioFromJSON)),
44
+ 'name': json['name'] == null ? undefined : json['name'],
44
45
  'date': json['date'] == null ? undefined : json['date'],
45
46
  'defaultLanguage': json['defaultLanguage'] == null ? undefined : json['defaultLanguage'],
46
47
  };
@@ -59,6 +60,7 @@ function AppConfigurationUioToJSONTyped(value, ignoreDiscriminator = false) {
59
60
  'imageAgent': value['imageAgent'],
60
61
  'agentImage': value['agentImage'],
61
62
  'language': value['language'] == null ? undefined : (value['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioToJSON)),
63
+ 'name': value['name'],
62
64
  'date': value['date'],
63
65
  'defaultLanguage': value['defaultLanguage'],
64
66
  };
package/dist/openapi.json CHANGED
@@ -9344,6 +9344,9 @@
9344
9344
  },
9345
9345
  "type" : "array"
9346
9346
  },
9347
+ "name" : {
9348
+ "type" : "string"
9349
+ },
9347
9350
  "date" : {
9348
9351
  "type" : "string"
9349
9352
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",