@goldstack/utils-aws-lambda 0.3.18 → 0.3.19

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
@@ -10,7 +10,7 @@ This function will deploy an AWS lambda. Note this function will either need Doc
10
10
  interface DeployFunctionParams {
11
11
  lambdaPackageDir: string;
12
12
  targetArchiveName?: string;
13
- awsCredentials: AWS.Credentials;
13
+ awsCredentials: AWSCredentialIdentity;
14
14
  region: string;
15
15
  functionName: string;
16
16
  }
@@ -1,8 +1,8 @@
1
- import { Credentials } from 'aws-sdk';
1
+ import { AwsCredentialIdentityProvider } from '@aws-sdk/types';
2
2
  export interface DeployFunctionParams {
3
3
  lambdaPackageDir: string;
4
4
  targetArchiveName?: string;
5
- awsCredentials: Credentials;
5
+ awsCredentials: AwsCredentialIdentityProvider;
6
6
  region: string;
7
7
  functionName: string;
8
8
  }
@@ -1 +1 @@
1
- {"version":3,"file":"deployFunction.d.ts","sourceRoot":"","sources":["../../src/deployFunction.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,WAAW,oBAAoB;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,WAAW,CAAC;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,cAAc,WACjB,oBAAoB,KAC3B,QAAQ,GAAG,CAmDb,CAAC"}
1
+ {"version":3,"file":"deployFunction.d.ts","sourceRoot":"","sources":["../../src/deployFunction.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,gBAAgB,CAAC;AAE/D,MAAM,WAAW,oBAAoB;IACnC,gBAAgB,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,EAAE,6BAA6B,CAAC;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,cAAc,WACjB,oBAAoB,KAC3B,QAAQ,GAAG,CAmDb,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/utils-aws-lambda",
3
- "version": "0.3.18",
3
+ "version": "0.3.19",
4
4
  "description": "Utilities for deploying AWS Lambda functions",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -42,13 +42,13 @@
42
42
  "version:apply:force": "yarn version $@ && yarn version apply"
43
43
  },
44
44
  "dependencies": {
45
- "@goldstack/infra-aws": "0.4.13",
46
- "@goldstack/utils-aws-cli": "0.4.13",
45
+ "@aws-sdk/types": "^3.468.0",
46
+ "@goldstack/infra-aws": "0.4.14",
47
+ "@goldstack/utils-aws-cli": "0.4.14",
47
48
  "@goldstack/utils-log": "0.3.9",
48
49
  "@goldstack/utils-sh": "0.5.9",
49
50
  "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
50
51
  "archiver": "^5.3.1",
51
- "aws-sdk": "2.1525.0",
52
52
  "esbuild": "^0.17.18",
53
53
  "esbuild-ssr-css-modules-plugin": "0.1.10"
54
54
  },