@orion-js/components 3.3.25 → 3.4.1
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/lib/components/index.d.ts +6 -6
- package/lib/index.js +5 -1
- package/lib/mergeComponents/index.test.js +1 -0
- package/package.json +13 -13
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type EchoesController = {
|
|
2
2
|
new (...args: any[]): any;
|
|
3
3
|
};
|
|
4
|
-
export
|
|
4
|
+
export type ResolversController = {
|
|
5
5
|
new (...args: any[]): any;
|
|
6
6
|
};
|
|
7
|
-
export
|
|
7
|
+
export type SubscriptionsController = {
|
|
8
8
|
new (...args: any[]): any;
|
|
9
9
|
};
|
|
10
|
-
export
|
|
10
|
+
export type JobsController = {
|
|
11
11
|
new (...args: any[]): any;
|
|
12
12
|
};
|
|
13
|
-
export
|
|
13
|
+
export type RoutesController = {
|
|
14
14
|
new (...args: any[]): any;
|
|
15
15
|
};
|
|
16
|
-
export
|
|
16
|
+
export type ModelResolversController = {
|
|
17
17
|
new (...args: any[]): any;
|
|
18
18
|
};
|
|
19
19
|
export interface ComponentControllers {
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orion-js/components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"author": "nicolaslopezj",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
"@orion-js/services": "^3.2.21"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@orion-js/dogs": "^3.
|
|
26
|
-
"@orion-js/echoes": "^3.
|
|
27
|
-
"@orion-js/graphql": "^3.
|
|
28
|
-
"@orion-js/helpers": "^3.
|
|
29
|
-
"@orion-js/http": "^3.
|
|
30
|
-
"@orion-js/models": "^3.
|
|
31
|
-
"@orion-js/services": "^3.
|
|
32
|
-
"@types/jest": "^
|
|
33
|
-
"jest": "
|
|
25
|
+
"@orion-js/dogs": "^3.4.1",
|
|
26
|
+
"@orion-js/echoes": "^3.4.1",
|
|
27
|
+
"@orion-js/graphql": "^3.4.1",
|
|
28
|
+
"@orion-js/helpers": "^3.4.1",
|
|
29
|
+
"@orion-js/http": "^3.4.1",
|
|
30
|
+
"@orion-js/models": "^3.4.1",
|
|
31
|
+
"@orion-js/services": "^3.4.1",
|
|
32
|
+
"@types/jest": "^29.2.5",
|
|
33
|
+
"jest": "29.3.1",
|
|
34
34
|
"reflect-metadata": "0.1.13",
|
|
35
|
-
"ts-jest": "
|
|
36
|
-
"typescript": "^4.
|
|
35
|
+
"ts-jest": "29.0.3",
|
|
36
|
+
"typescript": "^4.9.4"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "af7632797b76ad2acf19c2861a38d48abc58ec56"
|
|
42
42
|
}
|