Fixes type definition issue in 2.0.3
This commit is contained in:
Steve Faulkner 2018-10-30 11:11:32 -04:00 коммит произвёл GitHub
Родитель fe573ae264
Коммит 68fa4ef7dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 8 добавлений и 9 удалений

6
package-lock.json сгенерированный
Просмотреть файл

@ -8234,9 +8234,9 @@
"dev": true
},
"typescript": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.1.3.tgz",
"integrity": "sha512-+81MUSyX+BaSo+u2RbozuQk/UWx6hfG0a5gHu4ANEM4sU96XbuIyAB+rWBW1u70c6a5QuZfuYICn3s2UjuHUpA==",
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.1.4.tgz",
"integrity": "sha512-JZHJtA6ZL15+Q3Dqkbh8iCUmvxD3iJ7ujXS+fVkKnwIVAdHc5BJTDNM0aTrnr2luKulFjU7W+SRhDZvi66Ru7Q==",
"dev": true
},
"uglify-js": {

Просмотреть файл

@ -11,7 +11,7 @@
"database",
"cloud"
],
"version": "2.0.3",
"version": "2.0.4",
"author": "Microsoft Corporation",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
@ -61,7 +61,7 @@
"tslint": "5.11.0",
"tslint-config-prettier": "^1.14.0",
"typedoc": "0.13.0",
"typescript": "3.1.3",
"typescript": "3.1.4",
"webpack": "^4.16.3",
"webpack-cli": "^2.1.5"
},

Просмотреть файл

@ -175,7 +175,7 @@ export const Constants = {
CurrentVersion: "2018-06-18",
SDKName: "azure-cosmos-js",
SDKVersion: "2.0.2",
SDKVersion: "2.0.4",
DefaultPrecisions: {
DefaultNumberHashPrecision: 3,

Просмотреть файл

@ -11,11 +11,10 @@ import { RetryContext } from "./RetryContext";
* @hidden
*/
export class SessionRetryPolicy implements IRetryPolicy {
/** Retry interval in milliseconds. */
public static readonly retryAfterInMilliseconds = 0;
/** Current retry attempt count. */
public currentRetryAttemptCount = 0;
public retryAfterInMilliseconds = SessionRetryPolicy.retryAfterInMilliseconds;
/** Retry interval in milliseconds. */
public retryAfterInMilliseconds = 0;
/**
* @constructor SessionReadRetryPolicy