node-s3tables 0.0.13 → 0.0.14
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/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -848,7 +848,11 @@ async function updateManifestList(params) {
|
|
|
848
848
|
const passthrough = new node_stream.PassThrough();
|
|
849
849
|
const decoder = new avsc__namespace.streams.BlockDecoder({
|
|
850
850
|
codecs: { deflate: zlib__namespace.inflateRaw },
|
|
851
|
-
parseHook
|
|
851
|
+
parseHook(schema) {
|
|
852
|
+
return avsc__namespace.Type.forSchema(schema, {
|
|
853
|
+
registry: { ...AvroRegistry },
|
|
854
|
+
});
|
|
855
|
+
},
|
|
852
856
|
});
|
|
853
857
|
const encoder = new avsc__namespace.streams.BlockEncoder(ManifestListType, {
|
|
854
858
|
codec: 'deflate',
|