@quatrain/cloudwrapper 1.1.27 → 1.2.3

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.
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Base abstraction for Cloud platform wrappers.
3
+ */
1
4
  export declare class AbstractCloudWrapper {
2
5
  protected _params: any;
3
6
  constructor(params: any);
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AbstractCloudWrapper = void 0;
4
+ /**
5
+ * Base abstraction for Cloud platform wrappers.
6
+ */
4
7
  class AbstractCloudWrapper {
5
8
  constructor(params) {
6
9
  this._params = params;
@@ -1,4 +1,8 @@
1
1
  import { Core } from '@quatrain/core';
2
+ /**
3
+ * Singleton registry for managing cloud wrapper contexts.
4
+ */
2
5
  export declare class CloudWrapper extends Core {
6
+ /** Internal domain logger instance. */
3
7
  static logger: any;
4
8
  }
@@ -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.1.27",
3
+ "version": "1.2.3",
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.1.37",
24
- "@quatrain/core": "^1.1.51"
23
+ "@quatrain/backend": "^1.2.17",
24
+ "@quatrain/core": "^1.2.16"
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.1.37",
46
- "@quatrain/core": "^1.1.51",
45
+ "@quatrain/backend": "^1.2.17",
46
+ "@quatrain/core": "^1.2.16",
47
47
  "@quatrain/storage": "^1.1"
48
+ },
49
+ "typedoc": {
50
+ "entryPoint": "src/index.ts"
48
51
  }
49
52
  }
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Base abstraction for Cloud platform wrappers.
3
+ */
1
4
  export class AbstractCloudWrapper {
2
5
  protected _params: any
3
6
 
@@ -1,5 +1,9 @@
1
1
  import { Core } from '@quatrain/core'
2
2
 
3
+ /**
4
+ * Singleton registry for managing cloud wrapper contexts.
5
+ */
3
6
  export class CloudWrapper extends Core {
7
+ /** Internal domain logger instance. */
4
8
  static logger = this.addLogger('Cloud')
5
9
  }