@opexa/portal-sdk 0.0.52 → 0.0.54
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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +183 -186
- package/dist/index.mjs.map +1 -1
- package/dist/services/types.d.ts +2 -0
- package/dist/utils/parse-decimal.d.ts +4 -2
- package/package.json +1 -1
package/dist/services/types.d.ts
CHANGED
|
@@ -132,10 +132,12 @@ export interface Game__Next extends Game {
|
|
|
132
132
|
tags?: GameTag[];
|
|
133
133
|
rank: Decimal;
|
|
134
134
|
site: string;
|
|
135
|
+
image: string;
|
|
135
136
|
cursor: string;
|
|
136
137
|
status: GameStatus;
|
|
137
138
|
platform: string;
|
|
138
139
|
reference: string;
|
|
140
|
+
customImage?: string;
|
|
139
141
|
/** @deprecated use `reference` instead */
|
|
140
142
|
externalId: string;
|
|
141
143
|
dateTimeCreated: DateString;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare function parseDecimal(value:
|
|
1
|
+
type MaybeNumber = number | string | undefined | null;
|
|
2
|
+
export declare function parseDecimal(value: MaybeNumber): number | undefined;
|
|
3
|
+
export declare function parseDecimal(value: MaybeNumber, fallback: number): number;
|
|
4
|
+
export {};
|