quidproquo-actionprocessor-awslambda 0.0.185 → 0.0.187
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/commonjs/awsNamingUtils.d.ts +3 -3
- package/lib/commonjs/awsNamingUtils.js +31 -18
- package/lib/commonjs/getActionProcessor/core/event/utils/isAuthValid.js +1 -1
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectoryDecodeAccessTokenActionProcessor.js +2 -2
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectoryGetUserAttributesActionProcessor.js +2 -2
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectoryGetUserAttributesByUserIdActionProcessor.js +2 -2
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectoryGetUsersActionProcessor.js +2 -2
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectoryReadAccessTokenActionProcessor.js +2 -2
- package/lib/commonjs/getActionProcessor/core/userDirectory/getUserDirectorySetUserAttributesActionProcessor.js +2 -2
- package/package.json +5 -5
|
@@ -10,13 +10,13 @@ export declare const getConfigRuntimeResourceNameFromConfigWithServiceOverride:
|
|
|
10
10
|
export declare const getQpqRuntimeResourceName: (resourceName: string, application: string, service: string, environment: string, feature?: string, resourceType?: string) => string;
|
|
11
11
|
export declare const getQpqRuntimeResourceNameFromConfig: (resourceName: ResourceName, qpqConfig: QPQConfig, resourceType?: string) => string;
|
|
12
12
|
export declare const getKvsDynamoTableNameFromConfig: (resourceName: string, qpqConfig: QPQConfig, resourceType?: string) => string;
|
|
13
|
-
export declare const getCFExportNameUserPoolIdFromConfig: (userDirectoryName: string, qpqConfig: QPQConfig
|
|
13
|
+
export declare const getCFExportNameUserPoolIdFromConfig: (userDirectoryName: string, qpqConfig: QPQConfig) => string;
|
|
14
14
|
export declare const getCFExportNameCachePolicyIdFromConfig: (cacheConfigName: string, qpqConfig: QPQConfig, serviceOverride?: string, applicationOverride?: string) => string;
|
|
15
|
-
export declare const getCFExportNameUserPoolClientIdFromConfig: (userDirectoryName: string, qpqConfig: QPQConfig
|
|
15
|
+
export declare const getCFExportNameUserPoolClientIdFromConfig: (userDirectoryName: string, qpqConfig: QPQConfig) => string;
|
|
16
16
|
export declare const getCFExportNameApiKeyIdFromConfig: (apiKeyName: string, qpqConfig: QPQConfig, serviceOverride?: string, applicationOverride?: string) => string;
|
|
17
17
|
export declare const getCFExportNameSnsTopicArnFromConfig: (eventBusName: string, qpqConfig: QPQConfig, applicationOverride?: string) => string;
|
|
18
18
|
export declare const getCFExportNameDistributionIdArnFromConfig: (webEntryName: string, qpqConfig: QPQConfig, serviceOverride?: string, applicationOverride?: string) => string;
|
|
19
|
-
export declare const getCFExportNameWebsocketApiIdFromConfig: (websocketApiName: string, qpqConfig: QPQConfig
|
|
19
|
+
export declare const getCFExportNameWebsocketApiIdFromConfig: (websocketApiName: string, qpqConfig: QPQConfig) => string;
|
|
20
20
|
export declare const getEventBusSnsTopicArn: (eventBusName: string, qpqConfig: QPQConfig, module: string, environment: string, application: string, feature?: string) => string;
|
|
21
21
|
export declare const getBaseStackName: (qpqConfig: QPQConfig) => string;
|
|
22
22
|
export declare const getInfStackName: (qpqConfig: QPQConfig) => string;
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getBootstrapStackName = exports.getApiStackName = exports.getWebStackName = exports.getInfStackName = exports.getBaseStackName = exports.getEventBusSnsTopicArn = exports.getCFExportNameWebsocketApiIdFromConfig = exports.getCFExportNameDistributionIdArnFromConfig = exports.getCFExportNameSnsTopicArnFromConfig = exports.getCFExportNameApiKeyIdFromConfig = exports.getCFExportNameUserPoolClientIdFromConfig = exports.getCFExportNameCachePolicyIdFromConfig = exports.getCFExportNameUserPoolIdFromConfig = exports.getKvsDynamoTableNameFromConfig = exports.getQpqRuntimeResourceNameFromConfig = exports.getQpqRuntimeResourceName = exports.getConfigRuntimeResourceNameFromConfigWithServiceOverride = exports.getConfigRuntimeBootstrapResourceNameFromConfig = exports.resolveConfigRuntimeResourceNameFromConfig = exports.getConfigRuntimeResourceNameFromConfig = exports.getConfigRuntimeBootstrapResourceName = exports.getConfigRuntimeResourceName = exports.getGlobalQpqRuntimeResourceName = exports.getGlobalConfigRuntimeResourceName = void 0;
|
|
4
4
|
const quidproquo_core_1 = require("quidproquo-core");
|
|
5
5
|
const quidproquo_config_aws_1 = require("quidproquo-config-aws");
|
|
6
|
+
const quidproquo_webserver_1 = require("quidproquo-webserver");
|
|
6
7
|
const getGlobalConfigRuntimeResourceName = (resourceName, application, environment, feature) => {
|
|
7
8
|
const baseName = `${resourceName}-${application}-${environment}`;
|
|
8
9
|
if (feature) {
|
|
@@ -91,12 +92,16 @@ const getKvsDynamoTableNameFromConfig = (resourceName, qpqConfig, resourceType =
|
|
|
91
92
|
return (0, exports.getQpqRuntimeResourceName)(resourceName, application, service, environment, feature, resourceType);
|
|
92
93
|
};
|
|
93
94
|
exports.getKvsDynamoTableNameFromConfig = getKvsDynamoTableNameFromConfig;
|
|
94
|
-
const getCFExportNameUserPoolIdFromConfig = (userDirectoryName, qpqConfig
|
|
95
|
-
|
|
96
|
-
const
|
|
97
|
-
const
|
|
98
|
-
const
|
|
99
|
-
|
|
95
|
+
const getCFExportNameUserPoolIdFromConfig = (userDirectoryName, qpqConfig) => {
|
|
96
|
+
var _a, _b, _c, _d, _e;
|
|
97
|
+
const userDirectoryConfig = quidproquo_core_1.qpqCoreUtils.getUserDirectoryByName(userDirectoryName, qpqConfig);
|
|
98
|
+
const application = ((_a = userDirectoryConfig.owner) === null || _a === void 0 ? void 0 : _a.application) || quidproquo_core_1.qpqCoreUtils.getApplicationName(qpqConfig);
|
|
99
|
+
const service = ((_b = userDirectoryConfig.owner) === null || _b === void 0 ? void 0 : _b.module) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleName(qpqConfig);
|
|
100
|
+
const environment = ((_c = userDirectoryConfig.owner) === null || _c === void 0 ? void 0 : _c.environment) ||
|
|
101
|
+
quidproquo_core_1.qpqCoreUtils.getApplicationModuleEnvironment(qpqConfig);
|
|
102
|
+
const feature = ((_d = userDirectoryConfig.owner) === null || _d === void 0 ? void 0 : _d.feature) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleFeature(qpqConfig);
|
|
103
|
+
const resourceName = ((_e = userDirectoryConfig.owner) === null || _e === void 0 ? void 0 : _e.resourceNameOverride) || userDirectoryName;
|
|
104
|
+
return (0, exports.getQpqRuntimeResourceName)(resourceName, application, service, environment, feature, 'user-pool-id-export');
|
|
100
105
|
};
|
|
101
106
|
exports.getCFExportNameUserPoolIdFromConfig = getCFExportNameUserPoolIdFromConfig;
|
|
102
107
|
const getCFExportNameCachePolicyIdFromConfig = (cacheConfigName, qpqConfig, serviceOverride, applicationOverride) => {
|
|
@@ -107,12 +112,16 @@ const getCFExportNameCachePolicyIdFromConfig = (cacheConfigName, qpqConfig, serv
|
|
|
107
112
|
return (0, exports.getQpqRuntimeResourceName)(cacheConfigName, application, service, environment, feature, 'cache-policy-name-export');
|
|
108
113
|
};
|
|
109
114
|
exports.getCFExportNameCachePolicyIdFromConfig = getCFExportNameCachePolicyIdFromConfig;
|
|
110
|
-
const getCFExportNameUserPoolClientIdFromConfig = (userDirectoryName, qpqConfig
|
|
111
|
-
|
|
112
|
-
const
|
|
113
|
-
const
|
|
114
|
-
const
|
|
115
|
-
|
|
115
|
+
const getCFExportNameUserPoolClientIdFromConfig = (userDirectoryName, qpqConfig) => {
|
|
116
|
+
var _a, _b, _c, _d, _e;
|
|
117
|
+
const userDirectoryConfig = quidproquo_core_1.qpqCoreUtils.getUserDirectoryByName(userDirectoryName, qpqConfig);
|
|
118
|
+
const application = ((_a = userDirectoryConfig.owner) === null || _a === void 0 ? void 0 : _a.application) || quidproquo_core_1.qpqCoreUtils.getApplicationName(qpqConfig);
|
|
119
|
+
const service = ((_b = userDirectoryConfig.owner) === null || _b === void 0 ? void 0 : _b.module) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleName(qpqConfig);
|
|
120
|
+
const environment = ((_c = userDirectoryConfig.owner) === null || _c === void 0 ? void 0 : _c.environment) ||
|
|
121
|
+
quidproquo_core_1.qpqCoreUtils.getApplicationModuleEnvironment(qpqConfig);
|
|
122
|
+
const feature = ((_d = userDirectoryConfig.owner) === null || _d === void 0 ? void 0 : _d.feature) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleFeature(qpqConfig);
|
|
123
|
+
const resourceName = ((_e = userDirectoryConfig.owner) === null || _e === void 0 ? void 0 : _e.resourceNameOverride) || userDirectoryName;
|
|
124
|
+
return (0, exports.getQpqRuntimeResourceName)(resourceName, application, service, environment, feature, 'user-pool-client-id-export');
|
|
116
125
|
};
|
|
117
126
|
exports.getCFExportNameUserPoolClientIdFromConfig = getCFExportNameUserPoolClientIdFromConfig;
|
|
118
127
|
const getCFExportNameApiKeyIdFromConfig = (apiKeyName, qpqConfig, serviceOverride, applicationOverride) => {
|
|
@@ -138,12 +147,16 @@ const getCFExportNameDistributionIdArnFromConfig = (webEntryName, qpqConfig, ser
|
|
|
138
147
|
return (0, exports.getQpqRuntimeResourceName)(webEntryName, application, service, environment, feature, 'distribution-id-export');
|
|
139
148
|
};
|
|
140
149
|
exports.getCFExportNameDistributionIdArnFromConfig = getCFExportNameDistributionIdArnFromConfig;
|
|
141
|
-
const getCFExportNameWebsocketApiIdFromConfig = (websocketApiName, qpqConfig
|
|
142
|
-
|
|
143
|
-
const
|
|
144
|
-
const
|
|
145
|
-
const
|
|
146
|
-
|
|
150
|
+
const getCFExportNameWebsocketApiIdFromConfig = (websocketApiName, qpqConfig) => {
|
|
151
|
+
var _a, _b, _c, _d, _e;
|
|
152
|
+
const websocketApiConfig = quidproquo_webserver_1.qpqWebServerUtils.getWebsocketEntryByApiName(websocketApiName, qpqConfig);
|
|
153
|
+
const application = ((_a = websocketApiConfig.owner) === null || _a === void 0 ? void 0 : _a.application) || quidproquo_core_1.qpqCoreUtils.getApplicationName(qpqConfig);
|
|
154
|
+
const service = ((_b = websocketApiConfig.owner) === null || _b === void 0 ? void 0 : _b.module) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleName(qpqConfig);
|
|
155
|
+
const environment = ((_c = websocketApiConfig.owner) === null || _c === void 0 ? void 0 : _c.environment) ||
|
|
156
|
+
quidproquo_core_1.qpqCoreUtils.getApplicationModuleEnvironment(qpqConfig);
|
|
157
|
+
const feature = ((_d = websocketApiConfig.owner) === null || _d === void 0 ? void 0 : _d.feature) || quidproquo_core_1.qpqCoreUtils.getApplicationModuleFeature(qpqConfig);
|
|
158
|
+
const resourceName = ((_e = websocketApiConfig.owner) === null || _e === void 0 ? void 0 : _e.resourceNameOverride) || websocketApiName;
|
|
159
|
+
return (0, exports.getQpqRuntimeResourceName)(resourceName, application, service, environment, feature, 'websocket-api-id-export');
|
|
147
160
|
};
|
|
148
161
|
exports.getCFExportNameWebsocketApiIdFromConfig = getCFExportNameWebsocketApiIdFromConfig;
|
|
149
162
|
const getEventBusSnsTopicArn = (eventBusName, qpqConfig, module, environment, application, feature) => {
|
|
@@ -33,7 +33,7 @@ const isAuthValidForCognito = (qpqConfig, authSettings, authHeader) => __awaiter
|
|
|
33
33
|
const userDirectoryName = authSettings.userDirectoryName;
|
|
34
34
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
35
35
|
// Resolve the user pool id
|
|
36
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
36
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
37
37
|
// Verify the token
|
|
38
38
|
return yield (0, verifyJwt_1.verifyJwt)(accessToken, userPoolId, region, false);
|
|
39
39
|
});
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const decodeValidJwt_1 = require("../../../logic/cognito/decodeValidJwt");
|
|
16
16
|
const getUserDirectoryDecodeAccessTokenActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName, accessToken, ignoreExpiration
|
|
17
|
+
return ({ userDirectoryName, accessToken, ignoreExpiration }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
const authInfo = yield (0, decodeValidJwt_1.decodeValidJwt)(userPoolId, region, ignoreExpiration, accessToken);
|
|
21
21
|
if (!authInfo || !(authInfo === null || authInfo === void 0 ? void 0 : authInfo.username)) {
|
|
22
22
|
return (0, quidproquo_core_1.actionResultError)(quidproquo_core_1.ErrorTypeEnum.Unauthorized, 'Invalid accessToken');
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const getUserAttributes_1 = require("../../../logic/cognito/getUserAttributes");
|
|
16
16
|
const getUserDirectoryGetUserAttributesActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName,
|
|
17
|
+
return ({ userDirectoryName, username }, session) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
const userAttributes = yield (0, getUserAttributes_1.getUserAttributes)(userPoolId, region, username);
|
|
21
21
|
return (0, quidproquo_core_1.actionResult)(userAttributes);
|
|
22
22
|
});
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const getUserAttributesBySub_1 = require("../../../logic/cognito/getUserAttributesBySub");
|
|
16
16
|
const getUserDirectoryGetUserAttributesByUserIdActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName,
|
|
17
|
+
return ({ userDirectoryName, userId }, session) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
const userAttributes = yield (0, getUserAttributesBySub_1.getUserAttributesBySub)(userPoolId, region, userId);
|
|
21
21
|
return (0, quidproquo_core_1.actionResult)(userAttributes);
|
|
22
22
|
});
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const listPagedUsers_1 = require("../../../logic/cognito/listPagedUsers");
|
|
16
16
|
const getUserDirectoryGetUsersActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName,
|
|
17
|
+
return ({ userDirectoryName, nextPageKey }, session) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
const userAttributes = yield (0, listPagedUsers_1.listPagedUsers)(userPoolId, region, nextPageKey);
|
|
21
21
|
return (0, quidproquo_core_1.actionResult)(userAttributes);
|
|
22
22
|
});
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const decodeValidJwt_1 = require("../../../logic/cognito/decodeValidJwt");
|
|
16
16
|
const getUserDirectoryReadAccessTokenActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName,
|
|
17
|
+
return ({ userDirectoryName, ignoreExpiration }, session) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
const authInfo = yield (0, decodeValidJwt_1.decodeValidJwt)(userPoolId, region, ignoreExpiration, session.accessToken);
|
|
21
21
|
if (!authInfo || !(authInfo === null || authInfo === void 0 ? void 0 : authInfo.username)) {
|
|
22
22
|
return (0, quidproquo_core_1.actionResultError)(quidproquo_core_1.ErrorTypeEnum.Unauthorized, 'Invalid accessToken');
|
|
@@ -14,9 +14,9 @@ const awsNamingUtils_1 = require("../../../awsNamingUtils");
|
|
|
14
14
|
const getExportedValue_1 = require("../../../logic/cloudformation/getExportedValue");
|
|
15
15
|
const setUserAttributes_1 = require("../../../logic/cognito/setUserAttributes");
|
|
16
16
|
const getUserDirectorySetUserAttributesActionProcessor = (qpqConfig) => {
|
|
17
|
-
return ({ userDirectoryName,
|
|
17
|
+
return ({ userDirectoryName, username, userAttributes }, session) => __awaiter(void 0, void 0, void 0, function* () {
|
|
18
18
|
const region = quidproquo_core_1.qpqCoreUtils.getApplicationModuleDeployRegion(qpqConfig);
|
|
19
|
-
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig
|
|
19
|
+
const userPoolId = yield (0, getExportedValue_1.getExportedValue)((0, awsNamingUtils_1.getCFExportNameUserPoolIdFromConfig)(userDirectoryName, qpqConfig), region);
|
|
20
20
|
yield (0, setUserAttributes_1.setUserAttributes)(userPoolId, region, username, userAttributes);
|
|
21
21
|
return (0, quidproquo_core_1.actionResult)(void 0);
|
|
22
22
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-actionprocessor-awslambda",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.187",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/commonjs/index.js",
|
|
6
6
|
"types": "./lib/commonjs/index.d.ts",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"lodash": "^4.17.21",
|
|
48
48
|
"node-cache": "^5.1.2",
|
|
49
49
|
"node-match-path": "^0.6.3",
|
|
50
|
-
"quidproquo-config-aws": "0.0.
|
|
51
|
-
"quidproquo-core": "0.0.
|
|
52
|
-
"quidproquo-webserver": "0.0.
|
|
50
|
+
"quidproquo-config-aws": "0.0.187",
|
|
51
|
+
"quidproquo-core": "0.0.187",
|
|
52
|
+
"quidproquo-webserver": "0.0.187"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/aws-lambda": "^8.10.109",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@types/jsonwebtoken": "^9.0.2",
|
|
58
58
|
"@types/lodash": "^4.14.194",
|
|
59
59
|
"@types/node": "^18.11.9",
|
|
60
|
-
"quidproquo-tsconfig": "0.0.
|
|
60
|
+
"quidproquo-tsconfig": "0.0.187",
|
|
61
61
|
"typescript": "^4.9.3"
|
|
62
62
|
}
|
|
63
63
|
}
|