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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.4.5",
3
+ "version": "4.4.6",
4
4
  "description": "HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.",
5
5
  "keywords": [
6
6
  "database",
@@ -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.
@@ -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;