@azure/eventhubs-checkpointstore-blob 1.1.0-alpha.20210816.1 → 1.1.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-blob",
3
3
  "sdk-type": "client",
4
- "version": "1.1.0-alpha.20210816.1",
4
+ "version": "1.1.0-alpha.20211203.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",
@@ -38,7 +38,7 @@
38
38
  "build:test:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c rollup.test.config.js 2>&1",
39
39
  "build:test:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c rollup.test.config.js 2>&1",
40
40
  "build:test": "npm run build:test:node",
41
- "build": "tsc -p . && rollup -c 2>&1 && api-extractor run --local",
41
+ "build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local",
42
42
  "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
43
43
  "clean": "rimraf dist dist-* typings *.tgz *.log",
44
44
  "execute:samples": "dev-tool samples run samples-dev",
@@ -50,7 +50,6 @@
50
50
  "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix",
51
51
  "lint": "eslint package.json api-extractor.json src test --ext .ts",
52
52
  "pack": "npm pack 2>&1",
53
- "prebuild": "npm run clean",
54
53
  "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
55
54
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
56
55
  "test": "npm run build:test && npm run unit-test && npm run integration-test",
@@ -63,14 +62,14 @@
63
62
  "@azure/abort-controller": "^1.0.0",
64
63
  "@azure/event-hubs": "^5.6.0",
65
64
  "@azure/logger": "^1.0.0",
66
- "@azure/storage-blob": "^12.6.0",
65
+ "@azure/storage-blob": "^12.8.0",
67
66
  "events": "^3.0.0",
68
67
  "tslib": "^2.2.0"
69
68
  },
70
69
  "devDependencies": {
71
70
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
72
71
  "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
73
- "@microsoft/api-extractor": "7.7.11",
72
+ "@microsoft/api-extractor": "^7.18.11",
74
73
  "@rollup/plugin-commonjs": "11.0.2",
75
74
  "@rollup/plugin-inject": "^4.0.0",
76
75
  "@rollup/plugin-json": "^4.0.0",
@@ -83,7 +82,6 @@
83
82
  "@types/debug": "^4.1.4",
84
83
  "@types/mocha": "^7.0.2",
85
84
  "@types/node": "^12.0.0",
86
- "assert": "^1.4.1",
87
85
  "chai": "^4.2.0",
88
86
  "chai-as-promised": "^7.1.1",
89
87
  "chai-string": "^1.5.0",
@@ -115,7 +113,7 @@
115
113
  "rollup-plugin-sourcemaps": "^0.4.2",
116
114
  "rollup-plugin-terser": "^5.1.1",
117
115
  "rollup-plugin-visualizer": "^4.0.4",
118
- "ts-node": "^9.0.0",
116
+ "ts-node": "^10.0.0",
119
117
  "typescript": "~4.2.0",
120
118
  "util": "^0.12.1",
121
119
  "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 { ContainerClient } from '@azure/storage-blob';
@@ -66,6 +67,6 @@ export declare class BlobCheckpointStore implements CheckpointStore {
66
67
  * The `@azure/logger` configuration for this package.
67
68
  * This will output logs using the `azure:eventhubs-checkpointstore-blob` namespace prefix.
68
69
  */
69
- export declare const logger: import("@azure/logger").AzureLogger;
70
+ export declare const logger: AzureLogger;
70
71
 
71
72
  export { }