Skip to content

Commit

Permalink
fix(azure-iot-http-base): import AccessToken,TokenCredential core-htt…
Browse files Browse the repository at this point in the history
…p->core-auth devDependencies->dependencies (#1177)
  • Loading branch information
vishnureddy17 authored Feb 9, 2023
1 parent e250df5 commit d5f42f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions common/transport/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"@azure/core-auth": "^1.4.0",
"async": "^3.2.3",
"es5-ext": "0.10.53",
"debug": "^4.3.1",
"azure-iot-common": "1.13.1",
"debug": "^4.3.1",
"es5-ext": "0.10.53",
"uuid": "^8.3.2"
},
"devDependencies": {
"@azure/core-http": "^1.2.3",
"@types/node": "^16.10.2",
"eslint": "^8.26.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.3",
"eslint": "^8.26.0",
"eslint-plugin-jsdoc": "^39.3.25",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.5.0",
"chai": "^4.3.3",
"mocha": "^9.2.1",
"nyc": "^15.0.0",
"sinon": "^11.1.2",
Expand Down
2 changes: 1 addition & 1 deletion common/transport/http/src/rest_api_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { anHourFromNow, errors, SharedAccessSignature, X509 } from 'azure-iot-common';
import { Http as HttpBase, HttpRequestOptions } from './http';
import { AccessToken, TokenCredential } from '@azure/core-http';
import { AccessToken, TokenCredential } from '@azure/core-auth';
import * as uuid from 'uuid';
import { ClientRequest } from 'http';
import dbg = require('debug');
Expand Down

0 comments on commit d5f42f6

Please sign in to comment.