@n8n/backend-common 0.19.0 → 0.20.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/dist/index.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  export * from './license-state';
2
- export * from './types';
2
+ export type * from './types';
3
3
  export { inDevelopment, inProduction, inTest } from './environment';
4
4
  export { isObjectLiteral } from './utils/is-object-literal';
5
5
  export { Logger } from './logging/logger';
6
6
  export { ModuleRegistry } from './modules/module-registry';
7
- export { ModulesConfig, ModuleName } from './modules/modules.config';
7
+ export type { ModuleName } from './modules/modules.config';
8
+ export { ModulesConfig } from './modules/modules.config';
8
9
  export { isContainedWithin, safeJoinPath } from './utils/path-util';
9
10
  export { CliParser } from './cli-parser';
package/dist/index.js CHANGED
@@ -16,7 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.CliParser = exports.safeJoinPath = exports.isContainedWithin = exports.ModulesConfig = exports.ModuleRegistry = exports.Logger = exports.isObjectLiteral = exports.inTest = exports.inProduction = exports.inDevelopment = void 0;
18
18
  __exportStar(require("./license-state"), exports);
19
- __exportStar(require("./types"), exports);
20
19
  var environment_1 = require("./environment");
21
20
  Object.defineProperty(exports, "inDevelopment", { enumerable: true, get: function () { return environment_1.inDevelopment; } });
22
21
  Object.defineProperty(exports, "inProduction", { enumerable: true, get: function () { return environment_1.inProduction; } });
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,0CAAwB;AAExB,6CAAoE;AAA3D,4GAAA,aAAa,OAAA;AAAE,2GAAA,YAAY,OAAA;AAAE,qGAAA,MAAM,OAAA;AAC5C,+DAA4D;AAAnD,oHAAA,eAAe,OAAA;AACxB,2CAA0C;AAAjC,gGAAA,MAAM,OAAA;AACf,6DAA2D;AAAlD,iHAAA,cAAc,OAAA;AACvB,2DAAqE;AAA5D,+GAAA,aAAa,OAAA;AACtB,+CAAoE;AAA3D,8GAAA,iBAAiB,OAAA;AAAE,yGAAA,YAAY,OAAA;AACxC,2CAAyC;AAAhC,uGAAA,SAAS,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,kDAAgC;AAGhC,6CAAoE;AAA3D,4GAAA,aAAa,OAAA;AAAE,2GAAA,YAAY,OAAA;AAAE,qGAAA,MAAM,OAAA;AAC5C,+DAA4D;AAAnD,oHAAA,eAAe,OAAA;AACxB,2CAA0C;AAAjC,gGAAA,MAAM,OAAA;AACf,6DAA2D;AAAlD,iHAAA,cAAc,OAAA;AAEvB,2DAAyD;AAAhD,+GAAA,aAAa,OAAA;AACtB,+CAAoE;AAA3D,8GAAA,iBAAiB,OAAA;AAAE,yGAAA,YAAY,OAAA;AACxC,2CAAyC;AAAhC,uGAAA,SAAS,OAAA"}
@@ -1,5 +1,5 @@
1
1
  import { CommaSeparatedStringArray } from '@n8n/config';
2
- export declare const MODULE_NAMES: readonly ["insights", "external-secrets", "community-packages", "data-store"];
2
+ export declare const MODULE_NAMES: readonly ["insights", "external-secrets", "community-packages", "data-table"];
3
3
  export type ModuleName = (typeof MODULE_NAMES)[number];
4
4
  declare class ModuleArray extends CommaSeparatedStringArray<ModuleName> {
5
5
  constructor(str: string);
@@ -16,7 +16,7 @@ exports.MODULE_NAMES = [
16
16
  'insights',
17
17
  'external-secrets',
18
18
  'community-packages',
19
- 'data-store',
19
+ 'data-table',
20
20
  ];
21
21
  class ModuleArray extends config_1.CommaSeparatedStringArray {
22
22
  constructor(str) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@n8n/backend-common",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "src/index.ts",
6
6
  "types": "dist/index.d.ts",
@@ -15,11 +15,11 @@
15
15
  "reflect-metadata": "0.2.2",
16
16
  "winston": "3.14.2",
17
17
  "yargs-parser": "21.1.1",
18
- "@n8n/config": "^1.52.0",
19
- "@n8n/decorators": "^0.19.0",
18
+ "@n8n/config": "^1.53.0",
19
+ "@n8n/decorators": "^0.20.0",
20
+ "@n8n/constants": "^0.11.0",
20
21
  "@n8n/di": "^0.9.0",
21
- "n8n-workflow": "^1.106.0",
22
- "@n8n/constants": "^0.11.0"
22
+ "n8n-workflow": "^1.107.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/yargs-parser": "21.0.0",