@8ms/helpers 1.1.59 → 1.1.60
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/initClients.d.ts +28 -0
- package/initClients.js +94 -0
- package/package.json +1 -1
package/initClients.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Config as ConfigAws } from './aws/config';
|
|
2
|
+
declare type InitClients = {
|
|
3
|
+
athenaExpress?: {
|
|
4
|
+
database: string;
|
|
5
|
+
s3Bucket: string;
|
|
6
|
+
s3Key: string;
|
|
7
|
+
};
|
|
8
|
+
awsConfig?: ConfigAws;
|
|
9
|
+
awsGlue?: boolean;
|
|
10
|
+
awsLambda?: boolean;
|
|
11
|
+
awsS3?: boolean;
|
|
12
|
+
awsSes?: boolean;
|
|
13
|
+
awsSsm?: boolean;
|
|
14
|
+
deepCrawl?: boolean;
|
|
15
|
+
eskimi?: boolean;
|
|
16
|
+
googleAds?: {
|
|
17
|
+
parameterName: string;
|
|
18
|
+
};
|
|
19
|
+
prisma?: {
|
|
20
|
+
debug?: boolean;
|
|
21
|
+
};
|
|
22
|
+
myTarget?: boolean;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Function to simplify initialising the clients.
|
|
26
|
+
*/
|
|
27
|
+
declare const initClients: ({ athenaExpress, awsConfig, awsGlue, awsS3, awsSes, awsSsm, googleAds, prisma, }: InitClients) => Promise<void>;
|
|
28
|
+
export default initClients;
|
package/initClients.js
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
12
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
13
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
14
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
|
+
function step(op) {
|
|
16
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
+
while (_) try {
|
|
18
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
|
+
switch (op[0]) {
|
|
21
|
+
case 0: case 1: t = op; break;
|
|
22
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
23
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
25
|
+
default:
|
|
26
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
27
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
28
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
29
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
30
|
+
if (t[2]) _.ops.pop();
|
|
31
|
+
_.trys.pop(); continue;
|
|
32
|
+
}
|
|
33
|
+
op = body.call(thisArg, _);
|
|
34
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
35
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
39
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
40
|
+
};
|
|
41
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
+
var initClient_1 = __importDefault(require("./aws/athenaExpress/initClient"));
|
|
43
|
+
var initClient_2 = __importDefault(require("./aws/glue/initClient"));
|
|
44
|
+
var initClient_3 = __importDefault(require("./aws/s3/initClient"));
|
|
45
|
+
var initClient_4 = __importDefault(require("./aws/ses/initClient"));
|
|
46
|
+
var initClient_5 = __importDefault(require("./aws/ssm/initClient"));
|
|
47
|
+
var initClient_6 = __importDefault(require("./googleAds/initClient"));
|
|
48
|
+
var initClient_7 = __importDefault(require("./prisma/initClient"));
|
|
49
|
+
/**
|
|
50
|
+
* Function to simplify initialising the clients.
|
|
51
|
+
*/
|
|
52
|
+
var initClients = function (_a) {
|
|
53
|
+
var athenaExpress = _a.athenaExpress, awsConfig = _a.awsConfig, awsGlue = _a.awsGlue, awsS3 = _a.awsS3, awsSes = _a.awsSes, awsSsm = _a.awsSsm, googleAds = _a.googleAds, prisma = _a.prisma;
|
|
54
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
55
|
+
return __generator(this, function (_b) {
|
|
56
|
+
switch (_b.label) {
|
|
57
|
+
case 0:
|
|
58
|
+
if (undefined !== athenaExpress) {
|
|
59
|
+
(0, initClient_1.default)({
|
|
60
|
+
config: awsConfig,
|
|
61
|
+
database: athenaExpress.database,
|
|
62
|
+
s3Bucket: athenaExpress.s3Bucket,
|
|
63
|
+
s3Key: athenaExpress.s3Key,
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
if (true === awsGlue) {
|
|
67
|
+
(0, initClient_2.default)({ config: awsConfig });
|
|
68
|
+
}
|
|
69
|
+
if (true === awsS3) {
|
|
70
|
+
(0, initClient_3.default)({ config: awsConfig });
|
|
71
|
+
}
|
|
72
|
+
if (true === awsSes) {
|
|
73
|
+
(0, initClient_4.default)({ config: awsConfig });
|
|
74
|
+
}
|
|
75
|
+
if (true === awsSsm) {
|
|
76
|
+
(0, initClient_5.default)({ config: awsConfig });
|
|
77
|
+
}
|
|
78
|
+
if (!(undefined !== googleAds)) return [3 /*break*/, 2];
|
|
79
|
+
return [4 /*yield*/, (0, initClient_6.default)({
|
|
80
|
+
parameterName: googleAds.parameterName,
|
|
81
|
+
})];
|
|
82
|
+
case 1:
|
|
83
|
+
_b.sent();
|
|
84
|
+
_b.label = 2;
|
|
85
|
+
case 2:
|
|
86
|
+
if (undefined !== prisma) {
|
|
87
|
+
(0, initClient_7.default)({ debug: true === prisma ? false : prisma.debug || false });
|
|
88
|
+
}
|
|
89
|
+
return [2 /*return*/];
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
});
|
|
93
|
+
};
|
|
94
|
+
exports.default = initClients;
|