azure-kusto-ingest 6.0.2 → 6.0.4

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 (38) hide show
  1. package/dist-esm/src/abstractKustoClient.js.map +1 -1
  2. package/dist-esm/src/columnMappings.js.map +1 -1
  3. package/dist-esm/src/descriptors.js +10 -2
  4. package/dist-esm/src/descriptors.js.map +1 -1
  5. package/dist-esm/src/fileDescriptor.browser.js +13 -9
  6. package/dist-esm/src/fileDescriptor.browser.js.map +1 -1
  7. package/dist-esm/src/fileDescriptor.js +3 -8
  8. package/dist-esm/src/fileDescriptor.js.map +1 -1
  9. package/dist-esm/src/ingestClient.js.map +1 -1
  10. package/dist-esm/src/ingestClientBase.js +11 -4
  11. package/dist-esm/src/ingestClientBase.js.map +1 -1
  12. package/dist-esm/src/ingestionBlobInfo.js +5 -5
  13. package/dist-esm/src/ingestionBlobInfo.js.map +1 -1
  14. package/dist-esm/src/ingestionProperties.js +2 -2
  15. package/dist-esm/src/ingestionProperties.js.map +1 -1
  16. package/dist-esm/src/ingestionResult.js.map +1 -1
  17. package/dist-esm/src/managedStreamingIngestClient.js.map +1 -1
  18. package/dist-esm/src/rankedStorageAccount.js.map +1 -1
  19. package/dist-esm/src/rankedStorageAccountSet.js.map +1 -1
  20. package/dist-esm/src/resourceManager.js.map +1 -1
  21. package/dist-esm/src/retry.js.map +1 -1
  22. package/dist-esm/src/status.js.map +1 -1
  23. package/dist-esm/src/statusQ.js.map +1 -1
  24. package/dist-esm/src/streamUtils.js.map +1 -1
  25. package/dist-esm/src/streamingIngestClient.browser.js +1 -1
  26. package/dist-esm/src/streamingIngestClient.browser.js.map +1 -1
  27. package/dist-esm/src/streamingIngestClient.js +1 -1
  28. package/dist-esm/src/streamingIngestClient.js.map +1 -1
  29. package/dist-esm/src/streamingIngestClientBase.js.map +1 -1
  30. package/package.json +3 -3
  31. package/types/src/descriptors.d.ts +1 -1
  32. package/types/src/fileDescriptor.d.ts +1 -1
  33. package/types/src/ingestClient.d.ts +0 -1
  34. package/types/src/ingestionProperties.d.ts +1 -1
  35. package/types/src/managedStreamingIngestClient.d.ts +0 -1
  36. package/types/src/streamUtils.browser.d.ts +0 -1
  37. package/types/src/streamUtils.d.ts +0 -1
  38. package/types/src/streamingIngestClient.d.ts +0 -1
@@ -14,6 +14,7 @@ export declare class FileDescriptor extends AbstractDescriptor implements FileDe
14
14
  compressionType: CompressionType;
15
15
  shouldNotCompress: boolean;
16
16
  cleanupTmp?: () => Promise<void>;
17
+ private getSize;
17
18
  constructor(
18
19
  /**
19
20
  * Use string in Node.JS and Blob in browser
@@ -22,7 +23,6 @@ export declare class FileDescriptor extends AbstractDescriptor implements FileDe
22
23
  name?: string | undefined);
23
24
  _gzip(): Promise<string>;
24
25
  prepare(ingestionProperties?: IngestionPropertiesInput): Promise<string>;
25
- private _calculateSize;
26
26
  cleanup(): Promise<void>;
27
27
  getCompressionSuffix(): string;
28
28
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { KustoConnectionStringBuilder } from "azure-kusto-data";
3
2
  import { StreamDescriptor } from "./descriptors";
4
3
  import { FileDescriptor } from "./fileDescriptor";
@@ -123,7 +123,7 @@ export interface IngestionPropertiesFields {
123
123
  */
124
124
  ingestionMappingType?: IngestionMappingKind;
125
125
  ingestionMappingKind?: IngestionMappingKind;
126
- additionalTags?: string;
126
+ additionalTags?: string[];
127
127
  ingestIfNotExists?: string;
128
128
  ingestByTags?: string[];
129
129
  dropByTags?: string[];
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { IngestionPropertiesInput } from "./ingestionProperties";
3
2
  import { KustoConnectionStringBuilder, KustoResponseDataSet } from "azure-kusto-data";
4
3
  import { Readable } from "stream";
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { StreamDescriptor } from "./descriptors";
3
2
  import { FileDescriptor } from "./fileDescriptor.browser";
4
3
  export declare const fileToStream: (file: FileDescriptor) => Promise<StreamDescriptor>;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { Readable } from "stream";
3
2
  import { StreamDescriptor } from "./descriptors";
4
3
  import { FileDescriptor } from "./fileDescriptor";
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import { IngestionPropertiesInput } from "./ingestionProperties";
3
2
  import { KustoConnectionStringBuilder, KustoResponseDataSet } from "azure-kusto-data";
4
3
  import { Readable } from "stream";