@azure/eventhubs-checkpointstore-table 1.0.0-alpha.20210827.1 → 1.0.0-alpha.20211203.1
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/eventhubs-checkpointstore-table",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "1.0.0-alpha.
|
|
4
|
+
"version": "1.0.0-alpha.20211203.1",
|
|
5
5
|
"description": "An Azure Storage Table solution to store checkpoints when using Event Hubs.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
@@ -61,14 +61,14 @@
|
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@azure/abort-controller": "^1.0.0",
|
|
63
63
|
"@azure/event-hubs": "^5.6.0",
|
|
64
|
-
"@azure/data-tables": "
|
|
64
|
+
"@azure/data-tables": "^12.1.2",
|
|
65
65
|
"@azure/logger": "^1.0.0",
|
|
66
66
|
"tslib": "^2.2.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
70
70
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
71
|
-
"@microsoft/api-extractor": "7.
|
|
71
|
+
"@microsoft/api-extractor": "^7.18.11",
|
|
72
72
|
"@rollup/plugin-commonjs": "11.0.2",
|
|
73
73
|
"@rollup/plugin-inject": "^4.0.0",
|
|
74
74
|
"@rollup/plugin-json": "^4.0.0",
|
|
@@ -81,7 +81,6 @@
|
|
|
81
81
|
"@types/debug": "^4.1.4",
|
|
82
82
|
"@types/mocha": "^7.0.2",
|
|
83
83
|
"@types/node": "^12.0.0",
|
|
84
|
-
"assert": "^1.4.1",
|
|
85
84
|
"chai": "^4.2.0",
|
|
86
85
|
"chai-as-promised": "^7.1.1",
|
|
87
86
|
"chai-string": "^1.5.0",
|
|
@@ -113,7 +112,7 @@
|
|
|
113
112
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
114
113
|
"rollup-plugin-terser": "^5.1.1",
|
|
115
114
|
"rollup-plugin-visualizer": "^4.0.4",
|
|
116
|
-
"ts-node": "^
|
|
115
|
+
"ts-node": "^10.0.0",
|
|
117
116
|
"typescript": "~4.2.0",
|
|
118
117
|
"util": "^0.12.1",
|
|
119
118
|
"typedoc": "0.15.2"
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AzureLogger } from '@azure/logger';
|
|
1
2
|
import { Checkpoint } from '@azure/event-hubs';
|
|
2
3
|
import { CheckpointStore } from '@azure/event-hubs';
|
|
3
4
|
import { PartitionOwnership } from '@azure/event-hubs';
|
|
@@ -7,7 +8,7 @@ import { TableClient } from '@azure/data-tables';
|
|
|
7
8
|
* The `@azure/logger` configuration for this package.
|
|
8
9
|
* This will output logs using the `azure:eventhubs-checkpointstore-table` namespace prefix.
|
|
9
10
|
*/
|
|
10
|
-
export declare const logger:
|
|
11
|
+
export declare const logger: AzureLogger;
|
|
11
12
|
|
|
12
13
|
/**
|
|
13
14
|
* An implementation of CheckpointStore that uses Azure Table Storage to persist checkpoint data.
|