triangle-utils 1.4.39 → 1.4.40
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/src/UtilsS3.js +2 -2
- package/dist/src/f.js +2 -2
- package/package.json +1 -1
- package/src/UtilsS3.ts +2 -2
- package/src/f.ts +2 -2
package/dist/src/UtilsS3.js
CHANGED
|
@@ -52,10 +52,10 @@ export class UtilsS3 {
|
|
|
52
52
|
.filter(key => key.substring(key.length - 1) !== "/")
|
|
53
53
|
.map(key => "s3://" + s3_key.Bucket + "/" + key);
|
|
54
54
|
s3_filenames.push(...new_s3_filenames);
|
|
55
|
-
if (response.
|
|
55
|
+
if (response.NextContinuationToken === undefined || !compile) {
|
|
56
56
|
return s3_filenames;
|
|
57
57
|
}
|
|
58
|
-
last_token = response.
|
|
58
|
+
last_token = response.NextContinuationToken;
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
async get_file(s3_filename, encoding = "utf-8") {
|
package/dist/src/f.js
CHANGED
|
@@ -13,5 +13,5 @@ const config = {
|
|
|
13
13
|
...api_keys
|
|
14
14
|
};
|
|
15
15
|
const utils = new TriangleUtils(config);
|
|
16
|
-
const foods = await utils.dynamodb.query("triage_docket_documents:register_document_id", { register_document_id: "E6-17065" })
|
|
17
|
-
console.log(foods)
|
|
16
|
+
// const foods = await utils.dynamodb.query("triage_docket_documents:register_document_id", { register_document_id : "E6-17065" })
|
|
17
|
+
// console.log(foods)
|
package/package.json
CHANGED
package/src/UtilsS3.ts
CHANGED
|
@@ -62,10 +62,10 @@ export class UtilsS3 {
|
|
|
62
62
|
.filter(key => key.substring(key.length - 1) !== "/")
|
|
63
63
|
.map(key => "s3://" + s3_key.Bucket + "/" + key)
|
|
64
64
|
s3_filenames.push(...new_s3_filenames)
|
|
65
|
-
if (response.
|
|
65
|
+
if (response.NextContinuationToken === undefined || !compile) {
|
|
66
66
|
return s3_filenames
|
|
67
67
|
}
|
|
68
|
-
last_token = response.
|
|
68
|
+
last_token = response.NextContinuationToken
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
package/src/f.ts
CHANGED
|
@@ -20,6 +20,6 @@ const config = {
|
|
|
20
20
|
|
|
21
21
|
const utils = new TriangleUtils(config)
|
|
22
22
|
|
|
23
|
-
const foods = await utils.dynamodb.query("triage_docket_documents:register_document_id", { register_document_id : "E6-17065" })
|
|
23
|
+
// const foods = await utils.dynamodb.query("triage_docket_documents:register_document_id", { register_document_id : "E6-17065" })
|
|
24
24
|
|
|
25
|
-
console.log(foods)
|
|
25
|
+
// console.log(foods)
|