@azure/eventgrid 4.10.0-alpha.20220520.1 → 4.10.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -300,7 +300,7 @@ receiver.subscribe({
300
300
  Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
301
301
 
302
302
  ```javascript
303
- import { setLogLevel } from "@azure/logger";
303
+ const { setLogLevel } = require("@azure/logger");
304
304
 
305
305
  setLogLevel("info");
306
306
  ```
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "client",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "An isomorphic client library for the Azure Event Grid service.",
6
- "version": "4.10.0-alpha.20220520.1",
6
+ "version": "4.10.0-alpha.20220524.1",
7
7
  "keywords": [
8
8
  "node",
9
9
  "azure",
@@ -78,8 +78,8 @@
78
78
  "integration-test:browser": "dev-tool run test:browser",
79
79
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 \"dist-esm/test/**/*.spec.js\"",
80
80
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
81
- "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
82
- "lint": "eslint package.json api-extractor.json src test --ext .ts",
81
+ "lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix --fix-type [problem,suggestion]",
82
+ "lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
83
83
  "pack": "npm pack 2>&1",
84
84
  "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
85
85
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",