File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @safe-global/safe-gateway-typescript-sdk" ,
3- "version" : " 3.6 .0" ,
3+ "version" : " 3.7 .0" ,
44 "main" : " dist/index.js" ,
55 "types" : " dist/index.d.ts" ,
66 "files" : [
Original file line number Diff line number Diff line change @@ -23,6 +23,17 @@ export enum SafeAppFeatures {
2323 BATCHED_TRANSACTIONS = 'BATCHED_TRANSACTIONS' ,
2424}
2525
26+ export enum SafeAppSocialPlatforms {
27+ TWITTER = 'TWITTER' ,
28+ GITHUB = 'GITHUB' ,
29+ DISCORD = 'DISCORD' ,
30+ }
31+
32+ export type SafeAppSocialProfile = {
33+ platform : SafeAppSocialPlatforms
34+ url : string
35+ }
36+
2637export type SafeAppData = {
2738 id : number
2839 url : string
@@ -34,6 +45,8 @@ export type SafeAppData = {
3445 accessControl : SafeAppsAccessControlPolicies
3546 tags : string [ ]
3647 features : SafeAppFeatures [ ]
48+ socialProfiles : SafeAppSocialProfile [ ]
49+ developerWebsite ?: string
3750}
3851
3952export type SafeAppsResponse = SafeAppData [ ]
You can’t perform that action at this time.
0 commit comments