File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export const API = (_apiTypeCheck = {
123123 me : {
124124 method : 'GET' ,
125125 authed : true ,
126- rateLimited : true ,
126+ rateLimited : false ,
127127 cache : DEFAULT_CACHE_STRATEGY ,
128128 props : z . object ( { } ) ,
129129 returns : { } as FullUser ,
@@ -184,7 +184,7 @@ export const API = (_apiTypeCheck = {
184184 'me/private' : {
185185 method : 'GET' ,
186186 authed : true ,
187- rateLimited : true ,
187+ rateLimited : false ,
188188 props : z . object ( { } ) ,
189189 returns : { } as PrivateUser ,
190190 } ,
@@ -261,7 +261,7 @@ export const API = (_apiTypeCheck = {
261261 'get-compatibility-questions' : {
262262 method : 'GET' ,
263263 authed : true ,
264- rateLimited : true ,
264+ rateLimited : false ,
265265 props : z . object ( { } ) ,
266266 returns : { } as {
267267 status : 'success'
@@ -400,7 +400,7 @@ export const API = (_apiTypeCheck = {
400400 'get-channel-memberships' : {
401401 method : 'GET' ,
402402 authed : true ,
403- rateLimited : true ,
403+ rateLimited : false ,
404404 props : z . object ( {
405405 channelId : z . coerce . number ( ) . optional ( ) ,
406406 createdTime : z . string ( ) . optional ( ) ,
@@ -415,7 +415,7 @@ export const API = (_apiTypeCheck = {
415415 'get-channel-messages' : {
416416 method : 'GET' ,
417417 authed : true ,
418- rateLimited : true ,
418+ rateLimited : false ,
419419 props : z . object ( {
420420 channelId : z . coerce . number ( ) ,
421421 limit : z . coerce . number ( ) ,
You can’t perform that action at this time.
0 commit comments