@breign/client 1.0.78 → 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.
|
@@ -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,16 @@ export interface AppConfigurationUio {
|
|
|
50
56
|
language?: Array<AppConfigurationLanguageInnerUio>;
|
|
51
57
|
/**
|
|
52
58
|
*
|
|
53
|
-
* @type {
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof AppConfigurationUio
|
|
61
|
+
*/
|
|
62
|
+
name?: string;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {string}
|
|
54
66
|
* @memberof AppConfigurationUio
|
|
55
67
|
*/
|
|
56
|
-
date?:
|
|
68
|
+
date?: string;
|
|
57
69
|
/**
|
|
58
70
|
*
|
|
59
71
|
* @type {string}
|
|
@@ -38,9 +38,11 @@ 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
|
-
'
|
|
44
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
45
|
+
'date': json['date'] == null ? undefined : json['date'],
|
|
44
46
|
'defaultLanguage': json['defaultLanguage'] == null ? undefined : json['defaultLanguage'],
|
|
45
47
|
};
|
|
46
48
|
}
|
|
@@ -55,9 +57,11 @@ function AppConfigurationUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
55
57
|
'colors': (0, AppConfigurationColorsUio_1.AppConfigurationColorsUioToJSON)(value['colors']),
|
|
56
58
|
'text': (0, AppConfigurationTextUio_1.AppConfigurationTextUioToJSON)(value['text']),
|
|
57
59
|
'image': value['image'],
|
|
60
|
+
'imageAgent': value['imageAgent'],
|
|
58
61
|
'agentImage': value['agentImage'],
|
|
59
62
|
'language': value['language'] == null ? undefined : (value['language'].map(AppConfigurationLanguageInnerUio_1.AppConfigurationLanguageInnerUioToJSON)),
|
|
60
|
-
'
|
|
63
|
+
'name': value['name'],
|
|
64
|
+
'date': value['date'],
|
|
61
65
|
'defaultLanguage': value['defaultLanguage'],
|
|
62
66
|
};
|
|
63
67
|
}
|
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
|
},
|
|
@@ -9341,8 +9344,10 @@
|
|
|
9341
9344
|
},
|
|
9342
9345
|
"type" : "array"
|
|
9343
9346
|
},
|
|
9347
|
+
"name" : {
|
|
9348
|
+
"type" : "string"
|
|
9349
|
+
},
|
|
9344
9350
|
"date" : {
|
|
9345
|
-
"format" : "date-time",
|
|
9346
9351
|
"type" : "string"
|
|
9347
9352
|
},
|
|
9348
9353
|
"defaultLanguage" : {
|