@azure/eventhubs-checkpointstore-blob 1.1.0-alpha.20220520.1 → 1.1.0-alpha.20220524.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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -70,8 +70,8 @@ You also need to enable `compilerOptions.allowSyntheticDefaultImports` in your t
|
|
|
70
70
|
Use the below code snippet to create a `CheckpointStore`. You will need to provide the connection string to your storage account.
|
|
71
71
|
|
|
72
72
|
```javascript
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
const { ContainerClient } = require("@azure/storage-blob");
|
|
74
|
+
const { BlobCheckpointStore } = require("@azure/eventhubs-checkpointstore-blob");
|
|
75
75
|
|
|
76
76
|
const containerClient = new ContainerClient("storage-connection-string", "container-name");
|
|
77
77
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/eventhubs-checkpointstore-blob",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "1.1.0-alpha.
|
|
4
|
+
"version": "1.1.0-alpha.20220524.1",
|
|
5
5
|
"description": "An Azure Storage Blob solution to store checkpoints when using Event Hubs.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"integration-test:browser": "echo skipped",
|
|
48
48
|
"integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"dist-esm/test/*.spec.js\"",
|
|
49
49
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
50
|
-
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix",
|
|
51
|
-
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
|
50
|
+
"lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix",
|
|
51
|
+
"lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
|
|
52
52
|
"pack": "npm pack 2>&1",
|
|
53
53
|
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
54
54
|
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
|