munchies-user-service-shared 0.16.1 → 0.17.0

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.
@@ -134,9 +134,6 @@ export declare namespace com.munchies.user.infrastructure.adapter.inbound.reques
134
134
  toString(): string;
135
135
  hashCode(): number;
136
136
  equals(other: Nullable<any>): boolean;
137
- static get Companion(): {
138
- validate(request: com.munchies.user.infrastructure.adapter.inbound.request.LoginUserRequest): void;
139
- };
140
137
  }
141
138
  }
142
139
  export declare namespace com.munchies.user.infrastructure.adapter.inbound.request {
@@ -149,9 +146,6 @@ export declare namespace com.munchies.user.infrastructure.adapter.inbound.reques
149
146
  toString(): string;
150
147
  hashCode(): number;
151
148
  equals(other: Nullable<any>): boolean;
152
- static get Companion(): {
153
- validate(request: com.munchies.user.infrastructure.adapter.inbound.request.RegisterUserRequest): void;
154
- };
155
149
  }
156
150
  }
157
151
  export declare namespace com.munchies.user.infrastructure.adapter.inbound.request {
@@ -162,24 +156,20 @@ export declare namespace com.munchies.user.infrastructure.adapter.inbound.reques
162
156
  toString(): string;
163
157
  hashCode(): number;
164
158
  equals(other: Nullable<any>): boolean;
165
- static get Companion(): {
166
- validate(request: com.munchies.user.infrastructure.adapter.inbound.request.UpdateUserInfoRequest): void;
167
- };
168
159
  }
169
160
  }
170
161
  export declare namespace com.munchies.user.infrastructure.adapter.inbound.request {
171
162
  class UpdateUserPasswordRequest {
172
- constructor(user: com.munchies.user.infrastructure.adapter.dto.UserDTO, oldHashedPassword: string, newPassword: string);
173
- get user(): com.munchies.user.infrastructure.adapter.dto.UserDTO;
163
+ constructor(id: string, username: string | undefined, email: string | undefined, oldHashedPassword: string, newPassword: string);
164
+ get id(): string;
165
+ get username(): string;
166
+ get email(): string;
174
167
  get oldHashedPassword(): string;
175
168
  get newPassword(): string;
176
- copy(user?: com.munchies.user.infrastructure.adapter.dto.UserDTO, oldHashedPassword?: string, newPassword?: string): com.munchies.user.infrastructure.adapter.inbound.request.UpdateUserPasswordRequest;
169
+ copy(id?: string, username?: string, email?: string, oldHashedPassword?: string, newPassword?: string): com.munchies.user.infrastructure.adapter.inbound.request.UpdateUserPasswordRequest;
177
170
  toString(): string;
178
171
  hashCode(): number;
179
172
  equals(other: Nullable<any>): boolean;
180
- static get Companion(): {
181
- validate(request: com.munchies.user.infrastructure.adapter.inbound.request.UpdateUserPasswordRequest): void;
182
- };
183
173
  }
184
174
  }
185
175
  export declare namespace com.munchies.user.infrastructure.adapter.inbound.web.config {
@@ -8,10 +8,6 @@
8
8
  var THROW_CCE = kotlin_kotlin.$_$.o8;
9
9
  var classMeta = kotlin_kotlin.$_$.t5;
10
10
  var setMetadataFor = kotlin_kotlin.$_$.u6;
11
- var isBlank = kotlin_kotlin.$_$.l7;
12
- var charSequenceLength = kotlin_kotlin.$_$.r5;
13
- var toString = kotlin_kotlin.$_$.y6;
14
- var IllegalArgumentException_init_$Create$ = kotlin_kotlin.$_$.x;
15
11
  var objectMeta = kotlin_kotlin.$_$.s6;
16
12
  var defineProp = kotlin_kotlin.$_$.u5;
17
13
  var PluginGeneratedSerialDescriptor = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.o1;
@@ -33,16 +29,12 @@
33
29
  //endregion
34
30
  //region block: pre-declaration
35
31
  setMetadataFor(UserDTO, 'UserDTO', classMeta);
36
- setMetadataFor(Companion, 'Companion', objectMeta);
37
32
  setMetadataFor(LoginUserRequest, 'LoginUserRequest', classMeta);
38
- setMetadataFor(Companion_0, 'Companion', objectMeta);
39
33
  setMetadataFor(RegisterUserRequest, 'RegisterUserRequest', classMeta);
40
- setMetadataFor(Companion_1, 'Companion', objectMeta);
41
34
  setMetadataFor(UpdateUserInfoRequest, 'UpdateUserInfoRequest', classMeta);
42
- setMetadataFor(Companion_2, 'Companion', objectMeta);
43
35
  setMetadataFor(UpdateUserPasswordRequest, 'UpdateUserPasswordRequest', classMeta);
44
36
  setMetadataFor(UserServiceConfig, 'UserServiceConfig', objectMeta);
45
- setMetadataFor(Companion_3, 'Companion', objectMeta);
37
+ setMetadataFor(Companion, 'Companion', objectMeta);
46
38
  setMetadataFor($serializer, '$serializer', objectMeta, VOID, [GeneratedSerializer]);
47
39
  setMetadataFor(UserEmailConfirmationNotification, 'UserEmailConfirmationNotification', classMeta, VOID, VOID, VOID, VOID, {0: $serializer_getInstance});
48
40
  setMetadataFor(UserEmailConfirmationNotificationInfo, 'UserEmailConfirmationNotificationInfo', objectMeta);
@@ -122,40 +114,6 @@
122
114
  return false;
123
115
  return true;
124
116
  };
125
- function Companion() {
126
- }
127
- protoOf(Companion).validate = function (request) {
128
- // Inline function 'kotlin.require' call
129
- var tmp;
130
- // Inline function 'kotlin.text.isNotBlank' call
131
- var this_0 = request.email;
132
- if (!isBlank(this_0)) {
133
- tmp = true;
134
- } else {
135
- // Inline function 'kotlin.text.isNotEmpty' call
136
- var this_1 = request.username;
137
- tmp = charSequenceLength(this_1) > 0;
138
- }
139
- // Inline function 'kotlin.contracts.contract' call
140
- if (!tmp) {
141
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
142
- var message = 'Email or Username must not be blank';
143
- throw IllegalArgumentException_init_$Create$(toString(message));
144
- }
145
- // Inline function 'kotlin.require' call
146
- // Inline function 'kotlin.text.isNotBlank' call
147
- var this_2 = request.password;
148
- // Inline function 'kotlin.contracts.contract' call
149
- if (!!isBlank(this_2)) {
150
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
151
- var message_0 = 'Password must not be blank';
152
- throw IllegalArgumentException_init_$Create$(toString(message_0));
153
- }
154
- };
155
- var Companion_instance;
156
- function Companion_getInstance() {
157
- return Companion_instance;
158
- }
159
117
  function LoginUserRequest(email, username, password) {
160
118
  this.email = email;
161
119
  this.username = username;
@@ -211,50 +169,6 @@
211
169
  return false;
212
170
  return true;
213
171
  };
214
- function Companion_0() {
215
- }
216
- protoOf(Companion_0).validate = function (request) {
217
- // Inline function 'kotlin.require' call
218
- // Inline function 'kotlin.text.isNotBlank' call
219
- var this_0 = request.user.username;
220
- // Inline function 'kotlin.contracts.contract' call
221
- if (!!isBlank(this_0)) {
222
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
223
- var message = 'Username must not be blank';
224
- throw IllegalArgumentException_init_$Create$(toString(message));
225
- }
226
- // Inline function 'kotlin.require' call
227
- // Inline function 'kotlin.text.isNotBlank' call
228
- var this_1 = request.user.email;
229
- // Inline function 'kotlin.contracts.contract' call
230
- if (!!isBlank(this_1)) {
231
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
232
- var message_0 = 'User email must not be blank';
233
- throw IllegalArgumentException_init_$Create$(toString(message_0));
234
- }
235
- // Inline function 'kotlin.require' call
236
- // Inline function 'kotlin.text.isNotBlank' call
237
- var this_2 = request.hashedPassword;
238
- // Inline function 'kotlin.contracts.contract' call
239
- if (!!isBlank(this_2)) {
240
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
241
- var message_1 = 'Hashed password must not be blank';
242
- throw IllegalArgumentException_init_$Create$(toString(message_1));
243
- }
244
- // Inline function 'kotlin.require' call
245
- // Inline function 'kotlin.text.isNotBlank' call
246
- var this_3 = request.saltValue;
247
- // Inline function 'kotlin.contracts.contract' call
248
- if (!!isBlank(this_3)) {
249
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
250
- var message_2 = 'Salt value must not be blank';
251
- throw IllegalArgumentException_init_$Create$(toString(message_2));
252
- }
253
- };
254
- var Companion_instance_0;
255
- function Companion_getInstance_0() {
256
- return Companion_instance_0;
257
- }
258
172
  function RegisterUserRequest(user, hashedPassword, saltValue) {
259
173
  this.user = user;
260
174
  this.hashedPassword = hashedPassword;
@@ -310,41 +224,6 @@
310
224
  return false;
311
225
  return true;
312
226
  };
313
- function Companion_1() {
314
- }
315
- protoOf(Companion_1).validate = function (request) {
316
- // Inline function 'kotlin.require' call
317
- // Inline function 'kotlin.text.isNotBlank' call
318
- var this_0 = request.user.id;
319
- // Inline function 'kotlin.contracts.contract' call
320
- if (!!isBlank(this_0)) {
321
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
322
- var message = 'User ID must not be blank';
323
- throw IllegalArgumentException_init_$Create$(toString(message));
324
- }
325
- // Inline function 'kotlin.require' call
326
- // Inline function 'kotlin.text.isNotBlank' call
327
- var this_1 = request.user.username;
328
- // Inline function 'kotlin.contracts.contract' call
329
- if (!!isBlank(this_1)) {
330
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
331
- var message_0 = 'Username must not be blank';
332
- throw IllegalArgumentException_init_$Create$(toString(message_0));
333
- }
334
- // Inline function 'kotlin.require' call
335
- // Inline function 'kotlin.text.isNotBlank' call
336
- var this_2 = request.user.email;
337
- // Inline function 'kotlin.contracts.contract' call
338
- if (!!isBlank(this_2)) {
339
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
340
- var message_1 = 'Email must not be blank';
341
- throw IllegalArgumentException_init_$Create$(toString(message_1));
342
- }
343
- };
344
- var Companion_instance_1;
345
- function Companion_getInstance_1() {
346
- return Companion_instance_1;
347
- }
348
227
  function UpdateUserInfoRequest(user) {
349
228
  this.user = user;
350
229
  }
@@ -377,56 +256,23 @@
377
256
  return false;
378
257
  return true;
379
258
  };
380
- function Companion_2() {
381
- }
382
- protoOf(Companion_2).validate = function (request) {
383
- // Inline function 'kotlin.require' call
384
- var tmp;
385
- // Inline function 'kotlin.text.isNotBlank' call
386
- var this_0 = request.user.username;
387
- if (!isBlank(this_0)) {
388
- tmp = true;
389
- } else {
390
- // Inline function 'kotlin.text.isNotBlank' call
391
- var this_1 = request.user.email;
392
- tmp = !isBlank(this_1);
393
- }
394
- // Inline function 'kotlin.contracts.contract' call
395
- if (!tmp) {
396
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
397
- var message = 'User identifications must not be blank';
398
- throw IllegalArgumentException_init_$Create$(toString(message));
399
- }
400
- // Inline function 'kotlin.require' call
401
- // Inline function 'kotlin.text.isNotBlank' call
402
- var this_2 = request.oldHashedPassword;
403
- // Inline function 'kotlin.contracts.contract' call
404
- if (!!isBlank(this_2)) {
405
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
406
- var message_0 = 'Old hashed password must not be blank';
407
- throw IllegalArgumentException_init_$Create$(toString(message_0));
408
- }
409
- // Inline function 'kotlin.require' call
410
- // Inline function 'kotlin.text.isNotBlank' call
411
- var this_3 = request.newPassword;
412
- // Inline function 'kotlin.contracts.contract' call
413
- if (!!isBlank(this_3)) {
414
- // Inline function 'com.munchies.user.infrastructure.adapter.inbound.request.Companion.validate.<anonymous>' call
415
- var message_1 = 'New password must not be blank';
416
- throw IllegalArgumentException_init_$Create$(toString(message_1));
417
- }
418
- };
419
- var Companion_instance_2;
420
- function Companion_getInstance_2() {
421
- return Companion_instance_2;
422
- }
423
- function UpdateUserPasswordRequest(user, oldHashedPassword, newPassword) {
424
- this.user = user;
259
+ function UpdateUserPasswordRequest(id, username, email, oldHashedPassword, newPassword) {
260
+ username = username === VOID ? '' : username;
261
+ email = email === VOID ? '' : email;
262
+ this.id = id;
263
+ this.username = username;
264
+ this.email = email;
425
265
  this.oldHashedPassword = oldHashedPassword;
426
266
  this.newPassword = newPassword;
427
267
  }
428
- protoOf(UpdateUserPasswordRequest).k17 = function () {
429
- return this.user;
268
+ protoOf(UpdateUserPasswordRequest).b17 = function () {
269
+ return this.id;
270
+ };
271
+ protoOf(UpdateUserPasswordRequest).c17 = function () {
272
+ return this.username;
273
+ };
274
+ protoOf(UpdateUserPasswordRequest).d17 = function () {
275
+ return this.email;
430
276
  };
431
277
  protoOf(UpdateUserPasswordRequest).p17 = function () {
432
278
  return this.oldHashedPassword;
@@ -435,28 +281,38 @@
435
281
  return this.newPassword;
436
282
  };
437
283
  protoOf(UpdateUserPasswordRequest).ea = function () {
438
- return this.user;
284
+ return this.id;
439
285
  };
440
286
  protoOf(UpdateUserPasswordRequest).fa = function () {
441
- return this.oldHashedPassword;
287
+ return this.username;
442
288
  };
443
289
  protoOf(UpdateUserPasswordRequest).f17 = function () {
290
+ return this.email;
291
+ };
292
+ protoOf(UpdateUserPasswordRequest).g17 = function () {
293
+ return this.oldHashedPassword;
294
+ };
295
+ protoOf(UpdateUserPasswordRequest).r17 = function () {
444
296
  return this.newPassword;
445
297
  };
446
- protoOf(UpdateUserPasswordRequest).n17 = function (user, oldHashedPassword, newPassword) {
447
- return new UpdateUserPasswordRequest(user, oldHashedPassword, newPassword);
298
+ protoOf(UpdateUserPasswordRequest).s17 = function (id, username, email, oldHashedPassword, newPassword) {
299
+ return new UpdateUserPasswordRequest(id, username, email, oldHashedPassword, newPassword);
448
300
  };
449
- protoOf(UpdateUserPasswordRequest).copy = function (user, oldHashedPassword, newPassword, $super) {
450
- user = user === VOID ? this.user : user;
301
+ protoOf(UpdateUserPasswordRequest).copy = function (id, username, email, oldHashedPassword, newPassword, $super) {
302
+ id = id === VOID ? this.id : id;
303
+ username = username === VOID ? this.username : username;
304
+ email = email === VOID ? this.email : email;
451
305
  oldHashedPassword = oldHashedPassword === VOID ? this.oldHashedPassword : oldHashedPassword;
452
306
  newPassword = newPassword === VOID ? this.newPassword : newPassword;
453
- return this.n17(user, oldHashedPassword, newPassword);
307
+ return this.s17(id, username, email, oldHashedPassword, newPassword);
454
308
  };
455
309
  protoOf(UpdateUserPasswordRequest).toString = function () {
456
- return 'UpdateUserPasswordRequest(user=' + this.user + ', oldHashedPassword=' + this.oldHashedPassword + ', newPassword=' + this.newPassword + ')';
310
+ return 'UpdateUserPasswordRequest(id=' + this.id + ', username=' + this.username + ', email=' + this.email + ', oldHashedPassword=' + this.oldHashedPassword + ', newPassword=' + this.newPassword + ')';
457
311
  };
458
312
  protoOf(UpdateUserPasswordRequest).hashCode = function () {
459
- var result = this.user.hashCode();
313
+ var result = getStringHashCode(this.id);
314
+ result = imul(result, 31) + getStringHashCode(this.username) | 0;
315
+ result = imul(result, 31) + getStringHashCode(this.email) | 0;
460
316
  result = imul(result, 31) + getStringHashCode(this.oldHashedPassword) | 0;
461
317
  result = imul(result, 31) + getStringHashCode(this.newPassword) | 0;
462
318
  return result;
@@ -467,7 +323,11 @@
467
323
  if (!(other instanceof UpdateUserPasswordRequest))
468
324
  return false;
469
325
  var tmp0_other_with_cast = other instanceof UpdateUserPasswordRequest ? other : THROW_CCE();
470
- if (!this.user.equals(tmp0_other_with_cast.user))
326
+ if (!(this.id === tmp0_other_with_cast.id))
327
+ return false;
328
+ if (!(this.username === tmp0_other_with_cast.username))
329
+ return false;
330
+ if (!(this.email === tmp0_other_with_cast.email))
471
331
  return false;
472
332
  if (!(this.oldHashedPassword === tmp0_other_with_cast.oldHashedPassword))
473
333
  return false;
@@ -487,58 +347,58 @@
487
347
  this.VERIFY_EMAIL_PATH = 'verify-email/';
488
348
  this.SERVICE_PORT = 8080;
489
349
  }
490
- protoOf(UserServiceConfig).r17 = function () {
350
+ protoOf(UserServiceConfig).t17 = function () {
491
351
  return this.SERVICE_NAME;
492
352
  };
493
- protoOf(UserServiceConfig).s17 = function () {
353
+ protoOf(UserServiceConfig).u17 = function () {
494
354
  return this.SERVICE_PATH;
495
355
  };
496
- protoOf(UserServiceConfig).t17 = function () {
356
+ protoOf(UserServiceConfig).v17 = function () {
497
357
  return this.GET_USER_PATH;
498
358
  };
499
- protoOf(UserServiceConfig).u17 = function () {
359
+ protoOf(UserServiceConfig).w17 = function () {
500
360
  return this.REGISTER_USER_PATH;
501
361
  };
502
- protoOf(UserServiceConfig).v17 = function () {
362
+ protoOf(UserServiceConfig).x17 = function () {
503
363
  return this.LOGIN_USER_PATH;
504
364
  };
505
- protoOf(UserServiceConfig).w17 = function () {
365
+ protoOf(UserServiceConfig).y17 = function () {
506
366
  return this.UPDATE_USER_PASSWORD_PATH;
507
367
  };
508
- protoOf(UserServiceConfig).x17 = function () {
368
+ protoOf(UserServiceConfig).z17 = function () {
509
369
  return this.UPDATE_USER_INFO_PATH;
510
370
  };
511
- protoOf(UserServiceConfig).y17 = function () {
371
+ protoOf(UserServiceConfig).a18 = function () {
512
372
  return this.DELETE_USER_PATH;
513
373
  };
514
- protoOf(UserServiceConfig).z17 = function () {
374
+ protoOf(UserServiceConfig).b18 = function () {
515
375
  return this.VERIFY_EMAIL_PATH;
516
376
  };
517
- protoOf(UserServiceConfig).a18 = function () {
377
+ protoOf(UserServiceConfig).c18 = function () {
518
378
  return this.SERVICE_PORT;
519
379
  };
520
380
  var UserServiceConfig_instance;
521
381
  function UserServiceConfig_getInstance() {
522
382
  return UserServiceConfig_instance;
523
383
  }
524
- function Companion_3() {
384
+ function Companion() {
525
385
  }
526
- protoOf(Companion_3).py = function () {
386
+ protoOf(Companion).py = function () {
527
387
  return $serializer_getInstance();
528
388
  };
529
- var Companion_instance_3;
530
- function Companion_getInstance_3() {
531
- return Companion_instance_3;
389
+ var Companion_instance;
390
+ function Companion_getInstance() {
391
+ return Companion_instance;
532
392
  }
533
393
  function $serializer() {
534
394
  $serializer_instance = this;
535
395
  var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.munchies.user.infrastructure.adapter.outbound.notification.UserEmailConfirmationNotification', this, 2);
536
396
  tmp0_serialDesc.io('user_id_key', false);
537
397
  tmp0_serialDesc.io('user_confirmation_key', false);
538
- this.b18_1 = tmp0_serialDesc;
398
+ this.d18_1 = tmp0_serialDesc;
539
399
  }
540
400
  protoOf($serializer).le = function () {
541
- return this.b18_1;
401
+ return this.d18_1;
542
402
  };
543
403
  protoOf($serializer).ko = function () {
544
404
  // Inline function 'kotlin.arrayOf' call
@@ -547,7 +407,7 @@
547
407
  return [StringSerializer_getInstance(), StringSerializer_getInstance()];
548
408
  };
549
409
  protoOf($serializer).ne = function (decoder) {
550
- var tmp0_desc = this.b18_1;
410
+ var tmp0_desc = this.d18_1;
551
411
  var tmp1_flag = true;
552
412
  var tmp2_index = 0;
553
413
  var tmp3_bitMask0 = 0;
@@ -581,15 +441,15 @@
581
441
  tmp6_input.hh(tmp0_desc);
582
442
  return UserEmailConfirmationNotification_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
583
443
  };
584
- protoOf($serializer).c18 = function (encoder, value) {
585
- var tmp0_desc = this.b18_1;
444
+ protoOf($serializer).e18 = function (encoder, value) {
445
+ var tmp0_desc = this.d18_1;
586
446
  var tmp1_output = encoder.gh(tmp0_desc);
587
447
  tmp1_output.ti(tmp0_desc, 0, value.user_id_key);
588
448
  tmp1_output.ti(tmp0_desc, 1, value.user_confirmation_key);
589
449
  tmp1_output.hh(tmp0_desc);
590
450
  };
591
451
  protoOf($serializer).me = function (encoder, value) {
592
- return this.c18(encoder, value instanceof UserEmailConfirmationNotification ? value : THROW_CCE());
452
+ return this.e18(encoder, value instanceof UserEmailConfirmationNotification ? value : THROW_CCE());
593
453
  };
594
454
  var $serializer_instance;
595
455
  function $serializer_getInstance() {
@@ -599,7 +459,7 @@
599
459
  }
600
460
  function UserEmailConfirmationNotification_init_$Init$(seen1, user_id_key, user_confirmation_key, serializationConstructorMarker, $this) {
601
461
  if (!(3 === (3 & seen1))) {
602
- throwMissingFieldException(seen1, 3, $serializer_getInstance().b18_1);
462
+ throwMissingFieldException(seen1, 3, $serializer_getInstance().d18_1);
603
463
  }
604
464
  $this.user_id_key = user_id_key;
605
465
  $this.user_confirmation_key = user_confirmation_key;
@@ -612,10 +472,10 @@
612
472
  this.user_id_key = user_id_key;
613
473
  this.user_confirmation_key = user_confirmation_key;
614
474
  }
615
- protoOf(UserEmailConfirmationNotification).d18 = function () {
475
+ protoOf(UserEmailConfirmationNotification).f18 = function () {
616
476
  return this.user_id_key;
617
477
  };
618
- protoOf(UserEmailConfirmationNotification).e18 = function () {
478
+ protoOf(UserEmailConfirmationNotification).g18 = function () {
619
479
  return this.user_confirmation_key;
620
480
  };
621
481
  protoOf(UserEmailConfirmationNotification).toJson = function () {
@@ -634,13 +494,13 @@
634
494
  protoOf(UserEmailConfirmationNotification).fa = function () {
635
495
  return this.user_confirmation_key;
636
496
  };
637
- protoOf(UserEmailConfirmationNotification).f18 = function (user_id_key, user_confirmation_key) {
497
+ protoOf(UserEmailConfirmationNotification).h18 = function (user_id_key, user_confirmation_key) {
638
498
  return new UserEmailConfirmationNotification(user_id_key, user_confirmation_key);
639
499
  };
640
500
  protoOf(UserEmailConfirmationNotification).copy = function (user_id_key, user_confirmation_key, $super) {
641
501
  user_id_key = user_id_key === VOID ? this.user_id_key : user_id_key;
642
502
  user_confirmation_key = user_confirmation_key === VOID ? this.user_confirmation_key : user_confirmation_key;
643
- return this.f18(user_id_key, user_confirmation_key);
503
+ return this.h18(user_id_key, user_confirmation_key);
644
504
  };
645
505
  protoOf(UserEmailConfirmationNotification).toString = function () {
646
506
  return 'UserEmailConfirmationNotification(user_id_key=' + this.user_id_key + ', user_confirmation_key=' + this.user_confirmation_key + ')';
@@ -678,16 +538,16 @@
678
538
  this.USER_EMAIL_CONFIRMATION_TOPIC = 'user_email_confirmation_topic';
679
539
  this.USER_EMAIL_CONFIRMATION_GROUP_ID = 'user_email_confirmation_group_id';
680
540
  }
681
- protoOf(UserEmailConfirmationNotificationInfo).g18 = function () {
541
+ protoOf(UserEmailConfirmationNotificationInfo).i18 = function () {
682
542
  return this.USER_ID_KEY;
683
543
  };
684
- protoOf(UserEmailConfirmationNotificationInfo).h18 = function () {
544
+ protoOf(UserEmailConfirmationNotificationInfo).j18 = function () {
685
545
  return this.USER_CONFIRMATION_KEY;
686
546
  };
687
- protoOf(UserEmailConfirmationNotificationInfo).i18 = function () {
547
+ protoOf(UserEmailConfirmationNotificationInfo).k18 = function () {
688
548
  return this.USER_EMAIL_CONFIRMATION_TOPIC;
689
549
  };
690
- protoOf(UserEmailConfirmationNotificationInfo).j18 = function () {
550
+ protoOf(UserEmailConfirmationNotificationInfo).l18 = function () {
691
551
  return this.USER_EMAIL_CONFIRMATION_GROUP_ID;
692
552
  };
693
553
  var UserEmailConfirmationNotificationInfo_instance;
@@ -716,12 +576,8 @@
716
576
  protoOf($serializer).lo = typeParametersSerializers;
717
577
  //endregion
718
578
  //region block: init
719
- Companion_instance = new Companion();
720
- Companion_instance_0 = new Companion_0();
721
- Companion_instance_1 = new Companion_1();
722
- Companion_instance_2 = new Companion_2();
723
579
  UserServiceConfig_instance = new UserServiceConfig();
724
- Companion_instance_3 = new Companion_3();
580
+ Companion_instance = new Companion();
725
581
  UserEmailConfirmationNotificationInfo_instance = new UserEmailConfirmationNotificationInfo();
726
582
  //endregion
727
583
  //region block: exports
@@ -741,7 +597,6 @@
741
597
  var $com$munchies$user$infrastructure$adapter$inbound = $com$munchies$user$infrastructure$adapter.inbound || ($com$munchies$user$infrastructure$adapter.inbound = {});
742
598
  var $com$munchies$user$infrastructure$adapter$inbound$request = $com$munchies$user$infrastructure$adapter$inbound.request || ($com$munchies$user$infrastructure$adapter$inbound.request = {});
743
599
  $com$munchies$user$infrastructure$adapter$inbound$request.LoginUserRequest = LoginUserRequest;
744
- defineProp($com$munchies$user$infrastructure$adapter$inbound$request.LoginUserRequest, 'Companion', Companion_getInstance);
745
600
  var $com = _.com || (_.com = {});
746
601
  var $com$munchies = $com.munchies || ($com.munchies = {});
747
602
  var $com$munchies$user = $com$munchies.user || ($com$munchies.user = {});
@@ -750,7 +605,6 @@
750
605
  var $com$munchies$user$infrastructure$adapter$inbound = $com$munchies$user$infrastructure$adapter.inbound || ($com$munchies$user$infrastructure$adapter.inbound = {});
751
606
  var $com$munchies$user$infrastructure$adapter$inbound$request = $com$munchies$user$infrastructure$adapter$inbound.request || ($com$munchies$user$infrastructure$adapter$inbound.request = {});
752
607
  $com$munchies$user$infrastructure$adapter$inbound$request.RegisterUserRequest = RegisterUserRequest;
753
- defineProp($com$munchies$user$infrastructure$adapter$inbound$request.RegisterUserRequest, 'Companion', Companion_getInstance_0);
754
608
  var $com = _.com || (_.com = {});
755
609
  var $com$munchies = $com.munchies || ($com.munchies = {});
756
610
  var $com$munchies$user = $com$munchies.user || ($com$munchies.user = {});
@@ -759,7 +613,6 @@
759
613
  var $com$munchies$user$infrastructure$adapter$inbound = $com$munchies$user$infrastructure$adapter.inbound || ($com$munchies$user$infrastructure$adapter.inbound = {});
760
614
  var $com$munchies$user$infrastructure$adapter$inbound$request = $com$munchies$user$infrastructure$adapter$inbound.request || ($com$munchies$user$infrastructure$adapter$inbound.request = {});
761
615
  $com$munchies$user$infrastructure$adapter$inbound$request.UpdateUserInfoRequest = UpdateUserInfoRequest;
762
- defineProp($com$munchies$user$infrastructure$adapter$inbound$request.UpdateUserInfoRequest, 'Companion', Companion_getInstance_1);
763
616
  var $com = _.com || (_.com = {});
764
617
  var $com$munchies = $com.munchies || ($com.munchies = {});
765
618
  var $com$munchies$user = $com$munchies.user || ($com$munchies.user = {});
@@ -768,7 +621,6 @@
768
621
  var $com$munchies$user$infrastructure$adapter$inbound = $com$munchies$user$infrastructure$adapter.inbound || ($com$munchies$user$infrastructure$adapter.inbound = {});
769
622
  var $com$munchies$user$infrastructure$adapter$inbound$request = $com$munchies$user$infrastructure$adapter$inbound.request || ($com$munchies$user$infrastructure$adapter$inbound.request = {});
770
623
  $com$munchies$user$infrastructure$adapter$inbound$request.UpdateUserPasswordRequest = UpdateUserPasswordRequest;
771
- defineProp($com$munchies$user$infrastructure$adapter$inbound$request.UpdateUserPasswordRequest, 'Companion', Companion_getInstance_2);
772
624
  var $com = _.com || (_.com = {});
773
625
  var $com$munchies = $com.munchies || ($com.munchies = {});
774
626
  var $com$munchies$user = $com$munchies.user || ($com$munchies.user = {});
@@ -786,7 +638,7 @@
786
638
  var $com$munchies$user$infrastructure$adapter$outbound = $com$munchies$user$infrastructure$adapter.outbound || ($com$munchies$user$infrastructure$adapter.outbound = {});
787
639
  var $com$munchies$user$infrastructure$adapter$outbound$notification = $com$munchies$user$infrastructure$adapter$outbound.notification || ($com$munchies$user$infrastructure$adapter$outbound.notification = {});
788
640
  $com$munchies$user$infrastructure$adapter$outbound$notification.UserEmailConfirmationNotification = UserEmailConfirmationNotification;
789
- defineProp($com$munchies$user$infrastructure$adapter$outbound$notification.UserEmailConfirmationNotification, 'Companion', Companion_getInstance_3);
641
+ defineProp($com$munchies$user$infrastructure$adapter$outbound$notification.UserEmailConfirmationNotification, 'Companion', Companion_getInstance);
790
642
  $com$munchies$user$infrastructure$adapter$outbound$notification.userEmailConfirmationNotificationFromJson = userEmailConfirmationNotificationFromJson;
791
643
  var $com = _.com || (_.com = {});
792
644
  var $com$munchies = $com.munchies || ($com.munchies = {});
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/dto/UserDTO.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/LoginUserRequest.kt","../../../../../user-shared/build/compileSync/js/main/productionLibrary/kotlin/src/kotlin/text/Strings.kt","../../../../../user-shared/build/compileSync/js/main/productionLibrary/kotlin/src/kotlin/util/Preconditions.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/RegisterUserRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/UpdateUserInfoRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/UpdateUserPasswordRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/web/config/UserServiceConfig.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotification.kt","../../../../../user-shared/build/compileSync/js/main/productionLibrary/kotlin/js-ir/builtins/Library.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/Serializers.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/internal/Platform.common.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/SerialFormat.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/formats/json/commonMain/src/kotlinx/serialization/json/Json.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationInfo.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationObserver.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationSubject.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["<init>","id","username","email","role","<get-id>","<get-username>","<get-email>","<get-role>","component1","component2","component3","component4","copy","copy$default","toString","hashCode","result","equals","other","validate","request","message","password","<get-password>","user","hashedPassword","saltValue","<get-user>","<get-hashedPassword>","<get-saltValue>","oldHashedPassword","newPassword","<get-oldHashedPassword>","<get-newPassword>","<get-SERVICE_NAME>","<get-SERVICE_PATH>","<get-GET_USER_PATH>","<get-REGISTER_USER_PATH>","<get-LOGIN_USER_PATH>","<get-UPDATE_USER_PASSWORD_PATH>","<get-UPDATE_USER_INFO_PATH>","<get-DELETE_USER_PATH>","<get-VERIFY_EMAIL_PATH>","<get-SERVICE_PORT>","serializer","<get-descriptor>","childSerializers","deserialize","decoder","serialize","encoder","value","UserEmailConfirmationNotification_init_$Init$","seen1","user_id_key","user_confirmation_key","serializationConstructorMarker","UserEmailConfirmationNotification_init_$Create$","<get-user_id_key>","<get-user_confirmation_key>","toJson","userEmailConfirmationNotificationFromJson","json","<get-USER_ID_KEY>","<get-USER_CONFIRMATION_KEY>","<get-USER_EMAIL_CONFIRMATION_TOPIC>","<get-USER_EMAIL_CONFIRMATION_GROUP_ID>"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/dto/UserDTO.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/LoginUserRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/RegisterUserRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/UpdateUserInfoRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/request/UpdateUserPasswordRequest.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/inbound/web/config/UserServiceConfig.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotification.kt","../../../../../user-shared/build/compileSync/js/main/productionLibrary/kotlin/js-ir/builtins/Library.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/Serializers.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/internal/Platform.common.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/SerialFormat.kt","../../../../../../../../../../opt/buildAgent/work/b2fef8360e1bcf3d/formats/json/commonMain/src/kotlinx/serialization/json/Json.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationInfo.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationObserver.kt","../../../../../user-shared/src/commonMain/kotlin/com/munchies/user/infrastructure/adapter/outbound/notification/UserEmailConfirmationNotificationSubject.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["<init>","id","username","email","role","<get-id>","<get-username>","<get-email>","<get-role>","component1","component2","component3","component4","copy","copy$default","toString","hashCode","result","equals","other","password","<get-password>","user","hashedPassword","saltValue","<get-user>","<get-hashedPassword>","<get-saltValue>","oldHashedPassword","newPassword","<get-oldHashedPassword>","<get-newPassword>","component5","<get-SERVICE_NAME>","<get-SERVICE_PATH>","<get-GET_USER_PATH>","<get-REGISTER_USER_PATH>","<get-LOGIN_USER_PATH>","<get-UPDATE_USER_PASSWORD_PATH>","<get-UPDATE_USER_INFO_PATH>","<get-DELETE_USER_PATH>","<get-VERIFY_EMAIL_PATH>","<get-SERVICE_PORT>","serializer","<get-descriptor>","childSerializers","deserialize","decoder","serialize","encoder","value","UserEmailConfirmationNotification_init_$Init$","seen1","user_id_key","user_confirmation_key","serializationConstructorMarker","UserEmailConfirmationNotification_init_$Create$","<get-user_id_key>","<get-user_confirmation_key>","toJson","userEmailConfirmationNotificationFromJson","json","<get-USER_ID_KEY>","<get-USER_CONFIRMATION_KEY>","<get-USER_EMAIL_CONFIRMATION_TOPIC>","<get-USER_EMAIL_CONFIRMATION_GROUP_ID>"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "munchies-user-service-shared",
3
- "version": "0.16.1",
3
+ "version": "0.17.0",
4
4
  "main": "kotlin/munchies-user-shared.js",
5
5
  "types": "kotlin/munchies-user-shared.d.ts",
6
6
  "devDependencies": {