oro-sdk-apis 1.5.1 → 1.6.0-dev2

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.
@@ -89,6 +89,7 @@ export interface DrugPrescription {
89
89
  export interface TreatmentAndDrugPrescription {
90
90
  treatment?: Treatment;
91
91
  prescriptionsAndDrugs?: DrugPrescription[];
92
+ notes?: string;
92
93
  status: PlanStatus;
93
94
  uuidTreatmentPlan: string;
94
95
  }
@@ -351,3 +351,10 @@ export interface PracticeSubscription {
351
351
  idMailChimpAudience: string;
352
352
  isoLanguage: string;
353
353
  }
354
+ export interface PracticeInvoice {
355
+ id: string;
356
+ total: number;
357
+ subtotal: number;
358
+ currency: string;
359
+ discount: number;
360
+ }
@@ -30,6 +30,53 @@ export interface EntryData {
30
30
  className?: string;
31
31
  triggers?: string[];
32
32
  }
33
+ export interface SlidesData {
34
+ 1: {
35
+ header: string;
36
+ body: string;
37
+ image?: {
38
+ src: string;
39
+ alt: string;
40
+ };
41
+ icon?: string;
42
+ };
43
+ 2: {
44
+ header: string;
45
+ body: string;
46
+ image?: {
47
+ src: string;
48
+ alt: string;
49
+ };
50
+ icon?: string;
51
+ };
52
+ 3: {
53
+ header: string;
54
+ body: string;
55
+ image?: {
56
+ src: string;
57
+ alt: string;
58
+ };
59
+ icon?: string;
60
+ };
61
+ 4: {
62
+ header: string;
63
+ body: string;
64
+ image?: {
65
+ src: string;
66
+ alt: string;
67
+ };
68
+ icon?: string;
69
+ };
70
+ 5: {
71
+ header: string;
72
+ body: string;
73
+ image?: {
74
+ src: string;
75
+ alt: string;
76
+ };
77
+ icon?: string;
78
+ };
79
+ }
33
80
  export declare enum MetadataCategory {
34
81
  ChildPersonal = "ChildPersonal",
35
82
  Consultation = "Consultation",
@@ -81,6 +128,7 @@ export interface WorkflowPageData {
81
128
  }
82
129
  export interface WorkflowData {
83
130
  createdAt: string;
131
+ carouselSlides: SlidesData;
84
132
  culDeSacs: EntryData[];
85
133
  id: string;
86
134
  locale?: string;
@@ -2413,6 +2413,16 @@ var PracticeService = /*#__PURE__*/function () {
2413
2413
  promotionCode: promotionCode
2414
2414
  }
2415
2415
  });
2416
+ }
2417
+ /**
2418
+ * Invoice
2419
+ * @param practiceUuid UUID of the practice to get the invoice from
2420
+ * @param invoiceId ID of the invoice in stripe
2421
+ */
2422
+ ;
2423
+
2424
+ _proto.getInvoice = function getInvoice(practiceUuid, invoiceId) {
2425
+ return this.api.get(this.baseURL + "/v1/practices/" + practiceUuid + "/payments/invoices/" + invoiceId);
2416
2426
  } // Practitioner
2417
2427
  ;
2418
2428