@milaboratories/pl-client 2.5.7 → 2.5.9
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/dist/core/config.d.ts +1 -1
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/final.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/core/config.ts +1 -1
- package/src/core/final.ts +1 -0
package/package.json
CHANGED
package/src/core/config.ts
CHANGED
|
@@ -74,7 +74,7 @@ export interface PlClientConfig {
|
|
|
74
74
|
retryJitter: number;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
export const DEFAULT_REQUEST_TIMEOUT =
|
|
77
|
+
export const DEFAULT_REQUEST_TIMEOUT = 5_000;
|
|
78
78
|
export const DEFAULT_TX_TIMEOUT = 30_000;
|
|
79
79
|
export const DEFAULT_TOKEN_TTL_SECONDS = 31 * 24 * 60 * 60;
|
|
80
80
|
export const DEFAULT_AUTH_MAX_REFRESH = 12 * 24 * 60 * 60;
|
package/src/core/final.ts
CHANGED