octopian-apis 1.0.38 → 1.0.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octopian-apis",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "Transaction APIs SDK that implements Octopian Services which will be used for any node project typescript or javascript",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -103,7 +103,7 @@ export async function LinkedLogin(LoginDTO, Timeout = 30000) {
103
103
  return {
104
104
  Message: "Success",
105
105
  StatusCode: 200,
106
- Result:{ Token: linkedSubInteractorTokenList.Result.GatewayToken, ProfileToken: APIResponse.Result.Token}
106
+ Result:{ Token: linkedSubInteractorTokenList.Result.GatewayToken, MainAccountToken: APIResponse.Result.Token}
107
107
  };
108
108
  }
109
109
  }
@@ -104,7 +104,7 @@ export async function DABLinkedLogin(LoginDTO, Timeout = 30000) {
104
104
  return {
105
105
  Message: "Success",
106
106
  StatusCode: 200,
107
- Result:{ Token: linkedSubInteractorTokenList.Result.GatewayToken, ProfileToken: APIResponse.Result.Token}
107
+ Result:{ Token: linkedSubInteractorTokenList.Result.GatewayToken, MainAccountToken: APIResponse.Result.Token}
108
108
  };
109
109
  }
110
110
  }
@@ -1,4 +1,4 @@
1
1
  export interface LinkedLoginOutput {
2
2
  Token: string
3
- ProfileToken: string
3
+ MainAccountToken: string
4
4
  }