@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.
Files changed (67) hide show
  1. package/package.json +12 -1
  2. package/.env +0 -1
  3. package/.env.example +0 -1
  4. package/DATABASE_I18N_GUIDE.md +0 -434
  5. package/TEST_UTILITIES_GUIDE.md +0 -360
  6. package/coverage/actions/groups.ts.html +0 -1039
  7. package/coverage/actions/images.ts.html +0 -2500
  8. package/coverage/actions/index.html +0 -116
  9. package/coverage/actions/notifications.ts.html +0 -223
  10. package/coverage/actions/posts.ts.html +0 -2356
  11. package/coverage/actions/tags.ts.html +0 -1000
  12. package/coverage/adapters/arangoAdapter.ts.html +0 -301
  13. package/coverage/adapters/fileAdapter.ts.html +0 -445
  14. package/coverage/adapters/index.html +0 -176
  15. package/coverage/adapters/postAdapter.ts.html +0 -436
  16. package/coverage/adapters/reaktorAdapter.ts.html +0 -310
  17. package/coverage/adapters/tagAdapter.ts.html +0 -409
  18. package/coverage/adapters/userAdapter.ts.html +0 -829
  19. package/coverage/analyticsUtils.ts.html +0 -286
  20. package/coverage/base.css +0 -224
  21. package/coverage/block-navigation.js +0 -87
  22. package/coverage/clover.xml +0 -6
  23. package/coverage/config.ts.html +0 -766
  24. package/coverage/coverage-final.json +0 -1
  25. package/coverage/favicon.png +0 -0
  26. package/coverage/index.html +0 -221
  27. package/coverage/lcov-report/base.css +0 -224
  28. package/coverage/lcov-report/block-navigation.js +0 -87
  29. package/coverage/lcov-report/favicon.png +0 -0
  30. package/coverage/lcov-report/index.html +0 -101
  31. package/coverage/lcov-report/prettify.css +0 -1
  32. package/coverage/lcov-report/prettify.js +0 -2
  33. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  34. package/coverage/lcov-report/sorter.js +0 -196
  35. package/coverage/lcov.info +0 -0
  36. package/coverage/mocks/file.ts.html +0 -118
  37. package/coverage/mocks/group.ts.html +0 -145
  38. package/coverage/mocks/image.ts.html +0 -142
  39. package/coverage/mocks/index.html +0 -176
  40. package/coverage/mocks/post.ts.html +0 -169
  41. package/coverage/mocks/tag.ts.html +0 -121
  42. package/coverage/mocks/user.ts.html +0 -271
  43. package/coverage/prettify.css +0 -1
  44. package/coverage/prettify.js +0 -2
  45. package/coverage/sort-arrow-sprite.png +0 -0
  46. package/coverage/sorter.js +0 -210
  47. package/coverage/testUtils.ts.html +0 -1309
  48. package/coverage/translationQueue.ts.html +0 -592
  49. package/coverage/types/error.ts.html +0 -145
  50. package/coverage/types/error.types.ts.html +0 -148
  51. package/coverage/types/index.html +0 -116
  52. package/coverage/utils/adapterUtils.ts.html +0 -163
  53. package/coverage/utils/analyticsUtils.ts.html +0 -286
  54. package/coverage/utils/arangodbUtils.ts.html +0 -463
  55. package/coverage/utils/authUtils.ts.html +0 -328
  56. package/coverage/utils/dbI18n.ts.html +0 -280
  57. package/coverage/utils/googleTranslate.ts.html +0 -385
  58. package/coverage/utils/index.html +0 -131
  59. package/coverage/utils/localeUtils.ts.html +0 -193
  60. package/coverage/utils/sessionUtils.ts.html +0 -211
  61. package/coverage/utils/testUtils.ts.html +0 -1309
  62. package/index.js +0 -5
  63. package/jpg:- +0 -0
  64. package/lex.config.mjs +0 -34
  65. package/tsconfig.build.json +0 -21
  66. package/tsconfig.lint.json +0 -33
  67. package/tsconfig.test.json +0 -31
package/index.js DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Copyright (c) 2019-Present, Nitrogen Labs, Inc.
3
- * Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
4
- */
5
- export * from './lib/index.js';
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
-
@@ -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
- }
@@ -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
- }
@@ -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
- }