@izara_project/izara-market-library-service-schemas 1.0.79 → 1.0.80
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/package.json +1 -1
- package/src/reStructure/GenerateSchema.js +1 -1
- package/src/reStructure/GenerateTests.js +1 -1
- package/src/reStructure/TemplateData/EndpointPerService/handler/sqs/template.ejs +1 -1
- package/src/reStructure/TemplateData/EndpointPerService/mainFunction/create/template.ejs +4 -1
- package/src/reStructure/TemplateData/flowSchema/flowSchemaMainFunction/template.ejs +3 -3
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ import { validatePathWithRootServicePath } from "./libs/GenerateCodeLibs.js";
|
|
|
25
25
|
import { schemaConfig } from "./SchemaConfig.js";
|
|
26
26
|
|
|
27
27
|
// SourceManager
|
|
28
|
-
import { utils, createSource } from "../SourceManager";
|
|
28
|
+
import { utils, createSource } from "../SourceManager/index.js";
|
|
29
29
|
const { deleteFileInDir } = utils
|
|
30
30
|
|
|
31
31
|
|
|
@@ -27,7 +27,7 @@ import { readFileSync } from "fs";
|
|
|
27
27
|
import { utils, createSource } from "../SourceManager/index.js";
|
|
28
28
|
const { deleteFileInDir } = utils
|
|
29
29
|
import generateTest from './TemplateData/IntTest/generateTests/generateTemplate.js'
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
import lib from '../reStructure/TemplateData/IntTest/libs/libs.js';
|
|
32
32
|
const { getLocalConfig } = lib;
|
|
33
33
|
async function generateCodeWithTemplate(_izContext, savePath, settings) {
|
|
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
20
20
|
import { middlewareHandler } from "@izara_project/izara-middleware";
|
|
21
21
|
import callingFlowSharedLib from '@izara_project/izara-core-library-calling-flow';
|
|
22
22
|
import Logger from '@izara_project/izara-core-library-logger';
|
|
23
|
-
import recordHandlerSharedLib from '@izara_project/izara-core-library-record-handler';
|
|
23
|
+
import { recordHandlerSharedLib } from '@izara_project/izara-core-library-record-handler';
|
|
24
24
|
import { generateCodeLibs } from '@izara_project/izara-market-library-service-schemas';
|
|
25
25
|
|
|
26
26
|
//(<optionalRequire>)
|
|
@@ -47,7 +47,8 @@ import { createNodeLib, uploadUseCase, consts, getObjectSchema } from '@izara_pr
|
|
|
47
47
|
import graphSharedLibs from '@izara_project/izara-core-library-graph-service';
|
|
48
48
|
|
|
49
49
|
// ──────────────────────── Market Library Service Schemas ────────────────────────
|
|
50
|
-
import { constsGenerateCodeLibs, generateCodeLibs } from '@izara_project/izara-market-library-service-schemas';
|
|
50
|
+
import { constsGenerateCodeLibs, generateCodeLibs, mainLibUtils } from '@izara_project/izara-market-library-service-schemas';
|
|
51
|
+
|
|
51
52
|
const {
|
|
52
53
|
TOPIC_NAME_GENERATE_CODE,
|
|
53
54
|
TOPIC_NAME_GRAPH_HANDLER
|
|
@@ -55,6 +56,8 @@ const {
|
|
|
55
56
|
|
|
56
57
|
const { dynamoDbIdentifiersByStorageResource, createDataDetailsLib } = generateCodeLibs
|
|
57
58
|
|
|
59
|
+
const { firstLetterUpperCase } = mainLibUtils;
|
|
60
|
+
|
|
58
61
|
//(<optionalRequire>)
|
|
59
62
|
//(</optionalRequire>)
|
|
60
63
|
|
|
@@ -30,11 +30,11 @@ import { NoRetryError } from '@izara_project/izara-core-library-core';
|
|
|
30
30
|
import { utils} from '@izara_project/izara-core-library-service-schemas';
|
|
31
31
|
const { createFlowTypeConcat } = utils;
|
|
32
32
|
<% if (statusType === "triggerCache") { -%>
|
|
33
|
-
import
|
|
33
|
+
import triggeredCacheSharedLibV2 from '@izara_project/izara-core-library-trigger-cache';
|
|
34
34
|
<% } else if (statusType === "statusField") { -%>
|
|
35
|
-
import statusFieldSharedLib from '@izara_project/izara-core-library-status-field'
|
|
35
|
+
import statusFieldSharedLib from '@izara_project/izara-core-library-status-field';
|
|
36
36
|
<% } else if (statusType === "storedCache") { -%>
|
|
37
|
-
import storedCacheSharedLib from '@izara_project/izara-core-library-stored-cache'
|
|
37
|
+
import storedCacheSharedLib from '@izara_project/izara-core-library-stored-cache';
|
|
38
38
|
<% } -%>
|
|
39
39
|
|
|
40
40
|
//(<optionalRequire>)
|