@quatrain/cloudwrapper 1.0.0

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.
@@ -0,0 +1,4 @@
1
+ export declare class AbstractCloudWrapper {
2
+ protected _params: any;
3
+ constructor(params: any);
4
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AbstractCloudWrapper = void 0;
4
+ class AbstractCloudWrapper {
5
+ constructor(params) {
6
+ this._params = params;
7
+ }
8
+ }
9
+ exports.AbstractCloudWrapper = AbstractCloudWrapper;
@@ -0,0 +1,8 @@
1
+ import { BackendAction } from '@quatrain/backend';
2
+ export type DatabaseTriggerType = {
3
+ name: string;
4
+ event: BackendAction;
5
+ model: string;
6
+ path: string;
7
+ script: Function;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@quatrain/cloudwrapper",
3
+ "version": "1.0.0",
4
+ "license": "MIT",
5
+ "description": "Cloud wrappers commons",
6
+ "main": "lib/index.js",
7
+ "types": "lib/index.d.ts",
8
+ "files": [
9
+ "lib/",
10
+ "README.md"
11
+ ],
12
+ "author": "Quatrain Développement SAS <developers@quatrain.com>",
13
+ "peerDependencies": {
14
+ "@quatrain/core": "^1.0.0-beta2"
15
+ },
16
+ "devDependencies": {
17
+ "@faker-js/faker": "^7.6.0",
18
+ "@firebase/rules-unit-testing": "^2.0.7",
19
+ "@tsconfig/recommended": "^1.0.1",
20
+ "@types/jest": "^27.0.3",
21
+ "jest": "^27.4.7",
22
+ "jest-node-exports-resolver": "^1.1.6",
23
+ "jest-serial-runner": "^1.2.1",
24
+ "trace-unhandled": "^2.0.1",
25
+ "ts-jest": "^27.1.2",
26
+ "ts-node": "^10.9.1",
27
+ "typescript": "^5.1.5"
28
+ },
29
+ "scripts": {
30
+ "pretest": "tsc",
31
+ "test": "clear && firebase emulators:exec 'jest -i --verbose --silent=false'",
32
+ "test-ci": "jest --runInBand",
33
+ "build": "tsc --watch",
34
+ "prepush": "tsc",
35
+ "push": "yarn publish --access public"
36
+ }
37
+ }