@goldstack/template-lambda-api 0.6.0 → 0.6.1

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,2 +1,2 @@
1
- export * from './types/LambdaApiPackage';
1
+ export * from './types/LambdaApiPackage';
2
2
  //# sourceMappingURL=templateLambdaApi.d.ts.map
@@ -1,18 +1,18 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./types/LambdaApiPackage"), exports);
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types/LambdaApiPackage"), exports);
18
18
  //# sourceMappingURL=templateLambdaApi.js.map
@@ -1,37 +1,37 @@
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';
6
- export interface ThisDeploymentConfiguration extends LambdaApiDeploymentConfiguration, DeploymentConfiguration {
7
- }
8
- export interface ThisDeployment extends Deployment, AWSDeployment, TerraformDeployment {
9
- configuration: ThisDeploymentConfiguration;
10
- }
11
- /**
12
- * Places where the lambda should be deployed to.
13
- *
14
- * @title Deployments
15
- */
16
- export declare type LambdaApiDeployments = ThisDeployment[];
17
- /**
18
- * Configures this lambda.
19
- *
20
- * @title Lambda Configuration
21
- *
22
- */
23
- export declare type ThisPackageConfiguration = Configuration;
24
- /**
25
- * A deployment for a lambda API.
26
- *
27
- * @title Lambda API Package
28
- */
29
- export interface ThisPackage extends Package {
30
- configuration: ThisPackageConfiguration;
31
- deployments: LambdaApiDeployments;
32
- }
33
- export { ThisDeploymentConfiguration as LambdaApiDeploymentConfiguration };
34
- export { ThisDeployment as LambdaApiDeployment };
35
- export { ThisPackageConfiguration as LambdaApiConfiguration };
36
- export { ThisPackage as LambdaApiPackage };
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';
6
+ export interface ThisDeploymentConfiguration extends LambdaApiDeploymentConfiguration, DeploymentConfiguration {
7
+ }
8
+ export interface ThisDeployment extends Deployment, AWSDeployment, TerraformDeployment {
9
+ configuration: ThisDeploymentConfiguration;
10
+ }
11
+ /**
12
+ * Places where the lambda should be deployed to.
13
+ *
14
+ * @title Deployments
15
+ */
16
+ export declare type LambdaApiDeployments = ThisDeployment[];
17
+ /**
18
+ * Configures this lambda.
19
+ *
20
+ * @title Lambda Configuration
21
+ *
22
+ */
23
+ export declare type ThisPackageConfiguration = Configuration;
24
+ /**
25
+ * A deployment for a lambda API.
26
+ *
27
+ * @title Lambda API Package
28
+ */
29
+ export interface ThisPackage extends Package {
30
+ configuration: ThisPackageConfiguration;
31
+ deployments: LambdaApiDeployments;
32
+ }
33
+ export { ThisDeploymentConfiguration as LambdaApiDeploymentConfiguration };
34
+ export { ThisDeployment as LambdaApiDeployment };
35
+ export { ThisPackageConfiguration as LambdaApiConfiguration };
36
+ export { ThisPackage as LambdaApiPackage };
37
37
  //# sourceMappingURL=LambdaApiPackage.d.ts.map
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=LambdaApiPackage.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/template-lambda-api",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Companion for project templates for deploying Lambdas as a REST API",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -41,17 +41,17 @@
41
41
  "version:apply:force": "yarn version $@ && yarn version apply"
42
42
  },
43
43
  "dependencies": {
44
- "@goldstack/infra": "0.4.0",
45
- "@goldstack/infra-aws": "0.4.0",
46
- "@goldstack/utils-aws-lambda": "0.3.0",
47
- "@goldstack/utils-package": "0.4.0",
48
- "@goldstack/utils-terraform": "0.4.0",
44
+ "@goldstack/infra": "0.4.1",
45
+ "@goldstack/infra-aws": "0.4.1",
46
+ "@goldstack/utils-aws-lambda": "0.3.1",
47
+ "@goldstack/utils-package": "0.4.1",
48
+ "@goldstack/utils-terraform": "0.4.1",
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.0",
54
- "@goldstack/utils-package-config-generate": "0.3.0",
53
+ "@goldstack/utils-git": "0.2.1",
54
+ "@goldstack/utils-package-config-generate": "0.3.1",
55
55
  "@types/aws-lambda": "^8.10.88",
56
56
  "@types/jest": "^28.1.8",
57
57
  "@types/node": "^18.7.13",