@medipass/utils 11.68.0 → 11.68.2

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.
Files changed (96) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/billable-items-01050ba2.js +27 -0
  3. package/blah.js +2 -0
  4. package/build-validation-schema.js +1282 -0
  5. package/businesses-e3a20604.js +53 -0
  6. package/chart.js +45 -0
  7. package/claim-payment-status-formatted.js +12 -0
  8. package/claim-payment-status-icons.js +10 -0
  9. package/claim-payment-status-text-classes.js +10 -0
  10. package/constants.js +460 -0
  11. package/countries.js +1011 -0
  12. package/datetime.js +36 -0
  13. package/document-types-formatted.js +13 -0
  14. package/document-types-icons.js +10 -0
  15. package/document-types-text-classes.js +10 -0
  16. package/documents/workflow-state-formatted-text-classes.js +12 -0
  17. package/documents/workflow-state-formatted.js +15 -0
  18. package/documents/workflow-state-icons.js +10 -0
  19. package/form-applications/assign-values-to-sections.js +29 -0
  20. package/forms-f06ca97e.js +51 -0
  21. package/funders.js +122 -0
  22. package/get-env.js +196 -0
  23. package/get-select-options.js +65 -0
  24. package/get-staff-type-display-name.js +12 -0
  25. package/google-addresses.js +127 -0
  26. package/health-fund-accounts-3cd8650f.js +20 -0
  27. package/health-fund-settings-43327826.js +22 -0
  28. package/health-funds-300facef.js +194 -0
  29. package/i18n/index.js +59 -0
  30. package/i18n/translations.js +36 -0
  31. package/index.js +56 -0
  32. package/intercom.js +101 -0
  33. package/members-cb4f73a9.js +53 -0
  34. package/modalities-b360d521.js +19 -0
  35. package/normalise-abn.js +22 -0
  36. package/package.json +2 -2
  37. package/parse-health-fund-card-fields.js +12 -0
  38. package/patients-2083dd9c.js +46 -0
  39. package/payment-methods-4fa2d01f.js +26 -0
  40. package/payment-options.js +52 -0
  41. package/practices-3e703f22.js +87 -0
  42. package/products-bd313cb4.js +83 -0
  43. package/products.js +31 -0
  44. package/professional-categories-e2e5284b.js +19 -0
  45. package/redux-actions.js +161 -0
  46. package/redux-reducer.js +112 -0
  47. package/sanitise-url.js +17 -0
  48. package/scroll.js +9 -0
  49. package/sensitive-keys.js +9 -0
  50. package/sentry.js +112 -0
  51. package/service-items.js +230 -0
  52. package/services-2e25cdac.js +127 -0
  53. package/specialties-7640b7e3.js +20 -0
  54. package/staff-990794cd.js +161 -0
  55. package/status-icons.js +10 -0
  56. package/status-text-classes.js +10 -0
  57. package/subscriptions-45c1321a.js +160 -0
  58. package/test-framework/fixtures/accounts.js +34 -0
  59. package/test-framework/fixtures/billable-items.js +9 -0
  60. package/test-framework/fixtures/businesses.js +9 -0
  61. package/test-framework/fixtures/documents.js +121 -0
  62. package/test-framework/fixtures/form-application-templates.js +74 -0
  63. package/test-framework/fixtures/form-applications.js +39 -0
  64. package/test-framework/fixtures/forms.js +9 -0
  65. package/test-framework/fixtures/health-fund-accounts.js +9 -0
  66. package/test-framework/fixtures/health-fund-settings.js +9 -0
  67. package/test-framework/fixtures/health-funds.js +10 -0
  68. package/test-framework/fixtures/index.js +45 -0
  69. package/test-framework/fixtures/members.js +9 -0
  70. package/test-framework/fixtures/message-mappings.js +61 -0
  71. package/test-framework/fixtures/modalities.js +9 -0
  72. package/test-framework/fixtures/patients.js +9 -0
  73. package/test-framework/fixtures/payment-methods.js +9 -0
  74. package/test-framework/fixtures/practices.js +11 -0
  75. package/test-framework/fixtures/products.js +10 -0
  76. package/test-framework/fixtures/professional-categories.js +9 -0
  77. package/test-framework/fixtures/services.js +11 -0
  78. package/test-framework/fixtures/specialties.js +9 -0
  79. package/test-framework/fixtures/staff.js +12 -0
  80. package/test-framework/fixtures/subscriptions.js +13 -0
  81. package/test-framework/fixtures/transaction-reports.js +204 -0
  82. package/test-framework/fixtures/transactions.js +22 -0
  83. package/test-framework/fixtures/workflow-exceptions.js +32 -0
  84. package/test-framework/react.js +38 -0
  85. package/transaction-details-by-funder.js +81 -0
  86. package/transaction-status-formatted.js +13 -0
  87. package/transaction-status-helpers.js +77 -0
  88. package/transaction-status-icons.js +10 -0
  89. package/transaction-status-text-classes.js +10 -0
  90. package/transaction-status.js +42 -0
  91. package/transactions-6e5fd92d.js +1883 -0
  92. package/validate-form.js +388 -0
  93. package/validate.js +37 -0
  94. package/webpack-config.js +27 -0
  95. package/workflow-state-formatted-text-classes.js +12 -0
  96. package/workflow-state-formatted.js +13 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.68.2](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.68.1...@medipass/utils@11.68.2) (2022-08-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **utils:** trigger change for release ([563cf0e](https://github.com/medipass/web-medicules/commit/563cf0e))
12
+
13
+
14
+
15
+
16
+
17
+ ## [11.68.1](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.68.0...@medipass/utils@11.68.1) (2022-08-17)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * package release ([#676](https://github.com/medipass/web-medicules/issues/676)) ([acb14e8](https://github.com/medipass/web-medicules/commit/acb14e8))
23
+
24
+
25
+
26
+
27
+
6
28
  # [11.68.0](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.67.0...@medipass/utils@11.68.0) (2022-08-17)
7
29
 
8
30
 
@@ -0,0 +1,27 @@
1
+ 'use strict';
2
+
3
+ var defaultBillableItem = {
4
+ _id: 'billableItemDefaultId',
5
+ organisationId: 'organisationDefaultId',
6
+ businessId: 'businessDefaultId',
7
+ practiceId: 'practiceDefaultId',
8
+ modalityId: 'modalityDefaultId',
9
+ staffId: 'staffPractitionerDefaultId',
10
+ itemCode: 'mockItemCode',
11
+ fullName: 'mockFullName',
12
+ displayName: 'mockDisplayName',
13
+ description: 'mockDescription',
14
+ price: 4000,
15
+ searchWords: ['mockitemcode', 'mockfullname', 'mockdisplayname'],
16
+ status: 'ACTIVE',
17
+ created: new Date('2015-01-01T00:00:00'),
18
+ modified: new Date('2015-01-02T00:00:00Z')
19
+ };
20
+
21
+ var billableItems = /*#__PURE__*/Object.freeze({
22
+ __proto__: null,
23
+ defaultBillableItem: defaultBillableItem
24
+ });
25
+
26
+ exports.billableItems = billableItems;
27
+ exports.defaultBillableItem = defaultBillableItem;
package/blah.js ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict';
2
+