@breign/client 1.0.78 → 1.0.79
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.
|
@@ -36,6 +36,12 @@ export interface AppConfigurationUio {
|
|
|
36
36
|
* @memberof AppConfigurationUio
|
|
37
37
|
*/
|
|
38
38
|
image?: string;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof AppConfigurationUio
|
|
43
|
+
*/
|
|
44
|
+
imageAgent?: string;
|
|
39
45
|
/**
|
|
40
46
|
*
|
|
41
47
|
* @type {string}
|
|
@@ -50,10 +56,10 @@ export interface AppConfigurationUio {
|
|
|
50
56
|
language?: Array<AppConfigurationLanguageInnerUio>;
|
|
51
57
|
/**
|
|
52
58
|
*
|
|
53
|
-
* @type {
|
|
59
|
+
* @type {string}
|
|
54
60
|
* @memberof AppConfigurationUio
|
|
55
61
|
*/
|
|
56
|
-
date?:
|
|
62
|
+
date?: string;
|
|
57
63
|
/**
|
|
58
64
|
*
|
|
59
65
|
* @type {string}
|
|
@@ -38,9 +38,10 @@ function AppConfigurationUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
'colors': json['colors'] == null ? undefined : (0, AppConfigurationColorsUio_1.AppConfigurationColorsUioFromJSON)(json['colors']),
|
|
39
39
|
'text': json['text'] == null ? undefined : (0, AppConfigurationTextUio_1.AppConfigurationTextUioFromJSON)(json['text']),
|
|
40
40
|
'image': json['image'] == null ? undefined : json['image'],
|
|
41
|
+
'imageAgent': json['imageAgent'] == null ? undefined : json['imageAgent'],
|
|
41
42
|
'agentImage': json['agentImage'] == null ? undefined : json['agentImage'],
|
|
42
43
|
'language': json['language'] == null ? undefined : (json['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioFromJSON)),
|
|
43
|
-
'date': json['date'] == null ? undefined :
|
|
44
|
+
'date': json['date'] == null ? undefined : json['date'],
|
|
44
45
|
'defaultLanguage': json['defaultLanguage'] == null ? undefined : json['defaultLanguage'],
|
|
45
46
|
};
|
|
46
47
|
}
|
|
@@ -55,9 +56,10 @@ function AppConfigurationUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
55
56
|
'colors': (0, AppConfigurationColorsUio_1.AppConfigurationColorsUioToJSON)(value['colors']),
|
|
56
57
|
'text': (0, AppConfigurationTextUio_1.AppConfigurationTextUioToJSON)(value['text']),
|
|
57
58
|
'image': value['image'],
|
|
59
|
+
'imageAgent': value['imageAgent'],
|
|
58
60
|
'agentImage': value['agentImage'],
|
|
59
61
|
'language': value['language'] == null ? undefined : (value['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioToJSON)),
|
|
60
|
-
'date': value['date']
|
|
62
|
+
'date': value['date'],
|
|
61
63
|
'defaultLanguage': value['defaultLanguage'],
|
|
62
64
|
};
|
|
63
65
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -9332,6 +9332,9 @@
|
|
|
9332
9332
|
"image" : {
|
|
9333
9333
|
"type" : "string"
|
|
9334
9334
|
},
|
|
9335
|
+
"imageAgent" : {
|
|
9336
|
+
"type" : "string"
|
|
9337
|
+
},
|
|
9335
9338
|
"agentImage" : {
|
|
9336
9339
|
"type" : "string"
|
|
9337
9340
|
},
|
|
@@ -9342,7 +9345,6 @@
|
|
|
9342
9345
|
"type" : "array"
|
|
9343
9346
|
},
|
|
9344
9347
|
"date" : {
|
|
9345
|
-
"format" : "date-time",
|
|
9346
9348
|
"type" : "string"
|
|
9347
9349
|
},
|
|
9348
9350
|
"defaultLanguage" : {
|