@contember/engine-common
Advanced tools
Comparing version 0.8.0-alpha.0 to 0.8.0-alpha.1
@@ -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,2 +0,1 @@ | ||
export * from './auth/Identity'; | ||
export * from './config'; | ||
@@ -3,0 +2,0 @@ export * from './graphql'; |
@@ -6,5 +6,4 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./auth/Identity")); | ||
__export(require("./config")); | ||
__export(require("./events")); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@contember/engine-common", | ||
"version": "0.8.0-alpha.0", | ||
"version": "0.8.0-alpha.1", | ||
"license": "Apache-2.0", | ||
@@ -13,3 +13,3 @@ "main": "dist/src/index.js", | ||
}, | ||
"gitHead": "e8480ed2e4f612537e229c6017565ec43917618e" | ||
"gitHead": "c20d28db4163768b7e479fabf8ffb2d15a7fc153" | ||
} |
@@ -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,4 +0,3 @@ | ||
export * from './auth/Identity' | ||
export * from './config' | ||
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
265380
57
393
49