@azure/eventhubs-checkpointstore-blob 1.1.0-alpha.20220520.1 → 1.1.0-alpha.20220919.2

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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -12,7 +12,7 @@ Key links:
12
12
 
13
13
  ### Currently supported environments
14
14
 
15
- - [LTS versions of Node.js](https://nodejs.org/about/releases/)
15
+ - [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
16
16
  - Latest versions of Safari, Chrome, Edge, and Firefox.
17
17
 
18
18
  See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
@@ -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
- import { ContainerClient } from "@azure/storage-blob",
74
- import { BlobCheckpointStore } from "@azure/eventhubs-checkpointstore-blob"
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.20220520.1",
4
+ "version": "1.1.0-alpha.20220919.2",
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",