oro-sdk-apis 1.1.0 → 1.5.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/LICENSE +21 -0
- package/README.md +12 -1
- package/dist/models/diagnosis.d.ts +11 -3
- package/dist/models/guard.d.ts +1 -0
- package/dist/oro-sdk-apis.cjs.development.js +37 -5
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +39 -7
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/guard.d.ts +8 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +13 -3
- package/src/models/guard.ts +2 -0
- package/src/services/guard.ts +11 -1
package/dist/oro-sdk-apis.esm.js
CHANGED
|
@@ -1197,13 +1197,13 @@ var TaskStatus;
|
|
|
1197
1197
|
TaskStatus["Done"] = "Done";
|
|
1198
1198
|
})(TaskStatus || (TaskStatus = {}));
|
|
1199
1199
|
|
|
1200
|
-
var
|
|
1200
|
+
var VisibilityType;
|
|
1201
1201
|
|
|
1202
|
-
(function (
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
})(
|
|
1202
|
+
(function (VisibilityType) {
|
|
1203
|
+
VisibilityType["Generic"] = "Generic";
|
|
1204
|
+
VisibilityType["Private"] = "Private";
|
|
1205
|
+
VisibilityType["Instance"] = "Instance";
|
|
1206
|
+
})(VisibilityType || (VisibilityType = {}));
|
|
1207
1207
|
|
|
1208
1208
|
var DrugType;
|
|
1209
1209
|
|
|
@@ -2248,6 +2248,38 @@ var GuardService = /*#__PURE__*/function () {
|
|
|
2248
2248
|
}
|
|
2249
2249
|
|
|
2250
2250
|
return identityMFAQRCode;
|
|
2251
|
+
}()
|
|
2252
|
+
/**
|
|
2253
|
+
* Attempt to resend the email confirmation email
|
|
2254
|
+
*
|
|
2255
|
+
* @param req IdentityResendConfirmEmailRequest
|
|
2256
|
+
* @return void
|
|
2257
|
+
*/
|
|
2258
|
+
;
|
|
2259
|
+
|
|
2260
|
+
_proto.identitySendConfirmEmail =
|
|
2261
|
+
/*#__PURE__*/
|
|
2262
|
+
function () {
|
|
2263
|
+
var _identitySendConfirmEmail = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee10(req) {
|
|
2264
|
+
return runtime_1.wrap(function _callee10$(_context10) {
|
|
2265
|
+
while (1) {
|
|
2266
|
+
switch (_context10.prev = _context10.next) {
|
|
2267
|
+
case 0:
|
|
2268
|
+
return _context10.abrupt("return", this.api.post(this.baseURL + "/v1/identity/confirm", req));
|
|
2269
|
+
|
|
2270
|
+
case 1:
|
|
2271
|
+
case "end":
|
|
2272
|
+
return _context10.stop();
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
}, _callee10, this);
|
|
2276
|
+
}));
|
|
2277
|
+
|
|
2278
|
+
function identitySendConfirmEmail(_x11) {
|
|
2279
|
+
return _identitySendConfirmEmail.apply(this, arguments);
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
return identitySendConfirmEmail;
|
|
2251
2283
|
}();
|
|
2252
2284
|
|
|
2253
2285
|
return GuardService;
|
|
@@ -3059,5 +3091,5 @@ var init = function init(services, authenticationCallback) {
|
|
|
3059
3091
|
};
|
|
3060
3092
|
|
|
3061
3093
|
export default init;
|
|
3062
|
-
export { APIService, AssignmentStatus, AssistantType, AuthenticationBadRequest, AuthenticationFailed, AuthenticationServerError, AuthenticationUnconfirmedEmail, AxiosService, ConsultService, DiagnosisService,
|
|
3094
|
+
export { APIService, AssignmentStatus, AssistantType, AuthenticationBadRequest, AuthenticationFailed, AuthenticationServerError, AuthenticationUnconfirmedEmail, AxiosService, ConsultService, DiagnosisService, DocumentType, DrugType, FeeStatus, GuardService, IdentityCreationBadRequest, IdentityCreationConflict, IdentityCreationFailed, IndexKey, LicenseStatus, MedicalStatus, MetadataCategory, OtherRoleType, PaymentStatus, PeriodType, PlanStatus, PlanType, PracticeConfigKind, PracticeEmailKind, PracticeService, PractitionerStatus, PractitionnerRoleType, RateDimension, StripePriceType, SyncStatus, TaskStatus, TellerService, TransmissionKind, TransmissionStatus, VaultService, VisibilityType, WorkflowService, WorkflowType };
|
|
3063
3095
|
//# sourceMappingURL=oro-sdk-apis.esm.js.map
|