@anthor/entities-types 1.107.2 → 1.107.4

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,25 @@
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
+ ## [1.107.4](https://github.com/anthorteam/backend/compare/v1.107.0...v1.107.4) (2023-03-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **gateway:** remove required status ([33f670c](https://github.com/anthorteam/backend/commit/33f670ced75ec4b680fc560e38f98d777e913d68))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.107.3](https://github.com/anthorteam/backend/compare/v1.107.0...v1.107.3) (2023-03-31)
18
+
19
+ **Note:** Version bump only for package @anthor/entities-types
20
+
21
+
22
+
23
+
24
+
6
25
  ## [1.107.2](https://github.com/anthorteam/backend/compare/v1.107.0...v1.107.2) (2023-03-31)
7
26
 
8
27
  **Note:** Version bump only for package @anthor/entities-types
@@ -1,7 +1,7 @@
1
1
  import { IntegrationStatus } from '../../enums';
2
2
  export interface PaymentGatewayBase {
3
- status: IntegrationStatus;
4
- errorMessage: string;
3
+ status?: IntegrationStatus;
4
+ errorMessage?: string;
5
5
  }
6
6
  export interface JunoGateway {
7
7
  junoAuthToken: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthor/entities-types",
3
- "version": "1.107.2",
3
+ "version": "1.107.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -21,5 +21,5 @@
21
21
  "geojson": "^0.5.0",
22
22
  "jest-sonar-reporter": "^2.0.0"
23
23
  },
24
- "gitHead": "90e26ba6f448c4a80bc0de121565983e41b641eb"
24
+ "gitHead": "5fc0d07404e43b7a81729c260a18fe7c424d1115"
25
25
  }