oro-sdk-apis 1.10.0 → 1.11.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.
@@ -250,6 +250,15 @@ export interface PracticePaymentIntent {
250
250
  dateCreatedAt?: Date;
251
251
  dateUpdateAt?: Date;
252
252
  }
253
+ /**
254
+ * This interface is used as metadata when creating Stripe Invoice.
255
+ * It will be used to create the consult when stripe use our hook.
256
+ */
257
+ export interface ConsultRequestMetadata {
258
+ tagSpecialtyRequired: string;
259
+ isoLocalityRequired?: string;
260
+ isoLanguageRequired: string;
261
+ }
253
262
  export interface Assignment {
254
263
  id?: number;
255
264
  uuidPractice: string;
@@ -2402,13 +2402,26 @@ var PracticeService = /*#__PURE__*/function () {
2402
2402
 
2403
2403
  _proto.getPaymentIntentHashedEmail = function getPaymentIntentHashedEmail(email) {
2404
2404
  return _.Buffer.from(hash_js.sha256().update(email.toLowerCase()).digest('hex'), 'hex').toString('base64');
2405
- };
2405
+ }
2406
+ /**
2407
+ * Creates a PracticePaymentIntent
2408
+ * @param practiceUuid the uuid of the practice
2409
+ * @param planId the plan id to use
2410
+ * @param userEmail the email address of the user
2411
+ * @param isoLocality (optional) the desired locality
2412
+ * @param url_subdomain (optional) the url of the sub domain (@bruno-morel need you to document that)
2413
+ * @param promotionCode (optional) promotion code to apply
2414
+ * @param consultRequest (optional) consult request to use. If defined, when payment service call our hooks in practice, it will try to create a consult with these infos.
2415
+ * @returns
2416
+ */
2417
+ ;
2406
2418
 
2407
- _proto.practiceCreatePaymentsIntent = function practiceCreatePaymentsIntent(practiceUuid, planId, userEmail, isoLocality, url_subdomain, promotionCode) {
2419
+ _proto.practiceCreatePaymentsIntent = function practiceCreatePaymentsIntent(practiceUuid, planId, userEmail, isoLocality, url_subdomain, promotionCode, consultRequest) {
2408
2420
  return this.api.post(this.baseURL + "/v1/practices/" + practiceUuid + "/payments/intents/", {
2409
2421
  idPlan: planId,
2410
2422
  hashUserEmail: userEmail ? this.getPaymentIntentHashedEmail(userEmail) : undefined,
2411
- isoLocality: isoLocality
2423
+ isoLocality: isoLocality,
2424
+ consultRequest: consultRequest
2412
2425
  }, {
2413
2426
  params: {
2414
2427
  url_subdomain: url_subdomain,