harperdb 4.4.5 → 4.4.6
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 +49 -49
- package/bin/lite.js +40 -40
- package/launchServiceScripts/launchInstallNATSServer.js +1 -1
- package/launchServiceScripts/launchNatsIngestService.js +40 -40
- package/launchServiceScripts/launchNatsReplyService.js +38 -38
- package/launchServiceScripts/launchUpdateNodes4-0-0.js +40 -40
- package/npm-shrinkwrap.json +849 -174
- package/package.json +1 -1
- package/resources/Table.d.ts +3 -0
- package/resources/databases.d.ts +1 -0
- package/server/jobs/jobProcess.js +40 -40
- package/server/threads/threadServer.js +40 -40
- package/studio/build-local/asset-manifest.json +2 -2
- package/studio/build-local/index.html +1 -1
- package/studio/build-local/static/js/{main.c944d3cf.js → main.7f758c81.js} +2 -2
- package/utility/scripts/restartHdb.js +38 -38
- /package/studio/build-local/static/js/{main.c944d3cf.js.LICENSE.txt → main.7f758c81.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
package/resources/Table.d.ts
CHANGED
|
@@ -204,6 +204,9 @@ export declare function makeTable(options: any): {
|
|
|
204
204
|
*/
|
|
205
205
|
sourcedFrom(source: any, options: any): any;
|
|
206
206
|
readonly isCaching: any;
|
|
207
|
+
/** Indicates if the events should be revalidated when they are received. By default we do this if the get
|
|
208
|
+
* method is overriden */
|
|
209
|
+
readonly shouldRevalidateEvents: boolean;
|
|
207
210
|
/**
|
|
208
211
|
* Gets a resource instance, as defined by the Resource class, adding the table-specific handling
|
|
209
212
|
* of also loading the stored record into the resource instance.
|
package/resources/databases.d.ts
CHANGED
|
@@ -193,6 +193,7 @@ export declare function table(table_definition: TableDefinition): {
|
|
|
193
193
|
schemaDefined: any;
|
|
194
194
|
sourcedFrom(source: any, options: any): any;
|
|
195
195
|
readonly isCaching: any;
|
|
196
|
+
readonly shouldRevalidateEvents: boolean;
|
|
196
197
|
getResource(id: import("./ResourceInterface").Id, request: import("./ResourceInterface").Context, resource_options?: any): Promise<{
|
|
197
198
|
ensureLoaded(): any;
|
|
198
199
|
get(query?: import("./ResourceInterface").Query | string): Promise<object | void> | object | void;
|