File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
packages/service-utils/src/core Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @thirdweb-dev/service-utils " : patch
3
+ ---
4
+
5
+ add new capabilities to the type
Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ export type ApiResponse = {
49
49
* This type should match the schema from API server.
50
50
*/
51
51
type TeamCapabilities = {
52
+ platform : {
53
+ auditLogs : boolean ;
54
+ ecosystemWallets : boolean ;
55
+ seats : boolean ;
56
+ } ;
52
57
rpc : {
53
58
enabled : boolean ;
54
59
rateLimit : number ;
@@ -81,12 +86,20 @@ type TeamCapabilities = {
81
86
enabled : boolean ;
82
87
customAuth : boolean ;
83
88
customBranding : boolean ;
89
+ sms : {
90
+ domestic : boolean ;
91
+ international : boolean ;
92
+ } ;
84
93
} ;
85
94
engineCloud : {
86
95
enabled : boolean ;
87
96
mainnetEnabled : boolean ;
88
97
rateLimit : number ;
89
98
} ;
99
+ pay : {
100
+ enabled : boolean ;
101
+ rateLimit : number ;
102
+ } ;
90
103
} ;
91
104
92
105
type TeamPlan =
You can’t perform that action at this time.
0 commit comments