@breign/client 1.0.61 → 1.0.62
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,6 +21,12 @@ export interface AppChatSubmitMessageRequestUio {
|
|
|
21
21
|
* @memberof AppChatSubmitMessageRequestUio
|
|
22
22
|
*/
|
|
23
23
|
message: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AppChatSubmitMessageRequestUio
|
|
28
|
+
*/
|
|
29
|
+
lang?: string;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Check if a given object implements the AppChatSubmitMessageRequestUio interface.
|
|
@@ -35,6 +35,7 @@ function AppChatSubmitMessageRequestUioFromJSONTyped(json, ignoreDiscriminator)
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
'message': json['message'],
|
|
38
|
+
'lang': json['lang'] == null ? undefined : json['lang'],
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
function AppChatSubmitMessageRequestUioToJSON(json) {
|
|
@@ -46,5 +47,6 @@ function AppChatSubmitMessageRequestUioToJSONTyped(value, ignoreDiscriminator =
|
|
|
46
47
|
}
|
|
47
48
|
return {
|
|
48
49
|
'message': value['message'],
|
|
50
|
+
'lang': value['lang'],
|
|
49
51
|
};
|
|
50
52
|
}
|
package/dist/openapi.json
CHANGED