@takaro/aws 0.0.14 → 0.0.18

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/config.d.ts CHANGED
@@ -9,3 +9,4 @@ interface IAwsConfig extends IBaseConfig {
9
9
  }
10
10
  export declare const config: Config<IAwsConfig>;
11
11
  export {};
12
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAErD,UAAU,UAAW,SAAQ,WAAW;IACtC,GAAG,EAAE;QACH,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,EAAE,MAAM,CAAC;QACpB,eAAe,EAAE,MAAM,CAAC;QACxB,QAAQ,EAAE,MAAM,CAAC;KAClB,CAAC;CACH;AA+BD,eAAO,MAAM,MAAM,oBAAyC,CAAC"}
@@ -3,3 +3,4 @@ interface CreateLambdaOptions {
3
3
  }
4
4
  export declare function createLambda({ domainId }: CreateLambdaOptions): Promise<void>;
5
5
  export {};
6
+ //# sourceMappingURL=createLambda.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createLambda.d.ts","sourceRoot":"","sources":["../src/createLambda.ts"],"names":[],"mappings":"AAIA,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAGD,wBAAsB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,mBAAmB,iBAsCnE"}
@@ -3,3 +3,4 @@ interface DeleteLambdaOptions {
3
3
  }
4
4
  export declare function deleteLambda({ domainId }: DeleteLambdaOptions): Promise<void>;
5
5
  export {};
6
+ //# sourceMappingURL=deleteLambda.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deleteLambda.d.ts","sourceRoot":"","sources":["../src/deleteLambda.ts"],"names":[],"mappings":"AAGA,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,wBAAsB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,mBAAmB,iBAgBnE"}
@@ -11,3 +11,4 @@ interface IFunctionResult {
11
11
  }
12
12
  export declare function executeLambda({ data, fn, token, domainId }: executeLambdaOpts): Promise<IFunctionResult>;
13
13
  export {};
14
+ //# sourceMappingURL=executeLambda.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"executeLambda.d.ts","sourceRoot":"","sources":["../src/executeLambda.ts"],"names":[],"mappings":"AAKA,UAAU,iBAAiB;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,eAAe;IACvB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAYD,wBAAsB,aAAa,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,iBAAiB,4BAqBnF"}
package/dist/main.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './createLambda.js';
2
2
  export * from './deleteLambda.js';
3
3
  export * from './executeLambda.js';
4
+ //# sourceMappingURL=main.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,16 +1,13 @@
1
1
  {
2
2
  "name": "@takaro/aws",
3
- "version": "0.0.14",
3
+ "version": "0.0.18",
4
4
  "description": "AWS helper functions",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
7
7
  "type": "module",
8
8
  "scripts": {
9
9
  "start:dev": "tsc --watch --preserveWatchOutput -p ./tsconfig.build.json",
10
- "build": "tsc -p ./tsconfig.build.json",
11
- "test": "npm run test:unit --if-present && npm run test:integration --if-present",
12
- "test:unit": "echo 'No tests (yet :))'",
13
- "test:integration": "echo 'No tests (yet :))'"
10
+ "build": "tsc -p ./tsconfig.build.json"
14
11
  },
15
12
  "keywords": [],
16
13
  "author": "",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../tsconfig.esm.json",
2
+ "extends": "../../tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "rootDir": "src",
5
5
  "outDir": "dist"