oro-sdk 2.12.3 → 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/dist/services/external/clinia.d.ts +1 -0
- package/package.json +2 -2
- package/src/client.ts +7 -3
- package/src/services/external/clinia.ts +1 -0
- package/LICENSE +0 -21
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
|
@@ -2387,8 +2387,8 @@ var OroClient = /*#__PURE__*/function () {
|
|
2387
2387
|
_proto.signUp =
|
2388
2388
|
/*#__PURE__*/
|
2389
2389
|
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;
|
2390
|
+
var _signUp = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee2(email, password, practice, tosAndCpAcceptance, tokenData, subscription, skipEmailValidation) {
|
2391
|
+
var privateKey, symmetricEncryptor, recoveryPassword, hashedPassword, emailConfirmed, signupRequest, identity, symetricEncryptor;
|
2392
2392
|
return runtime_1.wrap(function _callee2$(_context2) {
|
2393
2393
|
while (1) {
|
2394
2394
|
switch (_context2.prev = _context2.next) {
|
@@ -2398,9 +2398,11 @@ var OroClient = /*#__PURE__*/function () {
|
|
2398
2398
|
symmetricEncryptor = this.toolbox.CryptoChaCha.fromPassphrase(password);
|
2399
2399
|
recoveryPassword = symmetricEncryptor.bytesEncryptToBase64Payload(privateKey);
|
2400
2400
|
hashedPassword = this.toolbox.hashStringToBase64(this.toolbox.hashStringToBase64(password));
|
2401
|
+
emailConfirmed = !!skipEmailValidation;
|
2401
2402
|
signupRequest = {
|
2402
2403
|
practiceUuid: practice.uuid,
|
2403
2404
|
email: email.toLowerCase(),
|
2405
|
+
emailConfirmed: emailConfirmed,
|
2404
2406
|
password: hashedPassword,
|
2405
2407
|
publicKey: this.toolbox.encodeToBase64(this.rsa["public"]()),
|
2406
2408
|
recoveryPassword: recoveryPassword,
|
@@ -2408,10 +2410,10 @@ var OroClient = /*#__PURE__*/function () {
|
|
2408
2410
|
tokenData: tokenData,
|
2409
2411
|
subscription: subscription
|
2410
2412
|
};
|
2411
|
-
_context2.next =
|
2413
|
+
_context2.next = 9;
|
2412
2414
|
return this.guardClient.identityCreate(signupRequest);
|
2413
2415
|
|
2414
|
-
case
|
2416
|
+
case 9:
|
2415
2417
|
identity = _context2.sent;
|
2416
2418
|
|
2417
2419
|
if (identity.recoveryLogin) {
|
@@ -2422,7 +2424,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2422
2424
|
|
2423
2425
|
return _context2.abrupt("return", identity);
|
2424
2426
|
|
2425
|
-
case
|
2427
|
+
case 12:
|
2426
2428
|
case "end":
|
2427
2429
|
return _context2.stop();
|
2428
2430
|
}
|
@@ -2430,7 +2432,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2430
2432
|
}, _callee2, this);
|
2431
2433
|
}));
|
2432
2434
|
|
2433
|
-
function signUp(_x, _x2, _x3, _x4, _x5, _x6) {
|
2435
|
+
function signUp(_x, _x2, _x3, _x4, _x5, _x6, _x7) {
|
2434
2436
|
return _signUp.apply(this, arguments);
|
2435
2437
|
}
|
2436
2438
|
|
@@ -2472,7 +2474,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2472
2474
|
}, _callee3, this);
|
2473
2475
|
}));
|
2474
2476
|
|
2475
|
-
function confirmEmail(
|
2477
|
+
function confirmEmail(_x8) {
|
2476
2478
|
return _confirmEmail.apply(this, arguments);
|
2477
2479
|
}
|
2478
2480
|
|
@@ -2533,7 +2535,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2533
2535
|
}, _callee4, this);
|
2534
2536
|
}));
|
2535
2537
|
|
2536
|
-
function signIn(
|
2538
|
+
function signIn(_x9, _x10, _x11, _x12) {
|
2537
2539
|
return _signIn.apply(this, arguments);
|
2538
2540
|
}
|
2539
2541
|
|
@@ -2724,7 +2726,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2724
2726
|
}, _callee7, this);
|
2725
2727
|
}));
|
2726
2728
|
|
2727
|
-
function registerPatient$1(
|
2729
|
+
function registerPatient$1(_x13, _x14, _x15, _x16) {
|
2728
2730
|
return _registerPatient2.apply(this, arguments);
|
2729
2731
|
}
|
2730
2732
|
|
@@ -2770,7 +2772,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2770
2772
|
}, _callee8, this);
|
2771
2773
|
}));
|
2772
2774
|
|
2773
|
-
function buildVaultIndex(
|
2775
|
+
function buildVaultIndex(_x17) {
|
2774
2776
|
return _buildVaultIndex.apply(this, arguments);
|
2775
2777
|
}
|
2776
2778
|
|
@@ -2847,7 +2849,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2847
2849
|
}, _callee9);
|
2848
2850
|
}));
|
2849
2851
|
|
2850
|
-
return function (
|
2852
|
+
return function (_x18) {
|
2851
2853
|
return _ref2.apply(this, arguments);
|
2852
2854
|
};
|
2853
2855
|
}())).then(function (consults) {
|
@@ -2999,7 +3001,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
2999
3001
|
}, _callee11, this);
|
3000
3002
|
}));
|
3001
3003
|
|
3002
|
-
function vaultIndexAdd(
|
3004
|
+
function vaultIndexAdd(_x19, _x20) {
|
3003
3005
|
return _vaultIndexAdd.apply(this, arguments);
|
3004
3006
|
}
|
3005
3007
|
|
@@ -3058,7 +3060,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3058
3060
|
}, _callee12, this);
|
3059
3061
|
}));
|
3060
3062
|
|
3061
|
-
function indexSnapshotAdd(
|
3063
|
+
function indexSnapshotAdd(_x21) {
|
3062
3064
|
return _indexSnapshotAdd.apply(this, arguments);
|
3063
3065
|
}
|
3064
3066
|
|
@@ -3117,7 +3119,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3117
3119
|
}, _callee13, this);
|
3118
3120
|
}));
|
3119
3121
|
|
3120
|
-
function grantLockbox(
|
3122
|
+
function grantLockbox(_x22, _x23, _x24) {
|
3121
3123
|
return _grantLockbox.apply(this, arguments);
|
3122
3124
|
}
|
3123
3125
|
|
@@ -3189,7 +3191,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3189
3191
|
}, _callee14, this);
|
3190
3192
|
}));
|
3191
3193
|
|
3192
|
-
function createMessageData(
|
3194
|
+
function createMessageData(_x25, _x26, _x27, _x28, _x29) {
|
3193
3195
|
return _createMessageData.apply(this, arguments);
|
3194
3196
|
}
|
3195
3197
|
|
@@ -3275,7 +3277,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3275
3277
|
}, _callee15, this);
|
3276
3278
|
}));
|
3277
3279
|
|
3278
|
-
function createMessageAttachmentData(
|
3280
|
+
function createMessageAttachmentData(_x30, _x31, _x32, _x33, _x34) {
|
3279
3281
|
return _createMessageAttachmentData.apply(this, arguments);
|
3280
3282
|
}
|
3281
3283
|
|
@@ -3347,7 +3349,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3347
3349
|
}, _callee16, this);
|
3348
3350
|
}));
|
3349
3351
|
|
3350
|
-
function createConsultationAttachmentData(
|
3352
|
+
function createConsultationAttachmentData(_x35, _x36, _x37, _x38, _x39, _x40) {
|
3351
3353
|
return _createConsultationAttachmentData.apply(this, arguments);
|
3352
3354
|
}
|
3353
3355
|
|
@@ -3405,7 +3407,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3405
3407
|
}, _callee17, this);
|
3406
3408
|
}));
|
3407
3409
|
|
3408
|
-
function createJsonData(
|
3410
|
+
function createJsonData(_x41, _x42, _x43, _x44, _x45, _x46) {
|
3409
3411
|
return _createJsonData.apply(this, arguments);
|
3410
3412
|
}
|
3411
3413
|
|
@@ -3468,7 +3470,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3468
3470
|
}, _callee18, this);
|
3469
3471
|
}));
|
3470
3472
|
|
3471
|
-
function getOrInsertJsonData(
|
3473
|
+
function getOrInsertJsonData(_x47, _x48, _x49, _x50, _x51) {
|
3472
3474
|
return _getOrInsertJsonData.apply(this, arguments);
|
3473
3475
|
}
|
3474
3476
|
|
@@ -3526,7 +3528,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3526
3528
|
}, _callee19, this);
|
3527
3529
|
}));
|
3528
3530
|
|
3529
|
-
function createBytesData(
|
3531
|
+
function createBytesData(_x52, _x53, _x54, _x55, _x56, _x57) {
|
3530
3532
|
return _createBytesData.apply(this, arguments);
|
3531
3533
|
}
|
3532
3534
|
|
@@ -3580,7 +3582,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3580
3582
|
}, _callee20, this);
|
3581
3583
|
}));
|
3582
3584
|
|
3583
|
-
function getJsonData(
|
3585
|
+
function getJsonData(_x58, _x59, _x60) {
|
3584
3586
|
return _getJsonData.apply(this, arguments);
|
3585
3587
|
}
|
3586
3588
|
|
@@ -3630,7 +3632,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3630
3632
|
}, _callee21, this);
|
3631
3633
|
}));
|
3632
3634
|
|
3633
|
-
function getBytesData(
|
3635
|
+
function getBytesData(_x61, _x62, _x63) {
|
3634
3636
|
return _getBytesData.apply(this, arguments);
|
3635
3637
|
}
|
3636
3638
|
|
@@ -3736,7 +3738,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3736
3738
|
}, _callee22, this);
|
3737
3739
|
}));
|
3738
3740
|
|
3739
|
-
function getGrants(
|
3741
|
+
function getGrants(_x64, _x65) {
|
3740
3742
|
return _getGrants.apply(this, arguments);
|
3741
3743
|
}
|
3742
3744
|
|
@@ -3801,7 +3803,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3801
3803
|
}, _callee23, this);
|
3802
3804
|
}));
|
3803
3805
|
|
3804
|
-
function getCachedSecretCryptor(
|
3806
|
+
function getCachedSecretCryptor(_x66, _x67) {
|
3805
3807
|
return _getCachedSecretCryptor.apply(this, arguments);
|
3806
3808
|
}
|
3807
3809
|
|
@@ -3840,7 +3842,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3840
3842
|
}, _callee24, this);
|
3841
3843
|
}));
|
3842
3844
|
|
3843
|
-
function getPersonalInformationsFromConsultId(
|
3845
|
+
function getPersonalInformationsFromConsultId(_x68, _x69, _x70) {
|
3844
3846
|
return _getPersonalInformationsFromConsultId.apply(this, arguments);
|
3845
3847
|
}
|
3846
3848
|
|
@@ -3878,7 +3880,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3878
3880
|
}, _callee25, this);
|
3879
3881
|
}));
|
3880
3882
|
|
3881
|
-
function getMedicalDataFromConsultId(
|
3883
|
+
function getMedicalDataFromConsultId(_x71, _x72) {
|
3882
3884
|
return _getMedicalDataFromConsultId.apply(this, arguments);
|
3883
3885
|
}
|
3884
3886
|
|
@@ -3971,7 +3973,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
3971
3973
|
}, _callee26);
|
3972
3974
|
}));
|
3973
3975
|
|
3974
|
-
return function (
|
3976
|
+
return function (_x76) {
|
3975
3977
|
return _ref3.apply(this, arguments);
|
3976
3978
|
};
|
3977
3979
|
}()));
|
@@ -4012,7 +4014,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4012
4014
|
}, _callee27, this);
|
4013
4015
|
}));
|
4014
4016
|
|
4015
|
-
function getMetaCategoryFromConsultId(
|
4017
|
+
function getMetaCategoryFromConsultId(_x73, _x74, _x75) {
|
4016
4018
|
return _getMetaCategoryFromConsultId.apply(this, arguments);
|
4017
4019
|
}
|
4018
4020
|
|
@@ -4099,7 +4101,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4099
4101
|
}, _callee28, this);
|
4100
4102
|
}));
|
4101
4103
|
|
4102
|
-
function getPersonalInformations(
|
4104
|
+
function getPersonalInformations(_x77) {
|
4103
4105
|
return _getPersonalInformations.apply(this, arguments);
|
4104
4106
|
}
|
4105
4107
|
|
@@ -4148,7 +4150,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4148
4150
|
}, _callee29, this);
|
4149
4151
|
}));
|
4150
4152
|
|
4151
|
-
function getGrantFromConsultId(
|
4153
|
+
function getGrantFromConsultId(_x78) {
|
4152
4154
|
return _getGrantFromConsultId.apply(this, arguments);
|
4153
4155
|
}
|
4154
4156
|
|
@@ -4198,7 +4200,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4198
4200
|
}, _callee30, this);
|
4199
4201
|
}));
|
4200
4202
|
|
4201
|
-
function getIdentityFromConsultId(
|
4203
|
+
function getIdentityFromConsultId(_x79) {
|
4202
4204
|
return _getIdentityFromConsultId.apply(this, arguments);
|
4203
4205
|
}
|
4204
4206
|
|
@@ -4277,7 +4279,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4277
4279
|
}, _callee31);
|
4278
4280
|
}));
|
4279
4281
|
|
4280
|
-
return function (
|
4282
|
+
return function (_x85) {
|
4281
4283
|
return _ref4.apply(this, arguments);
|
4282
4284
|
};
|
4283
4285
|
}())).then(function (manifest) {
|
@@ -4293,7 +4295,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4293
4295
|
}, _callee32, this);
|
4294
4296
|
}));
|
4295
4297
|
|
4296
|
-
function getLockboxManifest(
|
4298
|
+
function getLockboxManifest(_x80, _x81, _x82, _x83, _x84) {
|
4297
4299
|
return _getLockboxManifest.apply(this, arguments);
|
4298
4300
|
}
|
4299
4301
|
|
@@ -4363,7 +4365,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4363
4365
|
}, _callee33, this);
|
4364
4366
|
}));
|
4365
4367
|
|
4366
|
-
function createPersonalInformations(
|
4368
|
+
function createPersonalInformations(_x86, _x87, _x88) {
|
4367
4369
|
return _createPersonalInformations.apply(this, arguments);
|
4368
4370
|
}
|
4369
4371
|
|
@@ -4433,7 +4435,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4433
4435
|
}, _callee34, this);
|
4434
4436
|
}));
|
4435
4437
|
|
4436
|
-
function createUserPreference(
|
4438
|
+
function createUserPreference(_x89, _x90, _x91) {
|
4437
4439
|
return _createUserPreference.apply(this, arguments);
|
4438
4440
|
}
|
4439
4441
|
|
@@ -4501,7 +4503,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4501
4503
|
}, _callee35, this);
|
4502
4504
|
}));
|
4503
4505
|
|
4504
|
-
function getDataFromGrant(
|
4506
|
+
function getDataFromGrant(_x92, _x93) {
|
4505
4507
|
return _getDataFromGrant.apply(this, arguments);
|
4506
4508
|
}
|
4507
4509
|
|
@@ -4550,7 +4552,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4550
4552
|
}, _callee36, this);
|
4551
4553
|
}));
|
4552
4554
|
|
4553
|
-
function getUserPreferenceFromConsultId(
|
4555
|
+
function getUserPreferenceFromConsultId(_x94) {
|
4554
4556
|
return _getUserPreferenceFromConsultId.apply(this, arguments);
|
4555
4557
|
}
|
4556
4558
|
|
@@ -4601,7 +4603,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4601
4603
|
}, _callee37, this);
|
4602
4604
|
}));
|
4603
4605
|
|
4604
|
-
function getUserPreference(
|
4606
|
+
function getUserPreference(_x95) {
|
4605
4607
|
return _getUserPreference.apply(this, arguments);
|
4606
4608
|
}
|
4607
4609
|
|
@@ -4650,7 +4652,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4650
4652
|
}, _callee38, this);
|
4651
4653
|
}));
|
4652
4654
|
|
4653
|
-
function getRecoveryDataFromConsultId(
|
4655
|
+
function getRecoveryDataFromConsultId(_x96) {
|
4654
4656
|
return _getRecoveryDataFromConsultId.apply(this, arguments);
|
4655
4657
|
}
|
4656
4658
|
|
@@ -4701,7 +4703,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4701
4703
|
}, _callee39, this);
|
4702
4704
|
}));
|
4703
4705
|
|
4704
|
-
function getRecoveryData(
|
4706
|
+
function getRecoveryData(_x97) {
|
4705
4707
|
return _getRecoveryData.apply(this, arguments);
|
4706
4708
|
}
|
4707
4709
|
|
@@ -4763,7 +4765,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4763
4765
|
}, _callee40);
|
4764
4766
|
}));
|
4765
4767
|
|
4766
|
-
return function (
|
4768
|
+
return function (_x100) {
|
4767
4769
|
return _ref5.apply(this, arguments);
|
4768
4770
|
};
|
4769
4771
|
}())).then(function (promise) {
|
@@ -4783,7 +4785,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4783
4785
|
}, _callee41, this);
|
4784
4786
|
}));
|
4785
4787
|
|
4786
|
-
function getAssignedConsultations(
|
4788
|
+
function getAssignedConsultations(_x98, _x99) {
|
4787
4789
|
return _getAssignedConsultations.apply(this, arguments);
|
4788
4790
|
}
|
4789
4791
|
|
@@ -4861,7 +4863,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4861
4863
|
}, _callee42);
|
4862
4864
|
}));
|
4863
4865
|
|
4864
|
-
return function (
|
4866
|
+
return function (_x103) {
|
4865
4867
|
return _ref6.apply(this, arguments);
|
4866
4868
|
};
|
4867
4869
|
}()));
|
@@ -4877,7 +4879,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4877
4879
|
}, _callee43, this);
|
4878
4880
|
}));
|
4879
4881
|
|
4880
|
-
function getPastConsultationsFromConsultId(
|
4882
|
+
function getPastConsultationsFromConsultId(_x101, _x102) {
|
4881
4883
|
return _getPastConsultationsFromConsultId.apply(this, arguments);
|
4882
4884
|
}
|
4883
4885
|
|
@@ -4935,7 +4937,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4935
4937
|
}, _callee44, this);
|
4936
4938
|
}));
|
4937
4939
|
|
4938
|
-
function getPatientConsultationData(
|
4940
|
+
function getPatientConsultationData(_x104, _x105) {
|
4939
4941
|
return _getPatientConsultationData.apply(this, arguments);
|
4940
4942
|
}
|
4941
4943
|
|
@@ -4969,7 +4971,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
4969
4971
|
}, _callee45, this);
|
4970
4972
|
}));
|
4971
4973
|
|
4972
|
-
function getPatientPrescriptionsList(
|
4974
|
+
function getPatientPrescriptionsList(_x106) {
|
4973
4975
|
return _getPatientPrescriptionsList.apply(this, arguments);
|
4974
4976
|
}
|
4975
4977
|
|
@@ -5003,7 +5005,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5003
5005
|
}, _callee46, this);
|
5004
5006
|
}));
|
5005
5007
|
|
5006
|
-
function getPatientResultsList(
|
5008
|
+
function getPatientResultsList(_x107) {
|
5007
5009
|
return _getPatientResultsList.apply(this, arguments);
|
5008
5010
|
}
|
5009
5011
|
|
@@ -5037,7 +5039,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5037
5039
|
}, _callee47, this);
|
5038
5040
|
}));
|
5039
5041
|
|
5040
|
-
function getPatientTreatmentPlans(
|
5042
|
+
function getPatientTreatmentPlans(_x108) {
|
5041
5043
|
return _getPatientTreatmentPlans.apply(this, arguments);
|
5042
5044
|
}
|
5043
5045
|
|
@@ -5073,7 +5075,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5073
5075
|
}, _callee48, this);
|
5074
5076
|
}));
|
5075
5077
|
|
5076
|
-
function getPatientTreatmentPlanByUuid(
|
5078
|
+
function getPatientTreatmentPlanByUuid(_x109, _x110) {
|
5077
5079
|
return _getPatientTreatmentPlanByUuid.apply(this, arguments);
|
5078
5080
|
}
|
5079
5081
|
|
@@ -5130,7 +5132,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5130
5132
|
}, _callee49);
|
5131
5133
|
}));
|
5132
5134
|
|
5133
|
-
return function (
|
5135
|
+
return function (_x114) {
|
5134
5136
|
return _ref7.apply(this, arguments);
|
5135
5137
|
};
|
5136
5138
|
}()));
|
@@ -5148,7 +5150,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5148
5150
|
}, _callee50, this);
|
5149
5151
|
}));
|
5150
5152
|
|
5151
|
-
function getPatientDocumentsList(
|
5153
|
+
function getPatientDocumentsList(_x111, _x112, _x113) {
|
5152
5154
|
return _getPatientDocumentsList.apply(this, arguments);
|
5153
5155
|
}
|
5154
5156
|
|
@@ -5210,7 +5212,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5210
5212
|
}, _callee51, this);
|
5211
5213
|
}));
|
5212
5214
|
|
5213
|
-
function recoverPrivateKeyFromSecurityQuestions(
|
5215
|
+
function recoverPrivateKeyFromSecurityQuestions(_x115, _x116, _x117, _x118) {
|
5214
5216
|
return _recoverPrivateKeyFromSecurityQuestions.apply(this, arguments);
|
5215
5217
|
}
|
5216
5218
|
|
@@ -5258,7 +5260,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5258
5260
|
}, _callee52, this);
|
5259
5261
|
}));
|
5260
5262
|
|
5261
|
-
function recoverPrivateKeyFromPassword(
|
5263
|
+
function recoverPrivateKeyFromPassword(_x119, _x120) {
|
5262
5264
|
return _recoverPrivateKeyFromPassword.apply(this, arguments);
|
5263
5265
|
}
|
5264
5266
|
|
@@ -5298,7 +5300,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5298
5300
|
}, _callee53, this);
|
5299
5301
|
}));
|
5300
5302
|
|
5301
|
-
function recoverPrivateKeyFromMasterKey(
|
5303
|
+
function recoverPrivateKeyFromMasterKey(_x121, _x122) {
|
5302
5304
|
return _recoverPrivateKeyFromMasterKey.apply(this, arguments);
|
5303
5305
|
}
|
5304
5306
|
|
@@ -5349,7 +5351,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5349
5351
|
}, _callee54, this);
|
5350
5352
|
}));
|
5351
5353
|
|
5352
|
-
function updateSecurityQuestions(
|
5354
|
+
function updateSecurityQuestions(_x123, _x124, _x125, _x126) {
|
5353
5355
|
return _updateSecurityQuestions.apply(this, arguments);
|
5354
5356
|
}
|
5355
5357
|
|
@@ -5414,7 +5416,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5414
5416
|
}, _callee55, this);
|
5415
5417
|
}));
|
5416
5418
|
|
5417
|
-
function updatePassword(
|
5419
|
+
function updatePassword(_x127, _x128, _x129) {
|
5418
5420
|
return _updatePassword.apply(this, arguments);
|
5419
5421
|
}
|
5420
5422
|
|
@@ -5476,7 +5478,7 @@ var OroClient = /*#__PURE__*/function () {
|
|
5476
5478
|
}, _callee56, this);
|
5477
5479
|
}));
|
5478
5480
|
|
5479
|
-
function updateMasterKey(
|
5481
|
+
function updateMasterKey(_x130, _x131, _x132) {
|
5480
5482
|
return _updateMasterKey.apply(this, arguments);
|
5481
5483
|
}
|
5482
5484
|
|