wingbot 3.72.0 → 3.72.1
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/.babelrc +0 -0
- package/.github/workflows/deploy.yml +0 -0
- package/.github/workflows/pullRequest.yml +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/index.js +0 -0
- package/jsconfig.json +0 -0
- package/package.json +4 -2
- package/plugins/ai.wingbot.clearMessageSequences/plugin.js +0 -0
- package/plugins/ai.wingbot.conditionIfGoBackPossible/plugin.js +0 -0
- package/plugins/ai.wingbot.disambiguation/plugin.js +0 -0
- package/plugins/ai.wingbot.goBack/plugin.js +0 -0
- package/plugins/ai.wingbot.goToLastBreadcrumb/plugin.js +0 -0
- package/plugins/ai.wingbot.ifImageDetected/plugin.js +0 -0
- package/plugins/ai.wingbot.ifStickerDetected/plugin.js +0 -0
- package/plugins/ai.wingbot.jumpBack/plugin.js +0 -0
- package/plugins/ai.wingbot.jumpTo/plugin.js +0 -0
- package/plugins/ai.wingbot.keepInInteraction/plugin.js +0 -0
- package/plugins/ai.wingbot.keepInInteractionJustOnce/plugin.js +0 -0
- package/plugins/ai.wingbot.keepPreviousHandlers/plugin.js +0 -0
- package/plugins/ai.wingbot.keepPreviousHandlersJustOnce/plugin.js +0 -0
- package/plugins/ai.wingbot.oneTimeNotificationRequest/plugin.js +0 -0
- package/plugins/ai.wingbot.openai/plugin.js +0 -0
- package/plugins/ai.wingbot.passThreadToBot/plugin.js +0 -0
- package/plugins/ai.wingbot.persona/plugin.js +0 -0
- package/plugins/ai.wingbot.putABreadcrumb/plugin.js +0 -0
- package/plugins/ai.wingbot.regexp/plugin.js +0 -0
- package/plugins/ai.wingbot.setState/plugin.js +0 -0
- package/plugins/ai.wingbot.setStateFromInput/plugin.js +0 -0
- package/plugins/ai.wingbot.slotsContinue/plugin.js +0 -0
- package/plugins/ai.wingbot.slotsRegister/plugin.js +0 -0
- package/plugins/ai.wingbot.stopResponding/plugin.js +0 -0
- package/plugins/ai.wingbot.trackingEvent/plugin.js +0 -0
- package/plugins/ai.wingbot.upload/plugin.js +0 -0
- package/plugins/ai.wingbot.waitASecond/plugin.js +0 -0
- package/plugins/index.js +0 -0
- package/plugins/plugins.json +0 -0
- package/src/Ai.js +0 -0
- package/src/AiMatching.js +0 -0
- package/src/BatchConversationTester.js +0 -0
- package/src/BotApp.js +0 -0
- package/src/BotAppSender.js +6 -4
- package/src/BuildRouter.js +0 -0
- package/src/CallbackAuditLog.js +0 -0
- package/src/ChatGpt.js +0 -0
- package/src/ConversationTester.js +0 -0
- package/src/LLM.js +0 -0
- package/src/LLMMockProvider.js +0 -0
- package/src/LLMSession.js +0 -0
- package/src/MockAiModel.js +0 -0
- package/src/OrchestratorClient.js +0 -0
- package/src/Plugins.js +0 -0
- package/src/Processor.js +0 -0
- package/src/ReducerWrapper.js +0 -0
- package/src/Request.js +0 -0
- package/src/Responder.js +0 -0
- package/src/ReturnSender.js +0 -0
- package/src/Router.js +0 -0
- package/src/RouterWrap.js +0 -0
- package/src/SecurityMiddleware.js +0 -0
- package/src/Tester.js +0 -0
- package/src/analytics/GA4.js +0 -0
- package/src/analytics/consts.js +0 -0
- package/src/analytics/onInteractionHandler.js +0 -0
- package/src/defaultResourceMap.js +0 -0
- package/src/features.js +0 -0
- package/src/flags.js +0 -0
- package/src/fuzzy/factoryFuzzySearch.js +0 -0
- package/src/fuzzy/fuzzyUtils.js +0 -0
- package/src/fuzzy/index.js +0 -0
- package/src/fuzzy/levenshtein.js +0 -0
- package/src/fuzzy/normalize.js +0 -0
- package/src/fuzzy/prepareFuzzyIndex.js +0 -0
- package/src/graphApi/GraphApi.js +31 -1
- package/src/graphApi/WingbotApiConnector.js +0 -0
- package/src/graphApi/apiAuthorizer.js +0 -0
- package/src/graphApi/conversationTestApi.js +0 -0
- package/src/graphApi/conversationsApi.js +0 -0
- package/src/graphApi/gqlRules.js +87 -0
- package/src/graphApi/index.js +0 -0
- package/src/graphApi/postBackApi.js +0 -0
- package/src/graphApi/schema.gql +15 -0
- package/src/graphApi/validateBotApi.js +0 -0
- package/src/notifications/Notifications.js +0 -0
- package/src/notifications/NotificationsStorage.js +0 -0
- package/src/notifications/api/index.js +0 -0
- package/src/notifications/api/notificationsApiFactory.js +0 -0
- package/src/notifications/index.js +0 -0
- package/src/resolvers/bounce.js +0 -0
- package/src/resolvers/button.js +0 -0
- package/src/resolvers/carousel.js +0 -0
- package/src/resolvers/contextMessage.js +0 -0
- package/src/resolvers/expected.js +0 -0
- package/src/resolvers/expectedInput.js +0 -0
- package/src/resolvers/hbs.js +0 -0
- package/src/resolvers/include.js +0 -0
- package/src/resolvers/index.js +0 -0
- package/src/resolvers/media.js +0 -0
- package/src/resolvers/message.js +0 -0
- package/src/resolvers/passThread.js +0 -0
- package/src/resolvers/path.js +0 -0
- package/src/resolvers/plugin.js +0 -0
- package/src/resolvers/postback.js +0 -0
- package/src/resolvers/resolverTags.js +0 -0
- package/src/resolvers/setState.js +0 -0
- package/src/resolvers/skip.js +0 -0
- package/src/resolvers/subscribtions.js +0 -0
- package/src/resolvers/utils.js +0 -0
- package/src/systemEntities/email.js +0 -0
- package/src/systemEntities/index.js +0 -0
- package/src/systemEntities/phone.js +0 -0
- package/src/systemEntities/regexps.js +0 -0
- package/src/templates/BaseTemplate.js +0 -0
- package/src/templates/ButtonTemplate.js +0 -0
- package/src/templates/GenericTemplate.js +0 -0
- package/src/templates/ListTemplate.js +0 -0
- package/src/templates/ReceiptTemplate.js +0 -0
- package/src/testTools/AnyResponseAssert.js +0 -0
- package/src/testTools/PromptAssert.js +0 -0
- package/src/testTools/ResponseAssert.js +0 -0
- package/src/testTools/asserts.js +0 -0
- package/src/testTools/index.js +0 -0
- package/src/tools/MemoryBotConfigStorage.js +0 -0
- package/src/tools/MemoryChatLogStorage.js +0 -0
- package/src/tools/MemoryStateStorage.js +0 -0
- package/src/tools/bufferloader.js +0 -0
- package/src/tools/index.js +0 -0
- package/src/tools/routeToEvents.js +0 -0
- package/src/transcript/extractText.js +0 -0
- package/src/transcript/textBodyFromTranscript.js +0 -0
- package/src/transcript/transcriptFromHistory.js +0 -0
- package/src/utils/ai.js +0 -0
- package/src/utils/compileWithState.js +0 -0
- package/src/utils/customCondition.js +0 -0
- package/src/utils/customFn.js +0 -0
- package/src/utils/datetime.js +0 -0
- package/src/utils/deepMapTools.js +0 -0
- package/src/utils/generateToken.js +0 -0
- package/src/utils/getCondition.js +0 -0
- package/src/utils/getUpdate.js +0 -0
- package/src/utils/headersToAuditMeta.js +0 -0
- package/src/utils/index.js +0 -0
- package/src/utils/pathUtils.js +0 -0
- package/src/utils/quickReplies.js +0 -0
- package/src/utils/slots.js +0 -0
- package/src/utils/stateData.js +0 -0
- package/src/utils/stateVariables.js +0 -0
- package/src/utils/tokenizer.js +0 -0
- package/src/utils/wrapPluginFunction.js +0 -0
- package/src/wingbot/CachedModel.js +0 -0
- package/src/wingbot/CustomEntityDetectionModel.js +0 -0
- package/src/wingbot/WingbotModel.js +0 -0
- package/src/wingbot/index.js +0 -0
package/.babelrc
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/index.js
CHANGED
|
File without changes
|
package/jsconfig.json
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wingbot",
|
|
3
|
-
"version": "3.72.
|
|
3
|
+
"version": "3.72.1",
|
|
4
4
|
"description": "Enterprise Messaging Bot Conversation Engine",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"compress-json": "^3.0.0",
|
|
59
59
|
"deep-extend": "^0.6.0",
|
|
60
60
|
"form-data": "^4.0.0",
|
|
61
|
-
"graphql": "^16.
|
|
61
|
+
"graphql": "^16.11.0",
|
|
62
|
+
"graphql-depth-limit": "^1.1.0",
|
|
63
|
+
"graphql-query-complexity": "^1.1.0",
|
|
62
64
|
"jsonwebtoken": "^9.0.2",
|
|
63
65
|
"node-fetch": "^2.6.7",
|
|
64
66
|
"path-to-regexp": "^6.3.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/plugins/index.js
CHANGED
|
File without changes
|
package/plugins/plugins.json
CHANGED
|
File without changes
|
package/src/Ai.js
CHANGED
|
File without changes
|
package/src/AiMatching.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/BotApp.js
CHANGED
|
File without changes
|
package/src/BotAppSender.js
CHANGED
|
@@ -41,12 +41,12 @@ class BotAppSender extends ReturnSender {
|
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @param {SenderOptions} options
|
|
44
|
-
* @param {string}
|
|
44
|
+
* @param {string} senderId
|
|
45
45
|
* @param {object} incommingMessage
|
|
46
46
|
* @param {ChatLogStorage} logger - console like logger
|
|
47
47
|
*/
|
|
48
|
-
constructor (options,
|
|
49
|
-
super(options,
|
|
48
|
+
constructor (options, senderId, incommingMessage, logger = null) {
|
|
49
|
+
super(options, senderId, incommingMessage, logger);
|
|
50
50
|
|
|
51
51
|
this.waits = true;
|
|
52
52
|
|
|
@@ -98,14 +98,16 @@ class BotAppSender extends ReturnSender {
|
|
|
98
98
|
* @param {Buffer} data
|
|
99
99
|
* @param {string} contentType
|
|
100
100
|
* @param {string} fileName
|
|
101
|
+
* @param {string} [senderId]
|
|
101
102
|
* @returns {Promise<UploadResult>}
|
|
102
103
|
*/
|
|
103
|
-
async upload (data, contentType, fileName) {
|
|
104
|
+
async upload (data, contentType, fileName, senderId = this._senderId) {
|
|
104
105
|
const formData = new FormData();
|
|
105
106
|
|
|
106
107
|
const nonce = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(36).padEnd(11, '0');
|
|
107
108
|
|
|
108
109
|
formData.append('nonce', nonce);
|
|
110
|
+
formData.append('senderId', senderId || '');
|
|
109
111
|
formData.append('f0', data, { filename: fileName, contentType });
|
|
110
112
|
|
|
111
113
|
const [token, agent] = await Promise.all([
|
package/src/BuildRouter.js
CHANGED
|
File without changes
|
package/src/CallbackAuditLog.js
CHANGED
|
File without changes
|
package/src/ChatGpt.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/LLM.js
CHANGED
|
File without changes
|
package/src/LLMMockProvider.js
CHANGED
|
File without changes
|
package/src/LLMSession.js
CHANGED
|
File without changes
|
package/src/MockAiModel.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/Plugins.js
CHANGED
|
File without changes
|
package/src/Processor.js
CHANGED
|
File without changes
|
package/src/ReducerWrapper.js
CHANGED
|
File without changes
|
package/src/Request.js
CHANGED
|
File without changes
|
package/src/Responder.js
CHANGED
|
File without changes
|
package/src/ReturnSender.js
CHANGED
|
File without changes
|
package/src/Router.js
CHANGED
|
File without changes
|
package/src/RouterWrap.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/Tester.js
CHANGED
|
File without changes
|
package/src/analytics/GA4.js
CHANGED
|
File without changes
|
package/src/analytics/consts.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/features.js
CHANGED
|
File without changes
|
package/src/flags.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/fuzzy/fuzzyUtils.js
CHANGED
|
File without changes
|
package/src/fuzzy/index.js
CHANGED
|
File without changes
|
package/src/fuzzy/levenshtein.js
CHANGED
|
File without changes
|
package/src/fuzzy/normalize.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/graphApi/GraphApi.js
CHANGED
|
@@ -8,6 +8,7 @@ const WingbotApiConnector = require('./WingbotApiConnector');
|
|
|
8
8
|
// @ts-ignore
|
|
9
9
|
const packageJson = require('../../package.json');
|
|
10
10
|
const headersToAuditMeta = require('../utils/headersToAuditMeta');
|
|
11
|
+
const gqlRules = require('./gqlRules');
|
|
11
12
|
|
|
12
13
|
const DEFAULT_GROUPS = ['botEditor', 'botAdmin', 'appToken'];
|
|
13
14
|
const KEYS_URL = 'https://api.wingbot.ai/keys';
|
|
@@ -27,6 +28,12 @@ const DEFAULT_CACHE = 86400000; // 24 hours
|
|
|
27
28
|
/** @typedef {import('../CallbackAuditLog')} AuditLog */
|
|
28
29
|
/** @typedef {import('graphql')} GqlLib */
|
|
29
30
|
|
|
31
|
+
/**
|
|
32
|
+
* @typedef {object} Logger
|
|
33
|
+
* @prop {Function} log
|
|
34
|
+
* @prop {Function} error
|
|
35
|
+
*/
|
|
36
|
+
|
|
30
37
|
/**
|
|
31
38
|
* Experimental chatbot API
|
|
32
39
|
*/
|
|
@@ -41,8 +48,11 @@ class GraphApi {
|
|
|
41
48
|
* @param {string[]} [options.groups] - list of allowed bot groups
|
|
42
49
|
* @param {boolean} [options.useBundledGql] - uses library bundled graphql definition
|
|
43
50
|
* @param {AuditLog} [options.auditLog]
|
|
51
|
+
* @param {boolean} [options.isProduction]
|
|
52
|
+
* @param {boolean} [options.hideVerboseErrors]
|
|
53
|
+
* @param {Logger} [log=console]
|
|
44
54
|
*/
|
|
45
|
-
constructor (apis, options) {
|
|
55
|
+
constructor (apis, options, log = console) {
|
|
46
56
|
this._root = {
|
|
47
57
|
version () {
|
|
48
58
|
return packageJson.version;
|
|
@@ -65,6 +75,13 @@ class GraphApi {
|
|
|
65
75
|
}
|
|
66
76
|
};
|
|
67
77
|
|
|
78
|
+
this._log = log;
|
|
79
|
+
this._options = {
|
|
80
|
+
hideVerboseErrors: true,
|
|
81
|
+
isProduction: true,
|
|
82
|
+
...options
|
|
83
|
+
};
|
|
84
|
+
|
|
68
85
|
Object.assign(opts, options);
|
|
69
86
|
|
|
70
87
|
apis.forEach((api) => Object.assign(this._root, api));
|
|
@@ -152,6 +169,19 @@ class GraphApi {
|
|
|
152
169
|
|
|
153
170
|
const schema = await this._schema();
|
|
154
171
|
|
|
172
|
+
const { isProduction = true, hideVerboseErrors } = this._options;
|
|
173
|
+
const ast = this._gql.parse(body.query);
|
|
174
|
+
const errors = this._gql.validate(
|
|
175
|
+
schema,
|
|
176
|
+
ast,
|
|
177
|
+
gqlRules(body.variables, isProduction, hideVerboseErrors, this._log)
|
|
178
|
+
);
|
|
179
|
+
|
|
180
|
+
if (errors.length > 0) {
|
|
181
|
+
this._log.error('GQL failed', errors);
|
|
182
|
+
return { errors };
|
|
183
|
+
}
|
|
184
|
+
|
|
155
185
|
const ctx = {
|
|
156
186
|
token,
|
|
157
187
|
groups: this._defaultGroups,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* eslint-disable global-require */
|
|
2
|
+
/**
|
|
3
|
+
* @author David Menger
|
|
4
|
+
*/
|
|
5
|
+
'use strict';
|
|
6
|
+
|
|
7
|
+
/** @typedef {import('graphql').ValidationRule} ValidationRule */
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @typedef {object} Logger
|
|
11
|
+
* @prop {Function} log
|
|
12
|
+
* @prop {Function} error
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @param {object} variables
|
|
18
|
+
* @param {boolean} isProduction
|
|
19
|
+
* @param {boolean} hideVerboseErrors
|
|
20
|
+
* @param {Logger} [log=console]
|
|
21
|
+
* @returns {ValidationRule[]}
|
|
22
|
+
*/
|
|
23
|
+
function gqlRules (variables, isProduction, hideVerboseErrors, log = console) {
|
|
24
|
+
// OPTIMIZATION FOR LAMBDA PERFORMANCE
|
|
25
|
+
const { GraphQLError, NoSchemaIntrospectionCustomRule } = require('graphql');
|
|
26
|
+
const { createComplexityRule, simpleEstimator } = require('graphql-query-complexity');
|
|
27
|
+
const depthLimit = require('graphql-depth-limit');
|
|
28
|
+
|
|
29
|
+
return [
|
|
30
|
+
...(hideVerboseErrors ? [NoSchemaIntrospectionCustomRule] : []),
|
|
31
|
+
depthLimit(10),
|
|
32
|
+
createComplexityRule({
|
|
33
|
+
// The maximum allowed query complexity, queries above this threshold will be rejected
|
|
34
|
+
maximumComplexity: 1000,
|
|
35
|
+
|
|
36
|
+
// The query variables. This is needed because the variables are not available
|
|
37
|
+
// in the visitor of the graphql-js library
|
|
38
|
+
variables,
|
|
39
|
+
|
|
40
|
+
// The context object for the request (optional)
|
|
41
|
+
context: {},
|
|
42
|
+
|
|
43
|
+
// The maximum number of query nodes to evaluate (fields, fragments, composite types).
|
|
44
|
+
// If a query contains more than the specified number of nodes, the complexity rule will
|
|
45
|
+
// throw an error, regardless of the complexity of the query.
|
|
46
|
+
//
|
|
47
|
+
// Default: 10_000
|
|
48
|
+
maxQueryNodes: 10000,
|
|
49
|
+
|
|
50
|
+
// Optional callback function to retrieve the determined query complexity
|
|
51
|
+
// Will be invoked whether the query is rejected or not
|
|
52
|
+
// This can be used for logging or to implement rate limiting
|
|
53
|
+
onComplete: (complexity) => {
|
|
54
|
+
if (!isProduction) {
|
|
55
|
+
log.log('Determined query complexity: ', complexity);
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
// Optional function to create a custom error
|
|
60
|
+
createError: (max, actual) => {
|
|
61
|
+
const msg = `GQL Query too complex: ${actual}. Maximum allowed: ${max}`;
|
|
62
|
+
|
|
63
|
+
if (hideVerboseErrors) {
|
|
64
|
+
log.error(msg);
|
|
65
|
+
return new GraphQLError('');
|
|
66
|
+
}
|
|
67
|
+
log.log(msg);
|
|
68
|
+
return new GraphQLError(`Query is too complex: ${actual}. Maximum allowed complexity: ${max}`);
|
|
69
|
+
},
|
|
70
|
+
|
|
71
|
+
// Add any number of estimators. The estimators are invoked in order, the first
|
|
72
|
+
// numeric value that is being returned by an estimator is used as the field complexity.
|
|
73
|
+
// If no estimator returns a value, an exception is raised.
|
|
74
|
+
estimators: [
|
|
75
|
+
// Add more estimators here...
|
|
76
|
+
|
|
77
|
+
// This will assign each field a complexity of 1 if no other estimator
|
|
78
|
+
// returned a value.
|
|
79
|
+
simpleEstimator({
|
|
80
|
+
defaultComplexity: 1
|
|
81
|
+
})
|
|
82
|
+
]
|
|
83
|
+
})
|
|
84
|
+
];
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
module.exports = gqlRules;
|
package/src/graphApi/index.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/graphApi/schema.gql
CHANGED
|
@@ -109,9 +109,24 @@ type LLMMessage {
|
|
|
109
109
|
toolCalls: [ToolCall!]
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
type VectorSearchDocument {
|
|
113
|
+
id: String!
|
|
114
|
+
name: String!
|
|
115
|
+
text: String!
|
|
116
|
+
cosineDistance: Float!
|
|
117
|
+
excludedByCosineDistanceThreshold: Boolean!
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
type VectorSearchResult {
|
|
121
|
+
maximalCosineDistanceThreshold: Float!
|
|
122
|
+
nearestNeighbourCount: Int!
|
|
123
|
+
resultDocuments: [VectorSearchDocument!]!
|
|
124
|
+
}
|
|
125
|
+
|
|
112
126
|
type PromptInfo {
|
|
113
127
|
prompt: [LLMMessage!]!
|
|
114
128
|
result: LLMMessage!
|
|
129
|
+
vectorSearchResult: VectorSearchResult
|
|
115
130
|
}
|
|
116
131
|
|
|
117
132
|
type UserInteraction {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/resolvers/bounce.js
CHANGED
|
File without changes
|
package/src/resolvers/button.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/resolvers/hbs.js
CHANGED
|
File without changes
|
package/src/resolvers/include.js
CHANGED
|
File without changes
|
package/src/resolvers/index.js
CHANGED
|
File without changes
|
package/src/resolvers/media.js
CHANGED
|
File without changes
|
package/src/resolvers/message.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/resolvers/path.js
CHANGED
|
File without changes
|
package/src/resolvers/plugin.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/resolvers/skip.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/resolvers/utils.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/testTools/asserts.js
CHANGED
|
File without changes
|
package/src/testTools/index.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/tools/index.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/utils/ai.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/utils/customFn.js
CHANGED
|
File without changes
|
package/src/utils/datetime.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/utils/getUpdate.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/utils/index.js
CHANGED
|
File without changes
|
package/src/utils/pathUtils.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/utils/slots.js
CHANGED
|
File without changes
|
package/src/utils/stateData.js
CHANGED
|
File without changes
|
|
File without changes
|
package/src/utils/tokenizer.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/wingbot/index.js
CHANGED
|
File without changes
|