@stashfin/grpc 1.5.35 → 1.5.36
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.
package/package.json
CHANGED
|
@@ -14,6 +14,8 @@ export interface authenticateUserData {
|
|
|
14
14
|
device_id?: string | undefined;
|
|
15
15
|
akara_customer_id?: string | undefined;
|
|
16
16
|
source?: string | undefined;
|
|
17
|
+
user_created?: string | undefined;
|
|
18
|
+
user_device_ip?: string | undefined;
|
|
17
19
|
}
|
|
18
20
|
export interface authenticatUserResponse {
|
|
19
21
|
status: string;
|
|
@@ -102,6 +102,8 @@ function createBaseauthenticateUserData() {
|
|
|
102
102
|
device_id: undefined,
|
|
103
103
|
akara_customer_id: undefined,
|
|
104
104
|
source: undefined,
|
|
105
|
+
user_created: undefined,
|
|
106
|
+
user_device_ip: undefined,
|
|
105
107
|
};
|
|
106
108
|
}
|
|
107
109
|
exports.authenticateUserData = {
|
|
@@ -130,6 +132,12 @@ exports.authenticateUserData = {
|
|
|
130
132
|
if (message.source !== undefined) {
|
|
131
133
|
writer.uint32(66).string(message.source);
|
|
132
134
|
}
|
|
135
|
+
if (message.user_created !== undefined) {
|
|
136
|
+
writer.uint32(74).string(message.user_created);
|
|
137
|
+
}
|
|
138
|
+
if (message.user_device_ip !== undefined) {
|
|
139
|
+
writer.uint32(82).string(message.user_device_ip);
|
|
140
|
+
}
|
|
133
141
|
return writer;
|
|
134
142
|
},
|
|
135
143
|
decode(input, length) {
|
|
@@ -187,6 +195,18 @@ exports.authenticateUserData = {
|
|
|
187
195
|
}
|
|
188
196
|
message.source = reader.string();
|
|
189
197
|
continue;
|
|
198
|
+
case 9:
|
|
199
|
+
if (tag !== 74) {
|
|
200
|
+
break;
|
|
201
|
+
}
|
|
202
|
+
message.user_created = reader.string();
|
|
203
|
+
continue;
|
|
204
|
+
case 10:
|
|
205
|
+
if (tag !== 82) {
|
|
206
|
+
break;
|
|
207
|
+
}
|
|
208
|
+
message.user_device_ip = reader.string();
|
|
209
|
+
continue;
|
|
190
210
|
}
|
|
191
211
|
if ((tag & 7) === 4 || tag === 0) {
|
|
192
212
|
break;
|
|
@@ -205,6 +225,8 @@ exports.authenticateUserData = {
|
|
|
205
225
|
device_id: isSet(object.device_id) ? globalThis.String(object.device_id) : undefined,
|
|
206
226
|
akara_customer_id: isSet(object.akara_customer_id) ? globalThis.String(object.akara_customer_id) : undefined,
|
|
207
227
|
source: isSet(object.source) ? globalThis.String(object.source) : undefined,
|
|
228
|
+
user_created: isSet(object.user_created) ? globalThis.String(object.user_created) : undefined,
|
|
229
|
+
user_device_ip: isSet(object.user_device_ip) ? globalThis.String(object.user_device_ip) : undefined,
|
|
208
230
|
};
|
|
209
231
|
},
|
|
210
232
|
toJSON(message) {
|
|
@@ -233,6 +255,12 @@ exports.authenticateUserData = {
|
|
|
233
255
|
if (message.source !== undefined) {
|
|
234
256
|
obj.source = message.source;
|
|
235
257
|
}
|
|
258
|
+
if (message.user_created !== undefined) {
|
|
259
|
+
obj.user_created = message.user_created;
|
|
260
|
+
}
|
|
261
|
+
if (message.user_device_ip !== undefined) {
|
|
262
|
+
obj.user_device_ip = message.user_device_ip;
|
|
263
|
+
}
|
|
236
264
|
return obj;
|
|
237
265
|
},
|
|
238
266
|
create(base) {
|
|
@@ -248,6 +276,8 @@ exports.authenticateUserData = {
|
|
|
248
276
|
message.device_id = object.device_id ?? undefined;
|
|
249
277
|
message.akara_customer_id = object.akara_customer_id ?? undefined;
|
|
250
278
|
message.source = object.source ?? undefined;
|
|
279
|
+
message.user_created = object.user_created ?? undefined;
|
|
280
|
+
message.user_device_ip = object.user_device_ip ?? undefined;
|
|
251
281
|
return message;
|
|
252
282
|
},
|
|
253
283
|
};
|