@ferricstore/ferricstore 0.11.9 → 0.11.10
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/README.md +15 -9
- package/dist/index.cjs +482 -158
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +471 -147
- package/dist/index.js.map +1 -1
- package/docs/api/classes/HTTPAdapter.html +7 -7
- package/docs/api/classes/KeyValueStore.html +4 -4
- package/docs/api/functions/httpCommandDisposition.html +1 -1
- package/docs/api/index.html +15 -9
- package/docs/api/interfaces/HTTPAdapterOptions.html +19 -15
- package/docs/api/types/HTTPCommandDisposition.html +1 -1
- package/docs/api/variables/FERRICSTORE_SDK_VERSION.html +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -481,11 +481,13 @@ interface HTTPAdapterOptions {
|
|
|
481
481
|
headers?: Readonly<Record<string, string>>;
|
|
482
482
|
http2?: boolean;
|
|
483
483
|
maxBatchItems?: number;
|
|
484
|
+
/** Maximum HTTP/1.1 sockets or concurrent streams on one HTTP/2 session. Defaults to 100. */
|
|
484
485
|
maxConnections?: number;
|
|
485
486
|
maxRedirects?: number;
|
|
486
487
|
maxRequestBytes?: number;
|
|
487
488
|
maxResponseBytes?: number;
|
|
488
489
|
password?: string;
|
|
490
|
+
/** Base whole-request deadline. Command-declared blocking waits are added; a zero block disables it. */
|
|
489
491
|
timeoutMs?: number;
|
|
490
492
|
tlsOptions?: ConnectionOptions;
|
|
491
493
|
username?: string;
|
|
@@ -2754,7 +2756,7 @@ declare class WorkflowWorker {
|
|
|
2754
2756
|
}
|
|
2755
2757
|
|
|
2756
2758
|
/** TypeScript SDK package version. */
|
|
2757
|
-
declare const FERRICSTORE_SDK_VERSION = "0.11.
|
|
2759
|
+
declare const FERRICSTORE_SDK_VERSION = "0.11.10";
|
|
2758
2760
|
/** Oldest FerricStore server supported by this breaking beta contract. */
|
|
2759
2761
|
declare const FERRICSTORE_MINIMUM_SERVER_VERSION = "0.11.4";
|
|
2760
2762
|
/** Native framing and opcode ABI version; unchanged by FerricStore 0.11. */
|
package/dist/index.d.ts
CHANGED
|
@@ -481,11 +481,13 @@ interface HTTPAdapterOptions {
|
|
|
481
481
|
headers?: Readonly<Record<string, string>>;
|
|
482
482
|
http2?: boolean;
|
|
483
483
|
maxBatchItems?: number;
|
|
484
|
+
/** Maximum HTTP/1.1 sockets or concurrent streams on one HTTP/2 session. Defaults to 100. */
|
|
484
485
|
maxConnections?: number;
|
|
485
486
|
maxRedirects?: number;
|
|
486
487
|
maxRequestBytes?: number;
|
|
487
488
|
maxResponseBytes?: number;
|
|
488
489
|
password?: string;
|
|
490
|
+
/** Base whole-request deadline. Command-declared blocking waits are added; a zero block disables it. */
|
|
489
491
|
timeoutMs?: number;
|
|
490
492
|
tlsOptions?: ConnectionOptions;
|
|
491
493
|
username?: string;
|
|
@@ -2754,7 +2756,7 @@ declare class WorkflowWorker {
|
|
|
2754
2756
|
}
|
|
2755
2757
|
|
|
2756
2758
|
/** TypeScript SDK package version. */
|
|
2757
|
-
declare const FERRICSTORE_SDK_VERSION = "0.11.
|
|
2759
|
+
declare const FERRICSTORE_SDK_VERSION = "0.11.10";
|
|
2758
2760
|
/** Oldest FerricStore server supported by this breaking beta contract. */
|
|
2759
2761
|
declare const FERRICSTORE_MINIMUM_SERVER_VERSION = "0.11.4";
|
|
2760
2762
|
/** Native framing and opcode ABI version; unchanged by FerricStore 0.11. */
|