oro-sdk 2.13.0 → 2.15.1-dev1

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.
@@ -1398,25 +1398,35 @@ function populateWorkflowField(_x6, _x7) {
1398
1398
 
1399
1399
  function _populateWorkflowField() {
1400
1400
  _populateWorkflowField = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(question, answerValue) {
1401
- var answer, displayedAnswer;
1401
+ var answer, displayedAnswer, displayedAnswer1, displayedAnswer2;
1402
1402
  return runtime_1.wrap(function _callee4$(_context4) {
1403
1403
  while (1) {
1404
1404
  switch (_context4.prev = _context4.next) {
1405
1405
  case 0:
1406
1406
  displayedAnswer = undefined;
1407
1407
  _context4.t0 = question.kind;
1408
- _context4.next = _context4.t0 === 'radio' ? 4 : _context4.t0 === 'radio-card' ? 4 : _context4.t0 === 'select' ? 4 : _context4.t0 === 'multiple' ? 7 : _context4.t0 === 'checkbox-group' ? 7 : _context4.t0 === 'images' ? 10 : 14;
1408
+ _context4.next = _context4.t0 === 'hybrid' ? 4 : _context4.t0 === 'radio' ? 7 : _context4.t0 === 'radio-card' ? 7 : _context4.t0 === 'select' ? 7 : _context4.t0 === 'multiple' ? 10 : _context4.t0 === 'checkbox-group' ? 10 : _context4.t0 === 'images' ? 13 : 17;
1409
1409
  break;
1410
1410
 
1411
1411
  case 4:
1412
1412
  if (question.answers) {
1413
- displayedAnswer = question.answers[answerValue].text;
1413
+ displayedAnswer1 = question.answers[answerValue].text.split(" ")[0];
1414
+ displayedAnswer2 = question.answers[answerValue].text.split(" ")[1];
1415
+ displayedAnswer = displayedAnswer1 + " " + displayedAnswer2;
1414
1416
  }
1415
1417
 
1416
1418
  answer = answerValue;
1417
- return _context4.abrupt("break", 15);
1419
+ return _context4.abrupt("break", 18);
1418
1420
 
1419
1421
  case 7:
1422
+ if (question.answers) {
1423
+ displayedAnswer = question.answers[answerValue].text;
1424
+ }
1425
+
1426
+ answer = answerValue;
1427
+ return _context4.abrupt("break", 18);
1428
+
1429
+ case 10:
1420
1430
  displayedAnswer = answerValue.map(function (value) {
1421
1431
  if (question.answers) {
1422
1432
  return question.answers[value].text;
@@ -1425,10 +1435,10 @@ function _populateWorkflowField() {
1425
1435
  throw new WorkflowAnswersMissingError();
1426
1436
  });
1427
1437
  answer = answerValue;
1428
- return _context4.abrupt("break", 15);
1438
+ return _context4.abrupt("break", 18);
1429
1439
 
1430
- case 10:
1431
- _context4.next = 12;
1440
+ case 13:
1441
+ _context4.next = 15;
1432
1442
  return getImagesFromIndexDb(answerValue).then(function (images) {
1433
1443
  return images.map(function (image) {
1434
1444
  var name = image.name,
@@ -1440,21 +1450,21 @@ function _populateWorkflowField() {
1440
1450
  });
1441
1451
  });
1442
1452
 
1443
- case 12:
1453
+ case 15:
1444
1454
  answer = _context4.sent;
1445
- return _context4.abrupt("break", 15);
1455
+ return _context4.abrupt("break", 18);
1446
1456
 
1447
- case 14:
1457
+ case 17:
1448
1458
  answer = answerValue;
1449
1459
 
1450
- case 15:
1460
+ case 18:
1451
1461
  return _context4.abrupt("return", Promise.resolve({
1452
1462
  answer: answer,
1453
1463
  displayedAnswer: displayedAnswer,
1454
1464
  kind: question.kind
1455
1465
  }));
1456
1466
 
1457
- case 16:
1467
+ case 19:
1458
1468
  case "end":
1459
1469
  return _context4.stop();
1460
1470
  }
@@ -2383,8 +2393,8 @@ var OroClient = /*#__PURE__*/function () {
2383
2393
  _proto.signUp =
2384
2394
  /*#__PURE__*/
2385
2395
  function () {
2386
- var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription) {
2387
- var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, signupRequest, identity, symetricEncryptor;
2396
+ var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
2397
+ var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, emailConfirmed, signupRequest, identity, symetricEncryptor;
2388
2398
  return runtime_1.wrap(function _callee2$(_context2) {
2389
2399
  while (1) {
2390
2400
  switch (_context2.prev = _context2.next) {
@@ -2394,9 +2404,11 @@ var OroClient = /*#__PURE__*/function () {
2394
2404
  symmetricEncryptor = this.toolbox.CryptoChaCha.fromPassphrase(password);
2395
2405
  recoveryPassword = symmetricEncryptor.bytesEncryptToBase64Payload(privateKey);
2396
2406
  hashedPassword = this.toolbox.hashStringToBase64(this.toolbox.hashStringToBase64(password));
2407
+ emailConfirmed = !!skipEmailValidation;
2397
2408
  signupRequest = {
2398
2409
  practiceUuid: practice.uuid,
2399
2410
  email: email.toLowerCase(),
2411
+ emailConfirmed: emailConfirmed,
2400
2412
  password: hashedPassword,
2401
2413
  publicKey: this.toolbox.encodeToBase64(this.rsa["public"]()),
2402
2414
  recoveryPassword: recoveryPassword,
@@ -2404,10 +2416,10 @@ var OroClient = /*#__PURE__*/function () {
2404
2416
  tokenData: tokenData,
2405
2417
  subscription: subscription
2406
2418
  };
2407
- _context2.next = 8;
2419
+ _context2.next = 9;
2408
2420
  return this.guardClient.identityCreate(signupRequest);
2409
2421
 
2410
- case 8:
2422
+ case 9:
2411
2423
  identity = _context2.sent;
2412
2424
 
2413
2425
  if (identity.recoveryLogin) {
@@ -2418,7 +2430,7 @@ var OroClient = /*#__PURE__*/function () {
2418
2430
 
2419
2431
  return _context2.abrupt("return", identity);
2420
2432
 
2421
- case 11:
2433
+ case 12:
2422
2434
  case "end":
2423
2435
  return _context2.stop();
2424
2436
  }
@@ -2426,7 +2438,7 @@ var OroClient = /*#__PURE__*/function () {
2426
2438
  }, _callee2, this);
2427
2439
  }));
2428
2440
 
2429
- function signUp(_x, _x2, _x3, _x4, _x5, _x6) {
2441
+ function signUp(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
2430
2442
  return _signUp.apply(this, arguments);
2431
2443
  }
2432
2444
 
@@ -2468,7 +2480,7 @@ var OroClient = /*#__PURE__*/function () {
2468
2480
  }, _callee3, this);
2469
2481
  }));
2470
2482
 
2471
- function confirmEmail(_x7) {
2483
+ function confirmEmail(_x8) {
2472
2484
  return _confirmEmail.apply(this, arguments);
2473
2485
  }
2474
2486
 
@@ -2529,7 +2541,7 @@ var OroClient = /*#__PURE__*/function () {
2529
2541
  }, _callee4, this);
2530
2542
  }));
2531
2543
 
2532
- function signIn(_x8, _x9, _x10, _x11) {
2544
+ function signIn(_x9, _x10, _x11, _x12) {
2533
2545
  return _signIn.apply(this, arguments);
2534
2546
  }
2535
2547
 
@@ -2720,7 +2732,7 @@ var OroClient = /*#__PURE__*/function () {
2720
2732
  }, _callee7, this);
2721
2733
  }));
2722
2734
 
2723
- function registerPatient$1(_x12, _x13, _x14, _x15) {
2735
+ function registerPatient$1(_x13, _x14, _x15, _x16) {
2724
2736
  return _registerPatient2.apply(this, arguments);
2725
2737
  }
2726
2738
 
@@ -2766,7 +2778,7 @@ var OroClient = /*#__PURE__*/function () {
2766
2778
  }, _callee8, this);
2767
2779
  }));
2768
2780
 
2769
- function buildVaultIndex(_x16) {
2781
+ function buildVaultIndex(_x17) {
2770
2782
  return _buildVaultIndex.apply(this, arguments);
2771
2783
  }
2772
2784
 
@@ -2843,7 +2855,7 @@ var OroClient = /*#__PURE__*/function () {
2843
2855
  }, _callee9);
2844
2856
  }));
2845
2857
 
2846
- return function (_x17) {
2858
+ return function (_x18) {
2847
2859
  return _ref2.apply(this, arguments);
2848
2860
  };
2849
2861
  }())).then(function (consults) {
@@ -2995,7 +3007,7 @@ var OroClient = /*#__PURE__*/function () {
2995
3007
  }, _callee11, this);
2996
3008
  }));
2997
3009
 
2998
- function vaultIndexAdd(_x18, _x19) {
3010
+ function vaultIndexAdd(_x19, _x20) {
2999
3011
  return _vaultIndexAdd.apply(this, arguments);
3000
3012
  }
3001
3013
 
@@ -3054,7 +3066,7 @@ var OroClient = /*#__PURE__*/function () {
3054
3066
  }, _callee12, this);
3055
3067
  }));
3056
3068
 
3057
- function indexSnapshotAdd(_x20) {
3069
+ function indexSnapshotAdd(_x21) {
3058
3070
  return _indexSnapshotAdd.apply(this, arguments);
3059
3071
  }
3060
3072
 
@@ -3113,7 +3125,7 @@ var OroClient = /*#__PURE__*/function () {
3113
3125
  }, _callee13, this);
3114
3126
  }));
3115
3127
 
3116
- function grantLockbox(_x21, _x22, _x23) {
3128
+ function grantLockbox(_x22, _x23, _x24) {
3117
3129
  return _grantLockbox.apply(this, arguments);
3118
3130
  }
3119
3131
 
@@ -3185,7 +3197,7 @@ var OroClient = /*#__PURE__*/function () {
3185
3197
  }, _callee14, this);
3186
3198
  }));
3187
3199
 
3188
- function createMessageData(_x24, _x25, _x26, _x27, _x28) {
3200
+ function createMessageData(_x25, _x26, _x27, _x28, _x29) {
3189
3201
  return _createMessageData.apply(this, arguments);
3190
3202
  }
3191
3203
 
@@ -3271,7 +3283,7 @@ var OroClient = /*#__PURE__*/function () {
3271
3283
  }, _callee15, this);
3272
3284
  }));
3273
3285
 
3274
- function createMessageAttachmentData(_x29, _x30, _x31, _x32, _x33) {
3286
+ function createMessageAttachmentData(_x30, _x31, _x32, _x33, _x34) {
3275
3287
  return _createMessageAttachmentData.apply(this, arguments);
3276
3288
  }
3277
3289
 
@@ -3343,7 +3355,7 @@ var OroClient = /*#__PURE__*/function () {
3343
3355
  }, _callee16, this);
3344
3356
  }));
3345
3357
 
3346
- function createConsultationAttachmentData(_x34, _x35, _x36, _x37, _x38, _x39) {
3358
+ function createConsultationAttachmentData(_x35, _x36, _x37, _x38, _x39, _x40) {
3347
3359
  return _createConsultationAttachmentData.apply(this, arguments);
3348
3360
  }
3349
3361
 
@@ -3401,7 +3413,7 @@ var OroClient = /*#__PURE__*/function () {
3401
3413
  }, _callee17, this);
3402
3414
  }));
3403
3415
 
3404
- function createJsonData(_x40, _x41, _x42, _x43, _x44, _x45) {
3416
+ function createJsonData(_x41, _x42, _x43, _x44, _x45, _x46) {
3405
3417
  return _createJsonData.apply(this, arguments);
3406
3418
  }
3407
3419
 
@@ -3464,7 +3476,7 @@ var OroClient = /*#__PURE__*/function () {
3464
3476
  }, _callee18, this);
3465
3477
  }));
3466
3478
 
3467
- function getOrInsertJsonData(_x46, _x47, _x48, _x49, _x50) {
3479
+ function getOrInsertJsonData(_x47, _x48, _x49, _x50, _x51) {
3468
3480
  return _getOrInsertJsonData.apply(this, arguments);
3469
3481
  }
3470
3482
 
@@ -3522,7 +3534,7 @@ var OroClient = /*#__PURE__*/function () {
3522
3534
  }, _callee19, this);
3523
3535
  }));
3524
3536
 
3525
- function createBytesData(_x51, _x52, _x53, _x54, _x55, _x56) {
3537
+ function createBytesData(_x52, _x53, _x54, _x55, _x56, _x57) {
3526
3538
  return _createBytesData.apply(this, arguments);
3527
3539
  }
3528
3540
 
@@ -3576,7 +3588,7 @@ var OroClient = /*#__PURE__*/function () {
3576
3588
  }, _callee20, this);
3577
3589
  }));
3578
3590
 
3579
- function getJsonData(_x57, _x58, _x59) {
3591
+ function getJsonData(_x58, _x59, _x60) {
3580
3592
  return _getJsonData.apply(this, arguments);
3581
3593
  }
3582
3594
 
@@ -3626,7 +3638,7 @@ var OroClient = /*#__PURE__*/function () {
3626
3638
  }, _callee21, this);
3627
3639
  }));
3628
3640
 
3629
- function getBytesData(_x60, _x61, _x62) {
3641
+ function getBytesData(_x61, _x62, _x63) {
3630
3642
  return _getBytesData.apply(this, arguments);
3631
3643
  }
3632
3644
 
@@ -3732,7 +3744,7 @@ var OroClient = /*#__PURE__*/function () {
3732
3744
  }, _callee22, this);
3733
3745
  }));
3734
3746
 
3735
- function getGrants(_x63, _x64) {
3747
+ function getGrants(_x64, _x65) {
3736
3748
  return _getGrants.apply(this, arguments);
3737
3749
  }
3738
3750
 
@@ -3797,7 +3809,7 @@ var OroClient = /*#__PURE__*/function () {
3797
3809
  }, _callee23, this);
3798
3810
  }));
3799
3811
 
3800
- function getCachedSecretCryptor(_x65, _x66) {
3812
+ function getCachedSecretCryptor(_x66, _x67) {
3801
3813
  return _getCachedSecretCryptor.apply(this, arguments);
3802
3814
  }
3803
3815
 
@@ -3836,7 +3848,7 @@ var OroClient = /*#__PURE__*/function () {
3836
3848
  }, _callee24, this);
3837
3849
  }));
3838
3850
 
3839
- function getPersonalInformationsFromConsultId(_x67, _x68, _x69) {
3851
+ function getPersonalInformationsFromConsultId(_x68, _x69, _x70) {
3840
3852
  return _getPersonalInformationsFromConsultId.apply(this, arguments);
3841
3853
  }
3842
3854
 
@@ -3874,7 +3886,7 @@ var OroClient = /*#__PURE__*/function () {
3874
3886
  }, _callee25, this);
3875
3887
  }));
3876
3888
 
3877
- function getMedicalDataFromConsultId(_x70, _x71) {
3889
+ function getMedicalDataFromConsultId(_x71, _x72) {
3878
3890
  return _getMedicalDataFromConsultId.apply(this, arguments);
3879
3891
  }
3880
3892
 
@@ -3967,7 +3979,7 @@ var OroClient = /*#__PURE__*/function () {
3967
3979
  }, _callee26);
3968
3980
  }));
3969
3981
 
3970
- return function (_x75) {
3982
+ return function (_x76) {
3971
3983
  return _ref3.apply(this, arguments);
3972
3984
  };
3973
3985
  }()));
@@ -4008,7 +4020,7 @@ var OroClient = /*#__PURE__*/function () {
4008
4020
  }, _callee27, this);
4009
4021
  }));
4010
4022
 
4011
- function getMetaCategoryFromConsultId(_x72, _x73, _x74) {
4023
+ function getMetaCategoryFromConsultId(_x73, _x74, _x75) {
4012
4024
  return _getMetaCategoryFromConsultId.apply(this, arguments);
4013
4025
  }
4014
4026
 
@@ -4095,7 +4107,7 @@ var OroClient = /*#__PURE__*/function () {
4095
4107
  }, _callee28, this);
4096
4108
  }));
4097
4109
 
4098
- function getPersonalInformations(_x76) {
4110
+ function getPersonalInformations(_x77) {
4099
4111
  return _getPersonalInformations.apply(this, arguments);
4100
4112
  }
4101
4113
 
@@ -4144,7 +4156,7 @@ var OroClient = /*#__PURE__*/function () {
4144
4156
  }, _callee29, this);
4145
4157
  }));
4146
4158
 
4147
- function getGrantFromConsultId(_x77) {
4159
+ function getGrantFromConsultId(_x78) {
4148
4160
  return _getGrantFromConsultId.apply(this, arguments);
4149
4161
  }
4150
4162
 
@@ -4194,7 +4206,7 @@ var OroClient = /*#__PURE__*/function () {
4194
4206
  }, _callee30, this);
4195
4207
  }));
4196
4208
 
4197
- function getIdentityFromConsultId(_x78) {
4209
+ function getIdentityFromConsultId(_x79) {
4198
4210
  return _getIdentityFromConsultId.apply(this, arguments);
4199
4211
  }
4200
4212
 
@@ -4273,7 +4285,7 @@ var OroClient = /*#__PURE__*/function () {
4273
4285
  }, _callee31);
4274
4286
  }));
4275
4287
 
4276
- return function (_x84) {
4288
+ return function (_x85) {
4277
4289
  return _ref4.apply(this, arguments);
4278
4290
  };
4279
4291
  }())).then(function (manifest) {
@@ -4289,7 +4301,7 @@ var OroClient = /*#__PURE__*/function () {
4289
4301
  }, _callee32, this);
4290
4302
  }));
4291
4303
 
4292
- function getLockboxManifest(_x79, _x80, _x81, _x82, _x83) {
4304
+ function getLockboxManifest(_x80, _x81, _x82, _x83, _x84) {
4293
4305
  return _getLockboxManifest.apply(this, arguments);
4294
4306
  }
4295
4307
 
@@ -4359,7 +4371,7 @@ var OroClient = /*#__PURE__*/function () {
4359
4371
  }, _callee33, this);
4360
4372
  }));
4361
4373
 
4362
- function createPersonalInformations(_x85, _x86, _x87) {
4374
+ function createPersonalInformations(_x86, _x87, _x88) {
4363
4375
  return _createPersonalInformations.apply(this, arguments);
4364
4376
  }
4365
4377
 
@@ -4429,7 +4441,7 @@ var OroClient = /*#__PURE__*/function () {
4429
4441
  }, _callee34, this);
4430
4442
  }));
4431
4443
 
4432
- function createUserPreference(_x88, _x89, _x90) {
4444
+ function createUserPreference(_x89, _x90, _x91) {
4433
4445
  return _createUserPreference.apply(this, arguments);
4434
4446
  }
4435
4447
 
@@ -4497,7 +4509,7 @@ var OroClient = /*#__PURE__*/function () {
4497
4509
  }, _callee35, this);
4498
4510
  }));
4499
4511
 
4500
- function getDataFromGrant(_x91, _x92) {
4512
+ function getDataFromGrant(_x92, _x93) {
4501
4513
  return _getDataFromGrant.apply(this, arguments);
4502
4514
  }
4503
4515
 
@@ -4546,7 +4558,7 @@ var OroClient = /*#__PURE__*/function () {
4546
4558
  }, _callee36, this);
4547
4559
  }));
4548
4560
 
4549
- function getUserPreferenceFromConsultId(_x93) {
4561
+ function getUserPreferenceFromConsultId(_x94) {
4550
4562
  return _getUserPreferenceFromConsultId.apply(this, arguments);
4551
4563
  }
4552
4564
 
@@ -4597,7 +4609,7 @@ var OroClient = /*#__PURE__*/function () {
4597
4609
  }, _callee37, this);
4598
4610
  }));
4599
4611
 
4600
- function getUserPreference(_x94) {
4612
+ function getUserPreference(_x95) {
4601
4613
  return _getUserPreference.apply(this, arguments);
4602
4614
  }
4603
4615
 
@@ -4646,7 +4658,7 @@ var OroClient = /*#__PURE__*/function () {
4646
4658
  }, _callee38, this);
4647
4659
  }));
4648
4660
 
4649
- function getRecoveryDataFromConsultId(_x95) {
4661
+ function getRecoveryDataFromConsultId(_x96) {
4650
4662
  return _getRecoveryDataFromConsultId.apply(this, arguments);
4651
4663
  }
4652
4664
 
@@ -4697,7 +4709,7 @@ var OroClient = /*#__PURE__*/function () {
4697
4709
  }, _callee39, this);
4698
4710
  }));
4699
4711
 
4700
- function getRecoveryData(_x96) {
4712
+ function getRecoveryData(_x97) {
4701
4713
  return _getRecoveryData.apply(this, arguments);
4702
4714
  }
4703
4715
 
@@ -4759,7 +4771,7 @@ var OroClient = /*#__PURE__*/function () {
4759
4771
  }, _callee40);
4760
4772
  }));
4761
4773
 
4762
- return function (_x99) {
4774
+ return function (_x100) {
4763
4775
  return _ref5.apply(this, arguments);
4764
4776
  };
4765
4777
  }())).then(function (promise) {
@@ -4779,7 +4791,7 @@ var OroClient = /*#__PURE__*/function () {
4779
4791
  }, _callee41, this);
4780
4792
  }));
4781
4793
 
4782
- function getAssignedConsultations(_x97, _x98) {
4794
+ function getAssignedConsultations(_x98, _x99) {
4783
4795
  return _getAssignedConsultations.apply(this, arguments);
4784
4796
  }
4785
4797
 
@@ -4857,7 +4869,7 @@ var OroClient = /*#__PURE__*/function () {
4857
4869
  }, _callee42);
4858
4870
  }));
4859
4871
 
4860
- return function (_x102) {
4872
+ return function (_x103) {
4861
4873
  return _ref6.apply(this, arguments);
4862
4874
  };
4863
4875
  }()));
@@ -4873,7 +4885,7 @@ var OroClient = /*#__PURE__*/function () {
4873
4885
  }, _callee43, this);
4874
4886
  }));
4875
4887
 
4876
- function getPastConsultationsFromConsultId(_x100, _x101) {
4888
+ function getPastConsultationsFromConsultId(_x101, _x102) {
4877
4889
  return _getPastConsultationsFromConsultId.apply(this, arguments);
4878
4890
  }
4879
4891
 
@@ -4931,7 +4943,7 @@ var OroClient = /*#__PURE__*/function () {
4931
4943
  }, _callee44, this);
4932
4944
  }));
4933
4945
 
4934
- function getPatientConsultationData(_x103, _x104) {
4946
+ function getPatientConsultationData(_x104, _x105) {
4935
4947
  return _getPatientConsultationData.apply(this, arguments);
4936
4948
  }
4937
4949
 
@@ -4965,7 +4977,7 @@ var OroClient = /*#__PURE__*/function () {
4965
4977
  }, _callee45, this);
4966
4978
  }));
4967
4979
 
4968
- function getPatientPrescriptionsList(_x105) {
4980
+ function getPatientPrescriptionsList(_x106) {
4969
4981
  return _getPatientPrescriptionsList.apply(this, arguments);
4970
4982
  }
4971
4983
 
@@ -4999,7 +5011,7 @@ var OroClient = /*#__PURE__*/function () {
4999
5011
  }, _callee46, this);
5000
5012
  }));
5001
5013
 
5002
- function getPatientResultsList(_x106) {
5014
+ function getPatientResultsList(_x107) {
5003
5015
  return _getPatientResultsList.apply(this, arguments);
5004
5016
  }
5005
5017
 
@@ -5033,7 +5045,7 @@ var OroClient = /*#__PURE__*/function () {
5033
5045
  }, _callee47, this);
5034
5046
  }));
5035
5047
 
5036
- function getPatientTreatmentPlans(_x107) {
5048
+ function getPatientTreatmentPlans(_x108) {
5037
5049
  return _getPatientTreatmentPlans.apply(this, arguments);
5038
5050
  }
5039
5051
 
@@ -5069,7 +5081,7 @@ var OroClient = /*#__PURE__*/function () {
5069
5081
  }, _callee48, this);
5070
5082
  }));
5071
5083
 
5072
- function getPatientTreatmentPlanByUuid(_x108, _x109) {
5084
+ function getPatientTreatmentPlanByUuid(_x109, _x110) {
5073
5085
  return _getPatientTreatmentPlanByUuid.apply(this, arguments);
5074
5086
  }
5075
5087
 
@@ -5126,7 +5138,7 @@ var OroClient = /*#__PURE__*/function () {
5126
5138
  }, _callee49);
5127
5139
  }));
5128
5140
 
5129
- return function (_x113) {
5141
+ return function (_x114) {
5130
5142
  return _ref7.apply(this, arguments);
5131
5143
  };
5132
5144
  }()));
@@ -5144,7 +5156,7 @@ var OroClient = /*#__PURE__*/function () {
5144
5156
  }, _callee50, this);
5145
5157
  }));
5146
5158
 
5147
- function getPatientDocumentsList(_x110, _x111, _x112) {
5159
+ function getPatientDocumentsList(_x111, _x112, _x113) {
5148
5160
  return _getPatientDocumentsList.apply(this, arguments);
5149
5161
  }
5150
5162
 
@@ -5206,7 +5218,7 @@ var OroClient = /*#__PURE__*/function () {
5206
5218
  }, _callee51, this);
5207
5219
  }));
5208
5220
 
5209
- function recoverPrivateKeyFromSecurityQuestions(_x114, _x115, _x116, _x117) {
5221
+ function recoverPrivateKeyFromSecurityQuestions(_x115, _x116, _x117, _x118) {
5210
5222
  return _recoverPrivateKeyFromSecurityQuestions.apply(this, arguments);
5211
5223
  }
5212
5224
 
@@ -5254,7 +5266,7 @@ var OroClient = /*#__PURE__*/function () {
5254
5266
  }, _callee52, this);
5255
5267
  }));
5256
5268
 
5257
- function recoverPrivateKeyFromPassword(_x118, _x119) {
5269
+ function recoverPrivateKeyFromPassword(_x119, _x120) {
5258
5270
  return _recoverPrivateKeyFromPassword.apply(this, arguments);
5259
5271
  }
5260
5272
 
@@ -5294,7 +5306,7 @@ var OroClient = /*#__PURE__*/function () {
5294
5306
  }, _callee53, this);
5295
5307
  }));
5296
5308
 
5297
- function recoverPrivateKeyFromMasterKey(_x120, _x121) {
5309
+ function recoverPrivateKeyFromMasterKey(_x121, _x122) {
5298
5310
  return _recoverPrivateKeyFromMasterKey.apply(this, arguments);
5299
5311
  }
5300
5312
 
@@ -5345,7 +5357,7 @@ var OroClient = /*#__PURE__*/function () {
5345
5357
  }, _callee54, this);
5346
5358
  }));
5347
5359
 
5348
- function updateSecurityQuestions(_x122, _x123, _x124, _x125) {
5360
+ function updateSecurityQuestions(_x123, _x124, _x125, _x126) {
5349
5361
  return _updateSecurityQuestions.apply(this, arguments);
5350
5362
  }
5351
5363
 
@@ -5410,7 +5422,7 @@ var OroClient = /*#__PURE__*/function () {
5410
5422
  }, _callee55, this);
5411
5423
  }));
5412
5424
 
5413
- function updatePassword(_x126, _x127, _x128) {
5425
+ function updatePassword(_x127, _x128, _x129) {
5414
5426
  return _updatePassword.apply(this, arguments);
5415
5427
  }
5416
5428
 
@@ -5472,7 +5484,7 @@ var OroClient = /*#__PURE__*/function () {
5472
5484
  }, _callee56, this);
5473
5485
  }));
5474
5486
 
5475
- function updateMasterKey(_x129, _x130, _x131) {
5487
+ function updateMasterKey(_x130, _x131, _x132) {
5476
5488
  return _updateMasterKey.apply(this, arguments);
5477
5489
  }
5478
5490