@authenty/authapi-types 1.0.23 → 1.0.24

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/dist/index.d.ts CHANGED
@@ -468,7 +468,7 @@ export declare namespace AuthApi {
468
468
  namespace sync {
469
469
  type POST = {
470
470
  msg: string;
471
- purchase?: objects.Purchase;
471
+ Purchase: objects.Purchase;
472
472
  };
473
473
  }
474
474
  namespace getFromGateway {
@@ -477,6 +477,7 @@ export declare namespace AuthApi {
477
477
  namespace cancel {
478
478
  type POST = {
479
479
  msg?: string;
480
+ Purchase: objects.Purchase;
480
481
  };
481
482
  }
482
483
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authenty/authapi-types",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Shared types for Authenty API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -509,14 +509,14 @@ export namespace AuthApi {
509
509
  export namespace sync {
510
510
  export type POST = {
511
511
  msg:string,
512
- purchase?: objects.Purchase
512
+ Purchase: objects.Purchase
513
513
  };
514
514
  }
515
515
  export namespace getFromGateway {
516
516
  export type GET = objects.PaymentSystem.PG_Purchase;
517
517
  }
518
518
  export namespace cancel {
519
- export type POST = {msg?:string};
519
+ export type POST = {msg?:string, Purchase: objects.Purchase};
520
520
  }
521
521
 
522
522
  }