@nlabs/reaktor 0.10.6 → 0.10.7
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/package.json +12 -1
- package/.env +0 -1
- package/.env.example +0 -1
- package/DATABASE_I18N_GUIDE.md +0 -434
- package/TEST_UTILITIES_GUIDE.md +0 -360
- package/coverage/actions/groups.ts.html +0 -1039
- package/coverage/actions/images.ts.html +0 -2500
- package/coverage/actions/index.html +0 -116
- package/coverage/actions/notifications.ts.html +0 -223
- package/coverage/actions/posts.ts.html +0 -2356
- package/coverage/actions/tags.ts.html +0 -1000
- package/coverage/adapters/arangoAdapter.ts.html +0 -301
- package/coverage/adapters/fileAdapter.ts.html +0 -445
- package/coverage/adapters/index.html +0 -176
- package/coverage/adapters/postAdapter.ts.html +0 -436
- package/coverage/adapters/reaktorAdapter.ts.html +0 -310
- package/coverage/adapters/tagAdapter.ts.html +0 -409
- package/coverage/adapters/userAdapter.ts.html +0 -829
- package/coverage/analyticsUtils.ts.html +0 -286
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/clover.xml +0 -6
- package/coverage/config.ts.html +0 -766
- package/coverage/coverage-final.json +0 -1
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -221
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -101
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov.info +0 -0
- package/coverage/mocks/file.ts.html +0 -118
- package/coverage/mocks/group.ts.html +0 -145
- package/coverage/mocks/image.ts.html +0 -142
- package/coverage/mocks/index.html +0 -176
- package/coverage/mocks/post.ts.html +0 -169
- package/coverage/mocks/tag.ts.html +0 -121
- package/coverage/mocks/user.ts.html +0 -271
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -210
- package/coverage/testUtils.ts.html +0 -1309
- package/coverage/translationQueue.ts.html +0 -592
- package/coverage/types/error.ts.html +0 -145
- package/coverage/types/error.types.ts.html +0 -148
- package/coverage/types/index.html +0 -116
- package/coverage/utils/adapterUtils.ts.html +0 -163
- package/coverage/utils/analyticsUtils.ts.html +0 -286
- package/coverage/utils/arangodbUtils.ts.html +0 -463
- package/coverage/utils/authUtils.ts.html +0 -328
- package/coverage/utils/dbI18n.ts.html +0 -280
- package/coverage/utils/googleTranslate.ts.html +0 -385
- package/coverage/utils/index.html +0 -131
- package/coverage/utils/localeUtils.ts.html +0 -193
- package/coverage/utils/sessionUtils.ts.html +0 -211
- package/coverage/utils/testUtils.ts.html +0 -1309
- package/index.js +0 -5
- package/jpg:- +0 -0
- package/lex.config.mjs +0 -34
- package/tsconfig.build.json +0 -21
- package/tsconfig.lint.json +0 -33
- package/tsconfig.test.json +0 -31
package/index.js
DELETED
package/jpg:-
DELETED
|
Binary file
|
package/lex.config.mjs
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
ai: {
|
|
3
|
-
maxTokens: 4000,
|
|
4
|
-
model: 'cursor-code',
|
|
5
|
-
provider: 'cursor',
|
|
6
|
-
temperature: 0.1
|
|
7
|
-
},
|
|
8
|
-
jest: {
|
|
9
|
-
testEnvironment: 'node',
|
|
10
|
-
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
|
11
|
-
injectGlobals: true,
|
|
12
|
-
moduleFileExtensions: ['ts', 'js', 'json'],
|
|
13
|
-
moduleNameMapper: {
|
|
14
|
-
'^(\\.{1,2}/.*)\\.js$': '$1'
|
|
15
|
-
},
|
|
16
|
-
globals: {
|
|
17
|
-
'ts-jest': {
|
|
18
|
-
tsconfig: 'tsconfig.test.json',
|
|
19
|
-
useESM: true
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
outputPath: 'lib',
|
|
24
|
-
preset: 'node22',
|
|
25
|
-
targetEnvironment: 'node',
|
|
26
|
-
useTypescript: true,
|
|
27
|
-
typescript: {
|
|
28
|
-
configFile: 'tsconfig.build.json'
|
|
29
|
-
},
|
|
30
|
-
sourcePath: 'src',
|
|
31
|
-
sourcePattern: '**/*.ts',
|
|
32
|
-
excludePattern: '**/*.{test,spec,integration}.ts'
|
|
33
|
-
};
|
|
34
|
-
|
package/tsconfig.build.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"include": [
|
|
4
|
-
"./src/**/*.ts",
|
|
5
|
-
"./src/**/*.tsx"
|
|
6
|
-
],
|
|
7
|
-
"exclude": [
|
|
8
|
-
"lib",
|
|
9
|
-
"./node_modules",
|
|
10
|
-
"./src/**/*.test.ts",
|
|
11
|
-
"./src/**/*.test.tsx",
|
|
12
|
-
"./src/**/*.spec.ts",
|
|
13
|
-
"./src/**/*.spec.tsx",
|
|
14
|
-
"./src/**/*.integration.ts",
|
|
15
|
-
"./src/**/*.integration.tsx"
|
|
16
|
-
],
|
|
17
|
-
"compilerOptions": {
|
|
18
|
-
"skipLibCheck": true,
|
|
19
|
-
"noEmitOnError": false
|
|
20
|
-
}
|
|
21
|
-
}
|
package/tsconfig.lint.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"noImplicitAny": false,
|
|
5
|
-
"noImplicitThis": false,
|
|
6
|
-
"noUncheckedIndexedAccess": false,
|
|
7
|
-
"noUnusedLocals": false,
|
|
8
|
-
"skipLibCheck": false,
|
|
9
|
-
"strict": false,
|
|
10
|
-
"strictFunctionTypes": false,
|
|
11
|
-
"strictNullChecks": false,
|
|
12
|
-
"isolatedModules": false,
|
|
13
|
-
"noImplicitReturns": false,
|
|
14
|
-
"types": [
|
|
15
|
-
"jest",
|
|
16
|
-
"node"
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
"include": [
|
|
20
|
-
"./src/**/*.ts",
|
|
21
|
-
"./src/**/*.tsx",
|
|
22
|
-
"./src/**/*.test.ts",
|
|
23
|
-
"./src/**/*.test.tsx",
|
|
24
|
-
"./src/**/*.spec.ts",
|
|
25
|
-
"./src/**/*.spec.tsx"
|
|
26
|
-
],
|
|
27
|
-
"exclude": [
|
|
28
|
-
"lib",
|
|
29
|
-
"./node_modules",
|
|
30
|
-
"./src/**/*.integration.ts",
|
|
31
|
-
"./src/**/*.integration.tsx"
|
|
32
|
-
]
|
|
33
|
-
}
|
package/tsconfig.test.json
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"include": [
|
|
4
|
-
"src/**/*.test.ts",
|
|
5
|
-
"src/**/*.test.tsx",
|
|
6
|
-
"src/**/*.spec.ts",
|
|
7
|
-
"src/**/*.spec.tsx",
|
|
8
|
-
"src/**/*.integration.ts"
|
|
9
|
-
],
|
|
10
|
-
"compilerOptions": {
|
|
11
|
-
"types": [
|
|
12
|
-
"jest"
|
|
13
|
-
],
|
|
14
|
-
"noImplicitReturns": false,
|
|
15
|
-
"strictNullChecks": false,
|
|
16
|
-
"noImplicitAny": false,
|
|
17
|
-
"strict": false,
|
|
18
|
-
"strictFunctionTypes": false,
|
|
19
|
-
"noUnusedLocals": false,
|
|
20
|
-
"noImplicitThis": false,
|
|
21
|
-
"isolatedModules": false,
|
|
22
|
-
"allowJs": true,
|
|
23
|
-
"esModuleInterop": true,
|
|
24
|
-
"module": "commonjs",
|
|
25
|
-
"moduleResolution": "node",
|
|
26
|
-
"resolveJsonModule": true,
|
|
27
|
-
"skipLibCheck": true,
|
|
28
|
-
"noStrictGenericChecks": true,
|
|
29
|
-
"useUnknownInCatchVariables": false
|
|
30
|
-
}
|
|
31
|
-
}
|