@azure/storage-blob-changefeed 12.0.0-alpha.20220413.1 → 12.0.0-alpha.20220419.3

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.
Files changed (47) hide show
  1. package/CHANGELOG.md +4 -1
  2. package/dist/index.js +147 -73
  3. package/dist/index.js.map +1 -1
  4. package/dist-esm/storage-blob-changefeed/src/ChangeFeed.js.map +1 -1
  5. package/dist-esm/storage-blob-changefeed/src/ChangeFeedFactory.js.map +1 -1
  6. package/dist-esm/storage-blob-changefeed/src/Chunk.js +2 -8
  7. package/dist-esm/storage-blob-changefeed/src/Chunk.js.map +1 -1
  8. package/dist-esm/storage-blob-changefeed/src/LazyLoadingBlobStream.js.map +1 -1
  9. package/dist-esm/storage-blob-changefeed/src/Segment.js.map +1 -1
  10. package/dist-esm/storage-blob-changefeed/src/SegmentFactory.js.map +1 -1
  11. package/dist-esm/storage-blob-changefeed/src/Shard.js.map +1 -1
  12. package/dist-esm/storage-blob-changefeed/src/ShardFactory.js.map +1 -1
  13. package/dist-esm/storage-blob-changefeed/src/models/BlobChangeFeedEvent.js.map +1 -1
  14. package/dist-esm/storage-blob-changefeed/src/utils/utils.common.js +81 -0
  15. package/dist-esm/storage-blob-changefeed/src/utils/utils.common.js.map +1 -1
  16. package/dist-esm/storage-internal-avro/src/AvroParser.js +38 -40
  17. package/dist-esm/storage-internal-avro/src/AvroParser.js.map +1 -1
  18. package/dist-esm/storage-internal-avro/src/AvroReadableFromBlob.js +4 -4
  19. package/dist-esm/storage-internal-avro/src/AvroReadableFromBlob.js.map +1 -1
  20. package/dist-esm/storage-internal-avro/src/AvroReadableFromStream.js +7 -5
  21. package/dist-esm/storage-internal-avro/src/AvroReadableFromStream.js.map +1 -1
  22. package/dist-esm/storage-internal-avro/src/AvroReader.js +8 -6
  23. package/dist-esm/storage-internal-avro/src/AvroReader.js.map +1 -1
  24. package/dist-esm/storage-internal-avro/src/utils/utils.common.js +2 -1
  25. package/dist-esm/storage-internal-avro/src/utils/utils.common.js.map +1 -1
  26. package/package.json +2 -2
  27. package/types/3.1/storage-blob-changefeed/src/models/BlobChangeFeedEvent.d.ts +140 -1
  28. package/types/3.1/storage-blob-changefeed/src/utils/utils.common.d.ts +2 -0
  29. package/types/3.1/storage-blob-changefeed/test/utils/testutils.common.d.ts +9 -1
  30. package/types/3.1/storage-blob-changefeed.d.ts +140 -1
  31. package/types/3.1/storage-internal-avro/src/AvroParser.d.ts +1 -1
  32. package/types/3.1/storage-internal-avro/src/AvroReader.d.ts +1 -1
  33. package/types/latest/storage-blob-changefeed/src/Chunk.d.ts.map +1 -1
  34. package/types/latest/storage-blob-changefeed/src/models/BlobChangeFeedEvent.d.ts +140 -1
  35. package/types/latest/storage-blob-changefeed/src/models/BlobChangeFeedEvent.d.ts.map +1 -1
  36. package/types/latest/storage-blob-changefeed/src/utils/utils.common.d.ts +2 -0
  37. package/types/latest/storage-blob-changefeed/src/utils/utils.common.d.ts.map +1 -1
  38. package/types/latest/storage-blob-changefeed/test/utils/testutils.common.d.ts +9 -1
  39. package/types/latest/storage-blob-changefeed/test/utils/testutils.common.d.ts.map +1 -1
  40. package/types/latest/storage-blob-changefeed.d.ts +146 -1
  41. package/types/latest/storage-internal-avro/src/AvroParser.d.ts +1 -1
  42. package/types/latest/storage-internal-avro/src/AvroParser.d.ts.map +1 -1
  43. package/types/latest/storage-internal-avro/src/AvroReadableFromBlob.d.ts.map +1 -1
  44. package/types/latest/storage-internal-avro/src/AvroReadableFromStream.d.ts.map +1 -1
  45. package/types/latest/storage-internal-avro/src/AvroReader.d.ts +1 -1
  46. package/types/latest/storage-internal-avro/src/AvroReader.d.ts.map +1 -1
  47. package/types/latest/storage-internal-avro/src/utils/utils.common.d.ts.map +1 -1
@@ -7,6 +7,11 @@ import { StoragePipelineOptions } from '@azure/storage-blob';
7
7
  import { StorageSharedKeyCredential } from '@azure/storage-blob';
8
8
  import { TokenCredential } from '@azure/core-http';
9
9
 
10
+ /**
11
+ * The AccessTier.
12
+ */
13
+ export declare type AccessTier = "P4" | "P6" | "P10" | "P15" | "P20" | "P30" | "P40" | "P50" | "P60" | "P70" | "P80" | "Hot" | "Cool" | "Archive";
14
+
10
15
  /**
11
16
  * BlobChangeFeedClient.
12
17
  * @see https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-change-feed?tabs=azure-portal
@@ -185,6 +190,10 @@ export declare interface BlobChangeFeedEvent {
185
190
  * The schema version of the data object. The publisher defines the schema version.
186
191
  */
187
192
  dataVersion?: string;
193
+ /**
194
+ * The schema version of the data object. The publisher defines the schema version.
195
+ */
196
+ schemaVersion?: number;
188
197
  /**
189
198
  * The schema version of the event metadata. Event Grid defines the schema of the top-level properties. Event Grid provides this value.
190
199
  */
@@ -223,6 +232,12 @@ export declare interface BlobChangeFeedEventData {
223
232
  * The size of the blob in bytes.
224
233
  */
225
234
  contentLength: number;
235
+ /**
236
+ * The offset in bytes of a write operation taken at the point where the event-triggering application completed
237
+ * writing to the file.
238
+ * Appears only for events triggered on blob storage accounts that have a hierarchical namespace.
239
+ */
240
+ contentOffset?: number;
226
241
  /**
227
242
  * The type of blob.
228
243
  */
@@ -232,11 +247,60 @@ export declare interface BlobChangeFeedEventData {
232
247
  * <storage-account-name>.blob.core.windows.net/<container-name>/<file-name>.
233
248
  */
234
249
  url: string;
250
+ /**
251
+ * The url of the file that will exist after the operation completes. For example, if a file is renamed,
252
+ * the destinationUrl property contains the url of the new file name.
253
+ * Appears only for events triggered on blob storage accounts that have a hierarchical namespace.
254
+ */
255
+ destinationUrl?: string;
256
+ /**
257
+ * The url of the file that exists prior to the operation. For example, if a file is renamed, the sourceUrl
258
+ * contains the url of the original file name prior to the rename operation.
259
+ * Appears only for events triggered on blob storage accounts that have a hierarchical namespace.
260
+ */
261
+ sourceUrl?: string;
262
+ /**
263
+ * True to perform the operation on all child directories; otherwise False.
264
+ * Appears only for events triggered on blob storage accounts that have a hierarchical namespace.
265
+ */
266
+ isRecursive?: boolean;
235
267
  /**
236
268
  * An opaque string value representing the logical sequence of events for any particular blob name.
237
269
  * Users can use standard string comparison to understand the relative sequence of two events on the same blob name.
238
270
  */
239
271
  sequencer: string;
272
+ /**
273
+ * Previous info for the blob.
274
+ */
275
+ previousInfo?: ChangeFeedEventPreviousInfo;
276
+ /**
277
+ * Blob properties that were updated during this event.
278
+ */
279
+ updatedBlobProperties?: UpdatedBlobProperties;
280
+ /**
281
+ * Blob tags that were updated during this event.
282
+ */
283
+ updatedBlobTags?: BlobTagsChange;
284
+ /**
285
+ * The Snapshot associated with the event.
286
+ */
287
+ snapshot?: string;
288
+ /**
289
+ * Version of the blob.
290
+ */
291
+ blobVersion?: string;
292
+ /**
293
+ * Version of the container the blob is in.
294
+ */
295
+ containerVersion?: string;
296
+ /**
297
+ * Access Tier of the blob.
298
+ */
299
+ blobAccessTier?: AccessTier;
300
+ /**
301
+ * AsyncOperationInfo
302
+ */
303
+ longRunningOperationInfo?: BlobOperationResult;
240
304
  }
241
305
 
242
306
  /**
@@ -257,7 +321,7 @@ export declare class BlobChangeFeedEventPage {
257
321
  /**
258
322
  * Change feed event record types.
259
323
  */
260
- export declare type BlobChangeFeedEventType = "UnspecifiedEventType" | "BlobCreated" | "BlobDeleted" | "BlobPropertiesUpdated" | "BlobSnapshotCreated" | "Control" | "BlobTierChanged" | "BlobAsyncOperationInitiated" | "BlobMetadataUpdated";
324
+ export declare type BlobChangeFeedEventType = "UnspecifiedEventType" | "BlobCreated" | "BlobDeleted" | "BlobPropertiesUpdated" | "BlobSnapshotCreated" | "Control" | "BlobTierChanged" | "BlobAsyncOperationInitiated" | "BlobMetadataUpdated" | "RestorePointMarkerCreated";
261
325
 
262
326
  /**
263
327
  * Options to configure {@link BlobChangeFeedClient.listChanges} operation.
@@ -280,11 +344,87 @@ export declare interface BlobChangeFeedListChangesOptions extends CommonOptions
280
344
  end?: Date;
281
345
  }
282
346
 
347
+ /**
348
+ * ChangeFeedEvent AsyncOperationInfo
349
+ */
350
+ export declare interface BlobOperationResult {
351
+ /**
352
+ * Destination access tier.
353
+ */
354
+ destinationAccessTier?: AccessTier;
355
+ /**
356
+ * If the operation was async.
357
+ */
358
+ isAsync: boolean;
359
+ /**
360
+ * Copy Id.
361
+ */
362
+ copyId?: string;
363
+ }
364
+
365
+ /**
366
+ * A blob property that was updated.
367
+ */
368
+ export declare interface BlobPropertyChange {
369
+ /**
370
+ * The name of the property that was updated.
371
+ */
372
+ propertyName: string;
373
+ /**
374
+ * The previous value of the property.
375
+ */
376
+ oldValue: string;
377
+ /**
378
+ * The new value of the property.
379
+ */
380
+ newValue: string;
381
+ }
382
+
383
+ /**
384
+ * Blob tags that were updated as part of the change feed event.
385
+ */
386
+ export declare interface BlobTagsChange {
387
+ /**
388
+ * Previous Tags.
389
+ */
390
+ oldTags: Record<string, string>;
391
+ /**
392
+ * New Tags.
393
+ */
394
+ newTags: Record<string, string>;
395
+ }
396
+
283
397
  /**
284
398
  * The type of blob.
285
399
  */
286
400
  export declare type BlobType = "BlockBlob" | "AppendBlob" | "PageBlob";
287
401
 
402
+ /**
403
+ * Previous info for Change Feed Event.
404
+ */
405
+ export declare interface ChangeFeedEventPreviousInfo {
406
+ /**
407
+ * Soft delete snapshot.
408
+ */
409
+ softDeleteSnapshot?: string;
410
+ /**
411
+ * If the blob was soft deleted.
412
+ */
413
+ isBlobSoftDeleted: boolean;
414
+ /**
415
+ * Blob version.
416
+ */
417
+ newBlobVersion?: string;
418
+ /**
419
+ * Last version.
420
+ */
421
+ oldBlobVersion?: string;
422
+ /**
423
+ * Previous Access Tier
424
+ */
425
+ previousTier?: AccessTier;
426
+ }
427
+
288
428
  /**
289
429
  * Creates a new Pipeline object with Credential provided.
290
430
  *
@@ -294,4 +434,9 @@ export declare type BlobType = "BlockBlob" | "AppendBlob" | "PageBlob";
294
434
  */
295
435
  export declare function newPipeline(credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, pipelineOptions?: StoragePipelineOptions): Pipeline;
296
436
 
437
+ /**
438
+ * Blob properties that were updated during an event.
439
+ */
440
+ export declare type UpdatedBlobProperties = Record<string, BlobPropertyChange>;
441
+
297
442
  export { }
@@ -1,5 +1,5 @@
1
- import { AvroReadable } from "./AvroReadable";
2
1
  import { AbortSignalLike } from "@azure/abort-controller";
2
+ import { AvroReadable } from "./AvroReadable";
3
3
  /**
4
4
  * Options to configure the AvroParser read methods.
5
5
  * See {@link AvroParser.readFixedBytes}, {@link AvroParser.readMap} and etc.
@@ -1 +1 @@
1
- {"version":3,"file":"AvroParser.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroParser.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D;;;GAGG;AACH,UAAU,qBAAqB;IAC7B;;;OAGG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,qBAAa,UAAU;IACrB;;;;;;OAMG;WACiB,cAAc,CAChC,MAAM,EAAE,YAAY,EACpB,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,UAAU,CAAC;IAQtB;;;;;OAKG;mBACkB,QAAQ;mBAWR,cAAc;WAmCf,QAAQ,CAC1B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAIE,OAAO,CACzB,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAIE,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;WAIzB,WAAW,CAC7B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,OAAO,CAAC;WAWC,SAAS,CAC3B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAME,UAAU,CAC5B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAME,SAAS,CAC3B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,UAAU,CAAC;WASF,UAAU,CAC5B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;mBAcG,WAAW;WAWZ,OAAO,CAAC,CAAC,EAC3B,MAAM,EAAE,YAAY,EACpB,cAAc,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,qBAAqB,KAAK,OAAO,CAAC,CAAC,CAAC,EAChF,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;mBAiBR,SAAS;CAwB/B;AA0BD,8BAAsB,QAAQ;IAC5B;;OAEG;aACa,IAAI,CAClB,MAAM,EAAE,YAAY,EACpB,OAAO,CAAC,EAAE,qBAAqB,GAC9B,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAEzB;;OAEG;WACW,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;IAU3D,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAgB/B,OAAO,CAAC,MAAM,CAAC,eAAe;IAI9B,OAAO,CAAC,MAAM,CAAC,gBAAgB;CA2ChC"}
1
+ {"version":3,"file":"AvroParser.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroParser.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAG9C;;;GAGG;AACH,UAAU,qBAAqB;IAC7B;;;OAGG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,qBAAa,UAAU;IACrB;;;;;;OAMG;WACiB,cAAc,CAChC,MAAM,EAAE,YAAY,EACpB,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,UAAU,CAAC;IAQtB;;;;;OAKG;mBACkB,QAAQ;mBAWR,cAAc;WAoCf,QAAQ,CAC1B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAIE,OAAO,CACzB,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAIE,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;WAIzB,WAAW,CAC7B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,OAAO,CAAC;WAWC,SAAS,CAC3B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAME,UAAU,CAC5B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;WAME,SAAS,CAC3B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,UAAU,CAAC;WASF,UAAU,CAC5B,MAAM,EAAE,YAAY,EACpB,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC;mBAMG,WAAW;WAWZ,OAAO,CAAC,CAAC,EAC3B,MAAM,EAAE,YAAY,EACpB,cAAc,EAAE,CAAC,CAAC,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,qBAAqB,KAAK,OAAO,CAAC,CAAC,CAAC,EAChF,OAAO,GAAE,qBAA0B,GAClC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;mBAiBR,SAAS;CAwB/B;AAqCD,8BAAsB,QAAQ;IAC5B;;OAEG;aACa,IAAI,CAClB,MAAM,EAAE,YAAY,EACpB,OAAO,CAAC,EAAE,qBAAqB,GAC9B,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAEzB;;OAEG;WACW,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ;IAU3D,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAgB/B,OAAO,CAAC,MAAM,CAAC,eAAe;IAI9B,OAAO,CAAC,MAAM,CAAC,gBAAgB;CA8ChC"}
@@ -1 +1 @@
1
- {"version":3,"file":"AvroReadableFromBlob.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReadableFromBlob.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAKvE,qBAAa,oBAAqB,SAAQ,YAAY;IACpD,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,KAAK,CAAO;gBAER,IAAI,EAAE,IAAI;IAMtB,IAAW,QAAQ,IAAI,MAAM,CAE5B;IAEY,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,UAAU,CAAC;CAqC5F"}
1
+ {"version":3,"file":"AvroReadableFromBlob.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReadableFromBlob.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAKvE,qBAAa,oBAAqB,SAAQ,YAAY;IACpD,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,KAAK,CAAO;gBAER,IAAI,EAAE,IAAI;IAMtB,IAAW,QAAQ,IAAI,MAAM,CAE5B;IAEY,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,UAAU,CAAC;CAsC5F"}
@@ -1 +1 @@
1
- {"version":3,"file":"AvroReadableFromStream.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReadableFromStream.ts"],"names":[],"mappings":";AAGA,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAKvE,qBAAa,sBAAuB,SAAQ,YAAY;IACtD,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,SAAS,CAAwB;IAEzC,OAAO,CAAC,YAAY;gBAOR,QAAQ,EAAE,MAAM,CAAC,cAAc;IAK3C,IAAW,QAAQ,IAAI,MAAM,CAE5B;IACY,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,UAAU,CAAC;CAkE5F"}
1
+ {"version":3,"file":"AvroReadableFromStream.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReadableFromStream.ts"],"names":[],"mappings":";AAGA,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAKvE,qBAAa,sBAAuB,SAAQ,YAAY;IACtD,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,SAAS,CAAwB;IAEzC,OAAO,CAAC,YAAY;gBAOR,QAAQ,EAAE,MAAM,CAAC,cAAc;IAK3C,IAAW,QAAQ,IAAI,MAAM,CAE5B;IACY,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,uBAA4B,GAAG,OAAO,CAAC,UAAU,CAAC;CAoE5F"}
@@ -1,6 +1,6 @@
1
- import { AvroReadable } from "./AvroReadable";
2
1
  import "@azure/core-paging";
3
2
  import { AbortSignalLike } from "@azure/abort-controller";
3
+ import { AvroReadable } from "./AvroReadable";
4
4
  /**
5
5
  * Options to configure the {@link AvroReader.parseObjects} operation.
6
6
  */
@@ -1 +1 @@
1
- {"version":3,"file":"AvroReader.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAS9C,OAAO,oBAAoB,CAAC;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAe;IAE3C,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAe;IAE7C,OAAO,CAAC,WAAW,CAAC,CAAa;IAEjC,OAAO,CAAC,SAAS,CAAC,CAAyB;IAE3C,OAAO,CAAC,SAAS,CAAC,CAAW;IAE7B,OAAO,CAAC,sBAAsB,CAAC,CAAS;IAGxC,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAS;IAI7C,OAAO,CAAC,YAAY,CAAS;IAC7B,IAAW,WAAW,IAAI,MAAM,CAE/B;IAED,OAAO,CAAC,YAAY,CAAS;IAC7B,IAAW,WAAW,IAAI,MAAM,CAE/B;IAED,OAAO,CAAC,YAAY,CAAU;gBAElB,UAAU,EAAE,YAAY;gBAGlC,UAAU,EAAE,YAAY,EACxB,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM;YAiBnB,UAAU;IAgDjB,OAAO,IAAI,OAAO;IAIX,YAAY,CACxB,OAAO,GAAE,gBAAqB,GAC7B,qBAAqB,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,CAAC;CA0CrD"}
1
+ {"version":3,"file":"AvroReader.d.ts","sourceRoot":"","sources":["../../../../../storage-internal-avro/src/AvroReader.ts"],"names":[],"mappings":"AAMA,OAAO,oBAAoB,CAAC;AAQ5B,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAG9C;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;OAGG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAe;IAE3C,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAe;IAE7C,OAAO,CAAC,WAAW,CAAC,CAAa;IAEjC,OAAO,CAAC,SAAS,CAAC,CAAyB;IAE3C,OAAO,CAAC,SAAS,CAAC,CAAW;IAE7B,OAAO,CAAC,sBAAsB,CAAC,CAAS;IAGxC,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAS;IAI7C,OAAO,CAAC,YAAY,CAAS;IAC7B,IAAW,WAAW,IAAI,MAAM,CAE/B;IAED,OAAO,CAAC,YAAY,CAAS;IAC7B,IAAW,WAAW,IAAI,MAAM,CAE/B;IAED,OAAO,CAAC,YAAY,CAAU;gBAElB,UAAU,EAAE,YAAY;gBAGlC,UAAU,EAAE,YAAY,EACxB,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,MAAM,EAC1B,uBAAuB,EAAE,MAAM;YAiBnB,UAAU;IAgDjB,OAAO,IAAI,OAAO;IAIX,YAAY,CACxB,OAAO,GAAE,gBAAqB,GAC7B,qBAAqB,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,CAAC;CA0CrD"}
@@ -1 +1 @@
1
- {"version":3,"file":"utils.common.d.ts","sourceRoot":"","sources":["../../../../../../storage-internal-avro/src/utils/utils.common.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,YAAY,CAAC,CAAC;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,CAAC,CAAC;CACV;AAED,wBAAgB,WAAW,CAAC,CAAC,EAAE,UAAU,EAAE,CAAC,EAAE,UAAU,GAAG,OAAO,CASjE"}
1
+ {"version":3,"file":"utils.common.d.ts","sourceRoot":"","sources":["../../../../../../storage-internal-avro/src/utils/utils.common.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,YAAY,CAAC,CAAC;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,CAAC,CAAC;CACV;AAED,wBAAgB,WAAW,CAAC,CAAC,EAAE,UAAU,EAAE,CAAC,EAAE,UAAU,GAAG,OAAO,CAUjE"}