harperdb 4.4.2 → 4.4.3
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 +55 -53
- package/bin/lite.js +41 -41
- package/index.js +7 -2
- package/launchServiceScripts/launchInstallNATSServer.js +3 -3
- package/launchServiceScripts/launchNatsIngestService.js +41 -41
- package/launchServiceScripts/launchNatsReplyService.js +40 -40
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +41 -41
- package/npm-shrinkwrap.json +291 -356
- package/package.json +1 -1
- package/resources/Table.d.ts +6 -0
- package/resources/databases.d.ts +1 -0
- package/server/jobs/jobProcess.js +41 -41
- package/server/threads/threadServer.js +41 -41
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.66f230b2.js → main.5e5211ea.js} +2 -2
- package/utility/scripts/restartHdb.js +40 -40
- /package/studio/build-local/static/js/{main.66f230b2.js.LICENSE.txt → main.5e5211ea.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
package/resources/Table.d.ts
CHANGED
|
@@ -535,6 +535,12 @@ export declare function makeTable(options: any): {
|
|
|
535
535
|
* @returns
|
|
536
536
|
*/
|
|
537
537
|
transformEntryForSelect(select: any, context: any, read_txn: any, filtered: any, ensure_loaded?: any, can_skip?: any): (entry: any) => any;
|
|
538
|
+
/**
|
|
539
|
+
* Subscribe on one thread unless this is a per-thread subscription
|
|
540
|
+
* @param worker_index
|
|
541
|
+
* @param options
|
|
542
|
+
*/
|
|
543
|
+
subscribeOnThisThread(worker_index: any, options: any): boolean;
|
|
538
544
|
addAttributes(attributes_to_add: any): Promise<any>;
|
|
539
545
|
removeAttributes(names: string[]): Promise<any>;
|
|
540
546
|
getRecordCount(options: any): {
|
package/resources/databases.d.ts
CHANGED
|
@@ -370,6 +370,7 @@ export declare function table(table_definition: TableDefinition): {
|
|
|
370
370
|
operation(operation: any, context: any): any;
|
|
371
371
|
transformToOrderedSelect(entries: any[], select: (string | import("./ResourceInterface").SubSelect)[], sort: import("./ResourceInterface").Sort, context: import("./ResourceInterface").Context, read_txn: any, transformToRecord: Function): any;
|
|
372
372
|
transformEntryForSelect(select: any, context: any, read_txn: any, filtered: any, ensure_loaded?: any, can_skip?: any): (entry: any) => any;
|
|
373
|
+
subscribeOnThisThread(worker_index: any, options: any): boolean;
|
|
373
374
|
addAttributes(attributes_to_add: any): Promise<any>;
|
|
374
375
|
removeAttributes(names: string[]): Promise<any>;
|
|
375
376
|
getRecordCount(options: any): {
|