@playcademy/sdk 0.0.1-beta.15 → 0.0.1-beta.16
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/core/client.d.ts +4 -4
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/core/client.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ export declare class PlaycademyClient {
|
|
|
185
185
|
updatedAt: Date | null;
|
|
186
186
|
itemId: string;
|
|
187
187
|
currencyId: string;
|
|
188
|
-
|
|
188
|
+
price: number;
|
|
189
189
|
sellBackPercentage: number | null;
|
|
190
190
|
stock: number | null;
|
|
191
191
|
isActive: boolean;
|
|
@@ -198,7 +198,7 @@ export declare class PlaycademyClient {
|
|
|
198
198
|
updatedAt: Date | null;
|
|
199
199
|
itemId: string;
|
|
200
200
|
currencyId: string;
|
|
201
|
-
|
|
201
|
+
price: number;
|
|
202
202
|
sellBackPercentage: number | null;
|
|
203
203
|
stock: number | null;
|
|
204
204
|
isActive: boolean;
|
|
@@ -211,7 +211,7 @@ export declare class PlaycademyClient {
|
|
|
211
211
|
updatedAt: Date | null;
|
|
212
212
|
itemId: string;
|
|
213
213
|
currencyId: string;
|
|
214
|
-
|
|
214
|
+
price: number;
|
|
215
215
|
sellBackPercentage: number | null;
|
|
216
216
|
stock: number | null;
|
|
217
217
|
isActive: boolean;
|
|
@@ -224,7 +224,7 @@ export declare class PlaycademyClient {
|
|
|
224
224
|
updatedAt: Date | null;
|
|
225
225
|
itemId: string;
|
|
226
226
|
currencyId: string;
|
|
227
|
-
|
|
227
|
+
price: number;
|
|
228
228
|
sellBackPercentage: number | null;
|
|
229
229
|
stock: number | null;
|
|
230
230
|
isActive: boolean;
|
package/dist/types.d.ts
CHANGED
|
@@ -62,4 +62,4 @@ export interface ShopViewResponse {
|
|
|
62
62
|
userCurrencies: UserCurrencyInfo[];
|
|
63
63
|
activeListings: ShopListing[];
|
|
64
64
|
}
|
|
65
|
-
export type { User, InventoryItemWithItem, Game, ManifestV1, DeveloperKey, DeveloperStatusResponse, MapElement, Item, InsertItem, UpdateItem, Currency, InsertCurrency, UpdateCurrency, InsertShopListing, UpdateShopListing, };
|
|
65
|
+
export type { User, InventoryItemWithItem, Game, ManifestV1, DeveloperKey, DeveloperStatusResponse, MapElement, Item, InsertItem, UpdateItem, Currency, InsertCurrency, UpdateCurrency, ShopListing, InsertShopListing, UpdateShopListing, };
|