rez_core 5.0.255 → 5.0.256

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.
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
@@ -0,0 +1,59 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <code_scheme name="Project" version="173">
3
+ <HTMLCodeStyleSettings>
4
+ <option name="HTML_SPACE_INSIDE_EMPTY_TAG" value="true" />
5
+ </HTMLCodeStyleSettings>
6
+ <JSCodeStyleSettings version="0">
7
+ <option name="FORCE_SEMICOLON_STYLE" value="true" />
8
+ <option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
9
+ <option name="USE_DOUBLE_QUOTES" value="false" />
10
+ <option name="FORCE_QUOTE_STYlE" value="true" />
11
+ <option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
12
+ <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
13
+ <option name="SPACES_WITHIN_IMPORTS" value="true" />
14
+ </JSCodeStyleSettings>
15
+ <TypeScriptCodeStyleSettings version="0">
16
+ <option name="FORCE_SEMICOLON_STYLE" value="true" />
17
+ <option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
18
+ <option name="USE_DOUBLE_QUOTES" value="false" />
19
+ <option name="FORCE_QUOTE_STYlE" value="true" />
20
+ <option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
21
+ <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
22
+ <option name="SPACES_WITHIN_IMPORTS" value="true" />
23
+ </TypeScriptCodeStyleSettings>
24
+ <VueCodeStyleSettings>
25
+ <option name="INTERPOLATION_NEW_LINE_AFTER_START_DELIMITER" value="false" />
26
+ <option name="INTERPOLATION_NEW_LINE_BEFORE_END_DELIMITER" value="false" />
27
+ </VueCodeStyleSettings>
28
+ <codeStyleSettings language="HTML">
29
+ <option name="SOFT_MARGINS" value="80" />
30
+ <indentOptions>
31
+ <option name="INDENT_SIZE" value="2" />
32
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
33
+ <option name="TAB_SIZE" value="2" />
34
+ </indentOptions>
35
+ </codeStyleSettings>
36
+ <codeStyleSettings language="JavaScript">
37
+ <option name="SOFT_MARGINS" value="80" />
38
+ <indentOptions>
39
+ <option name="INDENT_SIZE" value="2" />
40
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
41
+ <option name="TAB_SIZE" value="2" />
42
+ </indentOptions>
43
+ </codeStyleSettings>
44
+ <codeStyleSettings language="TypeScript">
45
+ <option name="SOFT_MARGINS" value="80" />
46
+ <indentOptions>
47
+ <option name="INDENT_SIZE" value="2" />
48
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
49
+ <option name="TAB_SIZE" value="2" />
50
+ </indentOptions>
51
+ </codeStyleSettings>
52
+ <codeStyleSettings language="Vue">
53
+ <option name="SOFT_MARGINS" value="80" />
54
+ <indentOptions>
55
+ <option name="CONTINUATION_INDENT_SIZE" value="2" />
56
+ </indentOptions>
57
+ </codeStyleSettings>
58
+ </code_scheme>
59
+ </component>
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="USE_PER_PROJECT_SETTINGS" value="true" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/250218_ether_core.iml" filepath="$PROJECT_DIR$/.idea/250218_ether_core.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -3,5 +3,6 @@ import { EntityUpdateRepository } from "../repository/entity-attribute-update.re
3
3
  export declare class EntityUpdateService extends EntityServiceImpl {
4
4
  private readonly entityUpdateRepository;
5
5
  constructor(entityUpdateRepository: EntityUpdateRepository);
6
+ name: string;
6
7
  execute(payload: any): Promise<any>;
7
8
  }
@@ -13,10 +13,12 @@ exports.EntityUpdateService = void 0;
13
13
  const common_1 = require("@nestjs/common");
14
14
  const entity_service_impl_service_1 = require("./entity-service-impl.service");
15
15
  const entity_attribute_update_repository_1 = require("../repository/entity-attribute-update.repository");
16
+ const action_decorator_1 = require("../../workflow-automation/interface/action.decorator");
16
17
  let EntityUpdateService = class EntityUpdateService extends entity_service_impl_service_1.EntityServiceImpl {
17
18
  constructor(entityUpdateRepository) {
18
19
  super();
19
20
  this.entityUpdateRepository = entityUpdateRepository;
21
+ this.name = 'update_attribute';
20
22
  }
21
23
  async execute(payload) {
22
24
  let { entity, user, config } = payload;
@@ -29,6 +31,7 @@ let EntityUpdateService = class EntityUpdateService extends entity_service_impl_
29
31
  exports.EntityUpdateService = EntityUpdateService;
30
32
  exports.EntityUpdateService = EntityUpdateService = __decorate([
31
33
  (0, common_1.Injectable)(),
34
+ (0, action_decorator_1.ActionHandler)('update_attribute'),
32
35
  __metadata("design:paramtypes", [entity_attribute_update_repository_1.EntityUpdateRepository])
33
36
  ], EntityUpdateService);
34
37
  //# sourceMappingURL=entity-attribute-update.service.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-attribute-update.service.js","sourceRoot":"","sources":["../../../../src/module/meta/service/entity-attribute-update.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+EAAkE;AAClE,yGAA0F;AAGnF,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,+CAAiB;IAE1D,YACqB,sBAA6C;QAE9D,KAAK,EAAE,CAAC;QAFS,2BAAsB,GAAtB,sBAAsB,CAAuB;IAGlE,CAAC;IAEC,KAAK,CAAC,OAAO,CAAC,OAAY;QAExB,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;QAEvC,IAAI,MAAM,CAAC,WAAW,KAAK,MAAM,EAAE,CAAC;YAClC,MAAM,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,MAAM,CAAC,SAAS,EAAC,IAAI,CAAE,CAAC;QACpE,CAAC;QAGD,OAAO,IAAI,CAAC,sBAAsB,CAAC,qBAAqB,CAAC,MAAM,EAAC,MAAM,CAAC,CAAC;IAG1E,CAAC;CACF,CAAA;AArBY,kDAAmB;8BAAnB,mBAAmB;IAD/B,IAAA,mBAAU,GAAE;qCAI+B,2DAAsB;GAHrD,mBAAmB,CAqB/B"}
1
+ {"version":3,"file":"entity-attribute-update.service.js","sourceRoot":"","sources":["../../../../src/module/meta/service/entity-attribute-update.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+EAAkE;AAClE,yGAA0F;AAC1F,2FAA0F;AAInF,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,+CAAiB;IAE1D,YACqB,sBAA6C;QAE9D,KAAK,EAAE,CAAC;QAFS,2BAAsB,GAAtB,sBAAsB,CAAuB;QAIhE,SAAI,GAAG,kBAAkB,CAAC;IAD5B,CAAC;IAEC,KAAK,CAAC,OAAO,CAAC,OAAY;QAExB,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;QAEvC,IAAI,MAAM,CAAC,WAAW,KAAK,MAAM,EAAE,CAAC;YAClC,MAAM,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,MAAM,CAAC,SAAS,EAAC,IAAI,CAAE,CAAC;QACpE,CAAC;QAGD,OAAO,IAAI,CAAC,sBAAsB,CAAC,qBAAqB,CAAC,MAAM,EAAC,MAAM,CAAC,CAAC;IAG1E,CAAC;CACF,CAAA;AArBY,kDAAmB;8BAAnB,mBAAmB;IAF/B,IAAA,mBAAU,GAAE;IACZ,IAAA,gCAAa,EAAC,kBAAkB,CAAC;qCAIU,2DAAsB;GAHrD,mBAAmB,CAqB/B"}