apexify.js 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/declare.d.ts +127 -107
- package/package.json +4 -2
package/README.md
CHANGED
package/declare.d.ts
CHANGED
|
@@ -1,22 +1,56 @@
|
|
|
1
|
-
declare module
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
[key: string]: any;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
class apexAI {
|
|
8
|
-
constructor(...args: any[]);
|
|
9
|
-
[key: string]: any;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const ecoSystem: any;
|
|
1
|
+
declare module 'apexify.js' {
|
|
2
|
+
const ApexChat: any;
|
|
3
|
+
const ApexImagine: any;
|
|
13
4
|
const adminUser: any;
|
|
14
|
-
const
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
5
|
+
const ecoSystem: any;
|
|
6
|
+
const roleMenu: any;
|
|
7
|
+
const contactInfo: any;
|
|
8
|
+
const shopItem: any;
|
|
9
|
+
const eventInfo: any;
|
|
10
|
+
const blogPost: any;
|
|
11
|
+
const productInfo: any;
|
|
12
|
+
const userEco: any;
|
|
13
|
+
const xpConfig: any;
|
|
14
|
+
const xpCount: any;
|
|
15
|
+
const forumPost: any;
|
|
16
|
+
const orderInfo: any;
|
|
17
|
+
const productReview: any;
|
|
18
|
+
const recipeInfo: any;
|
|
19
|
+
const musicTrack: any;
|
|
20
|
+
const setGameCount: any;
|
|
21
|
+
const gameCount: any;
|
|
22
|
+
const employeeInfo: any;
|
|
23
|
+
const setserverCounter: any;
|
|
24
|
+
const guildInfo: any;
|
|
25
|
+
const userTemplate: any;
|
|
26
|
+
const updateAllExcept: any;
|
|
27
|
+
const updateAll: any;
|
|
28
|
+
const updateData: any;
|
|
29
|
+
const migrateAndPrune: any;
|
|
30
|
+
const migrateData: any;
|
|
31
|
+
const textSearch: any;
|
|
32
|
+
const searchMany: any;
|
|
33
|
+
const removeSpecific: any;
|
|
34
|
+
const removeManyExcept: any;
|
|
35
|
+
const removeMany: any;
|
|
36
|
+
const remove: any;
|
|
37
|
+
const listCollections: any;
|
|
38
|
+
const listIndexes: any;
|
|
39
|
+
const geoNear: any;
|
|
40
|
+
const find: any;
|
|
41
|
+
const drop: any;
|
|
42
|
+
const distinct: any;
|
|
43
|
+
const dataSize: any;
|
|
44
|
+
const countDocs: any;
|
|
45
|
+
const createTable: any;
|
|
46
|
+
const aggregate: any;
|
|
47
|
+
const save: any;
|
|
48
|
+
const initializeDb: any;
|
|
49
|
+
const getDb: any;
|
|
50
|
+
const mongoConnect: any;
|
|
51
|
+
const NanoDb: any;
|
|
52
|
+
const apexAI: any;
|
|
53
|
+
const ApexPainter: any;
|
|
20
54
|
const typeWriter: any;
|
|
21
55
|
const starter: any;
|
|
22
56
|
const previousCommand: any;
|
|
@@ -24,94 +58,80 @@ declare module "apexify.js" {
|
|
|
24
58
|
const skipCommand: any;
|
|
25
59
|
const stopCommand: any;
|
|
26
60
|
const playCommand: any;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
class Paginator {
|
|
34
|
-
constructor(...args: any[]);
|
|
35
|
-
[key: string]: any;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
class SelectMenuManager {
|
|
39
|
-
constructor(...args: any[]);
|
|
40
|
-
[key: string]: any;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
class ButtonManager {
|
|
44
|
-
constructor(...args: any[]);
|
|
45
|
-
[key: string]: any;
|
|
46
|
-
}
|
|
47
|
-
|
|
61
|
+
const PermissionChecker: any;
|
|
62
|
+
const Paginator: any;
|
|
63
|
+
const SelectMenuManager: any;
|
|
64
|
+
const ButtonManager: any;
|
|
48
65
|
const cooldown: any;
|
|
66
|
+
const whiteList: any;
|
|
67
|
+
const blackList: any;
|
|
49
68
|
|
|
50
|
-
export
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
69
|
+
export {
|
|
70
|
+
ApexChat,
|
|
71
|
+
ApexImagine,
|
|
72
|
+
adminUser,
|
|
73
|
+
ecoSystem,
|
|
74
|
+
roleMenu,
|
|
75
|
+
contactInfo,
|
|
76
|
+
shopItem,
|
|
77
|
+
eventInfo,
|
|
78
|
+
blogPost,
|
|
79
|
+
productInfo,
|
|
80
|
+
userEco,
|
|
81
|
+
xpConfig,
|
|
82
|
+
xpCount,
|
|
83
|
+
forumPost,
|
|
84
|
+
orderInfo,
|
|
85
|
+
productReview,
|
|
86
|
+
recipeInfo,
|
|
87
|
+
musicTrack,
|
|
88
|
+
setGameCount,
|
|
89
|
+
gameCount,
|
|
90
|
+
employeeInfo,
|
|
91
|
+
setserverCounter,
|
|
92
|
+
guildInfo,
|
|
93
|
+
userTemplate,
|
|
94
|
+
updateAllExcept,
|
|
95
|
+
updateAll,
|
|
96
|
+
updateData,
|
|
97
|
+
migrateAndPrune,
|
|
98
|
+
migrateData,
|
|
99
|
+
textSearch,
|
|
100
|
+
searchMany,
|
|
101
|
+
removeSpecific,
|
|
102
|
+
removeManyExcept,
|
|
103
|
+
removeMany,
|
|
104
|
+
remove,
|
|
105
|
+
listCollections,
|
|
106
|
+
listIndexes,
|
|
107
|
+
geoNear,
|
|
108
|
+
find,
|
|
109
|
+
drop,
|
|
110
|
+
distinct,
|
|
111
|
+
dataSize,
|
|
112
|
+
countDocs,
|
|
113
|
+
createTable,
|
|
114
|
+
aggregate,
|
|
115
|
+
save,
|
|
116
|
+
initializeDb,
|
|
117
|
+
getDb,
|
|
118
|
+
mongoConnect,
|
|
119
|
+
NanoDb,
|
|
120
|
+
apexAI,
|
|
121
|
+
ApexPainter,
|
|
122
|
+
typeWriter,
|
|
123
|
+
starter,
|
|
124
|
+
previousCommand,
|
|
125
|
+
resumeCommand,
|
|
126
|
+
skipCommand,
|
|
127
|
+
stopCommand,
|
|
128
|
+
playCommand,
|
|
129
|
+
PermissionChecker,
|
|
130
|
+
Paginator,
|
|
131
|
+
SelectMenuManager,
|
|
132
|
+
ButtonManager,
|
|
133
|
+
cooldown,
|
|
134
|
+
whiteList,
|
|
135
|
+
blackList,
|
|
136
|
+
};
|
|
137
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apexify.js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Ai with Canvas and Database library. Supports typescript and javascript",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -132,7 +132,6 @@
|
|
|
132
132
|
"dependencies": {
|
|
133
133
|
"@iamtraction/google-translate": "^2.0.1",
|
|
134
134
|
"@napi-rs/canvas": "^0.1.51",
|
|
135
|
-
"@types/node": "^18.0.6",
|
|
136
135
|
"api": "^2.6.0",
|
|
137
136
|
"archiver": "^7.0.0",
|
|
138
137
|
"ascii-table": "^0.0.9",
|
|
@@ -152,6 +151,9 @@
|
|
|
152
151
|
"tesseract.js": "^5.0.5"
|
|
153
152
|
},
|
|
154
153
|
"devDependencies": {
|
|
154
|
+
"@types/node": "^20.11.25",
|
|
155
|
+
"discord.js": "^14.14.1",
|
|
156
|
+
"ts-node": "^10.9.2",
|
|
155
157
|
"typescript": "^5.4.2"
|
|
156
158
|
}
|
|
157
159
|
}
|