@quatrain/cloudwrapper 1.0.0 → 1.0.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/CloudWrapper.d.ts +4 -0
- package/lib/CloudWrapper.js +10 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +7 -0
- package/package.json +3 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CloudWrapper = void 0;
|
|
4
|
+
const core_1 = require("@quatrain/core");
|
|
5
|
+
class CloudWrapper extends core_1.Core {
|
|
6
|
+
static log(message, src = 'Cloud') {
|
|
7
|
+
super.log(message, src);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.CloudWrapper = CloudWrapper;
|
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CloudWrapper = exports.AbstractCloudWrapper = void 0;
|
|
4
|
+
const AbstractCloudWrapper_1 = require("./AbstractCloudWrapper");
|
|
5
|
+
Object.defineProperty(exports, "AbstractCloudWrapper", { enumerable: true, get: function () { return AbstractCloudWrapper_1.AbstractCloudWrapper; } });
|
|
6
|
+
const CloudWrapper_1 = require("./CloudWrapper");
|
|
7
|
+
Object.defineProperty(exports, "CloudWrapper", { enumerable: true, get: function () { return CloudWrapper_1.CloudWrapper; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Cloud wrappers commons",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
],
|
|
12
12
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
13
13
|
"peerDependencies": {
|
|
14
|
+
"@quatrain/backend": "^1.0.1",
|
|
14
15
|
"@quatrain/core": "^1.0.0-beta2"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
@@ -34,4 +35,4 @@
|
|
|
34
35
|
"prepush": "tsc",
|
|
35
36
|
"push": "yarn publish --access public"
|
|
36
37
|
}
|
|
37
|
-
}
|
|
38
|
+
}
|