@openmrs/esm-billing-app 1.0.1-pre.78 → 1.0.1-pre.80

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.
@@ -32,10 +32,10 @@
32
32
  "initial": true,
33
33
  "entry": true,
34
34
  "recorded": false,
35
- "size": 3931119,
35
+ "size": 3931118,
36
36
  "sizes": {
37
37
  "consume-shared": 210,
38
- "javascript": 3910203,
38
+ "javascript": 3910202,
39
39
  "share-init": 210,
40
40
  "runtime": 20496
41
41
  },
@@ -52,7 +52,7 @@
52
52
  "auxiliaryFiles": [
53
53
  "main.js.map"
54
54
  ],
55
- "hash": "0eefad8fec69722d",
55
+ "hash": "aea150f9512501fa",
56
56
  "childrenByOrder": {}
57
57
  },
58
58
  {
@@ -272,9 +272,9 @@
272
272
  "initial": false,
273
273
  "entry": false,
274
274
  "recorded": false,
275
- "size": 354398,
275
+ "size": 354397,
276
276
  "sizes": {
277
- "javascript": 354398
277
+ "javascript": 354397
278
278
  },
279
279
  "names": [],
280
280
  "idHints": [],
@@ -287,7 +287,7 @@
287
287
  "auxiliaryFiles": [
288
288
  "759.js.map"
289
289
  ],
290
- "hash": "a27799facad44e77",
290
+ "hash": "ff6f628f16b4c9d2",
291
291
  "childrenByOrder": {}
292
292
  },
293
293
  {
package/dist/routes.json CHANGED
@@ -1 +1 @@
1
- {"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"webservices.rest":">=2.24.0","fhir2":"^1.2.0"},"pages":[{"component":"billableServicesHome","route":"billable-services"}],"extensions":[{"component":"billingDashboardLink","name":"billing-dashboard-link","slot":"homepage-dashboard-slot","meta":{"name":"billing","title":"billing","slot":"billing-dashboard-slot"},"featureFlag":"billing"},{"component":"root","name":"billing-dashboard-root","slot":"billing-dashboard-slot"},{"name":"billing-patient-summary","component":"billingPatientSummary","slot":"patient-chart-billing-dashboard-slot","order":10,"meta":{"columnSpan":4}},{"name":"billing-summary-dashboard-link","component":"billingSummaryDashboardLink","slot":"patient-chart-dashboard-slot","order":11,"meta":{"columns":1,"columnSpan":1,"slot":"patient-chart-billing-dashboard-slot","path":"Billing history"},"featureFlag":"billing"},{"name":"billing-checkin-form","slot":"extra-visit-attribute-slot","component":"billingCheckInForm"},{"slot":"system-admin-page-card-link-slot","component":"billableServicesCardLink","name":"billable-services-admin-card-link"},{"name":"billing-form","component":"billingForm"},{"name":"require-billing-modal","component":"requirePaymentModal"},{"name":"patient-banner-billing-tags","component":"visitAttributeTags","slot":"patient-banner-tags-slot","order":2},{"name":"billing-home-tiles-ext","slot":"billing-home-tiles-slot","component":"serviceMetrics"}],"version":"1.0.1-pre.78"}
1
+ {"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"webservices.rest":">=2.24.0","fhir2":"^1.2.0"},"pages":[{"component":"billableServicesHome","route":"billable-services"}],"extensions":[{"component":"billingDashboardLink","name":"billing-dashboard-link","slot":"homepage-dashboard-slot","meta":{"name":"billing","title":"billing","slot":"billing-dashboard-slot"},"featureFlag":"billing"},{"component":"root","name":"billing-dashboard-root","slot":"billing-dashboard-slot"},{"name":"billing-patient-summary","component":"billingPatientSummary","slot":"patient-chart-billing-dashboard-slot","order":10,"meta":{"columnSpan":4}},{"name":"billing-summary-dashboard-link","component":"billingSummaryDashboardLink","slot":"patient-chart-dashboard-slot","order":11,"meta":{"columns":1,"columnSpan":1,"slot":"patient-chart-billing-dashboard-slot","path":"Billing history"},"featureFlag":"billing"},{"name":"billing-checkin-form","slot":"extra-visit-attribute-slot","component":"billingCheckInForm"},{"slot":"system-admin-page-card-link-slot","component":"billableServicesCardLink","name":"billable-services-admin-card-link"},{"name":"billing-form","component":"billingForm"},{"name":"require-billing-modal","component":"requirePaymentModal"},{"name":"patient-banner-billing-tags","component":"visitAttributeTags","slot":"patient-banner-tags-slot","order":2},{"name":"billing-home-tiles-ext","slot":"billing-home-tiles-slot","component":"serviceMetrics"}],"version":"1.0.1-pre.80"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-billing-app",
3
- "version": "1.0.1-pre.78",
3
+ "version": "1.0.1-pre.80",
4
4
  "description": "Billing frontend module for use in O3",
5
5
  "browser": "dist/openmrs-esm-billing-app.js",
6
6
  "main": "src/index.ts",
@@ -6,7 +6,7 @@ import sortBy from 'lodash-es/sortBy';
6
6
  import { apiBasePath } from './constants';
7
7
 
8
8
  export const useBills = (patientUuid: string = '', billStatus: string = '') => {
9
- const url = `${apiBasePath}bill?v=full&limit=1000`;
9
+ const url = `${apiBasePath}bill?v=full&limit=100`;
10
10
 
11
11
  const { data, error, isLoading, isValidating, mutate } = useSWR<{ data: { results: Array<PatientInvoice> } }>(
12
12
  url,