rez_core 4.0.199 → 4.0.202
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/dist/core.module.js +3 -0
- package/dist/core.module.js.map +1 -1
- package/dist/module/entity_json/controller/entity_json.controller.d.ts +11 -1
- package/dist/module/entity_json/controller/entity_json.controller.js +14 -0
- package/dist/module/entity_json/controller/entity_json.controller.js.map +1 -1
- package/dist/module/entity_json/entity/entityJson.entity.d.ts +10 -0
- package/dist/module/entity_json/entity/entityJson.entity.js +55 -0
- package/dist/module/entity_json/entity/entityJson.entity.js.map +1 -0
- package/dist/module/entity_json/entity_json.module.js +2 -1
- package/dist/module/entity_json/entity_json.module.js.map +1 -1
- package/dist/module/entity_json/service/entity_json.service.d.ts +11 -3
- package/dist/module/entity_json/service/entity_json.service.js +92 -49
- package/dist/module/entity_json/service/entity_json.service.js.map +1 -1
- package/dist/module/meta/controller/attribute-master.controller.d.ts +2 -3
- package/dist/module/meta/controller/attribute-master.controller.js +2 -12
- package/dist/module/meta/controller/attribute-master.controller.js.map +1 -1
- package/dist/module/meta/entity/attribute-master.entity.d.ts +1 -0
- package/dist/module/meta/entity/attribute-master.entity.js +4 -0
- package/dist/module/meta/entity/attribute-master.entity.js.map +1 -1
- package/dist/table.config.d.ts +2 -1
- package/dist/table.config.js +4 -6
- package/dist/table.config.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/core.module.ts +3 -0
- package/src/module/entity_json/controller/entity_json.controller.ts +14 -14
- package/src/module/entity_json/entity/entityJson.entity.ts +39 -0
- package/src/module/entity_json/entity_json.module.ts +2 -1
- package/src/module/entity_json/service/entity_json.service.ts +151 -99
- package/src/module/meta/controller/attribute-master.controller.ts +11 -13
- package/src/module/meta/entity/attribute-master.entity.ts +3 -0
- package/src/resources/dev.properties.yaml +1 -1
- package/src/table.config.ts +4 -6
- package/.vscode/extensions.json +0 -5
package/dist/table.config.js
CHANGED
|
@@ -6,6 +6,7 @@ const widget_master_entity_1 = require("./module/dashboard/entity/widget_master.
|
|
|
6
6
|
const enterprise_entity_1 = require("./module/enterprise/entity/enterprise.entity");
|
|
7
7
|
const organization_app_mapping_entity_1 = require("./module/enterprise/entity/organization-app-mapping.entity");
|
|
8
8
|
const organization_entity_1 = require("./module/enterprise/entity/organization.entity");
|
|
9
|
+
const entityJson_entity_1 = require("./module/entity_json/entity/entityJson.entity");
|
|
9
10
|
const saved_filter_detail_entity_1 = require("./module/filter/entity/saved-filter-detail.entity");
|
|
10
11
|
const saved_filter_master_entity_1 = require("./module/filter/entity/saved-filter-master.entity");
|
|
11
12
|
const integration_config_entity_1 = require("./module/integration/entity/integration-config.entity");
|
|
@@ -42,8 +43,6 @@ const user_session_entity_1 = require("./module/user/entity/user-session.entity"
|
|
|
42
43
|
const user_entity_1 = require("./module/user/entity/user.entity");
|
|
43
44
|
const workflow_automation_action_entity_1 = require("./module/workflow-automation/entity/workflow-automation-action.entity");
|
|
44
45
|
const workflow_automation_entity_1 = require("./module/workflow-automation/entity/workflow-automation.entity");
|
|
45
|
-
const scheduled_workflow_entity_1 = require("./module/workflow-schedule/entities/scheduled-workflow.entity");
|
|
46
|
-
const workflow_execution_log_entity_1 = require("./module/workflow-schedule/entities/workflow-execution-log.entity");
|
|
47
46
|
const action_category_entity_1 = require("./module/workflow/entity/action-category.entity");
|
|
48
47
|
const action_data_entity_1 = require("./module/workflow/entity/action-data.entity");
|
|
49
48
|
const action_resources_mapping_entity_1 = require("./module/workflow/entity/action-resources-mapping.entity");
|
|
@@ -86,7 +85,8 @@ exports.frameworkTables = [
|
|
|
86
85
|
saved_filter_detail_entity_1.SavedFilterDetail,
|
|
87
86
|
saved_filter_master_entity_1.SavedFilterMaster,
|
|
88
87
|
user_integration_entity_1.UserIntegration,
|
|
89
|
-
view_master_entity_1.ViewMaster
|
|
88
|
+
view_master_entity_1.ViewMaster,
|
|
89
|
+
entityJson_entity_1.EntityJson
|
|
90
90
|
];
|
|
91
91
|
exports.workflowTables = [
|
|
92
92
|
action_entity_1.ActionEntity,
|
|
@@ -108,9 +108,7 @@ exports.workflowTables = [
|
|
|
108
108
|
workflow_automation_entity_1.WorkflowAutomation,
|
|
109
109
|
workflow_automation_action_entity_1.WorkflowAutomationActionEntity,
|
|
110
110
|
workflow_level_mapping_entity_1.WorkflowLevelMappingEntity,
|
|
111
|
-
workflow_data_entity_1.WorkFlowData
|
|
112
|
-
workflow_execution_log_entity_1.WorkflowExecutionLog,
|
|
113
|
-
scheduled_workflow_entity_1.ScheduledWorkflow
|
|
111
|
+
workflow_data_entity_1.WorkFlowData
|
|
114
112
|
];
|
|
115
113
|
exports.SSOTables = [
|
|
116
114
|
app_master_entity_1.AppMaster,
|
package/dist/table.config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.config.js","sourceRoot":"","sources":["../src/table.config.ts"],"names":[],"mappings":";;;AAAA,qGAAyF;AACzF,yFAA8E;AAC9E,oFAA8E;AAC9E,gHAAoG;AACpG,wFAAkF;AAClF,kGAAsF;AACtF,kGAAsF;AACtF,qGAA0F;AAC1F,mHAAuG;AACvG,qGAA0F;AAC1F,iGAAsF;AACtF,oFAAyE;AACzE,wFAA6E;AAC7E,yGAA8F;AAC9F,kGAAsF;AACtF,sFAA+E;AAC/E,gFAA0E;AAC1E,oFAAyE;AACzE,wEAA8D;AAC9D,8EAAmE;AACnE,0FAA+E;AAC/E,oFAAyE;AACzE,kGAAsF;AACtF,wFAA6E;AAC7E,gGAAoF;AACpF,kFAAuE;AACvE,8EAAmE;AACnE,8EAA0E;AAC1E,gFAAqE;AACrE,oEAA8D;AAC9D,sFAA2E;AAC3E,sFAA2E;AAC3E,wEAAkE;AAClE,0FAAoF;AACpF,wEAA8D;AAC9D,kEAAwD;AACxD,4FAAgF;AAChF,kFAAuE;AACvE,kEAA4D;AAC5D,6HAAuH;AACvH,+GAAoG;AACpG,
|
|
1
|
+
{"version":3,"file":"table.config.js","sourceRoot":"","sources":["../src/table.config.ts"],"names":[],"mappings":";;;AAAA,qGAAyF;AACzF,yFAA8E;AAC9E,oFAA8E;AAC9E,gHAAoG;AACpG,wFAAkF;AAClF,qFAA2E;AAC3E,kGAAsF;AACtF,kGAAsF;AACtF,qGAA0F;AAC1F,mHAAuG;AACvG,qGAA0F;AAC1F,iGAAsF;AACtF,oFAAyE;AACzE,wFAA6E;AAC7E,yGAA8F;AAC9F,kGAAsF;AACtF,sFAA+E;AAC/E,gFAA0E;AAC1E,oFAAyE;AACzE,wEAA8D;AAC9D,8EAAmE;AACnE,0FAA+E;AAC/E,oFAAyE;AACzE,kGAAsF;AACtF,wFAA6E;AAC7E,gGAAoF;AACpF,kFAAuE;AACvE,8EAAmE;AACnE,8EAA0E;AAC1E,gFAAqE;AACrE,oEAA8D;AAC9D,sFAA2E;AAC3E,sFAA2E;AAC3E,wEAAkE;AAClE,0FAAoF;AACpF,wEAA8D;AAC9D,kEAAwD;AACxD,4FAAgF;AAChF,kFAAuE;AACvE,kEAA4D;AAC5D,6HAAuH;AACvH,+GAAoG;AACpG,4FAAiF;AACjF,oFAA+E;AAC/E,8GAAkG;AAClG,4GAAgG;AAChG,0EAAsE;AACtE,sFAA2E;AAC3E,wFAA6E;AAC7E,oGAAyF;AACzF,sEAAsE;AACtE,sGAA0F;AAC1F,oFAAyE;AACzE,oGAAwF;AACxF,wEAA8D;AAC9D,gFAA2E;AAC3E,0GAAwF;AACxF,wFAA6E;AAC7E,0GAAoG;AACpG,8EAAoE;AAEvD,QAAA,eAAe,GAAG;IAC3B,iCAAW;IACX,yCAAe;IACf,8CAAiB;IACjB,2CAAgB;IAChB,mCAAY;IACZ,uCAAc;IACd,gDAAkB;IAClB,iCAAW;IACX,8CAAiB;IACjB,kCAAc;IACd,iCAAW;IACX,6CAAiB;IACjB,0DAAuB;IACvB,6CAAiB;IACjB,mCAAc;IACd,0CAAe;IACf,sBAAM;IACN,6BAAS;IACT,sCAAgB;IAChB,oCAAgB;IAChB,8CAAiB;IACjB,8CAAiB;IACjB,yCAAe;IACf,+BAAU;IACV,8BAAU;CACb,CAAA;AAEY,QAAA,cAAc,GAAG;IAC1B,4BAAY;IACZ,uCAAc;IACd,qCAAgB;IAChB,wDAAsB;IACtB,sDAAqB;IACrB,mCAAY;IACZ,+CAAkB;IAClB,4BAAc;IACd,oBAAK;IACL,gDAAkB;IAClB,+BAAU;IACV,8CAAiB;IACjB,iCAAc;IACd,8CAAc;IACd,mCAAY;IACZ,0BAAQ;IACR,+CAAkB;IAClB,kEAA8B;IAC9B,0DAA0B;IAC1B,mCAAY;CACf,CAAA;AAEY,QAAA,SAAS,GAAG;IACrB,6BAAS;IACT,kCAAc;IACd,kBAAI;IACJ,sBAAQ;IACR,iCAAW;IACX,0CAAe;IACf,0BAAU;IACV,mCAAY;IACZ,mCAAY;IACZ,sBAAQ;IACR,sCAAgB;IAChB,wDAAsB;IACtB,gBAAG;IACH,iCAAW;IACX,qCAAa;CAChB,CAAA"}
|