opticedge-types 1.0.66 → 1.0.68

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.
@@ -16,6 +16,7 @@ type MarketReport = {
16
16
  };
17
17
  export type FbCard = {
18
18
  _createdAt: number;
19
+ _pendingAt?: number;
19
20
  _statusAt?: number;
20
21
  _updatedAt: number;
21
22
  amountToReinvest: number;
@@ -74,4 +74,8 @@ export type PriceChartingApiCard = {
74
74
  version: string;
75
75
  text?: string;
76
76
  };
77
+ export type PriceChartingDbSet = {
78
+ id: string;
79
+ consoleName: string;
80
+ };
77
81
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opticedge-types",
3
- "version": "1.0.66",
3
+ "version": "1.0.68",
4
4
  "description": "Common type for opticedge",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types/card.ts CHANGED
@@ -18,6 +18,7 @@ type MarketReport = {
18
18
 
19
19
  export type FbCard = {
20
20
  _createdAt: number
21
+ _pendingAt?: number
21
22
  _statusAt?: number
22
23
  _updatedAt: number
23
24
  amountToReinvest: number
@@ -82,3 +82,8 @@ export type PriceChartingApiCard = {
82
82
  version: string
83
83
  text?: string
84
84
  }
85
+
86
+ export type PriceChartingDbSet = {
87
+ id: string
88
+ consoleName: string
89
+ }