@medipass/utils 11.69.3-feature-migrate-utils-to-ts.2 → 11.71.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.
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.71.0](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.70.0...@medipass/utils@11.71.0) (2022-10-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * **utils:** convert to ts ([#699](https://github.com/medipass/web-medicules/issues/699)) ([e679b9c](https://github.com/medipass/web-medicules/commit/e679b9c))
12
+
13
+
14
+
15
+
16
+
17
+ # [11.70.0](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.69.2...@medipass/utils@11.70.0) (2022-10-21)
18
+
19
+
20
+ ### Features
21
+
22
+ * **react-core:** add suspend modal ([#696](https://github.com/medipass/web-medicules/issues/696)) ([3857f2b](https://github.com/medipass/web-medicules/commit/3857f2b))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [11.69.2](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.69.1...@medipass/utils@11.69.2) (2022-09-27)
7
29
 
8
30
  **Note:** Version bump only for package @medipass/utils
package/constants.js CHANGED
@@ -213,6 +213,14 @@ var STATUSES = {
213
213
  };
214
214
  /* ====== END: STATUSES ======= */
215
215
 
216
+ /* ====== START: BUSINESS STATUSES ======= */
217
+
218
+ var BUSINESS_STATUSES = {
219
+ ACTIVE: 'ACTIVE',
220
+ SUSPENDED: 'SUSPENDED'
221
+ };
222
+ /* ====== END: BUSINESS STATUSES ======= */
223
+
216
224
  /* ====== START: PAYMENT STATUSES ======= */
217
225
 
218
226
  var PAYMENT_STATUSES = {
@@ -413,6 +421,7 @@ var ECLIPSE_OVERSEAS_CLAIM_TYPES = {
413
421
 
414
422
  exports.AUS_STATES = AUS_STATES;
415
423
  exports.AVAILABLE_PRODUCTS = AVAILABLE_PRODUCTS;
424
+ exports.BUSINESS_STATUSES = BUSINESS_STATUSES;
416
425
  exports.DOCUMENT_STATUSES = DOCUMENT_STATUSES;
417
426
  exports.DOCUMENT_TYPES = DOCUMENT_TYPES;
418
427
  exports.DOCUMENT_WORKFLOW_STATES = DOCUMENT_WORKFLOW_STATES;
@@ -161,6 +161,10 @@ export declare const STATUSES: {
161
161
  PENDING: string;
162
162
  EXPIRED: string;
163
163
  };
164
+ export declare const BUSINESS_STATUSES: {
165
+ ACTIVE: string;
166
+ SUSPENDED: string;
167
+ };
164
168
  export declare const PAYMENT_STATUSES: {
165
169
  ACCEPTED: string;
166
170
  APPROVED: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/utils",
3
- "version": "11.69.3-feature-migrate-utils-to-ts.2",
3
+ "version": "11.71.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -51,5 +51,5 @@
51
51
  "rimraf": "^2.6.2",
52
52
  "typescript": "4.8.4"
53
53
  },
54
- "gitHead": "671f8cbe90ee890ca0f272b2d70b35a893f8838b"
54
+ "gitHead": "c0b96948bea84482e689ab5353934eca2491d4a9"
55
55
  }