harperdb 4.7.0-alpha.4 → 4.7.0-alpha.5
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 +1 -1
- package/bin/harperdb.js +78 -79
- package/bin/lite.js +76 -77
- package/launchServiceScripts/launchNatsIngestService.js +76 -77
- package/launchServiceScripts/launchNatsReplyService.js +76 -77
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +76 -77
- package/npm-shrinkwrap.json +47 -47
- package/package.json +1 -1
- package/resources/usageLicensing.d.ts +5 -5
- package/server/jobs/jobProcess.js +76 -77
- package/server/threads/threadServer.js +76 -77
- package/server/throttle.d.ts +7 -0
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.f4d40c30.js → main.9f5f17c8.js} +2 -2
- package/utility/hdbTerms.d.ts +1 -6
- package/utility/scripts/restartHdb.js +76 -77
- package/validation/usageLicensing.d.ts +1 -1
- /package/studio/build-local/static/js/{main.f4d40c30.js.LICENSE.txt → main.9f5f17c8.js.LICENSE.txt} +0 -0
package/utility/hdbTerms.d.ts
CHANGED
|
@@ -111,8 +111,6 @@ export declare const FORWARD_SLASH_REGEX: RegExp;
|
|
|
111
111
|
export declare const UNICODE_FORWARD_SLASH = "U+002F";
|
|
112
112
|
/** Regex for matching an escaped `/` character */
|
|
113
113
|
export declare const ESCAPED_FORWARD_SLASH_REGEX: RegExp;
|
|
114
|
-
/** CLI Argument for setting the memory value */
|
|
115
|
-
export declare const MEM_SETTING_KEY = "--max-old-space-size=";
|
|
116
114
|
/** Name of the System schema */
|
|
117
115
|
export declare const SYSTEM_SCHEMA_NAME = "system";
|
|
118
116
|
/** HarperDB Home directory */
|
|
@@ -253,9 +251,6 @@ export declare const OPERATIONS_ENUM: {
|
|
|
253
251
|
readonly GET_JOB: "get_job";
|
|
254
252
|
readonly DELETE_JOB: "delete_job";
|
|
255
253
|
readonly UPDATE_JOB: "update_job";
|
|
256
|
-
readonly GET_FINGERPRINT: "get_fingerprint";
|
|
257
|
-
readonly SET_LICENSE: "set_license";
|
|
258
|
-
readonly GET_REGISTRATION_INFO: "registration_info";
|
|
259
254
|
readonly CONFIGURE_CLUSTER: "configure_cluster";
|
|
260
255
|
readonly SET_CONFIGURATION: "set_configuration";
|
|
261
256
|
readonly CLUSTER_STATUS: "cluster_status";
|
|
@@ -356,7 +351,6 @@ export declare const SERVICE_ACTIONS_ENUM: {
|
|
|
356
351
|
readonly RUN: "run";
|
|
357
352
|
readonly START: "start";
|
|
358
353
|
readonly INSTALL: "install";
|
|
359
|
-
readonly REGISTER: "register";
|
|
360
354
|
readonly STOP: "stop";
|
|
361
355
|
readonly RESTART: "restart";
|
|
362
356
|
readonly VERSION: "version";
|
|
@@ -513,6 +507,7 @@ export declare const CONFIG_PARAMS: {
|
|
|
513
507
|
readonly HTTP_MTLS_CERTIFICATEVERIFICATION_FAILUREMODE: "http_mtls_certificateVerification_failureMode";
|
|
514
508
|
readonly HTTP_MAXHEADERSIZE: "http_maxHeaderSize";
|
|
515
509
|
readonly HTTP_THREADRANGE: "http_threadRange";
|
|
510
|
+
readonly HTTP_REQUESTQUEUELIMIT: "http_requestQueueLimit";
|
|
516
511
|
readonly HTTP_HTTP2: "http_http2";
|
|
517
512
|
readonly LICENSE_MODE: "license_mode";
|
|
518
513
|
readonly LICENSE_REGION: "license_region";
|