ggez-banking-sdk 0.4.13 → 0.4.14
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.
|
@@ -2,7 +2,7 @@ import { PromotionData, UserAccessControl } from "..";
|
|
|
2
2
|
export type * from "./promotionData";
|
|
3
3
|
export type * from "./userAccessControl";
|
|
4
4
|
type CustomField = {
|
|
5
|
-
promotion_data
|
|
5
|
+
promotion_data?: PromotionData;
|
|
6
6
|
user_access_control: UserAccessControl;
|
|
7
7
|
};
|
|
8
8
|
export type { CustomField };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ReferralData } from "./referralData";
|
|
2
2
|
import type { GiftData } from "./giftData";
|
|
3
3
|
type PromotionData = {
|
|
4
|
-
referral_data
|
|
5
|
-
gift_data
|
|
4
|
+
referral_data?: ReferralData;
|
|
5
|
+
gift_data?: GiftData[];
|
|
6
6
|
};
|
|
7
7
|
export type { PromotionData };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.14",
|
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|