@quatrain/cloudwrapper 1.1.12 → 1.1.14
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 +1 -0
- package/lib/CloudWrapper.js +3 -0
- package/lib/index.d.ts +3 -1
- package/lib/types/DatabaseTriggerType.d.ts +4 -6
- package/lib/types/GenericEventPayloadType copy.d.ts +5 -0
- package/lib/types/GenericEventPayloadType copy.js +2 -0
- package/lib/types/GenericEventPayloadType.d.ts +5 -0
- package/lib/types/GenericEventPayloadType.js +2 -0
- package/lib/types/GenericTriggerType.d.ts +6 -0
- package/lib/types/GenericTriggerType.js +2 -0
- package/lib/types/StorageEventPayloadType.d.ts +6 -0
- package/lib/types/StorageEventPayloadType.js +2 -0
- package/lib/types/StorageTriggerType.d.ts +3 -0
- package/lib/types/StorageTriggerType.js +2 -0
- package/package.json +6 -3
package/lib/CloudWrapper.d.ts
CHANGED
package/lib/CloudWrapper.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var _a;
|
|
2
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
4
|
exports.CloudWrapper = void 0;
|
|
4
5
|
const core_1 = require("@quatrain/core");
|
|
5
6
|
class CloudWrapper extends core_1.Core {
|
|
6
7
|
}
|
|
7
8
|
exports.CloudWrapper = CloudWrapper;
|
|
9
|
+
_a = CloudWrapper;
|
|
10
|
+
CloudWrapper.logger = _a.addLogger('Cloud');
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { AbstractCloudWrapper } from './AbstractCloudWrapper';
|
|
2
2
|
import { CloudWrapper } from './CloudWrapper';
|
|
3
3
|
import { DatabaseTriggerType } from './types/DatabaseTriggerType';
|
|
4
|
-
|
|
4
|
+
import { StorageTriggerType } from './types/StorageTriggerType';
|
|
5
|
+
import { StorageEventPayloadType } from './types/StorageEventPayloadType';
|
|
6
|
+
export { AbstractCloudWrapper, CloudWrapper, DatabaseTriggerType, StorageTriggerType, StorageEventPayloadType, };
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
event: BackendAction | BackendAction[];
|
|
1
|
+
import { GenericTriggerType } from './GenericTriggerType';
|
|
2
|
+
export interface DatabaseTriggerType extends GenericTriggerType {
|
|
3
|
+
schema?: string;
|
|
5
4
|
model: string;
|
|
6
5
|
path: string;
|
|
7
|
-
|
|
8
|
-
};
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Cloud wrappers commons",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
],
|
|
12
12
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@quatrain/backend": "^1.1.
|
|
15
|
-
"@quatrain/core": "^1.1.
|
|
14
|
+
"@quatrain/backend": "^1.1.13",
|
|
15
|
+
"@quatrain/core": "^1.1.15"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@tsconfig/recommended": "^1.0.1",
|
|
@@ -36,5 +36,8 @@
|
|
|
36
36
|
"hash:compare": "yarn hash > .hash_newest.txt && cmp -s .hash_latest.txt .hash_newest.txt",
|
|
37
37
|
"publish": "yarn hash:compare || yarn publish:process",
|
|
38
38
|
"publish:process": "yarn version patch && yarn build && yarn npm publish --access public && yarn hash:persist"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@quatrain/storage": "^1.1"
|
|
39
42
|
}
|
|
40
43
|
}
|