oro-sdk 2.13.0 → 2.14.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.
- package/dist/client.d.ts +1 -1
- package/dist/oro-sdk.cjs.development.js +59 -57
- package/dist/oro-sdk.cjs.development.js.map +1 -1
- package/dist/oro-sdk.cjs.production.min.js +1 -1
- package/dist/oro-sdk.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk.esm.js +59 -57
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +7 -3
- package/LICENSE +0 -21
package/dist/oro-sdk.esm.js
CHANGED
@@ -2383,8 +2383,8 @@ var OroClient = /*#__PURE__*/function () {
|
|
2383
2383
|
_proto.signUp =
|
2384
2384
|
/*#__PURE__*/
|
2385
2385
|
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;
|
2386
|
+
var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
|
2387
|
+
var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, emailConfirmed, signupRequest, identity, symetricEncryptor;
|
2388
2388
|
return runtime_1.wrap(function _callee2$(_context2) {
|
2389
2389
|
while (1) {
|
2390
2390
|
switch (_context2.prev = _context2.next) {
|
@@ -2394,9 +2394,11 @@ var OroClient = /*#__PURE__*/function () {
|
|
2394
2394
|
symmetricEncryptor = this.toolbox.CryptoChaCha.fromPassphrase(password);
|
2395
2395
|
recoveryPassword = symmetricEncryptor.bytesEncryptToBase64Payload(privateKey);
|
2396
2396
|
hashedPassword = this.toolbox.hashStringToBase64(this.toolbox.hashStringToBase64(password));
|
2397
|
+
emailConfirmed = !!skipEmailValidation;
|
2397
2398
|
signupRequest = {
|
2398
2399
|
practiceUuid: practice.uuid,
|
2399
2400
|
email: email.toLowerCase(),
|
2401
|
+
emailConfirmed: emailConfirmed,
|
2400
2402
|
password: hashedPassword,
|
2401
2403
|
publicKey: this.toolbox.encodeToBase64(this.rsa["public"]()),
|
2402
2404
|
recoveryPassword: recoveryPassword,
|
@@ -2404,10 +2406,10 @@ var OroClient = /*#__PURE__*/function () {
|
|
2404
2406
|
tokenData: tokenData,
|
2405
2407
|
subscription: subscription
|
2406
2408
|
};
|
2407
|
-
_context2.next =
|
2409
|
+
_context2.next = 9;
|
2408
2410
|
return this.guardClient.identityCreate(signupRequest);
|
2409
2411
|
|
2410
|
-
case
|
2412
|
+
case 9:
|
2411
2413
|
identity = _context2.sent;
|
2412
2414
|
|
2413
2415
|
if (identity.recoveryLogin) {
|
@@ -2418,7 +2420,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2418
2420
|
|
2419
2421
|
return _context2.abrupt("return", identity);
|
2420
2422
|
|
2421
|
-
case
|
2423
|
+
case 12:
|
2422
2424
|
case "end":
|
2423
2425
|
return _context2.stop();
|
2424
2426
|
}
|
@@ -2426,7 +2428,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2426
2428
|
}, _callee2, this);
|
2427
2429
|
}));
|
2428
2430
|
|
2429
|
-
function signUp(_x, _x2, _x3, _x4, _x5, _x6) {
|
2431
|
+
function signUp(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
|
2430
2432
|
return _signUp.apply(this, arguments);
|
2431
2433
|
}
|
2432
2434
|
|
@@ -2468,7 +2470,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2468
2470
|
}, _callee3, this);
|
2469
2471
|
}));
|
2470
2472
|
|
2471
|
-
function confirmEmail(
|
2473
|
+
function confirmEmail(_x8) {
|
2472
2474
|
return _confirmEmail.apply(this, arguments);
|
2473
2475
|
}
|
2474
2476
|
|
@@ -2529,7 +2531,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2529
2531
|
}, _callee4, this);
|
2530
2532
|
}));
|
2531
2533
|
|
2532
|
-
function signIn(
|
2534
|
+
function signIn(_x9, _x10, _x11, _x12) {
|
2533
2535
|
return _signIn.apply(this, arguments);
|
2534
2536
|
}
|
2535
2537
|
|
@@ -2720,7 +2722,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2720
2722
|
}, _callee7, this);
|
2721
2723
|
}));
|
2722
2724
|
|
2723
|
-
function registerPatient$1(
|
2725
|
+
function registerPatient$1(_x13, _x14, _x15, _x16) {
|
2724
2726
|
return _registerPatient2.apply(this, arguments);
|
2725
2727
|
}
|
2726
2728
|
|
@@ -2766,7 +2768,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2766
2768
|
}, _callee8, this);
|
2767
2769
|
}));
|
2768
2770
|
|
2769
|
-
function buildVaultIndex(
|
2771
|
+
function buildVaultIndex(_x17) {
|
2770
2772
|
return _buildVaultIndex.apply(this, arguments);
|
2771
2773
|
}
|
2772
2774
|
|
@@ -2843,7 +2845,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2843
2845
|
}, _callee9);
|
2844
2846
|
}));
|
2845
2847
|
|
2846
|
-
return function (
|
2848
|
+
return function (_x18) {
|
2847
2849
|
return _ref2.apply(this, arguments);
|
2848
2850
|
};
|
2849
2851
|
}())).then(function (consults) {
|
@@ -2995,7 +2997,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2995
2997
|
}, _callee11, this);
|
2996
2998
|
}));
|
2997
2999
|
|
2998
|
-
function vaultIndexAdd(
|
3000
|
+
function vaultIndexAdd(_x19, _x20) {
|
2999
3001
|
return _vaultIndexAdd.apply(this, arguments);
|
3000
3002
|
}
|
3001
3003
|
|
@@ -3054,7 +3056,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3054
3056
|
}, _callee12, this);
|
3055
3057
|
}));
|
3056
3058
|
|
3057
|
-
function indexSnapshotAdd(
|
3059
|
+
function indexSnapshotAdd(_x21) {
|
3058
3060
|
return _indexSnapshotAdd.apply(this, arguments);
|
3059
3061
|
}
|
3060
3062
|
|
@@ -3113,7 +3115,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3113
3115
|
}, _callee13, this);
|
3114
3116
|
}));
|
3115
3117
|
|
3116
|
-
function grantLockbox(
|
3118
|
+
function grantLockbox(_x22, _x23, _x24) {
|
3117
3119
|
return _grantLockbox.apply(this, arguments);
|
3118
3120
|
}
|
3119
3121
|
|
@@ -3185,7 +3187,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3185
3187
|
}, _callee14, this);
|
3186
3188
|
}));
|
3187
3189
|
|
3188
|
-
function createMessageData(
|
3190
|
+
function createMessageData(_x25, _x26, _x27, _x28, _x29) {
|
3189
3191
|
return _createMessageData.apply(this, arguments);
|
3190
3192
|
}
|
3191
3193
|
|
@@ -3271,7 +3273,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3271
3273
|
}, _callee15, this);
|
3272
3274
|
}));
|
3273
3275
|
|
3274
|
-
function createMessageAttachmentData(
|
3276
|
+
function createMessageAttachmentData(_x30, _x31, _x32, _x33, _x34) {
|
3275
3277
|
return _createMessageAttachmentData.apply(this, arguments);
|
3276
3278
|
}
|
3277
3279
|
|
@@ -3343,7 +3345,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3343
3345
|
}, _callee16, this);
|
3344
3346
|
}));
|
3345
3347
|
|
3346
|
-
function createConsultationAttachmentData(
|
3348
|
+
function createConsultationAttachmentData(_x35, _x36, _x37, _x38, _x39, _x40) {
|
3347
3349
|
return _createConsultationAttachmentData.apply(this, arguments);
|
3348
3350
|
}
|
3349
3351
|
|
@@ -3401,7 +3403,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3401
3403
|
}, _callee17, this);
|
3402
3404
|
}));
|
3403
3405
|
|
3404
|
-
function createJsonData(
|
3406
|
+
function createJsonData(_x41, _x42, _x43, _x44, _x45, _x46) {
|
3405
3407
|
return _createJsonData.apply(this, arguments);
|
3406
3408
|
}
|
3407
3409
|
|
@@ -3464,7 +3466,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3464
3466
|
}, _callee18, this);
|
3465
3467
|
}));
|
3466
3468
|
|
3467
|
-
function getOrInsertJsonData(
|
3469
|
+
function getOrInsertJsonData(_x47, _x48, _x49, _x50, _x51) {
|
3468
3470
|
return _getOrInsertJsonData.apply(this, arguments);
|
3469
3471
|
}
|
3470
3472
|
|
@@ -3522,7 +3524,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3522
3524
|
}, _callee19, this);
|
3523
3525
|
}));
|
3524
3526
|
|
3525
|
-
function createBytesData(
|
3527
|
+
function createBytesData(_x52, _x53, _x54, _x55, _x56, _x57) {
|
3526
3528
|
return _createBytesData.apply(this, arguments);
|
3527
3529
|
}
|
3528
3530
|
|
@@ -3576,7 +3578,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3576
3578
|
}, _callee20, this);
|
3577
3579
|
}));
|
3578
3580
|
|
3579
|
-
function getJsonData(
|
3581
|
+
function getJsonData(_x58, _x59, _x60) {
|
3580
3582
|
return _getJsonData.apply(this, arguments);
|
3581
3583
|
}
|
3582
3584
|
|
@@ -3626,7 +3628,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3626
3628
|
}, _callee21, this);
|
3627
3629
|
}));
|
3628
3630
|
|
3629
|
-
function getBytesData(
|
3631
|
+
function getBytesData(_x61, _x62, _x63) {
|
3630
3632
|
return _getBytesData.apply(this, arguments);
|
3631
3633
|
}
|
3632
3634
|
|
@@ -3732,7 +3734,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3732
3734
|
}, _callee22, this);
|
3733
3735
|
}));
|
3734
3736
|
|
3735
|
-
function getGrants(
|
3737
|
+
function getGrants(_x64, _x65) {
|
3736
3738
|
return _getGrants.apply(this, arguments);
|
3737
3739
|
}
|
3738
3740
|
|
@@ -3797,7 +3799,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3797
3799
|
}, _callee23, this);
|
3798
3800
|
}));
|
3799
3801
|
|
3800
|
-
function getCachedSecretCryptor(
|
3802
|
+
function getCachedSecretCryptor(_x66, _x67) {
|
3801
3803
|
return _getCachedSecretCryptor.apply(this, arguments);
|
3802
3804
|
}
|
3803
3805
|
|
@@ -3836,7 +3838,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3836
3838
|
}, _callee24, this);
|
3837
3839
|
}));
|
3838
3840
|
|
3839
|
-
function getPersonalInformationsFromConsultId(
|
3841
|
+
function getPersonalInformationsFromConsultId(_x68, _x69, _x70) {
|
3840
3842
|
return _getPersonalInformationsFromConsultId.apply(this, arguments);
|
3841
3843
|
}
|
3842
3844
|
|
@@ -3874,7 +3876,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3874
3876
|
}, _callee25, this);
|
3875
3877
|
}));
|
3876
3878
|
|
3877
|
-
function getMedicalDataFromConsultId(
|
3879
|
+
function getMedicalDataFromConsultId(_x71, _x72) {
|
3878
3880
|
return _getMedicalDataFromConsultId.apply(this, arguments);
|
3879
3881
|
}
|
3880
3882
|
|
@@ -3967,7 +3969,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3967
3969
|
}, _callee26);
|
3968
3970
|
}));
|
3969
3971
|
|
3970
|
-
return function (
|
3972
|
+
return function (_x76) {
|
3971
3973
|
return _ref3.apply(this, arguments);
|
3972
3974
|
};
|
3973
3975
|
}()));
|
@@ -4008,7 +4010,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4008
4010
|
}, _callee27, this);
|
4009
4011
|
}));
|
4010
4012
|
|
4011
|
-
function getMetaCategoryFromConsultId(
|
4013
|
+
function getMetaCategoryFromConsultId(_x73, _x74, _x75) {
|
4012
4014
|
return _getMetaCategoryFromConsultId.apply(this, arguments);
|
4013
4015
|
}
|
4014
4016
|
|
@@ -4095,7 +4097,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4095
4097
|
}, _callee28, this);
|
4096
4098
|
}));
|
4097
4099
|
|
4098
|
-
function getPersonalInformations(
|
4100
|
+
function getPersonalInformations(_x77) {
|
4099
4101
|
return _getPersonalInformations.apply(this, arguments);
|
4100
4102
|
}
|
4101
4103
|
|
@@ -4144,7 +4146,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4144
4146
|
}, _callee29, this);
|
4145
4147
|
}));
|
4146
4148
|
|
4147
|
-
function getGrantFromConsultId(
|
4149
|
+
function getGrantFromConsultId(_x78) {
|
4148
4150
|
return _getGrantFromConsultId.apply(this, arguments);
|
4149
4151
|
}
|
4150
4152
|
|
@@ -4194,7 +4196,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4194
4196
|
}, _callee30, this);
|
4195
4197
|
}));
|
4196
4198
|
|
4197
|
-
function getIdentityFromConsultId(
|
4199
|
+
function getIdentityFromConsultId(_x79) {
|
4198
4200
|
return _getIdentityFromConsultId.apply(this, arguments);
|
4199
4201
|
}
|
4200
4202
|
|
@@ -4273,7 +4275,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4273
4275
|
}, _callee31);
|
4274
4276
|
}));
|
4275
4277
|
|
4276
|
-
return function (
|
4278
|
+
return function (_x85) {
|
4277
4279
|
return _ref4.apply(this, arguments);
|
4278
4280
|
};
|
4279
4281
|
}())).then(function (manifest) {
|
@@ -4289,7 +4291,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4289
4291
|
}, _callee32, this);
|
4290
4292
|
}));
|
4291
4293
|
|
4292
|
-
function getLockboxManifest(
|
4294
|
+
function getLockboxManifest(_x80, _x81, _x82, _x83, _x84) {
|
4293
4295
|
return _getLockboxManifest.apply(this, arguments);
|
4294
4296
|
}
|
4295
4297
|
|
@@ -4359,7 +4361,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4359
4361
|
}, _callee33, this);
|
4360
4362
|
}));
|
4361
4363
|
|
4362
|
-
function createPersonalInformations(
|
4364
|
+
function createPersonalInformations(_x86, _x87, _x88) {
|
4363
4365
|
return _createPersonalInformations.apply(this, arguments);
|
4364
4366
|
}
|
4365
4367
|
|
@@ -4429,7 +4431,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4429
4431
|
}, _callee34, this);
|
4430
4432
|
}));
|
4431
4433
|
|
4432
|
-
function createUserPreference(
|
4434
|
+
function createUserPreference(_x89, _x90, _x91) {
|
4433
4435
|
return _createUserPreference.apply(this, arguments);
|
4434
4436
|
}
|
4435
4437
|
|
@@ -4497,7 +4499,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4497
4499
|
}, _callee35, this);
|
4498
4500
|
}));
|
4499
4501
|
|
4500
|
-
function getDataFromGrant(
|
4502
|
+
function getDataFromGrant(_x92, _x93) {
|
4501
4503
|
return _getDataFromGrant.apply(this, arguments);
|
4502
4504
|
}
|
4503
4505
|
|
@@ -4546,7 +4548,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4546
4548
|
}, _callee36, this);
|
4547
4549
|
}));
|
4548
4550
|
|
4549
|
-
function getUserPreferenceFromConsultId(
|
4551
|
+
function getUserPreferenceFromConsultId(_x94) {
|
4550
4552
|
return _getUserPreferenceFromConsultId.apply(this, arguments);
|
4551
4553
|
}
|
4552
4554
|
|
@@ -4597,7 +4599,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4597
4599
|
}, _callee37, this);
|
4598
4600
|
}));
|
4599
4601
|
|
4600
|
-
function getUserPreference(
|
4602
|
+
function getUserPreference(_x95) {
|
4601
4603
|
return _getUserPreference.apply(this, arguments);
|
4602
4604
|
}
|
4603
4605
|
|
@@ -4646,7 +4648,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4646
4648
|
}, _callee38, this);
|
4647
4649
|
}));
|
4648
4650
|
|
4649
|
-
function getRecoveryDataFromConsultId(
|
4651
|
+
function getRecoveryDataFromConsultId(_x96) {
|
4650
4652
|
return _getRecoveryDataFromConsultId.apply(this, arguments);
|
4651
4653
|
}
|
4652
4654
|
|
@@ -4697,7 +4699,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4697
4699
|
}, _callee39, this);
|
4698
4700
|
}));
|
4699
4701
|
|
4700
|
-
function getRecoveryData(
|
4702
|
+
function getRecoveryData(_x97) {
|
4701
4703
|
return _getRecoveryData.apply(this, arguments);
|
4702
4704
|
}
|
4703
4705
|
|
@@ -4759,7 +4761,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4759
4761
|
}, _callee40);
|
4760
4762
|
}));
|
4761
4763
|
|
4762
|
-
return function (
|
4764
|
+
return function (_x100) {
|
4763
4765
|
return _ref5.apply(this, arguments);
|
4764
4766
|
};
|
4765
4767
|
}())).then(function (promise) {
|
@@ -4779,7 +4781,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4779
4781
|
}, _callee41, this);
|
4780
4782
|
}));
|
4781
4783
|
|
4782
|
-
function getAssignedConsultations(
|
4784
|
+
function getAssignedConsultations(_x98, _x99) {
|
4783
4785
|
return _getAssignedConsultations.apply(this, arguments);
|
4784
4786
|
}
|
4785
4787
|
|
@@ -4857,7 +4859,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4857
4859
|
}, _callee42);
|
4858
4860
|
}));
|
4859
4861
|
|
4860
|
-
return function (
|
4862
|
+
return function (_x103) {
|
4861
4863
|
return _ref6.apply(this, arguments);
|
4862
4864
|
};
|
4863
4865
|
}()));
|
@@ -4873,7 +4875,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4873
4875
|
}, _callee43, this);
|
4874
4876
|
}));
|
4875
4877
|
|
4876
|
-
function getPastConsultationsFromConsultId(
|
4878
|
+
function getPastConsultationsFromConsultId(_x101, _x102) {
|
4877
4879
|
return _getPastConsultationsFromConsultId.apply(this, arguments);
|
4878
4880
|
}
|
4879
4881
|
|
@@ -4931,7 +4933,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4931
4933
|
}, _callee44, this);
|
4932
4934
|
}));
|
4933
4935
|
|
4934
|
-
function getPatientConsultationData(
|
4936
|
+
function getPatientConsultationData(_x104, _x105) {
|
4935
4937
|
return _getPatientConsultationData.apply(this, arguments);
|
4936
4938
|
}
|
4937
4939
|
|
@@ -4965,7 +4967,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4965
4967
|
}, _callee45, this);
|
4966
4968
|
}));
|
4967
4969
|
|
4968
|
-
function getPatientPrescriptionsList(
|
4970
|
+
function getPatientPrescriptionsList(_x106) {
|
4969
4971
|
return _getPatientPrescriptionsList.apply(this, arguments);
|
4970
4972
|
}
|
4971
4973
|
|
@@ -4999,7 +5001,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4999
5001
|
}, _callee46, this);
|
5000
5002
|
}));
|
5001
5003
|
|
5002
|
-
function getPatientResultsList(
|
5004
|
+
function getPatientResultsList(_x107) {
|
5003
5005
|
return _getPatientResultsList.apply(this, arguments);
|
5004
5006
|
}
|
5005
5007
|
|
@@ -5033,7 +5035,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5033
5035
|
}, _callee47, this);
|
5034
5036
|
}));
|
5035
5037
|
|
5036
|
-
function getPatientTreatmentPlans(
|
5038
|
+
function getPatientTreatmentPlans(_x108) {
|
5037
5039
|
return _getPatientTreatmentPlans.apply(this, arguments);
|
5038
5040
|
}
|
5039
5041
|
|
@@ -5069,7 +5071,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5069
5071
|
}, _callee48, this);
|
5070
5072
|
}));
|
5071
5073
|
|
5072
|
-
function getPatientTreatmentPlanByUuid(
|
5074
|
+
function getPatientTreatmentPlanByUuid(_x109, _x110) {
|
5073
5075
|
return _getPatientTreatmentPlanByUuid.apply(this, arguments);
|
5074
5076
|
}
|
5075
5077
|
|
@@ -5126,7 +5128,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5126
5128
|
}, _callee49);
|
5127
5129
|
}));
|
5128
5130
|
|
5129
|
-
return function (
|
5131
|
+
return function (_x114) {
|
5130
5132
|
return _ref7.apply(this, arguments);
|
5131
5133
|
};
|
5132
5134
|
}()));
|
@@ -5144,7 +5146,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5144
5146
|
}, _callee50, this);
|
5145
5147
|
}));
|
5146
5148
|
|
5147
|
-
function getPatientDocumentsList(
|
5149
|
+
function getPatientDocumentsList(_x111, _x112, _x113) {
|
5148
5150
|
return _getPatientDocumentsList.apply(this, arguments);
|
5149
5151
|
}
|
5150
5152
|
|
@@ -5206,7 +5208,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5206
5208
|
}, _callee51, this);
|
5207
5209
|
}));
|
5208
5210
|
|
5209
|
-
function recoverPrivateKeyFromSecurityQuestions(
|
5211
|
+
function recoverPrivateKeyFromSecurityQuestions(_x115, _x116, _x117, _x118) {
|
5210
5212
|
return _recoverPrivateKeyFromSecurityQuestions.apply(this, arguments);
|
5211
5213
|
}
|
5212
5214
|
|
@@ -5254,7 +5256,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5254
5256
|
}, _callee52, this);
|
5255
5257
|
}));
|
5256
5258
|
|
5257
|
-
function recoverPrivateKeyFromPassword(
|
5259
|
+
function recoverPrivateKeyFromPassword(_x119, _x120) {
|
5258
5260
|
return _recoverPrivateKeyFromPassword.apply(this, arguments);
|
5259
5261
|
}
|
5260
5262
|
|
@@ -5294,7 +5296,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5294
5296
|
}, _callee53, this);
|
5295
5297
|
}));
|
5296
5298
|
|
5297
|
-
function recoverPrivateKeyFromMasterKey(
|
5299
|
+
function recoverPrivateKeyFromMasterKey(_x121, _x122) {
|
5298
5300
|
return _recoverPrivateKeyFromMasterKey.apply(this, arguments);
|
5299
5301
|
}
|
5300
5302
|
|
@@ -5345,7 +5347,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5345
5347
|
}, _callee54, this);
|
5346
5348
|
}));
|
5347
5349
|
|
5348
|
-
function updateSecurityQuestions(
|
5350
|
+
function updateSecurityQuestions(_x123, _x124, _x125, _x126) {
|
5349
5351
|
return _updateSecurityQuestions.apply(this, arguments);
|
5350
5352
|
}
|
5351
5353
|
|
@@ -5410,7 +5412,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5410
5412
|
}, _callee55, this);
|
5411
5413
|
}));
|
5412
5414
|
|
5413
|
-
function updatePassword(
|
5415
|
+
function updatePassword(_x127, _x128, _x129) {
|
5414
5416
|
return _updatePassword.apply(this, arguments);
|
5415
5417
|
}
|
5416
5418
|
|
@@ -5472,7 +5474,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5472
5474
|
}, _callee56, this);
|
5473
5475
|
}));
|
5474
5476
|
|
5475
|
-
function updateMasterKey(
|
5477
|
+
function updateMasterKey(_x130, _x131, _x132) {
|
5476
5478
|
return _updateMasterKey.apply(this, arguments);
|
5477
5479
|
}
|
5478
5480
|
|