@hemia/common 0.0.9 → 0.0.10
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/hemia-common.esm.js
CHANGED
|
@@ -18,7 +18,8 @@ const METADATA_KEYS = {
|
|
|
18
18
|
VALIDATORS: 'hemia:validators',
|
|
19
19
|
CUSTOMS: 'hemia:customs',
|
|
20
20
|
MODULE: "hemia:module",
|
|
21
|
-
INJECTION_ID: "hemia:injection_id"
|
|
21
|
+
INJECTION_ID: "hemia:injection_id",
|
|
22
|
+
MANUAL_REGISTER: 'hemia:controller:manual_register',
|
|
22
23
|
};
|
|
23
24
|
|
|
24
25
|
var HttpMethod;
|
package/dist/hemia-common.js
CHANGED
|
@@ -20,7 +20,8 @@ const METADATA_KEYS = {
|
|
|
20
20
|
VALIDATORS: 'hemia:validators',
|
|
21
21
|
CUSTOMS: 'hemia:customs',
|
|
22
22
|
MODULE: "hemia:module",
|
|
23
|
-
INJECTION_ID: "hemia:injection_id"
|
|
23
|
+
INJECTION_ID: "hemia:injection_id",
|
|
24
|
+
MANUAL_REGISTER: 'hemia:controller:manual_register',
|
|
24
25
|
};
|
|
25
26
|
|
|
26
27
|
exports.HttpMethod = void 0;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ManualRegister: () => ClassDecorator;
|