@futdevpro/nts-dynamo 1.14.13 → 1.14.15
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/.vscode/settings.json +11 -0
- package/build/_modules/ai/_modules/open-ai/_services/oai-document.data-service.js +1 -1
- package/build/_modules/ai/_modules/open-ai/_services/oai-document.data-service.js.map +1 -1
- package/build/_modules/ai/_modules/open-ai/_services/oai-vector-data.service.js +1 -1
- package/build/_modules/ai/_modules/open-ai/_services/oai-vector-data.service.js.map +1 -1
- package/build/_modules/bot/_enums/bot-provider.enum.d.ts +1 -0
- package/build/_modules/bot/_enums/bot-provider.enum.d.ts.map +1 -1
- package/build/_modules/bot/_enums/bot-provider.enum.js +1 -0
- package/build/_modules/bot/_enums/bot-provider.enum.js.map +1 -1
- package/build/_modules/bot/_models/bot-provider.interface.d.ts +5 -0
- package/build/_modules/bot/_models/bot-provider.interface.d.ts.map +1 -1
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.d.ts +17 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.d.ts.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.js +43 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.js.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb.util.d.ts +5 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb.util.d.ts.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb.util.js +26 -0
- package/build/_modules/bot/_modules/dynamo-bot/_collections/dyb.util.js.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.d.ts +10 -0
- package/build/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.d.ts.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.js +3 -0
- package/build/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.js.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_services/dyb-provider.service.d.ts +54 -0
- package/build/_modules/bot/_modules/dynamo-bot/_services/dyb-provider.service.d.ts.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/_services/dyb-provider.service.js +310 -0
- package/build/_modules/bot/_modules/dynamo-bot/_services/dyb-provider.service.js.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/index.d.ts +5 -0
- package/build/_modules/bot/_modules/dynamo-bot/index.d.ts.map +1 -0
- package/build/_modules/bot/_modules/dynamo-bot/index.js +17 -0
- package/build/_modules/bot/_modules/dynamo-bot/index.js.map +1 -0
- package/build/_modules/bot/_services/bot-provider-factory.service.d.ts.map +1 -1
- package/build/_modules/bot/_services/bot-provider-factory.service.js +3 -0
- package/build/_modules/bot/_services/bot-provider-factory.service.js.map +1 -1
- package/build/_modules/bot/index.d.ts +1 -0
- package/build/_modules/bot/index.d.ts.map +1 -1
- package/build/_modules/bot/index.js +1 -0
- package/build/_modules/bot/index.js.map +1 -1
- package/build/_modules/discord-assistant/_services/dias.service-base.d.ts.map +1 -1
- package/build/_modules/discord-assistant/_services/dias.service-base.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-commands.control-service.d.ts +2 -2
- package/build/_modules/discord-bot/_services/dibo-commands.control-service.d.ts.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-commands.control-service.js +19 -4
- package/build/_modules/discord-bot/_services/dibo-commands.control-service.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-io.control-service.d.ts +1 -1
- package/build/_modules/discord-bot/_services/dibo-io.control-service.d.ts.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-io.control-service.js +13 -8
- package/build/_modules/discord-bot/_services/dibo-io.control-service.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-main.control-service.d.ts +3 -0
- package/build/_modules/discord-bot/_services/dibo-main.control-service.d.ts.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-main.control-service.js +7 -3
- package/build/_modules/discord-bot/_services/dibo-main.control-service.js.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-routines.control-service.d.ts +1 -0
- package/build/_modules/discord-bot/_services/dibo-routines.control-service.d.ts.map +1 -1
- package/build/_modules/discord-bot/_services/dibo-routines.control-service.js +10 -0
- package/build/_modules/discord-bot/_services/dibo-routines.control-service.js.map +1 -1
- package/build/_modules/messaging/_services/msg.controller.js.map +1 -1
- package/eslint.config.js +3 -0
- package/package.json +14 -2
- package/src/_modules/ai/_modules/open-ai/_services/oai-document.data-service.ts +1 -1
- package/src/_modules/ai/_modules/open-ai/_services/oai-vector-data.service.ts +1 -1
- package/src/_modules/bot/_enums/bot-provider.enum.ts +1 -0
- package/src/_modules/bot/_models/bot-provider.interface.ts +5 -0
- package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb-operations.util.ts +52 -0
- package/src/_modules/bot/_modules/dynamo-bot/_collections/dyb.util.ts +26 -0
- package/src/_modules/bot/_modules/dynamo-bot/_models/dyb-platform.types.ts +15 -0
- package/src/_modules/bot/_modules/dynamo-bot/_services/dyb-provider.service.ts +399 -0
- package/src/_modules/bot/_modules/dynamo-bot/index.ts +16 -0
- package/src/_modules/bot/_services/bot-provider-factory.service.ts +4 -0
- package/src/_modules/bot/index.ts +1 -0
- package/src/_modules/discord-assistant/_services/dias.service-base.ts +0 -1
- package/src/_modules/discord-bot/_services/dibo-commands.control-service.ts +22 -5
- package/src/_modules/discord-bot/_services/dibo-io.control-service.ts +14 -15
- package/src/_modules/discord-bot/_services/dibo-main.control-service.ts +12 -4
- package/src/_modules/discord-bot/_services/dibo-routines.control-service.ts +10 -0
- package/src/_modules/messaging/_services/msg.controller.ts +1 -1
- package/.eslintrc.json +0 -186
package/.eslintrc.json
DELETED
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"browser": true,
|
|
4
|
-
"es2021": true
|
|
5
|
-
},
|
|
6
|
-
"extends": [
|
|
7
|
-
"eslint:recommended",
|
|
8
|
-
"plugin:@typescript-eslint/recommended"
|
|
9
|
-
],
|
|
10
|
-
"parser": "@typescript-eslint/parser",
|
|
11
|
-
"parserOptions": {
|
|
12
|
-
"ecmaVersion": "latest"
|
|
13
|
-
},
|
|
14
|
-
"plugins": [
|
|
15
|
-
"@typescript-eslint",
|
|
16
|
-
"unused-imports",
|
|
17
|
-
"max-params-no-constructor"
|
|
18
|
-
],
|
|
19
|
-
"rules": {
|
|
20
|
-
/**
|
|
21
|
-
WARNING!
|
|
22
|
-
If the rules have any json parse error, it wont work!
|
|
23
|
-
(even if have unknown property anywhere)
|
|
24
|
-
*/
|
|
25
|
-
"no-warning-comments": [
|
|
26
|
-
"warn",
|
|
27
|
-
{
|
|
28
|
-
"terms": [ "todo", "fixme", "removable", "??" ],
|
|
29
|
-
"location": "anywhere"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"indent": [
|
|
33
|
-
"warn",
|
|
34
|
-
2,
|
|
35
|
-
{ "SwitchCase": 1 }
|
|
36
|
-
],
|
|
37
|
-
"max-len": [
|
|
38
|
-
"warn",
|
|
39
|
-
{
|
|
40
|
-
"code": 100,
|
|
41
|
-
"comments": 120
|
|
42
|
-
}
|
|
43
|
-
],
|
|
44
|
-
"max-lines" : [
|
|
45
|
-
"warn",
|
|
46
|
-
1500
|
|
47
|
-
],
|
|
48
|
-
"linebreak-style": "off",
|
|
49
|
-
"semi": [ "warn", "always" ],
|
|
50
|
-
"no-unused-vars": "off",
|
|
51
|
-
"no-prototype-builtins": "off",
|
|
52
|
-
"no-empty": "warn",
|
|
53
|
-
"comma-dangle": [
|
|
54
|
-
"warn",
|
|
55
|
-
{
|
|
56
|
-
"arrays": "always-multiline",
|
|
57
|
-
"objects": "always-multiline",
|
|
58
|
-
"imports": "never",
|
|
59
|
-
"exports": "never",
|
|
60
|
-
"functions": "only-multiline"
|
|
61
|
-
}
|
|
62
|
-
],
|
|
63
|
-
"brace-style": [
|
|
64
|
-
"warn",
|
|
65
|
-
"1tbs",
|
|
66
|
-
{
|
|
67
|
-
"allowSingleLine": true
|
|
68
|
-
}
|
|
69
|
-
],
|
|
70
|
-
"padding-line-between-statements": [
|
|
71
|
-
"warn",
|
|
72
|
-
{
|
|
73
|
-
/** BREAK BEFORE */
|
|
74
|
-
"blankLine": "always",
|
|
75
|
-
"prev": "*",
|
|
76
|
-
"next": [
|
|
77
|
-
"return",
|
|
78
|
-
"throw",
|
|
79
|
-
"if",
|
|
80
|
-
"for",
|
|
81
|
-
"while",
|
|
82
|
-
"switch",
|
|
83
|
-
/* "case", */
|
|
84
|
-
"default"
|
|
85
|
-
]
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
/** BREAK AFTER */
|
|
89
|
-
"blankLine": "always",
|
|
90
|
-
"prev": [
|
|
91
|
-
"const",
|
|
92
|
-
"let",
|
|
93
|
-
"var",
|
|
94
|
-
"break"
|
|
95
|
-
],
|
|
96
|
-
"next": "*"
|
|
97
|
-
},
|
|
98
|
-
{ /** CAN FOLLOW (this must be after the BREAK AFTER and BREAK BEFORE) */
|
|
99
|
-
"blankLine": "any",
|
|
100
|
-
"prev": [
|
|
101
|
-
"const",
|
|
102
|
-
"let",
|
|
103
|
-
"var"
|
|
104
|
-
],
|
|
105
|
-
"next": [
|
|
106
|
-
"const",
|
|
107
|
-
"let",
|
|
108
|
-
"var"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
"prefer-const": "warn",
|
|
113
|
-
"no-case-declarations": "warn",
|
|
114
|
-
"no-fallthrough": "off",
|
|
115
|
-
"keyword-spacing": "warn",
|
|
116
|
-
"no-else-return": "off",
|
|
117
|
-
"no-restricted-imports": [
|
|
118
|
-
"error",
|
|
119
|
-
{
|
|
120
|
-
"paths": [
|
|
121
|
-
{
|
|
122
|
-
"name": "../../../../../*",
|
|
123
|
-
"message": "Dont use long paths, create and use bridge/share index files instead, but better to avoid any of them, so try to resolve other way"
|
|
124
|
-
}
|
|
125
|
-
]
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"max-lines-per-function": [
|
|
129
|
-
"warn",
|
|
130
|
-
{
|
|
131
|
-
"max": 150,
|
|
132
|
-
"skipComments": true,
|
|
133
|
-
"skipBlankLines": true
|
|
134
|
-
}
|
|
135
|
-
],
|
|
136
|
-
"id-length": [
|
|
137
|
-
"warn",
|
|
138
|
-
{
|
|
139
|
-
"min": 3,
|
|
140
|
-
"max": 40,
|
|
141
|
-
"exceptions": [
|
|
142
|
-
"i", "j", "a", "b", "x", "y",
|
|
143
|
-
"id", "to", "en", "hu", "ok",
|
|
144
|
-
"no", "or", "my", "ee"
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
],
|
|
148
|
-
"no-duplicate-imports": "warn",
|
|
149
|
-
"max-params": [
|
|
150
|
-
"warn",
|
|
151
|
-
{
|
|
152
|
-
"max": 4
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"max-params-no-constructor/max-params-no-constructor": [
|
|
156
|
-
"warn", 5
|
|
157
|
-
],
|
|
158
|
-
"quotes": [
|
|
159
|
-
"warn",
|
|
160
|
-
"single",
|
|
161
|
-
{ "allowTemplateLiterals": true }
|
|
162
|
-
],
|
|
163
|
-
"object-curly-spacing": [ "warn", "always" ],
|
|
164
|
-
"array-bracket-spacing": [
|
|
165
|
-
"warn",
|
|
166
|
-
"always",
|
|
167
|
-
{ "objectsInArrays": false, "arraysInArrays": false }
|
|
168
|
-
],
|
|
169
|
-
"@typescript-eslint/quotes": [
|
|
170
|
-
"warn",
|
|
171
|
-
"single",
|
|
172
|
-
{ "allowTemplateLiterals": true }
|
|
173
|
-
],
|
|
174
|
-
"@typescript-eslint/no-unused-vars": "warn",
|
|
175
|
-
"@typescript-eslint/explicit-function-return-type": [
|
|
176
|
-
"warn",
|
|
177
|
-
{
|
|
178
|
-
"allowTypedFunctionExpressions": false
|
|
179
|
-
}
|
|
180
|
-
],
|
|
181
|
-
"@typescript-eslint/no-explicit-any": "warn",
|
|
182
|
-
"@typescript-eslint/typedef": "warn",
|
|
183
|
-
"@typescript-eslint/no-unsafe-function-type": "warn",
|
|
184
|
-
"@typescript-eslint/ban-types": "off"
|
|
185
|
-
}
|
|
186
|
-
}
|