@awsless/cli 0.0.46-next.4 → 0.0.46-next.6
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/dist/app.json +1 -1
- package/dist/app.stage.json +1 -1
- package/dist/bin.js +174 -86
- package/dist/build-json-schema.js +6 -6
- package/dist/handlers/{pubsub-server.mjs → pubsub-server.js} +31410 -37611
- package/dist/handlers/{rpc.mjs → rpc.js} +0 -7
- package/dist/stack.json +1 -1
- package/dist/stack.stage.json +1 -1
- package/package.json +11 -11
- /package/dist/handlers/{bundle.mjs → bundle.js} +0 -0
- /package/dist/handlers/{icon.mjs → icon.js} +0 -0
- /package/dist/handlers/{image.mjs → image.js} +0 -0
- /package/dist/handlers/{on-error-log.mjs → on-error-log.js} +0 -0
- /package/dist/handlers/{on-failure.mjs → on-failure.js} +0 -0
- /package/dist/handlers/{pubsub-publisher.mjs → pubsub-publisher.js} +0 -0
|
@@ -389,13 +389,6 @@ var handle_default = async (event) => {
|
|
|
389
389
|
if (!auth.authorized) {
|
|
390
390
|
return response(405, UNAUTHORIZED(auth.reason));
|
|
391
391
|
}
|
|
392
|
-
console.log({
|
|
393
|
-
requestId,
|
|
394
|
-
lockKey: auth.lockKey,
|
|
395
|
-
authContext: auth.context,
|
|
396
|
-
request: request.output.body,
|
|
397
|
-
ip: request.output.requestContext.http.sourceIp
|
|
398
|
-
});
|
|
399
392
|
const calls = request.output.body.map((fn) => {
|
|
400
393
|
return {
|
|
401
394
|
...fn,
|