@goldstack/template-lambda-api 0.6.54 → 0.6.56
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AWSDeployment } from '@goldstack/infra-aws';
|
|
2
|
-
import { TerraformDeployment } from '@goldstack/utils-terraform';
|
|
3
|
-
import { Deployment, DeploymentConfiguration } from '@goldstack/infra';
|
|
4
|
-
import { Package, Configuration } from '@goldstack/utils-package';
|
|
5
|
-
import { LambdaApiDeploymentConfiguration } from '@goldstack/utils-aws-lambda';
|
|
1
|
+
import type { AWSDeployment } from '@goldstack/infra-aws';
|
|
2
|
+
import type { TerraformDeployment } from '@goldstack/utils-terraform';
|
|
3
|
+
import type { Deployment, DeploymentConfiguration } from '@goldstack/infra';
|
|
4
|
+
import type { Package, Configuration } from '@goldstack/utils-package';
|
|
5
|
+
import type { LambdaApiDeploymentConfiguration } from '@goldstack/utils-aws-lambda';
|
|
6
6
|
export interface ThisDeploymentConfiguration extends LambdaApiDeploymentConfiguration, DeploymentConfiguration {
|
|
7
7
|
}
|
|
8
8
|
export interface ThisDeployment extends Deployment, AWSDeployment, TerraformDeployment {
|
|
@@ -30,8 +30,8 @@ export interface ThisPackage extends Package {
|
|
|
30
30
|
configuration: ThisPackageConfiguration;
|
|
31
31
|
deployments: LambdaApiDeployments;
|
|
32
32
|
}
|
|
33
|
-
export { ThisDeploymentConfiguration as LambdaApiDeploymentConfiguration };
|
|
34
|
-
export { ThisDeployment as LambdaApiDeployment };
|
|
35
|
-
export { ThisPackageConfiguration as LambdaApiConfiguration };
|
|
36
|
-
export { ThisPackage as LambdaApiPackage };
|
|
33
|
+
export type { ThisDeploymentConfiguration as LambdaApiDeploymentConfiguration };
|
|
34
|
+
export type { ThisDeployment as LambdaApiDeployment };
|
|
35
|
+
export type { ThisPackageConfiguration as LambdaApiConfiguration };
|
|
36
|
+
export type { ThisPackage as LambdaApiPackage };
|
|
37
37
|
//# sourceMappingURL=LambdaApiPackage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LambdaApiPackage.d.ts","sourceRoot":"","sources":["../../../src/types/LambdaApiPackage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"LambdaApiPackage.d.ts","sourceRoot":"","sources":["../../../src/types/LambdaApiPackage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACtE,OAAO,KAAK,EAAE,UAAU,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,6BAA6B,CAAC;AAEpF,MAAM,WAAW,2BACf,SAAQ,gCAAgC,EACtC,uBAAuB;CAAG;AAE9B,MAAM,WAAW,cAAe,SAAQ,UAAU,EAAE,aAAa,EAAE,mBAAmB;IACpF,aAAa,EAAE,2BAA2B,CAAC;CAC5C;AAED;;;;GAIG;AACH,MAAM,MAAM,oBAAoB,GAAG,cAAc,EAAE,CAAC;AAEpD;;;;;GAKG;AACH,MAAM,MAAM,wBAAwB,GAAG,aAAa,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,WAAY,SAAQ,OAAO;IAC1C,aAAa,EAAE,wBAAwB,CAAC;IACxC,WAAW,EAAE,oBAAoB,CAAC;CACnC;AAED,YAAY,EAAE,2BAA2B,IAAI,gCAAgC,EAAE,CAAC;AAChF,YAAY,EAAE,cAAc,IAAI,mBAAmB,EAAE,CAAC;AACtD,YAAY,EAAE,wBAAwB,IAAI,sBAAsB,EAAE,CAAC;AACnE,YAAY,EAAE,WAAW,IAAI,gBAAgB,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goldstack/template-lambda-api",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.56",
|
|
4
4
|
"description": "Companion for project templates for deploying Lambdas as a REST API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"goldstack",
|
|
@@ -41,29 +41,29 @@
|
|
|
41
41
|
"version:apply:force": "yarn version $@ && yarn version apply"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@goldstack/infra": "0.4.
|
|
45
|
-
"@goldstack/infra-aws": "0.4.
|
|
46
|
-
"@goldstack/utils-aws-lambda": "0.3.
|
|
47
|
-
"@goldstack/utils-package": "0.4.
|
|
48
|
-
"@goldstack/utils-terraform": "0.4.
|
|
44
|
+
"@goldstack/infra": "0.4.24",
|
|
45
|
+
"@goldstack/infra-aws": "0.4.36",
|
|
46
|
+
"@goldstack/utils-aws-lambda": "0.3.46",
|
|
47
|
+
"@goldstack/utils-package": "0.4.24",
|
|
48
|
+
"@goldstack/utils-terraform": "0.4.48",
|
|
49
49
|
"source-map-support": "^0.5.21"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@goldstack/utils-docs-cli": "0.3.11",
|
|
53
|
-
"@goldstack/utils-git": "0.2.
|
|
54
|
-
"@goldstack/utils-package-config-generate": "0.3.
|
|
55
|
-
"@swc/core": "^1.
|
|
56
|
-
"@swc/jest": "^0.2.
|
|
53
|
+
"@goldstack/utils-git": "0.2.14",
|
|
54
|
+
"@goldstack/utils-package-config-generate": "0.3.15",
|
|
55
|
+
"@swc/core": "^1.12.11",
|
|
56
|
+
"@swc/jest": "^0.2.39",
|
|
57
57
|
"@types/aws-lambda": "^8.10.147",
|
|
58
58
|
"@types/jest": "^29.5.14",
|
|
59
|
-
"@types/node": "^
|
|
59
|
+
"@types/node": "^24.0.13",
|
|
60
60
|
"@types/yargs": "^17.0.33",
|
|
61
61
|
"jest": "^29.7.0",
|
|
62
62
|
"jest-pnp-resolver": "^1.2.3",
|
|
63
63
|
"rimraf": "^3.0.2",
|
|
64
64
|
"ts-json-schema-generator": "^1.0.0",
|
|
65
65
|
"ts-node": "^10.9.2",
|
|
66
|
-
"typescript": "^5.
|
|
66
|
+
"typescript": "^5.8.3"
|
|
67
67
|
},
|
|
68
68
|
"publishConfig": {
|
|
69
69
|
"main": "dist/src/templateLambdaApi.js"
|