@jugarhoy/api 1.1.23 → 1.1.24
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.
|
@@ -55,6 +55,12 @@ export interface UpdateTeamRequest {
|
|
|
55
55
|
* @memberof UpdateTeamRequest
|
|
56
56
|
*/
|
|
57
57
|
isActive?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Base64 encoded avatar image (data URL format)
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof UpdateTeamRequest
|
|
62
|
+
*/
|
|
63
|
+
avatarBase64?: string;
|
|
58
64
|
}
|
|
59
65
|
|
|
60
66
|
/**
|
|
@@ -80,6 +86,7 @@ export function UpdateTeamRequestFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
80
86
|
'bgColor': json['bgColor'] == null ? undefined : json['bgColor'],
|
|
81
87
|
'fgColor': json['fgColor'] == null ? undefined : json['fgColor'],
|
|
82
88
|
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
89
|
+
'avatarBase64': json['avatarBase64'] == null ? undefined : json['avatarBase64'],
|
|
83
90
|
};
|
|
84
91
|
}
|
|
85
92
|
|
|
@@ -100,6 +107,7 @@ export function UpdateTeamRequestToJSONTyped(value?: UpdateTeamRequest | null, i
|
|
|
100
107
|
'bgColor': value['bgColor'],
|
|
101
108
|
'fgColor': value['fgColor'],
|
|
102
109
|
'isActive': value['isActive'],
|
|
110
|
+
'avatarBase64': value['avatarBase64'],
|
|
103
111
|
};
|
|
104
112
|
}
|
|
105
113
|
|