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.
package/dist/client.d.ts CHANGED
@@ -32,7 +32,7 @@ export declare class OroClient {
32
32
  * @param tokenData
33
33
  * @returns
34
34
  */
35
- signUp(email: string, password: string, practice: Practice, tosAndCpAcceptance: TosAndCpAcceptanceRequest, tokenData?: TokenData, subscription?: boolean): Promise<IdentityResponse>;
35
+ signUp(email: string, password: string, practice: Practice, tosAndCpAcceptance: TosAndCpAcceptanceRequest, tokenData?: TokenData, subscription?: boolean, skipEmailValidation?: boolean): Promise<IdentityResponse>;
36
36
  /**
37
37
  * Parse the given accessToken claims by calling guard whoami and update theidentity to set it's emailConfirmed flag
38
38
  * @param accessToken
@@ -1,5 +1,5 @@
1
1
  import { MetadataCategory, PopulatedWorkflowData, SelectedAnswerData, SelectedAnswersData, WorkflowData, WorkflowUploadedImage } from 'oro-sdk-apis';
2
- export declare function filterTriggeredAnsweredWithKind(workflowData: WorkflowData, kind: 'text' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker'): Promise<SelectedAnswerData[]>;
2
+ export declare function filterTriggeredAnsweredWithKind(workflowData: WorkflowData, kind: 'text' | 'textArea' | 'hybrid' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker'): Promise<SelectedAnswerData[]>;
3
3
  /**
4
4
  * Filters and Populates the `selectedAnswers` from the workflow by
5
5
  * Cross-referencing the `MetaCategory` of the answer's respective question
@@ -1,5 +1,4 @@
1
- import { PlaceData } from '../services/external/clinia';
2
- import { Uuid } from 'oro-sdk-apis';
1
+ import { PlaceData, Uuid } from 'oro-sdk-apis';
3
2
  export interface PersonalInformations {
4
3
  birthday?: string;
5
4
  firstname?: string;
@@ -1402,25 +1402,35 @@ function populateWorkflowField(_x6, _x7) {
1402
1402
 
1403
1403
  function _populateWorkflowField() {
1404
1404
  _populateWorkflowField = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee4(question, answerValue) {
1405
- var answer, displayedAnswer;
1405
+ var answer, displayedAnswer, displayedAnswer1, displayedAnswer2;
1406
1406
  return runtime_1.wrap(function _callee4$(_context4) {
1407
1407
  while (1) {
1408
1408
  switch (_context4.prev = _context4.next) {
1409
1409
  case 0:
1410
1410
  displayedAnswer = undefined;
1411
1411
  _context4.t0 = question.kind;
1412
- _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;
1412
+ _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;
1413
1413
  break;
1414
1414
 
1415
1415
  case 4:
1416
1416
  if (question.answers) {
1417
- displayedAnswer = question.answers[answerValue].text;
1417
+ displayedAnswer1 = question.answers[answerValue].text.split(" ")[0];
1418
+ displayedAnswer2 = question.answers[answerValue].text.split(" ")[1];
1419
+ displayedAnswer = displayedAnswer1 + " " + displayedAnswer2;
1418
1420
  }
1419
1421
 
1420
1422
  answer = answerValue;
1421
- return _context4.abrupt("break", 15);
1423
+ return _context4.abrupt("break", 18);
1422
1424
 
1423
1425
  case 7:
1426
+ if (question.answers) {
1427
+ displayedAnswer = question.answers[answerValue].text;
1428
+ }
1429
+
1430
+ answer = answerValue;
1431
+ return _context4.abrupt("break", 18);
1432
+
1433
+ case 10:
1424
1434
  displayedAnswer = answerValue.map(function (value) {
1425
1435
  if (question.answers) {
1426
1436
  return question.answers[value].text;
@@ -1429,10 +1439,10 @@ function _populateWorkflowField() {
1429
1439
  throw new WorkflowAnswersMissingError();
1430
1440
  });
1431
1441
  answer = answerValue;
1432
- return _context4.abrupt("break", 15);
1442
+ return _context4.abrupt("break", 18);
1433
1443
 
1434
- case 10:
1435
- _context4.next = 12;
1444
+ case 13:
1445
+ _context4.next = 15;
1436
1446
  return getImagesFromIndexDb(answerValue).then(function (images) {
1437
1447
  return images.map(function (image) {
1438
1448
  var name = image.name,
@@ -1444,21 +1454,21 @@ function _populateWorkflowField() {
1444
1454
  });
1445
1455
  });
1446
1456
 
1447
- case 12:
1457
+ case 15:
1448
1458
  answer = _context4.sent;
1449
- return _context4.abrupt("break", 15);
1459
+ return _context4.abrupt("break", 18);
1450
1460
 
1451
- case 14:
1461
+ case 17:
1452
1462
  answer = answerValue;
1453
1463
 
1454
- case 15:
1464
+ case 18:
1455
1465
  return _context4.abrupt("return", Promise.resolve({
1456
1466
  answer: answer,
1457
1467
  displayedAnswer: displayedAnswer,
1458
1468
  kind: question.kind
1459
1469
  }));
1460
1470
 
1461
- case 16:
1471
+ case 19:
1462
1472
  case "end":
1463
1473
  return _context4.stop();
1464
1474
  }
@@ -2387,8 +2397,8 @@ var OroClient = /*#__PURE__*/function () {
2387
2397
  _proto.signUp =
2388
2398
  /*#__PURE__*/
2389
2399
  function () {
2390
- var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription) {
2391
- var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, signupRequest, identity, symetricEncryptor;
2400
+ var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
2401
+ var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, emailConfirmed, signupRequest, identity, symetricEncryptor;
2392
2402
  return runtime_1.wrap(function _callee2$(_context2) {
2393
2403
  while (1) {
2394
2404
  switch (_context2.prev = _context2.next) {
@@ -2398,9 +2408,11 @@ var OroClient = /*#__PURE__*/function () {
2398
2408
  symmetricEncryptor = this.toolbox.CryptoChaCha.fromPassphrase(password);
2399
2409
  recoveryPassword = symmetricEncryptor.bytesEncryptToBase64Payload(privateKey);
2400
2410
  hashedPassword = this.toolbox.hashStringToBase64(this.toolbox.hashStringToBase64(password));
2411
+ emailConfirmed = !!skipEmailValidation;
2401
2412
  signupRequest = {
2402
2413
  practiceUuid: practice.uuid,
2403
2414
  email: email.toLowerCase(),
2415
+ emailConfirmed: emailConfirmed,
2404
2416
  password: hashedPassword,
2405
2417
  publicKey: this.toolbox.encodeToBase64(this.rsa["public"]()),
2406
2418
  recoveryPassword: recoveryPassword,
@@ -2408,10 +2420,10 @@ var OroClient = /*#__PURE__*/function () {
2408
2420
  tokenData: tokenData,
2409
2421
  subscription: subscription
2410
2422
  };
2411
- _context2.next = 8;
2423
+ _context2.next = 9;
2412
2424
  return this.guardClient.identityCreate(signupRequest);
2413
2425
 
2414
- case 8:
2426
+ case 9:
2415
2427
  identity = _context2.sent;
2416
2428
 
2417
2429
  if (identity.recoveryLogin) {
@@ -2422,7 +2434,7 @@ var OroClient = /*#__PURE__*/function () {
2422
2434
 
2423
2435
  return _context2.abrupt("return", identity);
2424
2436
 
2425
- case 11:
2437
+ case 12:
2426
2438
  case "end":
2427
2439
  return _context2.stop();
2428
2440
  }
@@ -2430,7 +2442,7 @@ var OroClient = /*#__PURE__*/function () {
2430
2442
  }, _callee2, this);
2431
2443
  }));
2432
2444
 
2433
- function signUp(_x, _x2, _x3, _x4, _x5, _x6) {
2445
+ function signUp(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
2434
2446
  return _signUp.apply(this, arguments);
2435
2447
  }
2436
2448
 
@@ -2472,7 +2484,7 @@ var OroClient = /*#__PURE__*/function () {
2472
2484
  }, _callee3, this);
2473
2485
  }));
2474
2486
 
2475
- function confirmEmail(_x7) {
2487
+ function confirmEmail(_x8) {
2476
2488
  return _confirmEmail.apply(this, arguments);
2477
2489
  }
2478
2490
 
@@ -2533,7 +2545,7 @@ var OroClient = /*#__PURE__*/function () {
2533
2545
  }, _callee4, this);
2534
2546
  }));
2535
2547
 
2536
- function signIn(_x8, _x9, _x10, _x11) {
2548
+ function signIn(_x9, _x10, _x11, _x12) {
2537
2549
  return _signIn.apply(this, arguments);
2538
2550
  }
2539
2551
 
@@ -2724,7 +2736,7 @@ var OroClient = /*#__PURE__*/function () {
2724
2736
  }, _callee7, this);
2725
2737
  }));
2726
2738
 
2727
- function registerPatient$1(_x12, _x13, _x14, _x15) {
2739
+ function registerPatient$1(_x13, _x14, _x15, _x16) {
2728
2740
  return _registerPatient2.apply(this, arguments);
2729
2741
  }
2730
2742
 
@@ -2770,7 +2782,7 @@ var OroClient = /*#__PURE__*/function () {
2770
2782
  }, _callee8, this);
2771
2783
  }));
2772
2784
 
2773
- function buildVaultIndex(_x16) {
2785
+ function buildVaultIndex(_x17) {
2774
2786
  return _buildVaultIndex.apply(this, arguments);
2775
2787
  }
2776
2788
 
@@ -2847,7 +2859,7 @@ var OroClient = /*#__PURE__*/function () {
2847
2859
  }, _callee9);
2848
2860
  }));
2849
2861
 
2850
- return function (_x17) {
2862
+ return function (_x18) {
2851
2863
  return _ref2.apply(this, arguments);
2852
2864
  };
2853
2865
  }())).then(function (consults) {
@@ -2999,7 +3011,7 @@ var OroClient = /*#__PURE__*/function () {
2999
3011
  }, _callee11, this);
3000
3012
  }));
3001
3013
 
3002
- function vaultIndexAdd(_x18, _x19) {
3014
+ function vaultIndexAdd(_x19, _x20) {
3003
3015
  return _vaultIndexAdd.apply(this, arguments);
3004
3016
  }
3005
3017
 
@@ -3058,7 +3070,7 @@ var OroClient = /*#__PURE__*/function () {
3058
3070
  }, _callee12, this);
3059
3071
  }));
3060
3072
 
3061
- function indexSnapshotAdd(_x20) {
3073
+ function indexSnapshotAdd(_x21) {
3062
3074
  return _indexSnapshotAdd.apply(this, arguments);
3063
3075
  }
3064
3076
 
@@ -3117,7 +3129,7 @@ var OroClient = /*#__PURE__*/function () {
3117
3129
  }, _callee13, this);
3118
3130
  }));
3119
3131
 
3120
- function grantLockbox(_x21, _x22, _x23) {
3132
+ function grantLockbox(_x22, _x23, _x24) {
3121
3133
  return _grantLockbox.apply(this, arguments);
3122
3134
  }
3123
3135
 
@@ -3189,7 +3201,7 @@ var OroClient = /*#__PURE__*/function () {
3189
3201
  }, _callee14, this);
3190
3202
  }));
3191
3203
 
3192
- function createMessageData(_x24, _x25, _x26, _x27, _x28) {
3204
+ function createMessageData(_x25, _x26, _x27, _x28, _x29) {
3193
3205
  return _createMessageData.apply(this, arguments);
3194
3206
  }
3195
3207
 
@@ -3275,7 +3287,7 @@ var OroClient = /*#__PURE__*/function () {
3275
3287
  }, _callee15, this);
3276
3288
  }));
3277
3289
 
3278
- function createMessageAttachmentData(_x29, _x30, _x31, _x32, _x33) {
3290
+ function createMessageAttachmentData(_x30, _x31, _x32, _x33, _x34) {
3279
3291
  return _createMessageAttachmentData.apply(this, arguments);
3280
3292
  }
3281
3293
 
@@ -3347,7 +3359,7 @@ var OroClient = /*#__PURE__*/function () {
3347
3359
  }, _callee16, this);
3348
3360
  }));
3349
3361
 
3350
- function createConsultationAttachmentData(_x34, _x35, _x36, _x37, _x38, _x39) {
3362
+ function createConsultationAttachmentData(_x35, _x36, _x37, _x38, _x39, _x40) {
3351
3363
  return _createConsultationAttachmentData.apply(this, arguments);
3352
3364
  }
3353
3365
 
@@ -3405,7 +3417,7 @@ var OroClient = /*#__PURE__*/function () {
3405
3417
  }, _callee17, this);
3406
3418
  }));
3407
3419
 
3408
- function createJsonData(_x40, _x41, _x42, _x43, _x44, _x45) {
3420
+ function createJsonData(_x41, _x42, _x43, _x44, _x45, _x46) {
3409
3421
  return _createJsonData.apply(this, arguments);
3410
3422
  }
3411
3423
 
@@ -3468,7 +3480,7 @@ var OroClient = /*#__PURE__*/function () {
3468
3480
  }, _callee18, this);
3469
3481
  }));
3470
3482
 
3471
- function getOrInsertJsonData(_x46, _x47, _x48, _x49, _x50) {
3483
+ function getOrInsertJsonData(_x47, _x48, _x49, _x50, _x51) {
3472
3484
  return _getOrInsertJsonData.apply(this, arguments);
3473
3485
  }
3474
3486
 
@@ -3526,7 +3538,7 @@ var OroClient = /*#__PURE__*/function () {
3526
3538
  }, _callee19, this);
3527
3539
  }));
3528
3540
 
3529
- function createBytesData(_x51, _x52, _x53, _x54, _x55, _x56) {
3541
+ function createBytesData(_x52, _x53, _x54, _x55, _x56, _x57) {
3530
3542
  return _createBytesData.apply(this, arguments);
3531
3543
  }
3532
3544
 
@@ -3580,7 +3592,7 @@ var OroClient = /*#__PURE__*/function () {
3580
3592
  }, _callee20, this);
3581
3593
  }));
3582
3594
 
3583
- function getJsonData(_x57, _x58, _x59) {
3595
+ function getJsonData(_x58, _x59, _x60) {
3584
3596
  return _getJsonData.apply(this, arguments);
3585
3597
  }
3586
3598
 
@@ -3630,7 +3642,7 @@ var OroClient = /*#__PURE__*/function () {
3630
3642
  }, _callee21, this);
3631
3643
  }));
3632
3644
 
3633
- function getBytesData(_x60, _x61, _x62) {
3645
+ function getBytesData(_x61, _x62, _x63) {
3634
3646
  return _getBytesData.apply(this, arguments);
3635
3647
  }
3636
3648
 
@@ -3736,7 +3748,7 @@ var OroClient = /*#__PURE__*/function () {
3736
3748
  }, _callee22, this);
3737
3749
  }));
3738
3750
 
3739
- function getGrants(_x63, _x64) {
3751
+ function getGrants(_x64, _x65) {
3740
3752
  return _getGrants.apply(this, arguments);
3741
3753
  }
3742
3754
 
@@ -3801,7 +3813,7 @@ var OroClient = /*#__PURE__*/function () {
3801
3813
  }, _callee23, this);
3802
3814
  }));
3803
3815
 
3804
- function getCachedSecretCryptor(_x65, _x66) {
3816
+ function getCachedSecretCryptor(_x66, _x67) {
3805
3817
  return _getCachedSecretCryptor.apply(this, arguments);
3806
3818
  }
3807
3819
 
@@ -3840,7 +3852,7 @@ var OroClient = /*#__PURE__*/function () {
3840
3852
  }, _callee24, this);
3841
3853
  }));
3842
3854
 
3843
- function getPersonalInformationsFromConsultId(_x67, _x68, _x69) {
3855
+ function getPersonalInformationsFromConsultId(_x68, _x69, _x70) {
3844
3856
  return _getPersonalInformationsFromConsultId.apply(this, arguments);
3845
3857
  }
3846
3858
 
@@ -3878,7 +3890,7 @@ var OroClient = /*#__PURE__*/function () {
3878
3890
  }, _callee25, this);
3879
3891
  }));
3880
3892
 
3881
- function getMedicalDataFromConsultId(_x70, _x71) {
3893
+ function getMedicalDataFromConsultId(_x71, _x72) {
3882
3894
  return _getMedicalDataFromConsultId.apply(this, arguments);
3883
3895
  }
3884
3896
 
@@ -3971,7 +3983,7 @@ var OroClient = /*#__PURE__*/function () {
3971
3983
  }, _callee26);
3972
3984
  }));
3973
3985
 
3974
- return function (_x75) {
3986
+ return function (_x76) {
3975
3987
  return _ref3.apply(this, arguments);
3976
3988
  };
3977
3989
  }()));
@@ -4012,7 +4024,7 @@ var OroClient = /*#__PURE__*/function () {
4012
4024
  }, _callee27, this);
4013
4025
  }));
4014
4026
 
4015
- function getMetaCategoryFromConsultId(_x72, _x73, _x74) {
4027
+ function getMetaCategoryFromConsultId(_x73, _x74, _x75) {
4016
4028
  return _getMetaCategoryFromConsultId.apply(this, arguments);
4017
4029
  }
4018
4030
 
@@ -4099,7 +4111,7 @@ var OroClient = /*#__PURE__*/function () {
4099
4111
  }, _callee28, this);
4100
4112
  }));
4101
4113
 
4102
- function getPersonalInformations(_x76) {
4114
+ function getPersonalInformations(_x77) {
4103
4115
  return _getPersonalInformations.apply(this, arguments);
4104
4116
  }
4105
4117
 
@@ -4148,7 +4160,7 @@ var OroClient = /*#__PURE__*/function () {
4148
4160
  }, _callee29, this);
4149
4161
  }));
4150
4162
 
4151
- function getGrantFromConsultId(_x77) {
4163
+ function getGrantFromConsultId(_x78) {
4152
4164
  return _getGrantFromConsultId.apply(this, arguments);
4153
4165
  }
4154
4166
 
@@ -4198,7 +4210,7 @@ var OroClient = /*#__PURE__*/function () {
4198
4210
  }, _callee30, this);
4199
4211
  }));
4200
4212
 
4201
- function getIdentityFromConsultId(_x78) {
4213
+ function getIdentityFromConsultId(_x79) {
4202
4214
  return _getIdentityFromConsultId.apply(this, arguments);
4203
4215
  }
4204
4216
 
@@ -4277,7 +4289,7 @@ var OroClient = /*#__PURE__*/function () {
4277
4289
  }, _callee31);
4278
4290
  }));
4279
4291
 
4280
- return function (_x84) {
4292
+ return function (_x85) {
4281
4293
  return _ref4.apply(this, arguments);
4282
4294
  };
4283
4295
  }())).then(function (manifest) {
@@ -4293,7 +4305,7 @@ var OroClient = /*#__PURE__*/function () {
4293
4305
  }, _callee32, this);
4294
4306
  }));
4295
4307
 
4296
- function getLockboxManifest(_x79, _x80, _x81, _x82, _x83) {
4308
+ function getLockboxManifest(_x80, _x81, _x82, _x83, _x84) {
4297
4309
  return _getLockboxManifest.apply(this, arguments);
4298
4310
  }
4299
4311
 
@@ -4363,7 +4375,7 @@ var OroClient = /*#__PURE__*/function () {
4363
4375
  }, _callee33, this);
4364
4376
  }));
4365
4377
 
4366
- function createPersonalInformations(_x85, _x86, _x87) {
4378
+ function createPersonalInformations(_x86, _x87, _x88) {
4367
4379
  return _createPersonalInformations.apply(this, arguments);
4368
4380
  }
4369
4381
 
@@ -4433,7 +4445,7 @@ var OroClient = /*#__PURE__*/function () {
4433
4445
  }, _callee34, this);
4434
4446
  }));
4435
4447
 
4436
- function createUserPreference(_x88, _x89, _x90) {
4448
+ function createUserPreference(_x89, _x90, _x91) {
4437
4449
  return _createUserPreference.apply(this, arguments);
4438
4450
  }
4439
4451
 
@@ -4501,7 +4513,7 @@ var OroClient = /*#__PURE__*/function () {
4501
4513
  }, _callee35, this);
4502
4514
  }));
4503
4515
 
4504
- function getDataFromGrant(_x91, _x92) {
4516
+ function getDataFromGrant(_x92, _x93) {
4505
4517
  return _getDataFromGrant.apply(this, arguments);
4506
4518
  }
4507
4519
 
@@ -4550,7 +4562,7 @@ var OroClient = /*#__PURE__*/function () {
4550
4562
  }, _callee36, this);
4551
4563
  }));
4552
4564
 
4553
- function getUserPreferenceFromConsultId(_x93) {
4565
+ function getUserPreferenceFromConsultId(_x94) {
4554
4566
  return _getUserPreferenceFromConsultId.apply(this, arguments);
4555
4567
  }
4556
4568
 
@@ -4601,7 +4613,7 @@ var OroClient = /*#__PURE__*/function () {
4601
4613
  }, _callee37, this);
4602
4614
  }));
4603
4615
 
4604
- function getUserPreference(_x94) {
4616
+ function getUserPreference(_x95) {
4605
4617
  return _getUserPreference.apply(this, arguments);
4606
4618
  }
4607
4619
 
@@ -4650,7 +4662,7 @@ var OroClient = /*#__PURE__*/function () {
4650
4662
  }, _callee38, this);
4651
4663
  }));
4652
4664
 
4653
- function getRecoveryDataFromConsultId(_x95) {
4665
+ function getRecoveryDataFromConsultId(_x96) {
4654
4666
  return _getRecoveryDataFromConsultId.apply(this, arguments);
4655
4667
  }
4656
4668
 
@@ -4701,7 +4713,7 @@ var OroClient = /*#__PURE__*/function () {
4701
4713
  }, _callee39, this);
4702
4714
  }));
4703
4715
 
4704
- function getRecoveryData(_x96) {
4716
+ function getRecoveryData(_x97) {
4705
4717
  return _getRecoveryData.apply(this, arguments);
4706
4718
  }
4707
4719
 
@@ -4763,7 +4775,7 @@ var OroClient = /*#__PURE__*/function () {
4763
4775
  }, _callee40);
4764
4776
  }));
4765
4777
 
4766
- return function (_x99) {
4778
+ return function (_x100) {
4767
4779
  return _ref5.apply(this, arguments);
4768
4780
  };
4769
4781
  }())).then(function (promise) {
@@ -4783,7 +4795,7 @@ var OroClient = /*#__PURE__*/function () {
4783
4795
  }, _callee41, this);
4784
4796
  }));
4785
4797
 
4786
- function getAssignedConsultations(_x97, _x98) {
4798
+ function getAssignedConsultations(_x98, _x99) {
4787
4799
  return _getAssignedConsultations.apply(this, arguments);
4788
4800
  }
4789
4801
 
@@ -4861,7 +4873,7 @@ var OroClient = /*#__PURE__*/function () {
4861
4873
  }, _callee42);
4862
4874
  }));
4863
4875
 
4864
- return function (_x102) {
4876
+ return function (_x103) {
4865
4877
  return _ref6.apply(this, arguments);
4866
4878
  };
4867
4879
  }()));
@@ -4877,7 +4889,7 @@ var OroClient = /*#__PURE__*/function () {
4877
4889
  }, _callee43, this);
4878
4890
  }));
4879
4891
 
4880
- function getPastConsultationsFromConsultId(_x100, _x101) {
4892
+ function getPastConsultationsFromConsultId(_x101, _x102) {
4881
4893
  return _getPastConsultationsFromConsultId.apply(this, arguments);
4882
4894
  }
4883
4895
 
@@ -4935,7 +4947,7 @@ var OroClient = /*#__PURE__*/function () {
4935
4947
  }, _callee44, this);
4936
4948
  }));
4937
4949
 
4938
- function getPatientConsultationData(_x103, _x104) {
4950
+ function getPatientConsultationData(_x104, _x105) {
4939
4951
  return _getPatientConsultationData.apply(this, arguments);
4940
4952
  }
4941
4953
 
@@ -4969,7 +4981,7 @@ var OroClient = /*#__PURE__*/function () {
4969
4981
  }, _callee45, this);
4970
4982
  }));
4971
4983
 
4972
- function getPatientPrescriptionsList(_x105) {
4984
+ function getPatientPrescriptionsList(_x106) {
4973
4985
  return _getPatientPrescriptionsList.apply(this, arguments);
4974
4986
  }
4975
4987
 
@@ -5003,7 +5015,7 @@ var OroClient = /*#__PURE__*/function () {
5003
5015
  }, _callee46, this);
5004
5016
  }));
5005
5017
 
5006
- function getPatientResultsList(_x106) {
5018
+ function getPatientResultsList(_x107) {
5007
5019
  return _getPatientResultsList.apply(this, arguments);
5008
5020
  }
5009
5021
 
@@ -5037,7 +5049,7 @@ var OroClient = /*#__PURE__*/function () {
5037
5049
  }, _callee47, this);
5038
5050
  }));
5039
5051
 
5040
- function getPatientTreatmentPlans(_x107) {
5052
+ function getPatientTreatmentPlans(_x108) {
5041
5053
  return _getPatientTreatmentPlans.apply(this, arguments);
5042
5054
  }
5043
5055
 
@@ -5073,7 +5085,7 @@ var OroClient = /*#__PURE__*/function () {
5073
5085
  }, _callee48, this);
5074
5086
  }));
5075
5087
 
5076
- function getPatientTreatmentPlanByUuid(_x108, _x109) {
5088
+ function getPatientTreatmentPlanByUuid(_x109, _x110) {
5077
5089
  return _getPatientTreatmentPlanByUuid.apply(this, arguments);
5078
5090
  }
5079
5091
 
@@ -5130,7 +5142,7 @@ var OroClient = /*#__PURE__*/function () {
5130
5142
  }, _callee49);
5131
5143
  }));
5132
5144
 
5133
- return function (_x113) {
5145
+ return function (_x114) {
5134
5146
  return _ref7.apply(this, arguments);
5135
5147
  };
5136
5148
  }()));
@@ -5148,7 +5160,7 @@ var OroClient = /*#__PURE__*/function () {
5148
5160
  }, _callee50, this);
5149
5161
  }));
5150
5162
 
5151
- function getPatientDocumentsList(_x110, _x111, _x112) {
5163
+ function getPatientDocumentsList(_x111, _x112, _x113) {
5152
5164
  return _getPatientDocumentsList.apply(this, arguments);
5153
5165
  }
5154
5166
 
@@ -5210,7 +5222,7 @@ var OroClient = /*#__PURE__*/function () {
5210
5222
  }, _callee51, this);
5211
5223
  }));
5212
5224
 
5213
- function recoverPrivateKeyFromSecurityQuestions(_x114, _x115, _x116, _x117) {
5225
+ function recoverPrivateKeyFromSecurityQuestions(_x115, _x116, _x117, _x118) {
5214
5226
  return _recoverPrivateKeyFromSecurityQuestions.apply(this, arguments);
5215
5227
  }
5216
5228
 
@@ -5258,7 +5270,7 @@ var OroClient = /*#__PURE__*/function () {
5258
5270
  }, _callee52, this);
5259
5271
  }));
5260
5272
 
5261
- function recoverPrivateKeyFromPassword(_x118, _x119) {
5273
+ function recoverPrivateKeyFromPassword(_x119, _x120) {
5262
5274
  return _recoverPrivateKeyFromPassword.apply(this, arguments);
5263
5275
  }
5264
5276
 
@@ -5298,7 +5310,7 @@ var OroClient = /*#__PURE__*/function () {
5298
5310
  }, _callee53, this);
5299
5311
  }));
5300
5312
 
5301
- function recoverPrivateKeyFromMasterKey(_x120, _x121) {
5313
+ function recoverPrivateKeyFromMasterKey(_x121, _x122) {
5302
5314
  return _recoverPrivateKeyFromMasterKey.apply(this, arguments);
5303
5315
  }
5304
5316
 
@@ -5349,7 +5361,7 @@ var OroClient = /*#__PURE__*/function () {
5349
5361
  }, _callee54, this);
5350
5362
  }));
5351
5363
 
5352
- function updateSecurityQuestions(_x122, _x123, _x124, _x125) {
5364
+ function updateSecurityQuestions(_x123, _x124, _x125, _x126) {
5353
5365
  return _updateSecurityQuestions.apply(this, arguments);
5354
5366
  }
5355
5367
 
@@ -5414,7 +5426,7 @@ var OroClient = /*#__PURE__*/function () {
5414
5426
  }, _callee55, this);
5415
5427
  }));
5416
5428
 
5417
- function updatePassword(_x126, _x127, _x128) {
5429
+ function updatePassword(_x127, _x128, _x129) {
5418
5430
  return _updatePassword.apply(this, arguments);
5419
5431
  }
5420
5432
 
@@ -5476,7 +5488,7 @@ var OroClient = /*#__PURE__*/function () {
5476
5488
  }, _callee56, this);
5477
5489
  }));
5478
5490
 
5479
- function updateMasterKey(_x129, _x130, _x131) {
5491
+ function updateMasterKey(_x130, _x131, _x132) {
5480
5492
  return _updateMasterKey.apply(this, arguments);
5481
5493
  }
5482
5494