@metatrongg/sdk 0.8.0-dev.17481b6 → 0.8.0-dev.1ef20e5
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/browser/index.d.ts +23 -0
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +493 -3
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +23 -0
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +3 -3
package/dist/browser/index.d.ts
CHANGED
|
@@ -334,9 +334,16 @@ type PublicAppPage = {
|
|
|
334
334
|
chapters: AppPageChapters;
|
|
335
335
|
links: AppPageLinks;
|
|
336
336
|
studio: PublicAppPageStudio;
|
|
337
|
+
platforms: AppPagePlatforms;
|
|
338
|
+
gameType: AppPageGameType;
|
|
339
|
+
ageRating: AppPageAgeRating;
|
|
340
|
+
languages: AppPageLanguages;
|
|
341
|
+
releaseStatus: AppPageReleaseStatus;
|
|
342
|
+
paymentsMode: AppPagePaymentsMode;
|
|
337
343
|
oauthScopes: Array<string>;
|
|
338
344
|
chains: Array<string>;
|
|
339
345
|
publishedAt: string;
|
|
346
|
+
updatedAt: string;
|
|
340
347
|
};
|
|
341
348
|
type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
|
|
342
349
|
type AppPageTagline = string;
|
|
@@ -365,6 +372,12 @@ type PublicAppPageStudio = {
|
|
|
365
372
|
xHandle: string | null;
|
|
366
373
|
githubUrl: string | null;
|
|
367
374
|
};
|
|
375
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
376
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
377
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
378
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
379
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
380
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
368
381
|
type ReviewListResponse = {
|
|
369
382
|
aggregate: ReviewAggregate;
|
|
370
383
|
reviews: Array<Review>;
|
|
@@ -1866,6 +1879,11 @@ type AppPageDraft = {
|
|
|
1866
1879
|
gallery: AppPageGallery;
|
|
1867
1880
|
chapters: AppPageChapters;
|
|
1868
1881
|
links: AppPageLinks;
|
|
1882
|
+
platforms: AppPagePlatforms;
|
|
1883
|
+
gameType: AppPageGameType;
|
|
1884
|
+
ageRating: AppPageAgeRating;
|
|
1885
|
+
languages: AppPageLanguages;
|
|
1886
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1869
1887
|
firstPublishedAt: string | null;
|
|
1870
1888
|
reviewedAt: string | null;
|
|
1871
1889
|
reviewNotes: string | null;
|
|
@@ -1888,6 +1906,11 @@ type UpdateAppPage = {
|
|
|
1888
1906
|
gallery?: AppPageGallery;
|
|
1889
1907
|
chapters?: AppPageChapters;
|
|
1890
1908
|
links?: AppPageLinks;
|
|
1909
|
+
platforms?: AppPagePlatforms;
|
|
1910
|
+
gameType?: AppPageGameType;
|
|
1911
|
+
ageRating?: AppPageAgeRating;
|
|
1912
|
+
languages?: AppPageLanguages;
|
|
1913
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1891
1914
|
};
|
|
1892
1915
|
type AppPageGalleryUploadResponse = {
|
|
1893
1916
|
url: string;
|