@n8n/db 0.2.0 → 0.3.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/build.tsbuildinfo +1 -1
- package/dist/entities/abstract-entity.d.ts +34 -0
- package/dist/entities/abstract-entity.js +92 -0
- package/dist/entities/abstract-entity.js.map +1 -0
- package/dist/entities/annotation-tag-entity.ee.d.ts +8 -0
- package/dist/entities/annotation-tag-entity.ee.js +37 -0
- package/dist/entities/annotation-tag-entity.ee.js.map +1 -0
- package/dist/entities/annotation-tag-mapping.ee.d.ts +8 -0
- package/dist/entities/annotation-tag-mapping.ee.js +38 -0
- package/dist/entities/annotation-tag-mapping.ee.js.map +1 -0
- package/dist/entities/api-key.d.ts +10 -0
- package/dist/entities/api-key.js +44 -0
- package/dist/entities/api-key.js.map +1 -0
- package/dist/entities/auth-identity.d.ts +10 -0
- package/dist/entities/auth-identity.js +48 -0
- package/dist/entities/auth-identity.js.map +1 -0
- package/dist/entities/auth-provider-sync-history.d.ts +14 -0
- package/dist/entities/auth-provider-sync-history.js +65 -0
- package/dist/entities/auth-provider-sync-history.js.map +1 -0
- package/dist/entities/auth-user.d.ts +5 -0
- package/dist/entities/auth-user.js +29 -0
- package/dist/entities/auth-user.js.map +1 -0
- package/dist/entities/credentials-entity.d.ts +11 -0
- package/dist/entities/credentials-entity.js +55 -0
- package/dist/entities/credentials-entity.js.map +1 -0
- package/dist/entities/event-destinations.d.ts +6 -0
- package/dist/entities/event-destinations.js +29 -0
- package/dist/entities/event-destinations.js.map +1 -0
- package/dist/entities/execution-annotation.ee.d.ts +13 -0
- package/dist/entities/execution-annotation.ee.js +64 -0
- package/dist/entities/execution-annotation.ee.js.map +1 -0
- package/dist/entities/execution-data.d.ts +8 -0
- package/dist/entities/execution-data.js +41 -0
- package/dist/entities/execution-data.js.map +1 -0
- package/dist/entities/execution-entity.d.ts +24 -0
- package/dist/entities/execution-entity.js +97 -0
- package/dist/entities/execution-entity.js.map +1 -0
- package/dist/entities/execution-metadata.d.ts +8 -0
- package/dist/entities/execution-metadata.js +43 -0
- package/dist/entities/execution-metadata.js.map +1 -0
- package/dist/entities/folder-tag-mapping.d.ts +8 -0
- package/dist/entities/folder-tag-mapping.js +38 -0
- package/dist/entities/folder-tag-mapping.js.map +1 -0
- package/dist/entities/folder.d.ts +13 -0
- package/dist/entities/folder.js +64 -0
- package/dist/entities/folder.js.map +1 -0
- package/dist/entities/index.d.ts +73 -0
- package/dist/entities/index.js +111 -0
- package/dist/entities/index.js.map +1 -0
- package/dist/entities/installed-nodes.d.ts +7 -0
- package/dist/entities/installed-nodes.js +38 -0
- package/dist/entities/installed-nodes.js.map +1 -0
- package/dist/entities/installed-packages.d.ts +9 -0
- package/dist/entities/installed-packages.js +42 -0
- package/dist/entities/installed-packages.js.map +1 -0
- package/dist/entities/invalid-auth-token.d.ts +4 -0
- package/dist/entities/invalid-auth-token.js +29 -0
- package/dist/entities/invalid-auth-token.js.map +1 -0
- package/dist/entities/processed-data.d.ts +7 -0
- package/dist/entities/processed-data.js +37 -0
- package/dist/entities/processed-data.js.map +1 -0
- package/dist/entities/project-relation.d.ts +10 -0
- package/dist/entities/project-relation.js +43 -0
- package/dist/entities/project-relation.js.map +1 -0
- package/dist/entities/project.d.ts +15 -0
- package/dist/entities/project.js +45 -0
- package/dist/entities/project.js.map +1 -0
- package/dist/entities/settings.d.ts +12 -0
- package/dist/entities/settings.js +32 -0
- package/dist/entities/settings.js.map +1 -0
- package/dist/entities/shared-credentials.d.ts +11 -0
- package/dist/entities/shared-credentials.js +43 -0
- package/dist/entities/shared-credentials.js.map +1 -0
- package/dist/entities/shared-workflow.d.ts +11 -0
- package/dist/entities/shared-workflow.js +43 -0
- package/dist/entities/shared-workflow.js.map +1 -0
- package/dist/entities/tag-entity.d.ts +10 -0
- package/dist/entities/tag-entity.js +41 -0
- package/dist/entities/tag-entity.js.map +1 -0
- package/dist/entities/test-case-execution.ee.d.ts +22 -0
- package/dist/entities/test-case-execution.ee.js +83 -0
- package/dist/entities/test-case-execution.ee.js.map +1 -0
- package/dist/entities/test-definition.ee.d.ts +17 -0
- package/dist/entities/test-definition.ee.js +69 -0
- package/dist/entities/test-definition.ee.js.map +1 -0
- package/dist/entities/test-metric.ee.d.ts +6 -0
- package/dist/entities/test-metric.ee.js +35 -0
- package/dist/entities/test-metric.ee.js.map +1 -0
- package/dist/entities/test-run.ee.d.ts +22 -0
- package/dist/entities/test-run.ee.js +71 -0
- package/dist/entities/test-run.ee.js.map +1 -0
- package/dist/entities/types-db.d.ts +230 -0
- package/dist/entities/types-db.js +12 -0
- package/dist/entities/types-db.js.map +1 -0
- package/dist/entities/user.d.ts +36 -0
- package/dist/entities/user.js +166 -0
- package/dist/entities/user.js.map +1 -0
- package/dist/entities/variables.d.ts +6 -0
- package/dist/entities/variables.js +33 -0
- package/dist/entities/variables.js.map +1 -0
- package/dist/entities/webhook-entity.d.ts +13 -0
- package/dist/entities/webhook-entity.js +59 -0
- package/dist/entities/webhook-entity.js.map +1 -0
- package/dist/entities/workflow-entity.d.ts +33 -0
- package/dist/entities/workflow-entity.js +113 -0
- package/dist/entities/workflow-entity.js.map +1 -0
- package/dist/entities/workflow-history.d.ts +12 -0
- package/dist/entities/workflow-history.js +48 -0
- package/dist/entities/workflow-history.js.map +1 -0
- package/dist/entities/workflow-statistics.d.ts +10 -0
- package/dist/entities/workflow-statistics.js +46 -0
- package/dist/entities/workflow-statistics.js.map +1 -0
- package/dist/entities/workflow-tag-mapping.d.ts +8 -0
- package/dist/entities/workflow-tag-mapping.js +38 -0
- package/dist/entities/workflow-tag-mapping.js.map +1 -0
- package/dist/index.d.ts +9 -1
- package/dist/index.js +41 -0
- package/dist/index.js.map +1 -1
- package/dist/utils/generators.d.ts +3 -0
- package/dist/utils/generators.js +14 -0
- package/dist/utils/generators.js.map +1 -0
- package/dist/utils/is-string-array.d.ts +1 -0
- package/dist/utils/is-string-array.js +7 -0
- package/dist/utils/is-string-array.js.map +1 -0
- package/dist/utils/separate.d.ts +1 -0
- package/dist/utils/separate.js +11 -0
- package/dist/utils/separate.js.map +1 -0
- package/dist/utils/transformers.d.ts +13 -0
- package/dist/utils/transformers.js +24 -0
- package/dist/utils/transformers.js.map +1 -0
- package/dist/utils/validators/no-url.validator.d.ts +2 -0
- package/dist/utils/validators/no-url.validator.js +34 -0
- package/dist/utils/validators/no-url.validator.js.map +1 -0
- package/dist/utils/validators/no-xss.validator.d.ts +2 -0
- package/dist/utils/validators/no-xss.validator.js +42 -0
- package/dist/utils/validators/no-xss.validator.js.map +1 -0
- package/package.json +11 -2
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ExecutionAnnotation = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
const execution_entity_1 = require("./execution-entity");
|
|
15
|
+
let ExecutionAnnotation = class ExecutionAnnotation {
|
|
16
|
+
};
|
|
17
|
+
exports.ExecutionAnnotation = ExecutionAnnotation;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
20
|
+
__metadata("design:type", Number)
|
|
21
|
+
], ExecutionAnnotation.prototype, "id", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
24
|
+
__metadata("design:type", Object)
|
|
25
|
+
], ExecutionAnnotation.prototype, "vote", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
28
|
+
__metadata("design:type", Object)
|
|
29
|
+
], ExecutionAnnotation.prototype, "note", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, typeorm_1.RelationId)((annotation) => annotation.execution),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], ExecutionAnnotation.prototype, "executionId", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, typeorm_1.Index)({ unique: true }),
|
|
36
|
+
(0, typeorm_1.OneToOne)('ExecutionEntity', 'annotation', {
|
|
37
|
+
onDelete: 'CASCADE',
|
|
38
|
+
}),
|
|
39
|
+
(0, typeorm_1.JoinColumn)({ name: 'executionId' }),
|
|
40
|
+
__metadata("design:type", execution_entity_1.ExecutionEntity)
|
|
41
|
+
], ExecutionAnnotation.prototype, "execution", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.ManyToMany)('AnnotationTagEntity', 'annotations'),
|
|
44
|
+
(0, typeorm_1.JoinTable)({
|
|
45
|
+
name: 'execution_annotation_tags',
|
|
46
|
+
joinColumn: {
|
|
47
|
+
name: 'annotationId',
|
|
48
|
+
referencedColumnName: 'id',
|
|
49
|
+
},
|
|
50
|
+
inverseJoinColumn: {
|
|
51
|
+
name: 'tagId',
|
|
52
|
+
referencedColumnName: 'id',
|
|
53
|
+
},
|
|
54
|
+
}),
|
|
55
|
+
__metadata("design:type", Array)
|
|
56
|
+
], ExecutionAnnotation.prototype, "tags", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, typeorm_1.OneToMany)('AnnotationTagMapping', 'annotations'),
|
|
59
|
+
__metadata("design:type", Array)
|
|
60
|
+
], ExecutionAnnotation.prototype, "tagMappings", void 0);
|
|
61
|
+
exports.ExecutionAnnotation = ExecutionAnnotation = __decorate([
|
|
62
|
+
(0, typeorm_1.Entity)({ name: 'execution_annotations' })
|
|
63
|
+
], ExecutionAnnotation);
|
|
64
|
+
//# sourceMappingURL=execution-annotation.ee.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-annotation.ee.js","sourceRoot":"","sources":["../../src/entities/execution-annotation.ee.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAWsB;AAKtB,yDAAqD;AAG9C,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;CA0C/B,CAAA;AA1CY,kDAAmB;AAE/B;IADC,IAAA,gCAAsB,GAAE;;+CACd;AAMX;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAChB;AAM5B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACxB;AAGpB;IADC,IAAA,oBAAU,EAAC,CAAC,UAA+B,EAAE,EAAE,CAAC,UAAU,CAAC,SAAS,CAAC;;wDAClD;AAOpB;IALC,IAAA,eAAK,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvB,IAAA,kBAAQ,EAAC,iBAAiB,EAAE,YAAY,EAAE;QAC1C,QAAQ,EAAE,SAAS;KACnB,CAAC;IACD,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACzB,kCAAe;sDAAC;AAc3B;IAZC,IAAA,oBAAU,EAAC,qBAAqB,EAAE,aAAa,CAAC;IAChD,IAAA,mBAAS,EAAC;QACV,IAAI,EAAE,2BAA2B;QACjC,UAAU,EAAE;YACX,IAAI,EAAE,cAAc;YACpB,oBAAoB,EAAE,IAAI;SAC1B;QACD,iBAAiB,EAAE;YAClB,IAAI,EAAE,OAAO;YACb,oBAAoB,EAAE,IAAI;SAC1B;KACD,CAAC;;iDAC2B;AAG7B;IADC,IAAA,mBAAS,EAAC,sBAAsB,EAAE,aAAa,CAAC;;wDACb;8BAzCxB,mBAAmB;IAD/B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;GAC7B,mBAAmB,CA0C/B"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ExecutionData = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
const abstract_entity_1 = require("./abstract-entity");
|
|
15
|
+
const execution_entity_1 = require("./execution-entity");
|
|
16
|
+
const transformers_1 = require("../utils/transformers");
|
|
17
|
+
let ExecutionData = class ExecutionData {
|
|
18
|
+
};
|
|
19
|
+
exports.ExecutionData = ExecutionData;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)('text'),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], ExecutionData.prototype, "data", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, abstract_entity_1.JsonColumn)(),
|
|
26
|
+
__metadata("design:type", Object)
|
|
27
|
+
], ExecutionData.prototype, "workflowData", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.PrimaryColumn)({ transformer: transformers_1.idStringifier }),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ExecutionData.prototype, "executionId", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.ManyToOne)('ExecutionEntity', 'data', {
|
|
34
|
+
onDelete: 'CASCADE',
|
|
35
|
+
}),
|
|
36
|
+
__metadata("design:type", execution_entity_1.ExecutionEntity)
|
|
37
|
+
], ExecutionData.prototype, "execution", void 0);
|
|
38
|
+
exports.ExecutionData = ExecutionData = __decorate([
|
|
39
|
+
(0, typeorm_1.Entity)()
|
|
40
|
+
], ExecutionData);
|
|
41
|
+
//# sourceMappingURL=execution-data.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-data.js","sourceRoot":"","sources":["../../src/entities/execution-data.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAAwE;AAGxE,uDAA+C;AAC/C,yDAAqD;AACrD,wDAAsD;AAG/C,IAAM,aAAa,GAAnB,MAAM,aAAa;CAmBzB,CAAA;AAnBY,sCAAa;AAEzB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;2CACF;AAQb;IADC,IAAA,4BAAU,GAAE;;mDACe;AAG5B;IADC,IAAA,uBAAa,EAAC,EAAE,WAAW,EAAE,4BAAa,EAAE,CAAC;;kDAC1B;AAKpB;IAHC,IAAA,mBAAS,EAAC,iBAAiB,EAAE,MAAM,EAAE;QACrC,QAAQ,EAAE,SAAS;KACnB,CAAC;8BACS,kCAAe;gDAAC;wBAlBf,aAAa;IADzB,IAAA,gBAAM,GAAE;GACI,aAAa,CAmBzB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Relation } from '@n8n/typeorm';
|
|
2
|
+
import { ExecutionStatus, WorkflowExecuteMode } from 'n8n-workflow';
|
|
3
|
+
import type { ExecutionAnnotation } from './execution-annotation.ee';
|
|
4
|
+
import type { ExecutionData } from './execution-data';
|
|
5
|
+
import type { ExecutionMetadata } from './execution-metadata';
|
|
6
|
+
import { WorkflowEntity } from './workflow-entity';
|
|
7
|
+
export declare class ExecutionEntity {
|
|
8
|
+
id: string;
|
|
9
|
+
finished: boolean;
|
|
10
|
+
mode: WorkflowExecuteMode;
|
|
11
|
+
retryOf: string;
|
|
12
|
+
retrySuccessId: string;
|
|
13
|
+
status: ExecutionStatus;
|
|
14
|
+
createdAt: Date;
|
|
15
|
+
startedAt: Date | null;
|
|
16
|
+
stoppedAt: Date;
|
|
17
|
+
deletedAt: Date;
|
|
18
|
+
workflowId: string;
|
|
19
|
+
waitTill: Date | null;
|
|
20
|
+
metadata: ExecutionMetadata[];
|
|
21
|
+
executionData: Relation<ExecutionData>;
|
|
22
|
+
annotation?: Relation<ExecutionAnnotation>;
|
|
23
|
+
workflow: WorkflowEntity;
|
|
24
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ExecutionEntity = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
const abstract_entity_1 = require("./abstract-entity");
|
|
15
|
+
const workflow_entity_1 = require("./workflow-entity");
|
|
16
|
+
const transformers_1 = require("../utils/transformers");
|
|
17
|
+
let ExecutionEntity = class ExecutionEntity {
|
|
18
|
+
};
|
|
19
|
+
exports.ExecutionEntity = ExecutionEntity;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Generated)(),
|
|
22
|
+
(0, typeorm_1.PrimaryColumn)({ transformer: transformers_1.idStringifier }),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], ExecutionEntity.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, typeorm_1.Column)(),
|
|
27
|
+
__metadata("design:type", Boolean)
|
|
28
|
+
], ExecutionEntity.prototype, "finished", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, typeorm_1.Column)('varchar'),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], ExecutionEntity.prototype, "mode", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], ExecutionEntity.prototype, "retryOf", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], ExecutionEntity.prototype, "retrySuccessId", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)('varchar'),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], ExecutionEntity.prototype, "status", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)(abstract_entity_1.datetimeColumnType),
|
|
47
|
+
__metadata("design:type", Date)
|
|
48
|
+
], ExecutionEntity.prototype, "createdAt", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({
|
|
51
|
+
type: abstract_entity_1.datetimeColumnType,
|
|
52
|
+
nullable: true,
|
|
53
|
+
}),
|
|
54
|
+
__metadata("design:type", Object)
|
|
55
|
+
], ExecutionEntity.prototype, "startedAt", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Index)(),
|
|
58
|
+
(0, abstract_entity_1.DateTimeColumn)({ nullable: true }),
|
|
59
|
+
__metadata("design:type", Date)
|
|
60
|
+
], ExecutionEntity.prototype, "stoppedAt", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, typeorm_1.DeleteDateColumn)({ type: abstract_entity_1.datetimeColumnType, nullable: true }),
|
|
63
|
+
__metadata("design:type", Date)
|
|
64
|
+
], ExecutionEntity.prototype, "deletedAt", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], ExecutionEntity.prototype, "workflowId", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, abstract_entity_1.DateTimeColumn)({ nullable: true }),
|
|
71
|
+
__metadata("design:type", Object)
|
|
72
|
+
], ExecutionEntity.prototype, "waitTill", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, typeorm_1.OneToMany)('ExecutionMetadata', 'execution'),
|
|
75
|
+
__metadata("design:type", Array)
|
|
76
|
+
], ExecutionEntity.prototype, "metadata", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.OneToOne)('ExecutionData', 'execution'),
|
|
79
|
+
__metadata("design:type", Object)
|
|
80
|
+
], ExecutionEntity.prototype, "executionData", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, typeorm_1.OneToOne)('ExecutionAnnotation', 'execution'),
|
|
83
|
+
__metadata("design:type", Object)
|
|
84
|
+
], ExecutionEntity.prototype, "annotation", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.ManyToOne)('WorkflowEntity'),
|
|
87
|
+
__metadata("design:type", workflow_entity_1.WorkflowEntity)
|
|
88
|
+
], ExecutionEntity.prototype, "workflow", void 0);
|
|
89
|
+
exports.ExecutionEntity = ExecutionEntity = __decorate([
|
|
90
|
+
(0, typeorm_1.Entity)(),
|
|
91
|
+
(0, typeorm_1.Index)(['workflowId', 'id']),
|
|
92
|
+
(0, typeorm_1.Index)(['waitTill', 'id']),
|
|
93
|
+
(0, typeorm_1.Index)(['finished', 'id']),
|
|
94
|
+
(0, typeorm_1.Index)(['workflowId', 'finished', 'id']),
|
|
95
|
+
(0, typeorm_1.Index)(['workflowId', 'waitTill', 'id'])
|
|
96
|
+
], ExecutionEntity);
|
|
97
|
+
//# sourceMappingURL=execution-entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-entity.js","sourceRoot":"","sources":["../../src/entities/execution-entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAWsB;AAItB,uDAAuE;AAIvE,uDAAmD;AACnD,wDAAsD;AAQ/C,IAAM,eAAe,GAArB,MAAM,eAAe;CA8D3B,CAAA;AA9DY,0CAAe;AAG3B;IAFC,IAAA,mBAAS,GAAE;IACX,IAAA,uBAAa,EAAC,EAAE,WAAW,EAAE,4BAAa,EAAE,CAAC;;2CACnC;AAQX;IADC,IAAA,gBAAM,GAAE;;iDACS;AAGlB;IADC,IAAA,gBAAM,EAAC,SAAS,CAAC;;6CACQ;AAG1B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACX;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACJ;AAGvB;IADC,IAAA,gBAAM,EAAC,SAAS,CAAC;;+CACM;AAGxB;IADC,IAAA,gBAAM,EAAC,oCAAkB,CAAC;8BAChB,IAAI;kDAAC;AAUhB;IAJC,IAAA,gBAAM,EAAC;QACP,IAAI,EAAE,oCAAsC;QAC5C,QAAQ,EAAE,IAAI;KACd,CAAC;;kDACqB;AAIvB;IAFC,IAAA,eAAK,GAAE;IACP,IAAA,gCAAc,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACxB,IAAI;kDAAC;AAGhB;IADC,IAAA,0BAAgB,EAAC,EAAE,IAAI,EAAE,oCAAsC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BACxE,IAAI;kDAAC;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACR;AAGnB;IADC,IAAA,gCAAc,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACb;AAGtB;IADC,IAAA,mBAAS,EAAC,mBAAmB,EAAE,WAAW,CAAC;;iDACd;AAG9B;IADC,IAAA,kBAAQ,EAAC,eAAe,EAAE,WAAW,CAAC;;sDACA;AAGvC;IADC,IAAA,kBAAQ,EAAC,qBAAqB,EAAE,WAAW,CAAC;;mDACF;AAG3C;IADC,IAAA,mBAAS,EAAC,gBAAgB,CAAC;8BAClB,gCAAc;iDAAC;0BA7Db,eAAe;IAN3B,IAAA,gBAAM,GAAE;IACR,IAAA,eAAK,EAAC,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;IAC3B,IAAA,eAAK,EAAC,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;IACzB,IAAA,eAAK,EAAC,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;IACzB,IAAA,eAAK,EAAC,CAAC,YAAY,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;IACvC,IAAA,eAAK,EAAC,CAAC,YAAY,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;GAC3B,eAAe,CA8D3B"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ExecutionMetadata = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
const execution_entity_1 = require("./execution-entity");
|
|
15
|
+
let ExecutionMetadata = class ExecutionMetadata {
|
|
16
|
+
};
|
|
17
|
+
exports.ExecutionMetadata = ExecutionMetadata;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
20
|
+
__metadata("design:type", Number)
|
|
21
|
+
], ExecutionMetadata.prototype, "id", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, typeorm_1.ManyToOne)('ExecutionEntity', 'metadata', {
|
|
24
|
+
onDelete: 'CASCADE',
|
|
25
|
+
}),
|
|
26
|
+
__metadata("design:type", execution_entity_1.ExecutionEntity)
|
|
27
|
+
], ExecutionMetadata.prototype, "execution", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ExecutionMetadata.prototype, "executionId", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)('text'),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ExecutionMetadata.prototype, "key", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)('text'),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], ExecutionMetadata.prototype, "value", void 0);
|
|
40
|
+
exports.ExecutionMetadata = ExecutionMetadata = __decorate([
|
|
41
|
+
(0, typeorm_1.Entity)()
|
|
42
|
+
], ExecutionMetadata);
|
|
43
|
+
//# sourceMappingURL=execution-metadata.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-metadata.js","sourceRoot":"","sources":["../../src/entities/execution-metadata.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAAiF;AAEjF,yDAAqD;AAG9C,IAAM,iBAAiB,GAAvB,MAAM,iBAAiB;CAiB7B,CAAA;AAjBY,8CAAiB;AAE7B;IADC,IAAA,gCAAsB,GAAE;;6CACd;AAKX;IAHC,IAAA,mBAAS,EAAC,iBAAiB,EAAE,UAAU,EAAE;QACzC,QAAQ,EAAE,SAAS;KACnB,CAAC;8BACS,kCAAe;oDAAC;AAG3B;IADC,IAAA,gBAAM,GAAE;;sDACW;AAGpB;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;8CACH;AAGZ;IADC,IAAA,gBAAM,EAAC,MAAM,CAAC;;gDACD;4BAhBF,iBAAiB;IAD7B,IAAA,gBAAM,GAAE;GACI,iBAAiB,CAiB7B"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.FolderTagMapping = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
let FolderTagMapping = class FolderTagMapping {
|
|
15
|
+
};
|
|
16
|
+
exports.FolderTagMapping = FolderTagMapping;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, typeorm_1.PrimaryColumn)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], FolderTagMapping.prototype, "folderId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, typeorm_1.ManyToOne)('Folder', 'tagMappings'),
|
|
23
|
+
(0, typeorm_1.JoinColumn)({ name: 'folderId' }),
|
|
24
|
+
__metadata("design:type", Array)
|
|
25
|
+
], FolderTagMapping.prototype, "folders", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, typeorm_1.PrimaryColumn)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], FolderTagMapping.prototype, "tagId", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, typeorm_1.ManyToOne)('TagEntity', 'folderMappings'),
|
|
32
|
+
(0, typeorm_1.JoinColumn)({ name: 'tagId' }),
|
|
33
|
+
__metadata("design:type", Array)
|
|
34
|
+
], FolderTagMapping.prototype, "tags", void 0);
|
|
35
|
+
exports.FolderTagMapping = FolderTagMapping = __decorate([
|
|
36
|
+
(0, typeorm_1.Entity)({ name: 'folder_tag' })
|
|
37
|
+
], FolderTagMapping);
|
|
38
|
+
//# sourceMappingURL=folder-tag-mapping.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"folder-tag-mapping.js","sourceRoot":"","sources":["../../src/entities/folder-tag-mapping.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAA4E;AAMrE,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAc5B,CAAA;AAdY,4CAAgB;AAE5B;IADC,IAAA,uBAAa,GAAE;;kDACC;AAIjB;IAFC,IAAA,mBAAS,EAAC,QAAQ,EAAE,aAAa,CAAC;IAClC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,CAAC;;iDACf;AAGlB;IADC,IAAA,uBAAa,GAAE;;+CACF;AAId;IAFC,IAAA,mBAAS,EAAC,WAAW,EAAE,gBAAgB,CAAC;IACxC,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;8CACZ;2BAbN,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC;GAClB,gBAAgB,CAc5B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { WithTimestampsAndStringId } from './abstract-entity';
|
|
2
|
+
import { Project } from './project';
|
|
3
|
+
import { TagEntity } from './tag-entity';
|
|
4
|
+
import type { WorkflowEntity } from './workflow-entity';
|
|
5
|
+
export declare class Folder extends WithTimestampsAndStringId {
|
|
6
|
+
name: string;
|
|
7
|
+
parentFolderId: string | null;
|
|
8
|
+
parentFolder: Folder | null;
|
|
9
|
+
subFolders: Folder[];
|
|
10
|
+
homeProject: Project;
|
|
11
|
+
workflows: WorkflowEntity[];
|
|
12
|
+
tags: TagEntity[];
|
|
13
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.Folder = void 0;
|
|
13
|
+
const typeorm_1 = require("@n8n/typeorm");
|
|
14
|
+
const abstract_entity_1 = require("./abstract-entity");
|
|
15
|
+
const project_1 = require("./project");
|
|
16
|
+
const tag_entity_1 = require("./tag-entity");
|
|
17
|
+
let Folder = class Folder extends abstract_entity_1.WithTimestampsAndStringId {
|
|
18
|
+
};
|
|
19
|
+
exports.Folder = Folder;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, typeorm_1.Column)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], Folder.prototype, "name", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
26
|
+
__metadata("design:type", Object)
|
|
27
|
+
], Folder.prototype, "parentFolderId", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.ManyToOne)(() => Folder, { nullable: true, onDelete: 'CASCADE' }),
|
|
30
|
+
(0, typeorm_1.JoinColumn)({ name: 'parentFolderId' }),
|
|
31
|
+
__metadata("design:type", Object)
|
|
32
|
+
], Folder.prototype, "parentFolder", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, typeorm_1.OneToMany)(() => Folder, (folder) => folder.parentFolder),
|
|
35
|
+
__metadata("design:type", Array)
|
|
36
|
+
], Folder.prototype, "subFolders", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.ManyToOne)(() => project_1.Project),
|
|
39
|
+
(0, typeorm_1.JoinColumn)({ name: 'projectId' }),
|
|
40
|
+
__metadata("design:type", project_1.Project)
|
|
41
|
+
], Folder.prototype, "homeProject", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, typeorm_1.OneToMany)('WorkflowEntity', 'parentFolder'),
|
|
44
|
+
__metadata("design:type", Array)
|
|
45
|
+
], Folder.prototype, "workflows", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.ManyToMany)(() => tag_entity_1.TagEntity),
|
|
48
|
+
(0, typeorm_1.JoinTable)({
|
|
49
|
+
name: 'folder_tag',
|
|
50
|
+
joinColumn: {
|
|
51
|
+
name: 'folderId',
|
|
52
|
+
referencedColumnName: 'id',
|
|
53
|
+
},
|
|
54
|
+
inverseJoinColumn: {
|
|
55
|
+
name: 'tagId',
|
|
56
|
+
referencedColumnName: 'id',
|
|
57
|
+
},
|
|
58
|
+
}),
|
|
59
|
+
__metadata("design:type", Array)
|
|
60
|
+
], Folder.prototype, "tags", void 0);
|
|
61
|
+
exports.Folder = Folder = __decorate([
|
|
62
|
+
(0, typeorm_1.Entity)()
|
|
63
|
+
], Folder);
|
|
64
|
+
//# sourceMappingURL=folder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"folder.js","sourceRoot":"","sources":["../../src/entities/folder.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0CAQsB;AAEtB,uDAA8D;AAC9D,uCAAoC;AACpC,6CAAyC;AAIlC,IAAM,MAAM,GAAZ,MAAM,MAAO,SAAQ,2CAAyB;CAqCpD,CAAA;AArCY,wBAAM;AAElB;IADC,IAAA,gBAAM,GAAE;;oCACI;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACG;AAI9B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAChE,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;4CACX;AAM5B;IAJC,IAAA,mBAAS,EACT,GAAG,EAAE,CAAC,MAAM,EACZ,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,YAAY,CAC/B;;0CACoB;AAIrB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,iBAAO,CAAC;IACxB,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BACrB,iBAAO;2CAAC;AAGrB;IADC,IAAA,mBAAS,EAAC,gBAAgB,EAAE,cAAc,CAAC;;yCAChB;AAc5B;IAZC,IAAA,oBAAU,EAAC,GAAG,EAAE,CAAC,sBAAS,CAAC;IAC3B,IAAA,mBAAS,EAAC;QACV,IAAI,EAAE,YAAY;QAClB,UAAU,EAAE;YACX,IAAI,EAAE,UAAU;YAChB,oBAAoB,EAAE,IAAI;SAC1B;QACD,iBAAiB,EAAE;YAClB,IAAI,EAAE,OAAO;YACb,oBAAoB,EAAE,IAAI;SAC1B;KACD,CAAC;;oCACgB;iBApCN,MAAM;IADlB,IAAA,gBAAM,GAAE;GACI,MAAM,CAqClB"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { AnnotationTagEntity } from './annotation-tag-entity.ee';
|
|
2
|
+
import { AnnotationTagMapping } from './annotation-tag-mapping.ee';
|
|
3
|
+
import { ApiKey } from './api-key';
|
|
4
|
+
import { AuthIdentity } from './auth-identity';
|
|
5
|
+
import { AuthProviderSyncHistory } from './auth-provider-sync-history';
|
|
6
|
+
import { AuthUser } from './auth-user';
|
|
7
|
+
import { CredentialsEntity } from './credentials-entity';
|
|
8
|
+
import { EventDestinations } from './event-destinations';
|
|
9
|
+
import { ExecutionAnnotation } from './execution-annotation.ee';
|
|
10
|
+
import { ExecutionData } from './execution-data';
|
|
11
|
+
import { ExecutionEntity } from './execution-entity';
|
|
12
|
+
import { ExecutionMetadata } from './execution-metadata';
|
|
13
|
+
import { Folder } from './folder';
|
|
14
|
+
import { FolderTagMapping } from './folder-tag-mapping';
|
|
15
|
+
import { InstalledNodes } from './installed-nodes';
|
|
16
|
+
import { InstalledPackages } from './installed-packages';
|
|
17
|
+
import { InvalidAuthToken } from './invalid-auth-token';
|
|
18
|
+
import { ProcessedData } from './processed-data';
|
|
19
|
+
import { Project } from './project';
|
|
20
|
+
import { ProjectRelation } from './project-relation';
|
|
21
|
+
import { Settings } from './settings';
|
|
22
|
+
import { SharedCredentials } from './shared-credentials';
|
|
23
|
+
import { SharedWorkflow } from './shared-workflow';
|
|
24
|
+
import { TagEntity } from './tag-entity';
|
|
25
|
+
import { TestCaseExecution } from './test-case-execution.ee';
|
|
26
|
+
import { TestDefinition } from './test-definition.ee';
|
|
27
|
+
import { TestMetric } from './test-metric.ee';
|
|
28
|
+
import { TestRun } from './test-run.ee';
|
|
29
|
+
import { User } from './user';
|
|
30
|
+
import { Variables } from './variables';
|
|
31
|
+
import { WebhookEntity } from './webhook-entity';
|
|
32
|
+
import { WorkflowEntity } from './workflow-entity';
|
|
33
|
+
import { WorkflowHistory } from './workflow-history';
|
|
34
|
+
import { WorkflowStatistics } from './workflow-statistics';
|
|
35
|
+
import { WorkflowTagMapping } from './workflow-tag-mapping';
|
|
36
|
+
export { EventDestinations, InstalledNodes, InstalledPackages, InvalidAuthToken, ProcessedData, Settings, Variables, ApiKey, WebhookEntity, AuthIdentity, CredentialsEntity, Folder, Project, ProjectRelation, SharedCredentials, SharedWorkflow, TagEntity, User, WorkflowEntity, WorkflowStatistics, WorkflowTagMapping, FolderTagMapping, AuthProviderSyncHistory, AuthUser, WorkflowHistory, ExecutionData, ExecutionMetadata, AnnotationTagEntity, ExecutionAnnotation, AnnotationTagMapping, TestDefinition, TestMetric, TestRun, TestCaseExecution, ExecutionEntity, };
|
|
37
|
+
export declare const entities: {
|
|
38
|
+
EventDestinations: typeof EventDestinations;
|
|
39
|
+
InstalledNodes: typeof InstalledNodes;
|
|
40
|
+
InstalledPackages: typeof InstalledPackages;
|
|
41
|
+
InvalidAuthToken: typeof InvalidAuthToken;
|
|
42
|
+
ProcessedData: typeof ProcessedData;
|
|
43
|
+
Settings: typeof Settings;
|
|
44
|
+
Variables: typeof Variables;
|
|
45
|
+
ApiKey: typeof ApiKey;
|
|
46
|
+
WebhookEntity: typeof WebhookEntity;
|
|
47
|
+
AuthIdentity: typeof AuthIdentity;
|
|
48
|
+
CredentialsEntity: typeof CredentialsEntity;
|
|
49
|
+
Folder: typeof Folder;
|
|
50
|
+
Project: typeof Project;
|
|
51
|
+
ProjectRelation: typeof ProjectRelation;
|
|
52
|
+
SharedCredentials: typeof SharedCredentials;
|
|
53
|
+
SharedWorkflow: typeof SharedWorkflow;
|
|
54
|
+
TagEntity: typeof TagEntity;
|
|
55
|
+
User: typeof User;
|
|
56
|
+
WorkflowEntity: typeof WorkflowEntity;
|
|
57
|
+
WorkflowStatistics: typeof WorkflowStatistics;
|
|
58
|
+
WorkflowTagMapping: typeof WorkflowTagMapping;
|
|
59
|
+
FolderTagMapping: typeof FolderTagMapping;
|
|
60
|
+
AuthProviderSyncHistory: typeof AuthProviderSyncHistory;
|
|
61
|
+
AuthUser: typeof AuthUser;
|
|
62
|
+
WorkflowHistory: typeof WorkflowHistory;
|
|
63
|
+
ExecutionData: typeof ExecutionData;
|
|
64
|
+
ExecutionMetadata: typeof ExecutionMetadata;
|
|
65
|
+
AnnotationTagEntity: typeof AnnotationTagEntity;
|
|
66
|
+
ExecutionAnnotation: typeof ExecutionAnnotation;
|
|
67
|
+
AnnotationTagMapping: typeof AnnotationTagMapping;
|
|
68
|
+
TestDefinition: typeof TestDefinition;
|
|
69
|
+
TestMetric: typeof TestMetric;
|
|
70
|
+
TestRun: typeof TestRun;
|
|
71
|
+
TestCaseExecution: typeof TestCaseExecution;
|
|
72
|
+
ExecutionEntity: typeof ExecutionEntity;
|
|
73
|
+
};
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.entities = exports.ExecutionEntity = exports.TestCaseExecution = exports.TestRun = exports.TestMetric = exports.TestDefinition = exports.AnnotationTagMapping = exports.ExecutionAnnotation = exports.AnnotationTagEntity = exports.ExecutionMetadata = exports.ExecutionData = exports.WorkflowHistory = exports.AuthUser = exports.AuthProviderSyncHistory = exports.FolderTagMapping = exports.WorkflowTagMapping = exports.WorkflowStatistics = exports.WorkflowEntity = exports.User = exports.TagEntity = exports.SharedWorkflow = exports.SharedCredentials = exports.ProjectRelation = exports.Project = exports.Folder = exports.CredentialsEntity = exports.AuthIdentity = exports.WebhookEntity = exports.ApiKey = exports.Variables = exports.Settings = exports.ProcessedData = exports.InvalidAuthToken = exports.InstalledPackages = exports.InstalledNodes = exports.EventDestinations = void 0;
|
|
4
|
+
const annotation_tag_entity_ee_1 = require("./annotation-tag-entity.ee");
|
|
5
|
+
Object.defineProperty(exports, "AnnotationTagEntity", { enumerable: true, get: function () { return annotation_tag_entity_ee_1.AnnotationTagEntity; } });
|
|
6
|
+
const annotation_tag_mapping_ee_1 = require("./annotation-tag-mapping.ee");
|
|
7
|
+
Object.defineProperty(exports, "AnnotationTagMapping", { enumerable: true, get: function () { return annotation_tag_mapping_ee_1.AnnotationTagMapping; } });
|
|
8
|
+
const api_key_1 = require("./api-key");
|
|
9
|
+
Object.defineProperty(exports, "ApiKey", { enumerable: true, get: function () { return api_key_1.ApiKey; } });
|
|
10
|
+
const auth_identity_1 = require("./auth-identity");
|
|
11
|
+
Object.defineProperty(exports, "AuthIdentity", { enumerable: true, get: function () { return auth_identity_1.AuthIdentity; } });
|
|
12
|
+
const auth_provider_sync_history_1 = require("./auth-provider-sync-history");
|
|
13
|
+
Object.defineProperty(exports, "AuthProviderSyncHistory", { enumerable: true, get: function () { return auth_provider_sync_history_1.AuthProviderSyncHistory; } });
|
|
14
|
+
const auth_user_1 = require("./auth-user");
|
|
15
|
+
Object.defineProperty(exports, "AuthUser", { enumerable: true, get: function () { return auth_user_1.AuthUser; } });
|
|
16
|
+
const credentials_entity_1 = require("./credentials-entity");
|
|
17
|
+
Object.defineProperty(exports, "CredentialsEntity", { enumerable: true, get: function () { return credentials_entity_1.CredentialsEntity; } });
|
|
18
|
+
const event_destinations_1 = require("./event-destinations");
|
|
19
|
+
Object.defineProperty(exports, "EventDestinations", { enumerable: true, get: function () { return event_destinations_1.EventDestinations; } });
|
|
20
|
+
const execution_annotation_ee_1 = require("./execution-annotation.ee");
|
|
21
|
+
Object.defineProperty(exports, "ExecutionAnnotation", { enumerable: true, get: function () { return execution_annotation_ee_1.ExecutionAnnotation; } });
|
|
22
|
+
const execution_data_1 = require("./execution-data");
|
|
23
|
+
Object.defineProperty(exports, "ExecutionData", { enumerable: true, get: function () { return execution_data_1.ExecutionData; } });
|
|
24
|
+
const execution_entity_1 = require("./execution-entity");
|
|
25
|
+
Object.defineProperty(exports, "ExecutionEntity", { enumerable: true, get: function () { return execution_entity_1.ExecutionEntity; } });
|
|
26
|
+
const execution_metadata_1 = require("./execution-metadata");
|
|
27
|
+
Object.defineProperty(exports, "ExecutionMetadata", { enumerable: true, get: function () { return execution_metadata_1.ExecutionMetadata; } });
|
|
28
|
+
const folder_1 = require("./folder");
|
|
29
|
+
Object.defineProperty(exports, "Folder", { enumerable: true, get: function () { return folder_1.Folder; } });
|
|
30
|
+
const folder_tag_mapping_1 = require("./folder-tag-mapping");
|
|
31
|
+
Object.defineProperty(exports, "FolderTagMapping", { enumerable: true, get: function () { return folder_tag_mapping_1.FolderTagMapping; } });
|
|
32
|
+
const installed_nodes_1 = require("./installed-nodes");
|
|
33
|
+
Object.defineProperty(exports, "InstalledNodes", { enumerable: true, get: function () { return installed_nodes_1.InstalledNodes; } });
|
|
34
|
+
const installed_packages_1 = require("./installed-packages");
|
|
35
|
+
Object.defineProperty(exports, "InstalledPackages", { enumerable: true, get: function () { return installed_packages_1.InstalledPackages; } });
|
|
36
|
+
const invalid_auth_token_1 = require("./invalid-auth-token");
|
|
37
|
+
Object.defineProperty(exports, "InvalidAuthToken", { enumerable: true, get: function () { return invalid_auth_token_1.InvalidAuthToken; } });
|
|
38
|
+
const processed_data_1 = require("./processed-data");
|
|
39
|
+
Object.defineProperty(exports, "ProcessedData", { enumerable: true, get: function () { return processed_data_1.ProcessedData; } });
|
|
40
|
+
const project_1 = require("./project");
|
|
41
|
+
Object.defineProperty(exports, "Project", { enumerable: true, get: function () { return project_1.Project; } });
|
|
42
|
+
const project_relation_1 = require("./project-relation");
|
|
43
|
+
Object.defineProperty(exports, "ProjectRelation", { enumerable: true, get: function () { return project_relation_1.ProjectRelation; } });
|
|
44
|
+
const settings_1 = require("./settings");
|
|
45
|
+
Object.defineProperty(exports, "Settings", { enumerable: true, get: function () { return settings_1.Settings; } });
|
|
46
|
+
const shared_credentials_1 = require("./shared-credentials");
|
|
47
|
+
Object.defineProperty(exports, "SharedCredentials", { enumerable: true, get: function () { return shared_credentials_1.SharedCredentials; } });
|
|
48
|
+
const shared_workflow_1 = require("./shared-workflow");
|
|
49
|
+
Object.defineProperty(exports, "SharedWorkflow", { enumerable: true, get: function () { return shared_workflow_1.SharedWorkflow; } });
|
|
50
|
+
const tag_entity_1 = require("./tag-entity");
|
|
51
|
+
Object.defineProperty(exports, "TagEntity", { enumerable: true, get: function () { return tag_entity_1.TagEntity; } });
|
|
52
|
+
const test_case_execution_ee_1 = require("./test-case-execution.ee");
|
|
53
|
+
Object.defineProperty(exports, "TestCaseExecution", { enumerable: true, get: function () { return test_case_execution_ee_1.TestCaseExecution; } });
|
|
54
|
+
const test_definition_ee_1 = require("./test-definition.ee");
|
|
55
|
+
Object.defineProperty(exports, "TestDefinition", { enumerable: true, get: function () { return test_definition_ee_1.TestDefinition; } });
|
|
56
|
+
const test_metric_ee_1 = require("./test-metric.ee");
|
|
57
|
+
Object.defineProperty(exports, "TestMetric", { enumerable: true, get: function () { return test_metric_ee_1.TestMetric; } });
|
|
58
|
+
const test_run_ee_1 = require("./test-run.ee");
|
|
59
|
+
Object.defineProperty(exports, "TestRun", { enumerable: true, get: function () { return test_run_ee_1.TestRun; } });
|
|
60
|
+
const user_1 = require("./user");
|
|
61
|
+
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_1.User; } });
|
|
62
|
+
const variables_1 = require("./variables");
|
|
63
|
+
Object.defineProperty(exports, "Variables", { enumerable: true, get: function () { return variables_1.Variables; } });
|
|
64
|
+
const webhook_entity_1 = require("./webhook-entity");
|
|
65
|
+
Object.defineProperty(exports, "WebhookEntity", { enumerable: true, get: function () { return webhook_entity_1.WebhookEntity; } });
|
|
66
|
+
const workflow_entity_1 = require("./workflow-entity");
|
|
67
|
+
Object.defineProperty(exports, "WorkflowEntity", { enumerable: true, get: function () { return workflow_entity_1.WorkflowEntity; } });
|
|
68
|
+
const workflow_history_1 = require("./workflow-history");
|
|
69
|
+
Object.defineProperty(exports, "WorkflowHistory", { enumerable: true, get: function () { return workflow_history_1.WorkflowHistory; } });
|
|
70
|
+
const workflow_statistics_1 = require("./workflow-statistics");
|
|
71
|
+
Object.defineProperty(exports, "WorkflowStatistics", { enumerable: true, get: function () { return workflow_statistics_1.WorkflowStatistics; } });
|
|
72
|
+
const workflow_tag_mapping_1 = require("./workflow-tag-mapping");
|
|
73
|
+
Object.defineProperty(exports, "WorkflowTagMapping", { enumerable: true, get: function () { return workflow_tag_mapping_1.WorkflowTagMapping; } });
|
|
74
|
+
exports.entities = {
|
|
75
|
+
EventDestinations: event_destinations_1.EventDestinations,
|
|
76
|
+
InstalledNodes: installed_nodes_1.InstalledNodes,
|
|
77
|
+
InstalledPackages: installed_packages_1.InstalledPackages,
|
|
78
|
+
InvalidAuthToken: invalid_auth_token_1.InvalidAuthToken,
|
|
79
|
+
ProcessedData: processed_data_1.ProcessedData,
|
|
80
|
+
Settings: settings_1.Settings,
|
|
81
|
+
Variables: variables_1.Variables,
|
|
82
|
+
ApiKey: api_key_1.ApiKey,
|
|
83
|
+
WebhookEntity: webhook_entity_1.WebhookEntity,
|
|
84
|
+
AuthIdentity: auth_identity_1.AuthIdentity,
|
|
85
|
+
CredentialsEntity: credentials_entity_1.CredentialsEntity,
|
|
86
|
+
Folder: folder_1.Folder,
|
|
87
|
+
Project: project_1.Project,
|
|
88
|
+
ProjectRelation: project_relation_1.ProjectRelation,
|
|
89
|
+
SharedCredentials: shared_credentials_1.SharedCredentials,
|
|
90
|
+
SharedWorkflow: shared_workflow_1.SharedWorkflow,
|
|
91
|
+
TagEntity: tag_entity_1.TagEntity,
|
|
92
|
+
User: user_1.User,
|
|
93
|
+
WorkflowEntity: workflow_entity_1.WorkflowEntity,
|
|
94
|
+
WorkflowStatistics: workflow_statistics_1.WorkflowStatistics,
|
|
95
|
+
WorkflowTagMapping: workflow_tag_mapping_1.WorkflowTagMapping,
|
|
96
|
+
FolderTagMapping: folder_tag_mapping_1.FolderTagMapping,
|
|
97
|
+
AuthProviderSyncHistory: auth_provider_sync_history_1.AuthProviderSyncHistory,
|
|
98
|
+
AuthUser: auth_user_1.AuthUser,
|
|
99
|
+
WorkflowHistory: workflow_history_1.WorkflowHistory,
|
|
100
|
+
ExecutionData: execution_data_1.ExecutionData,
|
|
101
|
+
ExecutionMetadata: execution_metadata_1.ExecutionMetadata,
|
|
102
|
+
AnnotationTagEntity: annotation_tag_entity_ee_1.AnnotationTagEntity,
|
|
103
|
+
ExecutionAnnotation: execution_annotation_ee_1.ExecutionAnnotation,
|
|
104
|
+
AnnotationTagMapping: annotation_tag_mapping_ee_1.AnnotationTagMapping,
|
|
105
|
+
TestDefinition: test_definition_ee_1.TestDefinition,
|
|
106
|
+
TestMetric: test_metric_ee_1.TestMetric,
|
|
107
|
+
TestRun: test_run_ee_1.TestRun,
|
|
108
|
+
TestCaseExecution: test_case_execution_ee_1.TestCaseExecution,
|
|
109
|
+
ExecutionEntity: execution_entity_1.ExecutionEntity,
|
|
110
|
+
};
|
|
111
|
+
//# sourceMappingURL=index.js.map
|