@medipass/utils 11.54.2-feat-tyro-terminal-refunds.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.
Files changed (98) hide show
  1. package/.eslintrc +3 -0
  2. package/CHANGELOG.md +3218 -0
  3. package/babel.config.js +4 -0
  4. package/billable-items-01050ba2.js +27 -0
  5. package/build-validation-schema.js +1282 -0
  6. package/businesses-968c8afa.js +54 -0
  7. package/chart.js +45 -0
  8. package/claim-payment-status-formatted.js +12 -0
  9. package/claim-payment-status-icons.js +10 -0
  10. package/claim-payment-status-text-classes.js +10 -0
  11. package/constants.js +387 -0
  12. package/countries.js +1011 -0
  13. package/datetime.js +36 -0
  14. package/document-types-formatted.js +13 -0
  15. package/document-types-icons.js +10 -0
  16. package/document-types-text-classes.js +10 -0
  17. package/documents/workflow-state-formatted-text-classes.js +12 -0
  18. package/documents/workflow-state-formatted.js +15 -0
  19. package/documents/workflow-state-icons.js +10 -0
  20. package/form-applications/assign-values-to-sections.js +29 -0
  21. package/forms-f06ca97e.js +51 -0
  22. package/funders.js +104 -0
  23. package/get-env.js +196 -0
  24. package/get-select-options.js +65 -0
  25. package/get-staff-type-display-name.js +12 -0
  26. package/google-addresses.js +127 -0
  27. package/health-fund-accounts-3cd8650f.js +20 -0
  28. package/health-fund-settings-43327826.js +22 -0
  29. package/health-funds-300facef.js +194 -0
  30. package/i18n/index.js +59 -0
  31. package/i18n/translations.js +36 -0
  32. package/index.js +57 -0
  33. package/intercom.js +103 -0
  34. package/jest.config.js +6 -0
  35. package/jest.setup.js +0 -0
  36. package/members-cb4f73a9.js +53 -0
  37. package/modalities-b360d521.js +19 -0
  38. package/normalise-abn.js +22 -0
  39. package/package.json +53 -0
  40. package/parse-health-fund-card-fields.js +12 -0
  41. package/patients-2083dd9c.js +46 -0
  42. package/payment-methods-4fa2d01f.js +26 -0
  43. package/payment-options.js +52 -0
  44. package/practices-3faceeff.js +89 -0
  45. package/products-bd313cb4.js +83 -0
  46. package/products.js +31 -0
  47. package/professional-categories-e2e5284b.js +19 -0
  48. package/redux-actions.js +161 -0
  49. package/redux-reducer.js +112 -0
  50. package/sanitise-url.js +17 -0
  51. package/scroll.js +9 -0
  52. package/sensitive-keys.js +9 -0
  53. package/sentry.js +104 -0
  54. package/service-items.js +229 -0
  55. package/services-2e25cdac.js +127 -0
  56. package/specialties-7640b7e3.js +20 -0
  57. package/staff-c3ecf4e6.js +165 -0
  58. package/status-icons.js +10 -0
  59. package/status-text-classes.js +10 -0
  60. package/subscriptions-45c1321a.js +160 -0
  61. package/test-framework/fixtures/accounts.js +34 -0
  62. package/test-framework/fixtures/billable-items.js +9 -0
  63. package/test-framework/fixtures/businesses.js +9 -0
  64. package/test-framework/fixtures/documents.js +121 -0
  65. package/test-framework/fixtures/form-application-templates.js +74 -0
  66. package/test-framework/fixtures/form-applications.js +39 -0
  67. package/test-framework/fixtures/forms.js +9 -0
  68. package/test-framework/fixtures/health-fund-accounts.js +9 -0
  69. package/test-framework/fixtures/health-fund-settings.js +9 -0
  70. package/test-framework/fixtures/health-funds.js +10 -0
  71. package/test-framework/fixtures/index.js +45 -0
  72. package/test-framework/fixtures/members.js +9 -0
  73. package/test-framework/fixtures/message-mappings.js +61 -0
  74. package/test-framework/fixtures/modalities.js +9 -0
  75. package/test-framework/fixtures/patients.js +9 -0
  76. package/test-framework/fixtures/payment-methods.js +9 -0
  77. package/test-framework/fixtures/practices.js +11 -0
  78. package/test-framework/fixtures/products.js +10 -0
  79. package/test-framework/fixtures/professional-categories.js +9 -0
  80. package/test-framework/fixtures/services.js +11 -0
  81. package/test-framework/fixtures/specialties.js +9 -0
  82. package/test-framework/fixtures/staff.js +12 -0
  83. package/test-framework/fixtures/subscriptions.js +13 -0
  84. package/test-framework/fixtures/transaction-reports.js +69 -0
  85. package/test-framework/fixtures/transactions.js +22 -0
  86. package/test-framework/fixtures/workflow-exceptions.js +32 -0
  87. package/test-framework/react.js +38 -0
  88. package/transaction-status-formatted.js +13 -0
  89. package/transaction-status-helpers.js +77 -0
  90. package/transaction-status-icons.js +10 -0
  91. package/transaction-status-text-classes.js +10 -0
  92. package/transaction-status.js +42 -0
  93. package/transactions-6e5fd92d.js +1883 -0
  94. package/validate-form.js +368 -0
  95. package/validate.js +37 -0
  96. package/webpack-config.js +27 -0
  97. package/workflow-state-formatted-text-classes.js +12 -0
  98. package/workflow-state-formatted.js +13 -0
package/.eslintrc ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": ["../../.eslintrc.json"]
3
+ }