@gambulls-org/gambulls-apis 3.0.105 → 3.0.106
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.
|
@@ -35,6 +35,14 @@ function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTyped(jso
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
'userId': json['userId'],
|
|
38
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
39
|
+
'image': json['image'] == null ? undefined : json['image'],
|
|
40
|
+
'email': json['email'] == null ? undefined : json['email'],
|
|
41
|
+
'currency': json['currency'] == null ? undefined : json['currency'],
|
|
42
|
+
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
43
|
+
'isDeleted': json['isDeleted'] == null ? undefined : json['isDeleted'],
|
|
44
|
+
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
45
|
+
'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
|
|
38
46
|
'firstName': json['firstName'] == null ? undefined : json['firstName'],
|
|
39
47
|
'lastName': json['lastName'] == null ? undefined : json['lastName'],
|
|
40
48
|
'phone': json['phone'] == null ? undefined : json['phone'],
|
|
@@ -45,8 +53,6 @@ function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTyped(jso
|
|
|
45
53
|
'stateProvince': json['stateProvince'] == null ? undefined : json['stateProvince'],
|
|
46
54
|
'zipPostalCode': json['zipPostalCode'] == null ? undefined : json['zipPostalCode'],
|
|
47
55
|
'country': json['country'] == null ? undefined : json['country'],
|
|
48
|
-
'email': json['email'] == null ? undefined : json['email'],
|
|
49
|
-
'currency': json['currency'] == null ? undefined : json['currency'],
|
|
50
56
|
};
|
|
51
57
|
}
|
|
52
58
|
function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -58,6 +64,14 @@ function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectToJSONTyped(value
|
|
|
58
64
|
}
|
|
59
65
|
return {
|
|
60
66
|
'userId': value['userId'],
|
|
67
|
+
'name': value['name'],
|
|
68
|
+
'image': value['image'],
|
|
69
|
+
'email': value['email'],
|
|
70
|
+
'currency': value['currency'],
|
|
71
|
+
'isActive': value['isActive'],
|
|
72
|
+
'isDeleted': value['isDeleted'],
|
|
73
|
+
'createdAt': value['createdAt'],
|
|
74
|
+
'updatedAt': value['updatedAt'],
|
|
61
75
|
'firstName': value['firstName'],
|
|
62
76
|
'lastName': value['lastName'],
|
|
63
77
|
'phone': value['phone'],
|
|
@@ -68,7 +82,5 @@ function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectToJSONTyped(value
|
|
|
68
82
|
'stateProvince': value['stateProvince'],
|
|
69
83
|
'zipPostalCode': value['zipPostalCode'],
|
|
70
84
|
'country': value['country'],
|
|
71
|
-
'email': value['email'],
|
|
72
|
-
'currency': value['currency'],
|
|
73
85
|
};
|
|
74
86
|
}
|
|
@@ -30,73 +30,109 @@ export interface ApiAdminUsersUserIdProfileGet200ResponseResponseObject {
|
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
name?: string;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
image?: string;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {string}
|
|
43
43
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
email?: string;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
currency?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
56
|
+
*/
|
|
57
|
+
isActive?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
62
|
+
*/
|
|
63
|
+
isDeleted?: boolean;
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
54
66
|
* @type {string}
|
|
55
67
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
56
68
|
*/
|
|
57
|
-
|
|
69
|
+
createdAt?: string;
|
|
58
70
|
/**
|
|
59
71
|
*
|
|
60
72
|
* @type {string}
|
|
61
73
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
62
74
|
*/
|
|
63
|
-
|
|
75
|
+
updatedAt?: string;
|
|
64
76
|
/**
|
|
65
77
|
*
|
|
66
78
|
* @type {string}
|
|
67
79
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
68
80
|
*/
|
|
69
|
-
|
|
81
|
+
firstName?: string;
|
|
70
82
|
/**
|
|
71
83
|
*
|
|
72
84
|
* @type {string}
|
|
73
85
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
74
86
|
*/
|
|
75
|
-
|
|
87
|
+
lastName?: string;
|
|
76
88
|
/**
|
|
77
89
|
*
|
|
78
90
|
* @type {string}
|
|
79
91
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
80
92
|
*/
|
|
81
|
-
|
|
93
|
+
phone?: string;
|
|
82
94
|
/**
|
|
83
95
|
*
|
|
84
96
|
* @type {string}
|
|
85
97
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
86
98
|
*/
|
|
87
|
-
|
|
99
|
+
gender?: string;
|
|
88
100
|
/**
|
|
89
101
|
*
|
|
90
102
|
* @type {string}
|
|
91
103
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
92
104
|
*/
|
|
93
|
-
|
|
105
|
+
dateOfBirth?: string;
|
|
94
106
|
/**
|
|
95
107
|
*
|
|
96
108
|
* @type {string}
|
|
97
109
|
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
98
110
|
*/
|
|
99
|
-
|
|
111
|
+
streetAddress?: string;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
116
|
+
*/
|
|
117
|
+
city?: string;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
122
|
+
*/
|
|
123
|
+
stateProvince?: string;
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
128
|
+
*/
|
|
129
|
+
zipPostalCode?: string;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof ApiAdminUsersUserIdProfileGet200ResponseResponseObject
|
|
134
|
+
*/
|
|
135
|
+
country?: string;
|
|
100
136
|
}
|
|
101
137
|
|
|
102
138
|
/**
|
|
@@ -118,6 +154,14 @@ export function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTy
|
|
|
118
154
|
return {
|
|
119
155
|
|
|
120
156
|
'userId': json['userId'],
|
|
157
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
158
|
+
'image': json['image'] == null ? undefined : json['image'],
|
|
159
|
+
'email': json['email'] == null ? undefined : json['email'],
|
|
160
|
+
'currency': json['currency'] == null ? undefined : json['currency'],
|
|
161
|
+
'isActive': json['isActive'] == null ? undefined : json['isActive'],
|
|
162
|
+
'isDeleted': json['isDeleted'] == null ? undefined : json['isDeleted'],
|
|
163
|
+
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
164
|
+
'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
|
|
121
165
|
'firstName': json['firstName'] == null ? undefined : json['firstName'],
|
|
122
166
|
'lastName': json['lastName'] == null ? undefined : json['lastName'],
|
|
123
167
|
'phone': json['phone'] == null ? undefined : json['phone'],
|
|
@@ -128,8 +172,6 @@ export function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTy
|
|
|
128
172
|
'stateProvince': json['stateProvince'] == null ? undefined : json['stateProvince'],
|
|
129
173
|
'zipPostalCode': json['zipPostalCode'] == null ? undefined : json['zipPostalCode'],
|
|
130
174
|
'country': json['country'] == null ? undefined : json['country'],
|
|
131
|
-
'email': json['email'] == null ? undefined : json['email'],
|
|
132
|
-
'currency': json['currency'] == null ? undefined : json['currency'],
|
|
133
175
|
};
|
|
134
176
|
}
|
|
135
177
|
|
|
@@ -145,6 +187,14 @@ export function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTy
|
|
|
145
187
|
return {
|
|
146
188
|
|
|
147
189
|
'userId': value['userId'],
|
|
190
|
+
'name': value['name'],
|
|
191
|
+
'image': value['image'],
|
|
192
|
+
'email': value['email'],
|
|
193
|
+
'currency': value['currency'],
|
|
194
|
+
'isActive': value['isActive'],
|
|
195
|
+
'isDeleted': value['isDeleted'],
|
|
196
|
+
'createdAt': value['createdAt'],
|
|
197
|
+
'updatedAt': value['updatedAt'],
|
|
148
198
|
'firstName': value['firstName'],
|
|
149
199
|
'lastName': value['lastName'],
|
|
150
200
|
'phone': value['phone'],
|
|
@@ -155,8 +205,6 @@ export function ApiAdminUsersUserIdProfileGet200ResponseResponseObjectFromJSONTy
|
|
|
155
205
|
'stateProvince': value['stateProvince'],
|
|
156
206
|
'zipPostalCode': value['zipPostalCode'],
|
|
157
207
|
'country': value['country'],
|
|
158
|
-
'email': value['email'],
|
|
159
|
-
'currency': value['currency'],
|
|
160
208
|
};
|
|
161
209
|
}
|
|
162
210
|
|