@contember/engine-common
Advanced tools
Comparing version 0.7.6 to 0.8.0-0.8.0-alpha.1.0
@@ -1,4 +0,3 @@ | ||
export * from './Database'; | ||
export * from './validation'; | ||
export * from './Project'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -24,3 +24,3 @@ import { EventType } from './EventType'; | ||
readonly transactionId: string; | ||
readonly rowId: string; | ||
readonly rowId: string[]; | ||
readonly tableName: string; | ||
@@ -31,3 +31,3 @@ readonly values: { | ||
readonly type = EventType.update; | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string, tableName: string, values: { | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string[], tableName: string, values: { | ||
[column: string]: any; | ||
@@ -41,3 +41,3 @@ }); | ||
readonly transactionId: string; | ||
readonly rowId: string; | ||
readonly rowId: string[]; | ||
readonly tableName: string; | ||
@@ -48,3 +48,3 @@ readonly values: { | ||
readonly type = EventType.create; | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string, tableName: string, values: { | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string[], tableName: string, values: { | ||
[column: string]: any; | ||
@@ -58,7 +58,7 @@ }); | ||
readonly transactionId: string; | ||
readonly rowId: string; | ||
readonly rowId: string[]; | ||
readonly tableName: string; | ||
readonly type = EventType.delete; | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string, tableName: string); | ||
constructor(id: string, createdAt: Date, identityId: string, transactionId: string, rowId: string[], tableName: string); | ||
} | ||
//# sourceMappingURL=Event.d.ts.map |
@@ -1,6 +0,4 @@ | ||
export * from './auth/Identity'; | ||
export * from './config'; | ||
export * from './migrations'; | ||
export * from './graphql'; | ||
export * from './events'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -6,6 +6,4 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./auth/Identity")); | ||
__export(require("./config")); | ||
__export(require("./migrations")); | ||
__export(require("./events")); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@contember/engine-common", | ||
"version": "0.7.6", | ||
"version": "0.8.0-0.8.0-alpha.1.0", | ||
"license": "Apache-2.0", | ||
@@ -9,7 +9,7 @@ "main": "dist/src/index.js", | ||
"devDependencies": { | ||
"@types/node": "^12.11.7", | ||
"@types/node": "^13.11.1", | ||
"graphql": "^14.6.0", | ||
"typescript": "^3.7.4" | ||
}, | ||
"gitHead": "f00cc29cd1f3c0990faeda439f941d682f8bd8df" | ||
"gitHead": "30e5444c6dfaa449d41b4f1c1f14fb8ada28ed7a" | ||
} |
@@ -1,3 +0,2 @@ | ||
export * from './Database' | ||
export * from './validation' | ||
export * from './Project' |
@@ -34,3 +34,3 @@ import { EventType } from './EventType' | ||
public readonly transactionId: string, | ||
public readonly rowId: string, | ||
public readonly rowId: string[], | ||
public readonly tableName: string, | ||
@@ -49,3 +49,3 @@ public readonly values: { [column: string]: any }, | ||
public readonly transactionId: string, | ||
public readonly rowId: string, | ||
public readonly rowId: string[], | ||
public readonly tableName: string, | ||
@@ -64,5 +64,5 @@ public readonly values: { [column: string]: any }, | ||
public readonly transactionId: string, | ||
public readonly rowId: string, | ||
public readonly rowId: string[], | ||
public readonly tableName: string, | ||
) {} | ||
} |
@@ -1,5 +0,3 @@ | ||
export * from './auth/Identity' | ||
export * from './config' | ||
export * from './migrations' | ||
export * from './graphql' | ||
export * from './events' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1
265388
57
393