prisma-nestjs-graphql 15.1.1 → 15.2.2
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/README.md +2 -2
- package/index.js +91 -6
- package/package.json +23 -23
package/README.md
CHANGED
|
@@ -66,9 +66,9 @@ Possible tokens:
|
|
|
66
66
|
|
|
67
67
|
#### `tsConfigFilePath`
|
|
68
68
|
|
|
69
|
-
Path to `tsconfig.json`
|
|
69
|
+
Path to `tsconfig.json` (absolute path or relative to current working directory)
|
|
70
70
|
Type: `string | undefined`
|
|
71
|
-
Default: `undefined`
|
|
71
|
+
Default: `tsconfig.json` if exists, `undefined` otherwise
|
|
72
72
|
|
|
73
73
|
#### `combineScalarFilters`
|
|
74
74
|
|
package/index.js
CHANGED
|
@@ -29,6 +29,7 @@ var import_lodash = require("lodash");
|
|
|
29
29
|
function pascalCase(string) {
|
|
30
30
|
return (0, import_lodash.startCase)((0, import_lodash.camelCase)(string)).replace(/ /g, "");
|
|
31
31
|
}
|
|
32
|
+
__name(pascalCase, "pascalCase");
|
|
32
33
|
|
|
33
34
|
// src/handlers/args-type.ts
|
|
34
35
|
function argsType(field, args) {
|
|
@@ -101,18 +102,21 @@ function argsType(field, args) {
|
|
|
101
102
|
classDecoratorName: "ArgsType"
|
|
102
103
|
});
|
|
103
104
|
}
|
|
105
|
+
__name(argsType, "argsType");
|
|
104
106
|
|
|
105
107
|
// src/handlers/combine-scalar-filters.ts
|
|
106
108
|
function combineScalarFilters(eventEmitter) {
|
|
107
109
|
eventEmitter.on("BeforeInputType", beforeInputType);
|
|
108
110
|
eventEmitter.on("BeforeGenerateField", beforeGenerateField);
|
|
109
111
|
}
|
|
112
|
+
__name(combineScalarFilters, "combineScalarFilters");
|
|
110
113
|
function beforeInputType(args) {
|
|
111
114
|
const { inputType: inputType2 } = args;
|
|
112
115
|
if (isContainBogus(inputType2.name) && isScalarFilter(inputType2)) {
|
|
113
116
|
inputType2.name = replaceBogus(String(inputType2.name));
|
|
114
117
|
}
|
|
115
118
|
}
|
|
119
|
+
__name(beforeInputType, "beforeInputType");
|
|
116
120
|
function beforeGenerateField(field) {
|
|
117
121
|
for (const fieldInput of field.inputTypes) {
|
|
118
122
|
if (fieldInput.location !== "inputObjectTypes") {
|
|
@@ -124,12 +128,15 @@ function beforeGenerateField(field) {
|
|
|
124
128
|
}
|
|
125
129
|
}
|
|
126
130
|
}
|
|
131
|
+
__name(beforeGenerateField, "beforeGenerateField");
|
|
127
132
|
function replaceBogus(name) {
|
|
128
133
|
return name.replace(/(Nullable|Nested)/g, "");
|
|
129
134
|
}
|
|
135
|
+
__name(replaceBogus, "replaceBogus");
|
|
130
136
|
function isContainBogus(name) {
|
|
131
137
|
return name.startsWith("Nested") || name.includes("Nullable") && name.endsWith("Filter") || name.endsWith("NullableFilter");
|
|
132
138
|
}
|
|
139
|
+
__name(isContainBogus, "isContainBogus");
|
|
133
140
|
function isScalarFilter(inputType2) {
|
|
134
141
|
if (!inputType2.name.endsWith("Filter")) {
|
|
135
142
|
return false;
|
|
@@ -146,6 +153,7 @@ function isScalarFilter(inputType2) {
|
|
|
146
153
|
}
|
|
147
154
|
return result;
|
|
148
155
|
}
|
|
156
|
+
__name(isScalarFilter, "isScalarFilter");
|
|
149
157
|
|
|
150
158
|
// src/handlers/create-aggregate-input.ts
|
|
151
159
|
function createAggregateInput(args) {
|
|
@@ -180,11 +188,13 @@ function createAggregateInput(args) {
|
|
|
180
188
|
classDecoratorName: "InputType"
|
|
181
189
|
});
|
|
182
190
|
}
|
|
191
|
+
__name(createAggregateInput, "createAggregateInput");
|
|
183
192
|
|
|
184
193
|
// src/handlers/emit-single.ts
|
|
185
194
|
function emitSingle(emitter) {
|
|
186
195
|
emitter.on("ClassProperty", classProperty);
|
|
187
196
|
}
|
|
197
|
+
__name(emitSingle, "emitSingle");
|
|
188
198
|
function classProperty(property, eventArguments) {
|
|
189
199
|
const { location, isList, propertyType } = eventArguments;
|
|
190
200
|
if ([
|
|
@@ -198,6 +208,7 @@ function classProperty(property, eventArguments) {
|
|
|
198
208
|
}
|
|
199
209
|
}
|
|
200
210
|
}
|
|
211
|
+
__name(classProperty, "classProperty");
|
|
201
212
|
|
|
202
213
|
// src/handlers/generate-files.ts
|
|
203
214
|
var import_assert = require("assert");
|
|
@@ -262,6 +273,7 @@ var ImportDeclarationMap = class extends Map {
|
|
|
262
273
|
}
|
|
263
274
|
}
|
|
264
275
|
};
|
|
276
|
+
__name(ImportDeclarationMap, "ImportDeclarationMap");
|
|
265
277
|
|
|
266
278
|
// src/handlers/generate-files.ts
|
|
267
279
|
async function generateFiles(args) {
|
|
@@ -364,6 +376,7 @@ async function generateFiles(args) {
|
|
|
364
376
|
await project.save();
|
|
365
377
|
}
|
|
366
378
|
}
|
|
379
|
+
__name(generateFiles, "generateFiles");
|
|
367
380
|
|
|
368
381
|
// src/handlers/input-type.ts
|
|
369
382
|
var import_assert2 = require("assert");
|
|
@@ -384,6 +397,7 @@ function fileTypeByLocation(fieldLocation) {
|
|
|
384
397
|
}
|
|
385
398
|
return "object";
|
|
386
399
|
}
|
|
400
|
+
__name(fileTypeByLocation, "fileTypeByLocation");
|
|
387
401
|
|
|
388
402
|
// src/helpers/relative-path.ts
|
|
389
403
|
var import_get_relative_path = __toESM(require("get-relative-path"));
|
|
@@ -403,6 +417,7 @@ function relativePath(from, to) {
|
|
|
403
417
|
}
|
|
404
418
|
return result;
|
|
405
419
|
}
|
|
420
|
+
__name(relativePath, "relativePath");
|
|
406
421
|
|
|
407
422
|
// src/helpers/get-graphql-import.ts
|
|
408
423
|
function getGraphqlImport(args) {
|
|
@@ -468,6 +483,7 @@ function getGraphqlImport(args) {
|
|
|
468
483
|
specifier
|
|
469
484
|
};
|
|
470
485
|
}
|
|
486
|
+
__name(getGraphqlImport, "getGraphqlImport");
|
|
471
487
|
|
|
472
488
|
// src/helpers/get-graphql-input-type.ts
|
|
473
489
|
var import_lodash2 = require("lodash");
|
|
@@ -517,6 +533,7 @@ function getGraphqlInputType(inputTypes, pattern) {
|
|
|
517
533
|
}
|
|
518
534
|
throw new TypeError(`Cannot get matching input type from ${inputTypes.map((x) => x.type).join(", ") || "zero length inputTypes"}`);
|
|
519
535
|
}
|
|
536
|
+
__name(getGraphqlInputType, "getGraphqlInputType");
|
|
520
537
|
|
|
521
538
|
// src/helpers/get-property-type.ts
|
|
522
539
|
function getPropertyType(args) {
|
|
@@ -584,6 +601,7 @@ function getPropertyType(args) {
|
|
|
584
601
|
"unknown"
|
|
585
602
|
];
|
|
586
603
|
}
|
|
604
|
+
__name(getPropertyType, "getPropertyType");
|
|
587
605
|
|
|
588
606
|
// src/helpers/property-structure.ts
|
|
589
607
|
var import_ts_morph3 = require("ts-morph");
|
|
@@ -600,6 +618,7 @@ function propertyStructure(args) {
|
|
|
600
618
|
leadingTrivia: "\n"
|
|
601
619
|
};
|
|
602
620
|
}
|
|
621
|
+
__name(propertyStructure, "propertyStructure");
|
|
603
622
|
|
|
604
623
|
// src/handlers/input-type.ts
|
|
605
624
|
function inputType(args) {
|
|
@@ -647,6 +666,9 @@ function inputType(args) {
|
|
|
647
666
|
field.inputTypes = field.inputTypes.filter((t) => !removeTypes.has(String(t.type)));
|
|
648
667
|
eventEmitter.emitSync("BeforeGenerateField", field, args);
|
|
649
668
|
const { inputTypes, isRequired, name } = field;
|
|
669
|
+
if (inputTypes.length === 0) {
|
|
670
|
+
continue;
|
|
671
|
+
}
|
|
650
672
|
const usePattern = (useInputType == null ? void 0 : useInputType.ALL) || (useInputType == null ? void 0 : useInputType[name]);
|
|
651
673
|
const graphqlInputType = getGraphqlInputType(inputTypes, usePattern);
|
|
652
674
|
const { isList, location, type } = graphqlInputType;
|
|
@@ -767,6 +789,7 @@ function inputType(args) {
|
|
|
767
789
|
]
|
|
768
790
|
});
|
|
769
791
|
}
|
|
792
|
+
__name(inputType, "inputType");
|
|
770
793
|
|
|
771
794
|
// src/helpers/object-settings.ts
|
|
772
795
|
var import_json52 = __toESM(require("json5"));
|
|
@@ -826,6 +849,7 @@ var ObjectSettings = class extends Array {
|
|
|
826
849
|
return resultArguments.map((x) => import_json52.default.stringify(x));
|
|
827
850
|
}
|
|
828
851
|
};
|
|
852
|
+
__name(ObjectSettings, "ObjectSettings");
|
|
829
853
|
function createObjectSettings(args) {
|
|
830
854
|
var _a, _b, _c, _d, _e;
|
|
831
855
|
const { config, text } = args;
|
|
@@ -898,6 +922,7 @@ function createObjectSettings(args) {
|
|
|
898
922
|
documentation: documentationLines.filter(Boolean).join("\\n") || void 0
|
|
899
923
|
};
|
|
900
924
|
}
|
|
925
|
+
__name(createObjectSettings, "createObjectSettings");
|
|
901
926
|
function customType(args) {
|
|
902
927
|
var _a;
|
|
903
928
|
const result = {};
|
|
@@ -920,6 +945,7 @@ function customType(args) {
|
|
|
920
945
|
}
|
|
921
946
|
return result;
|
|
922
947
|
}
|
|
948
|
+
__name(customType, "customType");
|
|
923
949
|
function hideFieldDecorator(match) {
|
|
924
950
|
var _a;
|
|
925
951
|
const result = {
|
|
@@ -953,6 +979,7 @@ function hideFieldDecorator(match) {
|
|
|
953
979
|
}
|
|
954
980
|
return result;
|
|
955
981
|
}
|
|
982
|
+
__name(hideFieldDecorator, "hideFieldDecorator");
|
|
956
983
|
function parseArgs(string) {
|
|
957
984
|
try {
|
|
958
985
|
return import_json52.default.parse(string);
|
|
@@ -964,6 +991,7 @@ function parseArgs(string) {
|
|
|
964
991
|
}
|
|
965
992
|
}
|
|
966
993
|
}
|
|
994
|
+
__name(parseArgs, "parseArgs");
|
|
967
995
|
function getNamespace(name) {
|
|
968
996
|
if (name === void 0) {
|
|
969
997
|
return void 0;
|
|
@@ -974,6 +1002,7 @@ function getNamespace(name) {
|
|
|
974
1002
|
}
|
|
975
1003
|
return result;
|
|
976
1004
|
}
|
|
1005
|
+
__name(getNamespace, "getNamespace");
|
|
977
1006
|
|
|
978
1007
|
// src/handlers/model-data.ts
|
|
979
1008
|
function modelData(model, args) {
|
|
@@ -996,6 +1025,7 @@ function modelData(model, args) {
|
|
|
996
1025
|
modelFieldsValue.set(field.name, field);
|
|
997
1026
|
}
|
|
998
1027
|
}
|
|
1028
|
+
__name(modelData, "modelData");
|
|
999
1029
|
|
|
1000
1030
|
// src/handlers/model-output-type.ts
|
|
1001
1031
|
var import_assert3 = require("assert");
|
|
@@ -1008,6 +1038,7 @@ var import_ts_morph5 = require("ts-morph");
|
|
|
1008
1038
|
function getOutputTypeName(name) {
|
|
1009
1039
|
return name.replace(/(?:OutputType|Output)$/, "");
|
|
1010
1040
|
}
|
|
1041
|
+
__name(getOutputTypeName, "getOutputTypeName");
|
|
1011
1042
|
|
|
1012
1043
|
// src/handlers/model-output-type.ts
|
|
1013
1044
|
var nestjsGraphql = "@nestjs/graphql";
|
|
@@ -1213,20 +1244,24 @@ function modelOutputType(outputType2, args) {
|
|
|
1213
1244
|
});
|
|
1214
1245
|
}
|
|
1215
1246
|
}
|
|
1247
|
+
__name(modelOutputType, "modelOutputType");
|
|
1216
1248
|
function shouldBeDecorated(setting) {
|
|
1217
1249
|
return setting.kind === "Decorator" && (setting.output || setting.model) && !(setting.output && setting.model);
|
|
1218
1250
|
}
|
|
1251
|
+
__name(shouldBeDecorated, "shouldBeDecorated");
|
|
1219
1252
|
function getExportDeclaration(name, statements) {
|
|
1220
1253
|
return statements.find((structure) => {
|
|
1221
1254
|
return structure.kind === import_ts_morph5.StructureKind.ExportDeclaration && structure.namedExports.some((o) => (o.alias || o.name) === name);
|
|
1222
1255
|
});
|
|
1223
1256
|
}
|
|
1257
|
+
__name(getExportDeclaration, "getExportDeclaration");
|
|
1224
1258
|
|
|
1225
1259
|
// src/handlers/no-atomic-operations.ts
|
|
1226
1260
|
function noAtomicOperations(eventEmitter) {
|
|
1227
1261
|
eventEmitter.on("BeforeInputType", beforeInputType2);
|
|
1228
1262
|
eventEmitter.on("BeforeGenerateFiles", beforeGenerateFiles);
|
|
1229
1263
|
}
|
|
1264
|
+
__name(noAtomicOperations, "noAtomicOperations");
|
|
1230
1265
|
function beforeInputType2(args) {
|
|
1231
1266
|
const { inputType: inputType1 } = args;
|
|
1232
1267
|
for (const field of inputType1.fields) {
|
|
@@ -1249,9 +1284,11 @@ function beforeGenerateFiles(args) {
|
|
|
1249
1284
|
}
|
|
1250
1285
|
}
|
|
1251
1286
|
}
|
|
1287
|
+
__name(beforeGenerateFiles, "beforeGenerateFiles");
|
|
1252
1288
|
function isAtomicOperation(name) {
|
|
1253
1289
|
return name.endsWith("FieldUpdateOperationsInput");
|
|
1254
1290
|
}
|
|
1291
|
+
__name(isAtomicOperation, "isAtomicOperation");
|
|
1255
1292
|
|
|
1256
1293
|
// src/handlers/output-type.ts
|
|
1257
1294
|
var import_assert4 = require("assert");
|
|
@@ -1405,6 +1442,7 @@ function outputType(outputType1, args) {
|
|
|
1405
1442
|
]
|
|
1406
1443
|
});
|
|
1407
1444
|
}
|
|
1445
|
+
__name(outputType, "outputType");
|
|
1408
1446
|
|
|
1409
1447
|
// src/handlers/purge-output.ts
|
|
1410
1448
|
var import_fs = require("fs");
|
|
@@ -1412,6 +1450,7 @@ function purgeOutput(emitter) {
|
|
|
1412
1450
|
emitter.on("Begin", begin);
|
|
1413
1451
|
emitter.on("End", end);
|
|
1414
1452
|
}
|
|
1453
|
+
__name(purgeOutput, "purgeOutput");
|
|
1415
1454
|
function begin({ project, output }) {
|
|
1416
1455
|
var _a;
|
|
1417
1456
|
const sourceFiles = (_a = project.getDirectory(output)) == null ? void 0 : _a.getDescendantSourceFiles();
|
|
@@ -1421,6 +1460,7 @@ function begin({ project, output }) {
|
|
|
1421
1460
|
}
|
|
1422
1461
|
}
|
|
1423
1462
|
}
|
|
1463
|
+
__name(begin, "begin");
|
|
1424
1464
|
async function end({ project, output }) {
|
|
1425
1465
|
var _a;
|
|
1426
1466
|
const directories = (_a = project.getDirectory(output)) == null ? void 0 : _a.getDescendantDirectories().filter((directory) => directory.getSourceFiles().length === 0).map((directory) => directory.getPath());
|
|
@@ -1431,6 +1471,7 @@ async function end({ project, output }) {
|
|
|
1431
1471
|
}
|
|
1432
1472
|
}
|
|
1433
1473
|
}
|
|
1474
|
+
__name(end, "end");
|
|
1434
1475
|
|
|
1435
1476
|
// src/handlers/re-export.ts
|
|
1436
1477
|
var import_ts_morph7 = require("ts-morph");
|
|
@@ -1444,6 +1485,7 @@ var ReExport;
|
|
|
1444
1485
|
function reExport(emitter) {
|
|
1445
1486
|
emitter.on("BeforeGenerateFiles", beforeGenerateFiles2);
|
|
1446
1487
|
}
|
|
1488
|
+
__name(reExport, "reExport");
|
|
1447
1489
|
function beforeGenerateFiles2(args) {
|
|
1448
1490
|
const { project, output, config } = args;
|
|
1449
1491
|
const rootDirectory = project.getDirectoryOrThrow(output);
|
|
@@ -1451,12 +1493,24 @@ function beforeGenerateFiles2(args) {
|
|
|
1451
1493
|
ReExport.Directories,
|
|
1452
1494
|
ReExport.All
|
|
1453
1495
|
].includes(config.reExport)) {
|
|
1454
|
-
for (const directory of rootDirectory.
|
|
1496
|
+
for (const directory of rootDirectory.getDescendantDirectories()) {
|
|
1497
|
+
let indexSourceFile;
|
|
1455
1498
|
const exportDeclarations = directory.getSourceFiles().filter((sourceFile) => {
|
|
1456
1499
|
return sourceFile.getBaseName() !== "index.ts";
|
|
1457
1500
|
}).map((sourcesFile) => getExportDeclaration2(directory, sourcesFile));
|
|
1458
|
-
|
|
1459
|
-
|
|
1501
|
+
if (exportDeclarations.length > 0) {
|
|
1502
|
+
indexSourceFile = directory.createSourceFile("index.ts", {
|
|
1503
|
+
statements: exportDeclarations
|
|
1504
|
+
}, {
|
|
1505
|
+
overwrite: true
|
|
1506
|
+
});
|
|
1507
|
+
}
|
|
1508
|
+
if (indexSourceFile) {
|
|
1509
|
+
continue;
|
|
1510
|
+
}
|
|
1511
|
+
const namespaceExportDeclarations = directory.getDirectories().map((sourceDirectory) => getNamespaceExportDeclaration(directory, sourceDirectory));
|
|
1512
|
+
project.createSourceFile(`${directory.getPath()}/index.ts`, {
|
|
1513
|
+
statements: namespaceExportDeclarations
|
|
1460
1514
|
}, {
|
|
1461
1515
|
overwrite: true
|
|
1462
1516
|
});
|
|
@@ -1496,6 +1550,13 @@ function getExportDeclaration2(directory, sourceFile) {
|
|
|
1496
1550
|
};
|
|
1497
1551
|
}
|
|
1498
1552
|
__name(getExportDeclaration2, "getExportDeclaration");
|
|
1553
|
+
function getNamespaceExportDeclaration(directory, sourceDirectory) {
|
|
1554
|
+
return {
|
|
1555
|
+
kind: import_ts_morph7.StructureKind.ExportDeclaration,
|
|
1556
|
+
moduleSpecifier: directory.getRelativePathAsModuleSpecifierTo(sourceDirectory)
|
|
1557
|
+
};
|
|
1558
|
+
}
|
|
1559
|
+
__name(getNamespaceExportDeclaration, "getNamespaceExportDeclaration");
|
|
1499
1560
|
|
|
1500
1561
|
// src/handlers/register-enum.ts
|
|
1501
1562
|
var import_ts_morph8 = require("ts-morph");
|
|
@@ -1533,11 +1594,13 @@ function registerEnum(enumType, args) {
|
|
|
1533
1594
|
]
|
|
1534
1595
|
});
|
|
1535
1596
|
}
|
|
1597
|
+
__name(registerEnum, "registerEnum");
|
|
1536
1598
|
|
|
1537
1599
|
// src/handlers/require-single-fields-in-whereunique-input.ts
|
|
1538
1600
|
function requireSingleFieldsInWhereUniqueInput(eventEmitter) {
|
|
1539
1601
|
eventEmitter.on("BeforeInputType", beforeInputType3);
|
|
1540
1602
|
}
|
|
1603
|
+
__name(requireSingleFieldsInWhereUniqueInput, "requireSingleFieldsInWhereUniqueInput");
|
|
1541
1604
|
function beforeInputType3(args) {
|
|
1542
1605
|
const { inputType: inputType2 } = args;
|
|
1543
1606
|
if (!isWhereUniqueInputType(inputType2.name) || inputType2.fields.length !== 1) {
|
|
@@ -1552,6 +1615,7 @@ __name(beforeInputType3, "beforeInputType");
|
|
|
1552
1615
|
function isWhereUniqueInputType(name) {
|
|
1553
1616
|
return name.endsWith("WhereUniqueInput");
|
|
1554
1617
|
}
|
|
1618
|
+
__name(isWhereUniqueInputType, "isWhereUniqueInputType");
|
|
1555
1619
|
|
|
1556
1620
|
// src/handlers/warning.ts
|
|
1557
1621
|
function warning(message) {
|
|
@@ -1562,11 +1626,13 @@ function warning(message) {
|
|
|
1562
1626
|
console.log("prisma-nestjs-graphql:", message);
|
|
1563
1627
|
}
|
|
1564
1628
|
}
|
|
1629
|
+
__name(warning, "warning");
|
|
1565
1630
|
|
|
1566
1631
|
// src/helpers/create-config.ts
|
|
1567
1632
|
var import_assert5 = require("assert");
|
|
1568
1633
|
var import_filenamify = __toESM(require("filenamify"));
|
|
1569
1634
|
var import_flat = require("flat");
|
|
1635
|
+
var import_fs2 = require("fs");
|
|
1570
1636
|
var import_json55 = __toESM(require("json5"));
|
|
1571
1637
|
var import_lodash7 = require("lodash");
|
|
1572
1638
|
var import_outmatch3 = __toESM(require("outmatch"));
|
|
@@ -1628,7 +1694,7 @@ function createConfig(data) {
|
|
|
1628
1694
|
}
|
|
1629
1695
|
return {
|
|
1630
1696
|
outputFilePattern,
|
|
1631
|
-
tsConfigFilePath:
|
|
1697
|
+
tsConfigFilePath: createTsConfigFilePathValue(config.tsConfigFilePath),
|
|
1632
1698
|
combineScalarFilters: toBoolean(config.combineScalarFilters),
|
|
1633
1699
|
noAtomicOperations: toBoolean(config.noAtomicOperations),
|
|
1634
1700
|
reExport: ReExport[String(config.reExport)] || ReExport.None,
|
|
@@ -1644,6 +1710,17 @@ function createConfig(data) {
|
|
|
1644
1710
|
decorate
|
|
1645
1711
|
};
|
|
1646
1712
|
}
|
|
1713
|
+
__name(createConfig, "createConfig");
|
|
1714
|
+
var tsConfigFileExists = (0, import_lodash7.memoize)((filePath) => {
|
|
1715
|
+
return (0, import_fs2.existsSync)(filePath);
|
|
1716
|
+
});
|
|
1717
|
+
function createTsConfigFilePathValue(value) {
|
|
1718
|
+
if (typeof value === "string")
|
|
1719
|
+
return value;
|
|
1720
|
+
if (tsConfigFileExists("tsconfig.json"))
|
|
1721
|
+
return "tsconfig.json";
|
|
1722
|
+
}
|
|
1723
|
+
__name(createTsConfigFilePathValue, "createTsConfigFilePathValue");
|
|
1647
1724
|
function createUseInputType(data) {
|
|
1648
1725
|
if (!data) {
|
|
1649
1726
|
return [];
|
|
@@ -1665,6 +1742,7 @@ function createUseInputType(data) {
|
|
|
1665
1742
|
}
|
|
1666
1743
|
return result;
|
|
1667
1744
|
}
|
|
1745
|
+
__name(createUseInputType, "createUseInputType");
|
|
1668
1746
|
function toBoolean(value) {
|
|
1669
1747
|
return [
|
|
1670
1748
|
"true",
|
|
@@ -1672,6 +1750,7 @@ function toBoolean(value) {
|
|
|
1672
1750
|
"on"
|
|
1673
1751
|
].includes(String(value));
|
|
1674
1752
|
}
|
|
1753
|
+
__name(toBoolean, "toBoolean");
|
|
1675
1754
|
|
|
1676
1755
|
// src/helpers/generate-file-name.ts
|
|
1677
1756
|
var import_lodash8 = require("lodash");
|
|
@@ -1706,11 +1785,12 @@ function generateFileName(args) {
|
|
|
1706
1785
|
}
|
|
1707
1786
|
});
|
|
1708
1787
|
}
|
|
1788
|
+
__name(generateFileName, "generateFileName");
|
|
1709
1789
|
|
|
1710
1790
|
// src/helpers/factory-get-source-file.ts
|
|
1711
1791
|
function factoryGetSourceFile(args1) {
|
|
1712
1792
|
const { outputFilePattern, output, getModelName: getModelName2, project } = args1;
|
|
1713
|
-
return function getSourceFile(args) {
|
|
1793
|
+
return /* @__PURE__ */ __name(function getSourceFile(args) {
|
|
1714
1794
|
const { name, type } = args;
|
|
1715
1795
|
let filePath = generateFileName({
|
|
1716
1796
|
getModelName: getModelName2,
|
|
@@ -1722,8 +1802,9 @@ function factoryGetSourceFile(args1) {
|
|
|
1722
1802
|
return project.getSourceFile(filePath) || project.createSourceFile(filePath, void 0, {
|
|
1723
1803
|
overwrite: true
|
|
1724
1804
|
});
|
|
1725
|
-
};
|
|
1805
|
+
}, "getSourceFile");
|
|
1726
1806
|
}
|
|
1807
|
+
__name(factoryGetSourceFile, "factoryGetSourceFile");
|
|
1727
1808
|
|
|
1728
1809
|
// src/helpers/get-model-name.ts
|
|
1729
1810
|
var import_lodash9 = require("lodash");
|
|
@@ -1735,7 +1816,9 @@ function createGetModelName(modelNames) {
|
|
|
1735
1816
|
name
|
|
1736
1817
|
});
|
|
1737
1818
|
}
|
|
1819
|
+
__name(tryGetName, "tryGetName");
|
|
1738
1820
|
}
|
|
1821
|
+
__name(createGetModelName, "createGetModelName");
|
|
1739
1822
|
function getModelName(args) {
|
|
1740
1823
|
const { name, modelNames } = args;
|
|
1741
1824
|
for (const keyword of splitKeywords) {
|
|
@@ -1773,6 +1856,7 @@ function getModelName(args) {
|
|
|
1773
1856
|
}
|
|
1774
1857
|
return void 0;
|
|
1775
1858
|
}
|
|
1859
|
+
__name(getModelName, "getModelName");
|
|
1776
1860
|
var splitKeywords = [
|
|
1777
1861
|
"CreateInput",
|
|
1778
1862
|
"CreateMany",
|
|
@@ -2003,6 +2087,7 @@ async function generate(args) {
|
|
|
2003
2087
|
eventEmitter.off(name);
|
|
2004
2088
|
}
|
|
2005
2089
|
}
|
|
2090
|
+
__name(generate, "generate");
|
|
2006
2091
|
|
|
2007
2092
|
// src/index.ts
|
|
2008
2093
|
(0, import_generator_helper.generatorHandler)({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prisma-nestjs-graphql",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.2.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Generate object types, inputs, args, etc. from prisma schema file for usage with @nestjs/graphql module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@nestjs/apollo": "^10.0.
|
|
55
|
-
"@prisma/generator-helper": "^3.
|
|
54
|
+
"@nestjs/apollo": "^10.0.8",
|
|
55
|
+
"@prisma/generator-helper": "^3.12.0",
|
|
56
56
|
"await-event-emitter": "^2.0.2",
|
|
57
57
|
"filenamify": "4.X",
|
|
58
58
|
"flat": "^5.0.2",
|
|
59
59
|
"get-relative-path": "^1.0.2",
|
|
60
|
-
"json5": "^2.2.
|
|
60
|
+
"json5": "^2.2.1",
|
|
61
61
|
"lodash": "^4.17.21",
|
|
62
62
|
"outmatch": "^0.7.0",
|
|
63
63
|
"pluralize": "^8.0.0",
|
|
@@ -67,53 +67,53 @@
|
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@commitlint/cli": "^16.2.3",
|
|
69
69
|
"@commitlint/config-conventional": "^16.2.1",
|
|
70
|
-
"@nestjs/common": "^8.4.
|
|
71
|
-
"@nestjs/core": "^8.4.
|
|
72
|
-
"@nestjs/graphql": "^10.0.
|
|
73
|
-
"@nestjs/platform-express": "^8.4.
|
|
70
|
+
"@nestjs/common": "^8.4.4",
|
|
71
|
+
"@nestjs/core": "^8.4.4",
|
|
72
|
+
"@nestjs/graphql": "^10.0.8",
|
|
73
|
+
"@nestjs/platform-express": "^8.4.4",
|
|
74
74
|
"@paljs/plugins": "^4.0.18",
|
|
75
|
-
"@prisma/client": "^3.
|
|
75
|
+
"@prisma/client": "^3.12.0",
|
|
76
76
|
"@semantic-release/changelog": "^6.0.1",
|
|
77
77
|
"@semantic-release/git": "^10.0.1",
|
|
78
|
-
"@swc/core": "^1.2.
|
|
78
|
+
"@swc/core": "^1.2.165",
|
|
79
79
|
"@swc/helpers": "^0.3.8",
|
|
80
80
|
"@swc/register": "^0.1.10",
|
|
81
81
|
"@types/flat": "^5.0.2",
|
|
82
|
-
"@types/lodash": "^4.14.
|
|
82
|
+
"@types/lodash": "^4.14.181",
|
|
83
83
|
"@types/mocha": "^9.1.0",
|
|
84
|
-
"@types/node": "^17.0.
|
|
84
|
+
"@types/node": "^17.0.23",
|
|
85
85
|
"@types/pluralize": "^0.0.29",
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
87
|
-
"@typescript-eslint/parser": "^5.
|
|
88
|
-
"apollo-server-express": "^3.6.
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
87
|
+
"@typescript-eslint/parser": "^5.19.0",
|
|
88
|
+
"apollo-server-express": "^3.6.7",
|
|
89
89
|
"c8": "^7.11.0",
|
|
90
90
|
"class-transformer": "^0.5.1",
|
|
91
91
|
"class-validator": "^0.13.2",
|
|
92
92
|
"commitizen": "^4.2.4",
|
|
93
93
|
"cz-customizable": "^6.3.0",
|
|
94
94
|
"decimal.js": "^10.3.1",
|
|
95
|
-
"eslint": "^8.
|
|
95
|
+
"eslint": "^8.13.0",
|
|
96
96
|
"eslint-import-resolver-node": "^0.3.6",
|
|
97
97
|
"eslint-plugin-etc": "^2.0.2",
|
|
98
|
-
"eslint-plugin-import": "^2.
|
|
98
|
+
"eslint-plugin-import": "^2.26.0",
|
|
99
99
|
"eslint-plugin-only-warn": "^1.0.3",
|
|
100
100
|
"eslint-plugin-prettier": "^4.0.0",
|
|
101
|
-
"eslint-plugin-regexp": "^1.
|
|
101
|
+
"eslint-plugin-regexp": "^1.6.0",
|
|
102
102
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
103
103
|
"eslint-plugin-sort-class-members": "^1.14.1",
|
|
104
|
-
"eslint-plugin-unicorn": "^
|
|
104
|
+
"eslint-plugin-unicorn": "^42.0.0",
|
|
105
105
|
"eslint-plugin-wix-editor": "^3.3.0",
|
|
106
106
|
"expect": "^27.5.1",
|
|
107
107
|
"ghooks": "^2.0.4",
|
|
108
108
|
"git-branch-is": "^4.0.0",
|
|
109
109
|
"graphql": "^16.3.0",
|
|
110
|
-
"graphql-scalars": "^1.
|
|
110
|
+
"graphql-scalars": "^1.17.0",
|
|
111
111
|
"graphql-type-json": "^0.3.2",
|
|
112
112
|
"mocha": "^9.2.2",
|
|
113
113
|
"ololog": "^1.1.175",
|
|
114
114
|
"precise-commits": "^1.0.2",
|
|
115
|
-
"prettier": "^2.6.
|
|
116
|
-
"prisma": "^3.
|
|
115
|
+
"prettier": "^2.6.2",
|
|
116
|
+
"prisma": "^3.12.0",
|
|
117
117
|
"prisma-graphql-type-decimal": "^2.0.0",
|
|
118
118
|
"reflect-metadata": "^0.1.13",
|
|
119
119
|
"request": "^2.88.2",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"ts-node": "^10.7.0",
|
|
125
125
|
"ts-node-dev": "^1.1.8",
|
|
126
126
|
"tslib": "^2.3.1",
|
|
127
|
-
"typescript": "^4.6.
|
|
127
|
+
"typescript": "^4.6.3",
|
|
128
128
|
"watchexec-bin": "^1.0.0"
|
|
129
129
|
}
|
|
130
130
|
}
|