@ikonintegration/ikapi 4.0.0-alpha8 → 4.0.0-alpha9

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 (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13,7 +13,7 @@ import IKStepTransaction from "./src/IKStepTransaction.js";
13
13
  import IKMailer from "./src/Mailer/IKMailer.js";
14
14
  import IKValidation from "./src/Validation/IKValidation.js";
15
15
  //Responses
16
- import IKResponse from "./src/API/IKResponse.js";
16
+ import * as IKResponse from "./src/API/IKResponse.js";
17
17
  //Helpers
18
18
  import Utils from "./src/API/IKUtils.js";
19
19
  //Cache
@@ -46,7 +46,7 @@ export default {
46
46
  IKMailer,
47
47
  IKValidation,
48
48
  //Responses
49
- IKResponse,
49
+ IKResponse: IKResponse.default,
50
50
  IKBadRequestResponse: IKResponse.IKBadRequestResponse,
51
51
  IKUnauthorizedResponse: IKResponse.IKUnauthorizedResponse,
52
52
  IKMissingParamResponse: IKResponse.IKMissingParamResponse,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonintegration/ikapi",
3
- "version": "4.0.0-alpha8",
3
+ "version": "4.0.0-alpha9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "main.js",