@mcma/data
Advanced tools
Comparing version 0.16.17 to 0.16.18
export * from "./lib"; |
@@ -0,0 +0,0 @@ "use strict"; |
import { ConfigVariables } from "@mcma/core"; | ||
export declare function getTableName(configVariables?: ConfigVariables): string; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { Logger } from "@mcma/core"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { DocumentDatabaseTable } from "./document-database-table"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { Query } from "./query/query"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export type DocumentType<T> = string | (new (...args: any[]) => T); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export type Document = { | ||
[key: string]: any; | ||
}; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ export * from "./config-variables-ext"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { Document } from "../document"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { BinaryOperator, LogicalOperator } from "./operator"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { FilterExpression } from "./filter"; |
@@ -0,0 +0,0 @@ "use strict"; |
export type BinaryOperator = "=" | "!=" | "<" | "<=" | ">" | ">="; | ||
export type LogicalOperator = "||" | "&&"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { Document } from "../document"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { FilterExpression } from "./filter"; |
@@ -8,2 +8,2 @@ "use strict"; | ||
QuerySortOrder["Descending"] = "desc"; | ||
})(QuerySortOrder = exports.QuerySortOrder || (exports.QuerySortOrder = {})); | ||
})(QuerySortOrder || (exports.QuerySortOrder = QuerySortOrder = {})); |
export * from "./document-database/index"; |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "@mcma/data", | ||
"version": "0.16.17", | ||
"version": "0.16.18", | ||
"description": "Node module with helper utils for dealing with data in the EBU MCMA framework", | ||
"engines": { | ||
"node": "^18.0.0" | ||
"node": ">=18.0.0" | ||
}, | ||
@@ -32,9 +32,9 @@ "type": "commonjs", | ||
"peerDependencies": { | ||
"@mcma/core": "0.16.17" | ||
"@mcma/core": "0.16.18" | ||
}, | ||
"devDependencies": { | ||
"@mcma/core": "0.16.17", | ||
"@types/node": "^18.15.10", | ||
"@mcma/core": "0.16.18", | ||
"@types/node": "^18.19.34", | ||
"jasmine": "^3.3.1" | ||
} | ||
} |
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
15777