@vercube/serverless 0.0.48 โ 1.0.0-beta.2
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/README.md
CHANGED
|
@@ -31,9 +31,10 @@
|
|
|
31
31
|
pnpm add @vercube/serverless
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
## ๐
|
|
34
|
+
## ๐ Documentation
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
- **Concepts & adapters:** [Serverless module (overview)](https://vercube.dev/docs/modules/serverless/overview)
|
|
37
|
+
- **Deploy guides:** [AWS Lambda](https://vercube.dev/docs/deployment/aws-lambda) ยท [Azure Functions](https://vercube.dev/docs/deployment/azure-functions)
|
|
37
38
|
|
|
38
39
|
## ๐ License
|
|
39
40
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { t as ServerlessHandler } from "../../ServerlessTypes-
|
|
1
|
+
import { t as ServerlessHandler } from "../../ServerlessTypes-DXuRGWOU.mjs";
|
|
2
2
|
import { App } from "@vercube/core";
|
|
3
3
|
import { Writable } from "node:stream";
|
|
4
4
|
|
|
5
|
-
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.
|
|
5
|
+
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.162/node_modules/@types/aws-lambda/common/api-gateway.d.ts
|
|
6
6
|
// Default authorizer type, prefer using a specific type with the "...WithAuthorizer..." variant types.
|
|
7
7
|
// Note that this doesn't have to be a context from a custom lambda outhorizer, AWS also has a cognito
|
|
8
8
|
// authorizer type and could add more, so the property won't always be a string.
|
|
@@ -68,7 +68,7 @@ interface APIGatewayEventIdentity {
|
|
|
68
68
|
vpceId?: string | undefined;
|
|
69
69
|
}
|
|
70
70
|
//#endregion
|
|
71
|
-
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.
|
|
71
|
+
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.162/node_modules/@types/aws-lambda/handler.d.ts
|
|
72
72
|
/**
|
|
73
73
|
* {@link Handler} context parameter.
|
|
74
74
|
* See {@link https://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-context.html AWS documentation}.
|
|
@@ -204,7 +204,7 @@ declare global {
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
//#endregion
|
|
207
|
-
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.
|
|
207
|
+
//#region ../../node_modules/.pnpm/@types+aws-lambda@8.10.162/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts
|
|
208
208
|
/**
|
|
209
209
|
* Works with Lambda Proxy Integration for Rest API or HTTP API integration Payload Format version 1.0
|
|
210
210
|
* @see - https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as ServerlessHandler } from "../../ServerlessTypes-
|
|
1
|
+
import { t as ServerlessHandler } from "../../ServerlessTypes-DXuRGWOU.mjs";
|
|
2
2
|
import { App } from "@vercube/core";
|
|
3
3
|
import { Blob } from "buffer";
|
|
4
4
|
import { ReadableStream } from "stream/web";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as ServerlessHandler } from "./ServerlessTypes-
|
|
2
|
-
export { ServerlessHandler };
|
|
1
|
+
import { t as ServerlessHandler } from "./ServerlessTypes-DXuRGWOU.mjs";
|
|
2
|
+
export type { ServerlessHandler };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercube/serverless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Serverless module for Vercube framework",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"srvx": "0.11.16",
|
|
40
40
|
"ufo": "1.6.4",
|
|
41
|
-
"@vercube/core": "0.0.
|
|
42
|
-
"@vercube/di": "0.0.
|
|
41
|
+
"@vercube/core": "1.0.0-beta.2",
|
|
42
|
+
"@vercube/di": "1.0.0-beta.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@azure/functions": "4.16.0",
|
|
46
|
-
"@types/aws-lambda": "8.10.
|
|
46
|
+
"@types/aws-lambda": "8.10.162"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"inlinedDependencies": {
|
|
52
52
|
"@azure/functions": "4.16.0",
|
|
53
|
-
"@types/aws-lambda": "8.10.
|
|
53
|
+
"@types/aws-lambda": "8.10.162"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown --config tsdown.config.ts --config-loader=unrun"
|
|
File without changes
|