cormo-graphql
Advanced tools
Comparing version 0.4.0 to 0.4.2
@@ -15,4 +15,16 @@ module.exports = { | ||
ignorePatterns: [ | ||
'.eslintrc.js', | ||
'lib/', | ||
], | ||
rules: { | ||
"@typescript-eslint/no-unsafe-call": "off", | ||
"@typescript-eslint/no-unsafe-member-access": "off", | ||
"@typescript-eslint/no-unsafe-assignment": "off", | ||
"@typescript-eslint/no-unsafe-return": "off", | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"@typescript-eslint/no-floating-promises": "off", | ||
"@typescript-eslint/restrict-template-expressions": "off", | ||
"@typescript-eslint/restrict-plus-operands": "off", | ||
"@typescript-eslint/ban-types": "off", | ||
}, | ||
}; |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Index = exports.BelongsTo = exports.HasOne = exports.HasMany = exports.ObjectColumn = exports.Column = exports.Model = void 0; | ||
const cormo = __importStar(require("cormo")); | ||
@@ -11,0 +24,0 @@ function Model(options = {}) { |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./decorators")); | ||
__export(require("./schema")); | ||
__exportStar(require("./decorators"), exports); | ||
__exportStar(require("./schema"), exports); |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
@@ -13,2 +25,3 @@ }; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.createDefaultCrudSchema = void 0; | ||
const crary_graphql_1 = require("@croquiscom/crary-graphql"); | ||
@@ -15,0 +28,0 @@ const cormo = __importStar(require("cormo")); |
{ | ||
"name": "cormo-graphql", | ||
"version": "0.4.0", | ||
"version": "0.4.2", | ||
"description": "GraphQL support for CORMO", | ||
@@ -28,21 +28,21 @@ "main": "./lib", | ||
"@croquiscom/crary-graphql": "^0.4.0", | ||
"cormo": "^0.14.12", | ||
"graphql": "^15.0.0", | ||
"lodash": "^4.17.15" | ||
"cormo": "^0.14.14", | ||
"graphql": "^15.3.0", | ||
"lodash": "^4.17.19" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.2.11", | ||
"@types/lodash": "^4.14.150", | ||
"@types/mocha": "^7.0.2", | ||
"@types/node": "^13.13.5", | ||
"@types/sinon": "^9.0.0", | ||
"@types/chai": "^4.2.12", | ||
"@types/lodash": "^4.14.158", | ||
"@types/mocha": "^8.0.0", | ||
"@types/node": "^14.0.25", | ||
"@types/sinon": "^9.0.4", | ||
"chai": "^4.2.0", | ||
"mocha": "^7.1.2", | ||
"mocha": "^8.0.1", | ||
"mysql": "^2.18.1", | ||
"rimraf": "^3.0.2", | ||
"sinon": "^9.0.2", | ||
"ts-node": "^8.10.1", | ||
"typescript": "^3.8.3" | ||
"ts-node": "^8.10.2", | ||
"typescript": "^3.9.7" | ||
}, | ||
"gitHead": "f5764b2fd2a4f200a1c4760d03b1f59d0348820d" | ||
"gitHead": "411aa0a0f85de42f508fafbcca6985c6b0a12f77" | ||
} |
24563
598
Updatedcormo@^0.14.14
Updatedgraphql@^15.3.0
Updatedlodash@^4.17.19