@open-tender/types 0.2.60 → 0.2.62

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.
@@ -289,6 +289,7 @@ export interface ConfigContent {
289
289
  videoUrlMobile: string;
290
290
  };
291
291
  orders: ConfigContentField;
292
+ pointsShop: ConfigContentField;
292
293
  profile: ConfigContentField;
293
294
  refunds: ConfigContentField & {
294
295
  background: string;
@@ -35,3 +35,12 @@ export interface TPLS {
35
35
  progress: TPLSProgress | null;
36
36
  rewards: TPLSRewards;
37
37
  }
38
+ export interface TPLSPointsShopReward {
39
+ description: string | null;
40
+ id: string;
41
+ image: string | null;
42
+ is_available: boolean;
43
+ name: string;
44
+ points: number;
45
+ }
46
+ export declare type TPLSPointsShopRewards = TPLSPointsShopReward[];
@@ -289,6 +289,7 @@ export interface ConfigContent {
289
289
  videoUrlMobile: string;
290
290
  };
291
291
  orders: ConfigContentField;
292
+ pointsShop: ConfigContentField;
292
293
  profile: ConfigContentField;
293
294
  refunds: ConfigContentField & {
294
295
  background: string;
@@ -35,3 +35,12 @@ export interface TPLS {
35
35
  progress: TPLSProgress | null;
36
36
  rewards: TPLSRewards;
37
37
  }
38
+ export interface TPLSPointsShopReward {
39
+ description: string | null;
40
+ id: string;
41
+ image: string | null;
42
+ is_available: boolean;
43
+ name: string;
44
+ points: number;
45
+ }
46
+ export declare type TPLSPointsShopRewards = TPLSPointsShopReward[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.60",
3
+ "version": "0.2.62",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",