File tree Expand file tree Collapse file tree 4 files changed +44
-0
lines changed Expand file tree Collapse file tree 4 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -910,6 +910,7 @@ export const Routes = {
910
910
currentApplication ( ) {
911
911
return '/applications/@me' as const ;
912
912
} ,
913
+
913
914
/**
914
915
* Route for:
915
916
* - GET `/applications/{application.id}/entitlements`
@@ -918,20 +919,30 @@ export const Routes = {
918
919
entitlements ( applicationId : Snowflake ) {
919
920
return `/applications/${ applicationId } /entitlements` as const ;
920
921
} ,
922
+
921
923
/**
922
924
* Route for:
923
925
* - DELETE `/applications/{application.id}/entitlements/{entitlement.id}`
924
926
*/
925
927
entitlement ( applicationId : Snowflake , entitlementId : Snowflake ) {
926
928
return `/applications/${ applicationId } /entitlements/${ entitlementId } ` as const ;
927
929
} ,
930
+
928
931
/**
929
932
* Route for:
930
933
* - GET `/applications/{application.id}/skus`
931
934
*/
932
935
skus ( applicationId : Snowflake ) {
933
936
return `/applications/${ applicationId } /skus` as const ;
934
937
} ,
938
+
939
+ /**
940
+ * Route for:
941
+ * - POST `/guilds/{guild.id}/bulk-ban`
942
+ */
943
+ guildBulkBan ( guildId : Snowflake ) {
944
+ return `/guilds/${ guildId } /bulk-ban` as const ;
945
+ } ,
935
946
} ;
936
947
937
948
export const StickerPackApplicationId = '710982414301790216' ;
Original file line number Diff line number Diff line change @@ -919,6 +919,7 @@ export const Routes = {
919
919
currentApplication ( ) {
920
920
return '/applications/@me' as const ;
921
921
} ,
922
+
922
923
/**
923
924
* Route for:
924
925
* - GET `/applications/{application.id}/entitlements`
@@ -927,20 +928,30 @@ export const Routes = {
927
928
entitlements ( applicationId : Snowflake ) {
928
929
return `/applications/${ applicationId } /entitlements` as const ;
929
930
} ,
931
+
930
932
/**
931
933
* Route for:
932
934
* - DELETE `/applications/{application.id}/entitlements/{entitlement.id}`
933
935
*/
934
936
entitlement ( applicationId : Snowflake , entitlementId : Snowflake ) {
935
937
return `/applications/${ applicationId } /entitlements/${ entitlementId } ` as const ;
936
938
} ,
939
+
937
940
/**
938
941
* Route for:
939
942
* - GET `/applications/{application.id}/skus`
940
943
*/
941
944
skus ( applicationId : Snowflake ) {
942
945
return `/applications/${ applicationId } /skus` as const ;
943
946
} ,
947
+
948
+ /**
949
+ * Route for:
950
+ * - POST `/guilds/{guild.id}/bulk-ban`
951
+ */
952
+ guildBulkBan ( guildId : Snowflake ) {
953
+ return `/guilds/${ guildId } /bulk-ban` as const ;
954
+ } ,
944
955
} ;
945
956
946
957
export const StickerPackApplicationId = '710982414301790216' ;
Original file line number Diff line number Diff line change @@ -910,6 +910,7 @@ export const Routes = {
910
910
currentApplication ( ) {
911
911
return '/applications/@me' as const ;
912
912
} ,
913
+
913
914
/**
914
915
* Route for:
915
916
* - GET `/applications/{application.id}/entitlements`
@@ -918,20 +919,30 @@ export const Routes = {
918
919
entitlements ( applicationId : Snowflake ) {
919
920
return `/applications/${ applicationId } /entitlements` as const ;
920
921
} ,
922
+
921
923
/**
922
924
* Route for:
923
925
* - DELETE `/applications/{application.id}/entitlements/{entitlement.id}`
924
926
*/
925
927
entitlement ( applicationId : Snowflake , entitlementId : Snowflake ) {
926
928
return `/applications/${ applicationId } /entitlements/${ entitlementId } ` as const ;
927
929
} ,
930
+
928
931
/**
929
932
* Route for:
930
933
* - GET `/applications/{application.id}/skus`
931
934
*/
932
935
skus ( applicationId : Snowflake ) {
933
936
return `/applications/${ applicationId } /skus` as const ;
934
937
} ,
938
+
939
+ /**
940
+ * Route for:
941
+ * - POST `/guilds/{guild.id}/bulk-ban`
942
+ */
943
+ guildBulkBan ( guildId : Snowflake ) {
944
+ return `/guilds/${ guildId } /bulk-ban` as const ;
945
+ } ,
935
946
} ;
936
947
937
948
export const StickerPackApplicationId = '710982414301790216' ;
Original file line number Diff line number Diff line change @@ -919,6 +919,7 @@ export const Routes = {
919
919
currentApplication ( ) {
920
920
return '/applications/@me' as const ;
921
921
} ,
922
+
922
923
/**
923
924
* Route for:
924
925
* - GET `/applications/{application.id}/entitlements`
@@ -927,20 +928,30 @@ export const Routes = {
927
928
entitlements ( applicationId : Snowflake ) {
928
929
return `/applications/${ applicationId } /entitlements` as const ;
929
930
} ,
931
+
930
932
/**
931
933
* Route for:
932
934
* - DELETE `/applications/{application.id}/entitlements/{entitlement.id}`
933
935
*/
934
936
entitlement ( applicationId : Snowflake , entitlementId : Snowflake ) {
935
937
return `/applications/${ applicationId } /entitlements/${ entitlementId } ` as const ;
936
938
} ,
939
+
937
940
/**
938
941
* Route for:
939
942
* - GET `/applications/{application.id}/skus`
940
943
*/
941
944
skus ( applicationId : Snowflake ) {
942
945
return `/applications/${ applicationId } /skus` as const ;
943
946
} ,
947
+
948
+ /**
949
+ * Route for:
950
+ * - POST `/guilds/{guild.id}/bulk-ban`
951
+ */
952
+ guildBulkBan ( guildId : Snowflake ) {
953
+ return `/guilds/${ guildId } /bulk-ban` as const ;
954
+ } ,
944
955
} ;
945
956
946
957
export const StickerPackApplicationId = '710982414301790216' ;
You can’t perform that action at this time.
0 commit comments