@gambulls-org/gambulls-apis 3.0.568 → 3.0.570
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.
|
@@ -34,6 +34,8 @@ function instanceOfApiAuthJwtUserIdGet200ResponseResponseObject(value) {
|
|
|
34
34
|
return false;
|
|
35
35
|
if (!('currency' in value) || value['currency'] === undefined)
|
|
36
36
|
return false;
|
|
37
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
38
|
+
return false;
|
|
37
39
|
if (!('is2FaEnabled' in value) || value['is2FaEnabled'] === undefined)
|
|
38
40
|
return false;
|
|
39
41
|
if (!('isAnon' in value) || value['isAnon'] === undefined)
|
|
@@ -44,6 +46,8 @@ function instanceOfApiAuthJwtUserIdGet200ResponseResponseObject(value) {
|
|
|
44
46
|
return false;
|
|
45
47
|
if (!('currentLoyaltyIcon' in value) || value['currentLoyaltyIcon'] === undefined)
|
|
46
48
|
return false;
|
|
49
|
+
if (!('currentLoyaltyName' in value) || value['currentLoyaltyName'] === undefined)
|
|
50
|
+
return false;
|
|
47
51
|
return true;
|
|
48
52
|
}
|
|
49
53
|
function ApiAuthJwtUserIdGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -60,11 +64,13 @@ function ApiAuthJwtUserIdGet200ResponseResponseObjectFromJSONTyped(json, ignoreD
|
|
|
60
64
|
'image': json['image'],
|
|
61
65
|
'isActive': json['isActive'],
|
|
62
66
|
'currency': json['currency'],
|
|
67
|
+
'createdAt': json['createdAt'],
|
|
63
68
|
'is2FaEnabled': json['is2FaEnabled'],
|
|
64
69
|
'isAnon': json['isAnon'],
|
|
65
70
|
'isFilterWord': json['isFilterWord'],
|
|
66
71
|
'groupName': json['groupName'],
|
|
67
72
|
'currentLoyaltyIcon': json['currentLoyaltyIcon'],
|
|
73
|
+
'currentLoyaltyName': json['currentLoyaltyName'],
|
|
68
74
|
};
|
|
69
75
|
}
|
|
70
76
|
function ApiAuthJwtUserIdGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -81,10 +87,12 @@ function ApiAuthJwtUserIdGet200ResponseResponseObjectToJSONTyped(value, ignoreDi
|
|
|
81
87
|
'image': value['image'],
|
|
82
88
|
'isActive': value['isActive'],
|
|
83
89
|
'currency': value['currency'],
|
|
90
|
+
'createdAt': value['createdAt'],
|
|
84
91
|
'is2FaEnabled': value['is2FaEnabled'],
|
|
85
92
|
'isAnon': value['isAnon'],
|
|
86
93
|
'isFilterWord': value['isFilterWord'],
|
|
87
94
|
'groupName': value['groupName'],
|
|
88
95
|
'currentLoyaltyIcon': value['currentLoyaltyIcon'],
|
|
96
|
+
'currentLoyaltyName': value['currentLoyaltyName'],
|
|
89
97
|
};
|
|
90
98
|
}
|
|
@@ -55,6 +55,12 @@ export interface ApiAuthJwtUserIdGet200ResponseResponseObject {
|
|
|
55
55
|
* @memberof ApiAuthJwtUserIdGet200ResponseResponseObject
|
|
56
56
|
*/
|
|
57
57
|
currency: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof ApiAuthJwtUserIdGet200ResponseResponseObject
|
|
62
|
+
*/
|
|
63
|
+
createdAt: string;
|
|
58
64
|
/**
|
|
59
65
|
*
|
|
60
66
|
* @type {boolean}
|
|
@@ -85,6 +91,12 @@ export interface ApiAuthJwtUserIdGet200ResponseResponseObject {
|
|
|
85
91
|
* @memberof ApiAuthJwtUserIdGet200ResponseResponseObject
|
|
86
92
|
*/
|
|
87
93
|
currentLoyaltyIcon: string;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof ApiAuthJwtUserIdGet200ResponseResponseObject
|
|
98
|
+
*/
|
|
99
|
+
currentLoyaltyName: string;
|
|
88
100
|
}
|
|
89
101
|
|
|
90
102
|
/**
|
|
@@ -97,11 +109,13 @@ export function instanceOfApiAuthJwtUserIdGet200ResponseResponseObject(value: ob
|
|
|
97
109
|
if (!('image' in value) || value['image'] === undefined) return false;
|
|
98
110
|
if (!('isActive' in value) || value['isActive'] === undefined) return false;
|
|
99
111
|
if (!('currency' in value) || value['currency'] === undefined) return false;
|
|
112
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
100
113
|
if (!('is2FaEnabled' in value) || value['is2FaEnabled'] === undefined) return false;
|
|
101
114
|
if (!('isAnon' in value) || value['isAnon'] === undefined) return false;
|
|
102
115
|
if (!('isFilterWord' in value) || value['isFilterWord'] === undefined) return false;
|
|
103
116
|
if (!('groupName' in value) || value['groupName'] === undefined) return false;
|
|
104
117
|
if (!('currentLoyaltyIcon' in value) || value['currentLoyaltyIcon'] === undefined) return false;
|
|
118
|
+
if (!('currentLoyaltyName' in value) || value['currentLoyaltyName'] === undefined) return false;
|
|
105
119
|
return true;
|
|
106
120
|
}
|
|
107
121
|
|
|
@@ -121,11 +135,13 @@ export function ApiAuthJwtUserIdGet200ResponseResponseObjectFromJSONTyped(json:
|
|
|
121
135
|
'image': json['image'],
|
|
122
136
|
'isActive': json['isActive'],
|
|
123
137
|
'currency': json['currency'],
|
|
138
|
+
'createdAt': json['createdAt'],
|
|
124
139
|
'is2FaEnabled': json['is2FaEnabled'],
|
|
125
140
|
'isAnon': json['isAnon'],
|
|
126
141
|
'isFilterWord': json['isFilterWord'],
|
|
127
142
|
'groupName': json['groupName'],
|
|
128
143
|
'currentLoyaltyIcon': json['currentLoyaltyIcon'],
|
|
144
|
+
'currentLoyaltyName': json['currentLoyaltyName'],
|
|
129
145
|
};
|
|
130
146
|
}
|
|
131
147
|
|
|
@@ -146,11 +162,13 @@ export function ApiAuthJwtUserIdGet200ResponseResponseObjectFromJSONTyped(json:
|
|
|
146
162
|
'image': value['image'],
|
|
147
163
|
'isActive': value['isActive'],
|
|
148
164
|
'currency': value['currency'],
|
|
165
|
+
'createdAt': value['createdAt'],
|
|
149
166
|
'is2FaEnabled': value['is2FaEnabled'],
|
|
150
167
|
'isAnon': value['isAnon'],
|
|
151
168
|
'isFilterWord': value['isFilterWord'],
|
|
152
169
|
'groupName': value['groupName'],
|
|
153
170
|
'currentLoyaltyIcon': value['currentLoyaltyIcon'],
|
|
171
|
+
'currentLoyaltyName': value['currentLoyaltyName'],
|
|
154
172
|
};
|
|
155
173
|
}
|
|
156
174
|
|