@xube/kit-aws 0.0.113 → 0.2.0

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 +1 @@
1
- {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/resources/athena/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,4BAA4B,EAC7B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAKnD,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAK7D,eAAO,MAAM,gBAAgB,YAClB,gBAAgB,oBACP,MAAM,iBACT,MAAM,gBACP,MAAM,+BACS,MAAM,KAClC,OAAO,CAAC,MAAM,CAkBhB,CAAC;AAEF,eAAO,MAAM,iBAAiB,qBACV,MAAM,oBACN,gBAAgB,SAC3B,MAAM,KACZ,OAAO,CAAC,4BAA4B,CAiBtC,CAAC;AAEF,eAAO,MAAM,cAAc,oBACR,4BAA4B,oBAC3B,MAAM,oBACN,gBAAgB,KACjC,qBAuBF,CAAC"}
1
+ {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../src/resources/athena/get.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,4BAA4B,EAC7B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAKnD,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAG7D,eAAO,MAAM,gBAAgB,YAClB,gBAAgB,oBACP,MAAM,iBACT,MAAM,gBACP,MAAM,+BACS,MAAM,KAClC,OAAO,CAAC,MAAM,CAkBhB,CAAC;AAEF,eAAO,MAAM,iBAAiB,qBACV,MAAM,oBACN,gBAAgB,SAC3B,MAAM,KACZ,OAAO,CAAC,4BAA4B,CAiBtC,CAAC;AAEF,eAAO,MAAM,cAAc,oBACR,4BAA4B,oBAC3B,MAAM,oBACN,gBAAgB,KACjC,qBAuBF,CAAC"}
@@ -7,7 +7,6 @@ const zod_1 = require("zod");
7
7
  const client_1 = require("./client");
8
8
  const transform_1 = require("./transform");
9
9
  const query_1 = require("./query");
10
- // helpers and types moved to separate modules
11
10
  const handlePagination = async (request, glueDatabaseName, glueTableName, s3BucketName, s3BucketAthenaResultsPrefix) => {
12
11
  const paginationParams = {
13
12
  isNextPage: !!request.nextToken && !!request.queryExecutionId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws",
3
- "version": "0.0.113",
3
+ "version": "0.2.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
20
  "@types/aws-lambda": "^8.10.119",
21
- "@xube/kit-build": "^0.0.113"
21
+ "@xube/kit-build": "^0.2.0"
22
22
  },
23
23
  "dependencies": {
24
24
  "@aws-sdk/client-athena": "^3.656.0",
@@ -29,10 +29,10 @@
29
29
  "@aws-sdk/client-ssm": "^3.654.0",
30
30
  "@aws-sdk/lib-dynamodb": "^3.656.0",
31
31
  "@aws-sdk/util-dynamodb": "^3.656.0",
32
- "@xube/kit-aws-schema": "^0.0.113",
33
- "@xube/kit-log": "^0.0.113",
34
- "@xube/kit-request": "^0.0.113",
35
- "@xube/kit-schema": "^0.0.113",
32
+ "@xube/kit-aws-schema": "^0.2.0",
33
+ "@xube/kit-log": "^0.2.0",
34
+ "@xube/kit-request": "^0.2.0",
35
+ "@xube/kit-schema": "^0.2.0",
36
36
  "zod": "^3.23.8"
37
37
  }
38
38
  }
@@ -11,8 +11,6 @@ import { transformAthenaResults } from "./transform";
11
11
  import { PaginationParams, FetchDataRequest } from "./types";
12
12
  import { buildQuery, executeNewQuery } from "./query";
13
13
 
14
- // helpers and types moved to separate modules
15
-
16
14
  export const handlePagination = async (
17
15
  request: FetchDataRequest,
18
16
  glueDatabaseName: string,