@snowtop/ent 0.1.0-alpha98-dd4b3a20-9958-11ed-b8bd-fb8b6537b3bc → 0.1.0-alpha98-7e7c66e0-9b7e-11ed-8ad2-4d9852e6a609
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/core/config.d.ts +1 -1
- package/package.json +1 -1
- package/scripts/custom_graphql.js +1 -1
package/core/config.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export interface Config {
|
|
|
21
21
|
codegen?: CodegenConfig;
|
|
22
22
|
logQueryWithError?: boolean;
|
|
23
23
|
customGraphQLJSONPath?: string;
|
|
24
|
-
|
|
24
|
+
dynamicScriptCustomGraphQLJSONPath?: string;
|
|
25
25
|
globalSchemaPath?: string;
|
|
26
26
|
}
|
|
27
27
|
interface CodegenConfig {
|
package/package.json
CHANGED
|
@@ -397,7 +397,7 @@ async function main() {
|
|
|
397
397
|
};
|
|
398
398
|
const buildClasses = (fields) => {
|
|
399
399
|
fields.forEach((field) => {
|
|
400
|
-
if (!nodesMap.has(field.nodeName)) {
|
|
400
|
+
if (field.nodeName && !nodesMap.has(field.nodeName)) {
|
|
401
401
|
let info = imports.getInfoForClass(field.nodeName);
|
|
402
402
|
classes[field.nodeName] = { ...info.class, path: info.file.path };
|
|
403
403
|
buildFiles(info.file);
|