@metatrongg/sdk 0.8.0-dev.f0f6902 → 0.8.0-dev.f92f9cf
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 +0 -6
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1 -32
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +0 -6
- 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
|
@@ -400,7 +400,6 @@ type Review = {
|
|
|
400
400
|
tippedCents: number;
|
|
401
401
|
commentCount: number;
|
|
402
402
|
author: ReviewAuthor;
|
|
403
|
-
authorStats: ReviewerStats;
|
|
404
403
|
developerReply: ReviewReply;
|
|
405
404
|
createdAt: string;
|
|
406
405
|
updatedAt: string;
|
|
@@ -418,11 +417,6 @@ type ReviewAuthor = {
|
|
|
418
417
|
name: string | null;
|
|
419
418
|
avatarUrl: string | null;
|
|
420
419
|
};
|
|
421
|
-
type ReviewerStats = {
|
|
422
|
-
playtimeSecondsThisGame: number;
|
|
423
|
-
gamesPlayed: number;
|
|
424
|
-
reviewsWritten: number;
|
|
425
|
-
};
|
|
426
420
|
type ReviewReply = {
|
|
427
421
|
body: ReviewReplyBody;
|
|
428
422
|
repliedAt: string;
|