azure-kusto-ingest 2.2.1 → 3.0.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.
- package/.eslintignore +5 -0
- package/.eslintrc.js +247 -0
- package/.mocharc.json +2 -2
- package/.prettierignore +8 -0
- package/.prettierrc.json +5 -0
- package/README.md +64 -62
- package/example.js +20 -30
- package/index.d.ts +24 -2
- package/index.js +46 -6
- package/index.js.map +1 -1
- package/package.json +70 -55
- package/source/abstractKustoClient.d.ts +2 -2
- package/source/abstractKustoClient.js +4 -2
- package/source/abstractKustoClient.js.map +1 -1
- package/source/columnMappings.d.ts +114 -0
- package/source/columnMappings.js +240 -0
- package/source/columnMappings.js.map +1 -0
- package/source/descriptors.d.ts +4 -3
- package/source/descriptors.js +17 -7
- package/source/descriptors.js.map +1 -1
- package/source/errors.d.ts +3 -0
- package/source/errors.js +13 -0
- package/source/errors.js.map +1 -0
- package/source/ingestClient.d.ts +2 -2
- package/source/ingestClient.js +1 -3
- package/source/ingestClient.js.map +1 -1
- package/source/ingestionBlobInfo.js +10 -7
- package/source/ingestionBlobInfo.js.map +1 -1
- package/source/ingestionProperties.d.ts +96 -40
- package/source/ingestionProperties.js +166 -84
- package/source/ingestionProperties.js.map +1 -1
- package/source/managedStreamingIngestClient.d.ts +36 -0
- package/source/managedStreamingIngestClient.js +106 -0
- package/source/managedStreamingIngestClient.js.map +1 -0
- package/source/resourceManager.d.ts +1 -1
- package/source/resourceManager.js +14 -16
- package/source/resourceManager.js.map +1 -1
- package/source/retry.d.ts +10 -0
- package/source/retry.js +44 -0
- package/source/retry.js.map +1 -0
- package/source/status.js +6 -17
- package/source/status.js.map +1 -1
- package/source/statusQ.js +7 -6
- package/source/statusQ.js.map +1 -1
- package/source/streamUtils.d.ts +6 -0
- package/source/streamUtils.js +61 -0
- package/source/streamUtils.js.map +1 -0
- package/source/streamingIngestClient.d.ts +2 -3
- package/source/streamingIngestClient.js +5 -14
- package/source/streamingIngestClient.js.map +1 -1
- package/tsconfig.json +16 -16
- package/tsconfig.tsbuildinfo +1 -7177
- package/index.ts +0 -48
- package/tslint.json +0 -18
package/index.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT License.
|
|
3
|
-
|
|
4
|
-
import client from "./source/ingestClient";
|
|
5
|
-
|
|
6
|
-
import streamingIngestClient from "./source/streamingIngestClient";
|
|
7
|
-
|
|
8
|
-
import KustoIngestStatusQueues from "./source/status";
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
CsvColumnMapping, DataFormat, IngestionMappingType,
|
|
12
|
-
JsonColumnMapping,
|
|
13
|
-
ReportLevel,
|
|
14
|
-
ReportMethod,
|
|
15
|
-
ValidationImplications,
|
|
16
|
-
ValidationOptions,
|
|
17
|
-
ValidationPolicy
|
|
18
|
-
} from "./source/ingestionProperties";
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
import {
|
|
22
|
-
BlobDescriptor,
|
|
23
|
-
CompressionType,
|
|
24
|
-
FileDescriptor,
|
|
25
|
-
StreamDescriptor
|
|
26
|
-
} from "./source/descriptors";
|
|
27
|
-
|
|
28
|
-
export const IngestClient = client;
|
|
29
|
-
export const StreamingIngestClient = streamingIngestClient;
|
|
30
|
-
export const IngestStatusQueues = KustoIngestStatusQueues;
|
|
31
|
-
export {IngestionProperties} from "./source/ingestionProperties"
|
|
32
|
-
export const IngestionDescriptors = {
|
|
33
|
-
BlobDescriptor,
|
|
34
|
-
FileDescriptor,
|
|
35
|
-
StreamDescriptor
|
|
36
|
-
};
|
|
37
|
-
export const IngestionPropertiesEnums = {
|
|
38
|
-
JsonColumnMapping,
|
|
39
|
-
CsvColumnMapping,
|
|
40
|
-
ValidationPolicy,
|
|
41
|
-
ReportLevel,
|
|
42
|
-
ReportMethod,
|
|
43
|
-
ValidationImplications,
|
|
44
|
-
ValidationOptions,
|
|
45
|
-
DataFormat,
|
|
46
|
-
IngestionMappingType,
|
|
47
|
-
CompressionType
|
|
48
|
-
};
|
package/tslint.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"defaultSeverity": "error",
|
|
3
|
-
"extends": [
|
|
4
|
-
"tslint:recommended"
|
|
5
|
-
],
|
|
6
|
-
"jsRules": {},
|
|
7
|
-
"rules": {
|
|
8
|
-
"max-classes-per-file": false,
|
|
9
|
-
"triple-equals": false,
|
|
10
|
-
"only-arrow-functions": false
|
|
11
|
-
},
|
|
12
|
-
"linterOptions": {
|
|
13
|
-
"exclude": [
|
|
14
|
-
"./test/**/*"
|
|
15
|
-
]
|
|
16
|
-
},
|
|
17
|
-
"rulesDirectory": []
|
|
18
|
-
}
|