@bzbs/react-api-client 0.0.19 → 0.0.20

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.mts CHANGED
@@ -684,6 +684,8 @@ interface Purchase {
684
684
  RedeemDate?: number;
685
685
  IsUsed?: boolean;
686
686
  UsedDate?: number;
687
+ UseExpireDate?: number;
688
+ IsExpired?: boolean;
687
689
  VoucherExpireDate?: number;
688
690
  CurrentDate?: number;
689
691
  ExpireIn?: number;
package/dist/index.d.ts CHANGED
@@ -684,6 +684,8 @@ interface Purchase {
684
684
  RedeemDate?: number;
685
685
  IsUsed?: boolean;
686
686
  UsedDate?: number;
687
+ UseExpireDate?: number;
688
+ IsExpired?: boolean;
687
689
  VoucherExpireDate?: number;
688
690
  CurrentDate?: number;
689
691
  ExpireIn?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bzbs/react-api-client",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "React API Client for Buzzebees",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -14,7 +14,8 @@
14
14
  "lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
15
15
  "lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
16
16
  "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md}\" --config ./.prettierrc.json",
17
- "build:patch:publish": "npm run build && npm version patch && npm publish"
17
+ "build:patch:publish": "npm run build && npm version patch && npm publish",
18
+ "build:link": "npm run build && npm link"
18
19
  },
19
20
  "author": "Buzzebees Co., Ltd.",
20
21
  "license": "ISC",