@azure/ai-text-analytics 5.2.0-alpha.20220221.1 → 5.2.0-alpha.20220303.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
@@ -510,7 +510,7 @@ main();
510
510
  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`:
511
511
 
512
512
  ```javascript
513
- import { setLogLevel } from "@azure/logger";
513
+ const { logger } = require("@azure/logger");
514
514
 
515
515
  setLogLevel("info");
516
516
  ```
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 Text Analytics service.",
6
- "version": "5.2.0-alpha.20220221.1",
6
+ "version": "5.2.0-alpha.20220303.1",
7
7
  "keywords": [
8
8
  "node",
9
9
  "azure",
@@ -70,8 +70,8 @@
70
70
  "integration-test:browser": "dev-tool run test:browser",
71
71
  "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 \"dist-esm/test/**/*.spec.js\"",
72
72
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
73
- "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
74
- "lint": "eslint package.json api-extractor.json src test --ext .ts",
73
+ "lint:fix": "eslint README.md package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
74
+ "lint": "eslint README.md package.json api-extractor.json src test",
75
75
  "pack": "npm pack 2>&1",
76
76
  "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
77
77
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",