@quatrain/cloudwrapper 1.1.27 → 1.2.3-pr25.9069
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/CloudWrapper.d.ts
CHANGED
package/dist/CloudWrapper.js
CHANGED
|
@@ -3,8 +3,12 @@ var _a;
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.CloudWrapper = void 0;
|
|
5
5
|
const core_1 = require("@quatrain/core");
|
|
6
|
+
/**
|
|
7
|
+
* Singleton registry for managing cloud wrapper contexts.
|
|
8
|
+
*/
|
|
6
9
|
class CloudWrapper extends core_1.Core {
|
|
7
10
|
}
|
|
8
11
|
exports.CloudWrapper = CloudWrapper;
|
|
9
12
|
_a = CloudWrapper;
|
|
13
|
+
/** Internal domain logger instance. */
|
|
10
14
|
CloudWrapper.logger = _a.addLogger('Cloud');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.3-pr25.9069",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Cloud wrappers commons",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@quatrain/backend": "^1.
|
|
24
|
-
"@quatrain/core": "^1.
|
|
23
|
+
"@quatrain/backend": "^1.2.17",
|
|
24
|
+
"@quatrain/core": "^1.2.18"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@tsconfig/recommended": "^1.0.1",
|
|
@@ -42,8 +42,11 @@
|
|
|
42
42
|
"bump-to": "yarn version"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@quatrain/backend": "^1.
|
|
46
|
-
"@quatrain/core": "^1.
|
|
45
|
+
"@quatrain/backend": "^1.2.17",
|
|
46
|
+
"@quatrain/core": "^1.2.18",
|
|
47
47
|
"@quatrain/storage": "^1.1"
|
|
48
|
+
},
|
|
49
|
+
"typedoc": {
|
|
50
|
+
"entryPoint": "src/index.ts"
|
|
48
51
|
}
|
|
49
52
|
}
|
package/src/CloudWrapper.ts
CHANGED