@metatrongg/sdk 0.8.0-dev.70f0c99 → 0.8.0-dev.73cf69b
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 +4 -1
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +81 -9
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +4 -1
- 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
|
@@ -127,7 +127,9 @@ type OauthErrorResponse = {
|
|
|
127
127
|
type OauthUserInfoResponse = {
|
|
128
128
|
sub: string;
|
|
129
129
|
name: string | null;
|
|
130
|
+
preferred_username: string | null;
|
|
130
131
|
picture: string | null;
|
|
132
|
+
wallet_address: string | null;
|
|
131
133
|
};
|
|
132
134
|
type OauthPaymentChargeResponse = ({
|
|
133
135
|
status: "completed";
|
|
@@ -2008,6 +2010,7 @@ type CreateDeveloperAppChain = {
|
|
|
2008
2010
|
};
|
|
2009
2011
|
type UpdateDeveloperApp = {
|
|
2010
2012
|
name?: DeveloperAppName;
|
|
2013
|
+
slug?: AppPageSlug | null;
|
|
2011
2014
|
logoUrl?: string | null;
|
|
2012
2015
|
testAccess?: "private" | "public";
|
|
2013
2016
|
redirectUris?: Array<string>;
|
|
@@ -2256,6 +2259,7 @@ type DeveloperProductionRequestPayload = {
|
|
|
2256
2259
|
type DeveloperAppItem = {
|
|
2257
2260
|
id: string;
|
|
2258
2261
|
name: DeveloperAppName;
|
|
2262
|
+
slug: AppPageSlug | null;
|
|
2259
2263
|
logoUrl: string | null;
|
|
2260
2264
|
environment: "development" | "production";
|
|
2261
2265
|
productionApprovedAt: string | null;
|
|
@@ -2320,7 +2324,6 @@ type AppPageDraft = {
|
|
|
2320
2324
|
pendingReview: boolean;
|
|
2321
2325
|
};
|
|
2322
2326
|
type UpdateAppPage = {
|
|
2323
|
-
slug?: AppPageSlug | null;
|
|
2324
2327
|
categories?: AppPageCategories;
|
|
2325
2328
|
tagline?: AppPageTagline | null;
|
|
2326
2329
|
bannerUrl?: string | null;
|