@@ -73,7 +73,7 @@ const locales = [];
73
73
74
74
let publishSpecialType = publishMode == "guild" ? ( isClearMode ? "guildOnly" : ( argv . get ( 2 ) || "guildOnly" ) ) : "globalOnly" ;
75
75
76
-
76
+ console . log ( publishSpecialType )
77
77
78
78
if ( ! publishMode ) {
79
79
console . error ( `Geçersiz paylaşım modu! Geçerli modlar: guild, global` ) ;
@@ -112,9 +112,9 @@ const locales = [];
112
112
await chillout . forEach ( interactionFilePaths , ( interactionFilePath ) => {
113
113
/** @type {import("./types/Interaction") } */
114
114
let uInter = require ( interactionFilePath ) ;
115
- if ( uInter ?. _type != "interaction" ) return ;
116
- if ( ! uInter . publishType ) uInter . publishType = "all " ;
117
- if ( ! ( uInter . publishType == "all" || publishSpecialType == uInter . publishType ) ) {
115
+ if ( uInter ?. _type != "interaction" ) return ;
116
+ if ( ! uInter . publishType ) uInter . publishType = "globalOnly " ;
117
+ if ( ! ( ( uInter . publishType == "all" && [ "guildOnly" , "globalOnly" ] . includes ( publishSpecialType ) ) || publishSpecialType == uInter . publishType ) ) {
118
118
console . warn ( `Interaksiyon "${ uInter . actionType == "ChatInput" ? `/${ uInter . name . join ( " " ) } ` : `${ uInter . name [ 0 ] } ` } " dönüştürülme listesine eklenmedi çünkü interaksiyon paylaşılma tipi(${ uInter . publishType } ) ile paylaşma modu(${ publishMode } ) uyumsuz!` ) ;
119
119
return ;
120
120
}
@@ -133,7 +133,8 @@ const locales = [];
133
133
type : interactionTypes [ current . actionType ] ?? current . actionType ,
134
134
name : current . name [ 0 ] ,
135
135
description : current . description ,
136
- defaultPermission : current . defaultPermission ,
136
+ defaultMemberPermissions : current . defaultPermission ? null : [ "Administrator" ] ,
137
+ dmPermission : ! current . guildOnly ,
137
138
options : current . options ,
138
139
nameLocalizations : localeData . names ( 0 ) ,
139
140
descriptionLocalizations : localeData . descriptions ,
@@ -152,7 +153,8 @@ const locales = [];
152
153
nameLocalizations : localeData . names ( 0 ) ,
153
154
descriptionLocalizations : localeData . descriptions ,
154
155
description : current . description ,
155
- defaultPermission : current . defaultPermission ,
156
+ defaultMemberPermissions : current . defaultPermission ? null : [ "Administrator" ] ,
157
+ dmPermission : ! current . guildOnly ,
156
158
options : [
157
159
{
158
160
type : 1 ,
@@ -185,7 +187,8 @@ const locales = [];
185
187
all . push ( {
186
188
type : interactionTypes [ current . actionType ] ?? current . actionType ,
187
189
name : current . name [ 0 ] ,
188
- defaultPermission : current . defaultPermission ,
190
+ defaultMemberPermissions : current . defaultPermission ? null : [ "Administrator" ] ,
191
+ dmPermission : ! current . guildOnly ,
189
192
nameLocalizations : localeData . names ( 0 ) ,
190
193
descriptionLocalizations : localeData . descriptions ,
191
194
description : current . description ,
@@ -250,21 +253,19 @@ const locales = [];
250
253
} , [ ] ) ;
251
254
252
255
function fixOptions ( inter = { } ) {
253
- console . log ( "1" , inter . type )
254
256
inter . type = optionTypes [ inter . type ] ?? inter . type ;
255
- console . log ( "2" , inter . type )
256
257
if ( inter ?. options ) {
257
258
inter . options . map ( fixOptions )
258
259
return inter ;
259
260
} ;
260
261
return inter ;
261
262
}
262
-
263
+
263
264
for ( let i = 0 ; i < dcInters . length ; i ++ ) {
264
265
dcInters [ i ] = fixOptions ( dcInters [ i ] ) ;
265
266
}
266
267
267
- console . log ( require ( "util" ) . inspect ( dcInters , false , 9999 , true ) ) ;
268
+ require ( "util" ) . inspect ( dcInters , false , 9999 , true )
268
269
269
270
// return;
270
271
0 commit comments