@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 +2 -1
- package/package.json +1 -1
- package/src/index.ts +2 -2
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
|
-
|
|
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
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
|
-
|
|
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
|
}
|