@goatlab/fluent-loki 0.8.3 → 0.9.1

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.
@@ -57,7 +57,7 @@ export declare class LokiConnector<ModelDTO extends AnyObject = AnyObject, Input
57
57
  */
58
58
  replaceById(id: string, data: InputDTO): Promise<OutputDTO>;
59
59
  getLokiWhere(where?: FluentQuery<ModelDTO>['where']): any;
60
- loadFirst(query?: FluentQuery<ModelDTO>): LokiConnector<ModelDTO, InputDTO, OutputDTO>;
60
+ loadFirst(query?: FluentQuery<ModelDTO>): LoadedResult<this>;
61
61
  protected clone(): any;
62
62
  loadById(id: string): LoadedResult<this>;
63
63
  clear(): Promise<boolean>;
@@ -65,5 +65,6 @@ export declare class LokiConnector<ModelDTO extends AnyObject = AnyObject, Input
65
65
  * Override pluck to filter out undefined values
66
66
  */
67
67
  pluck(path: any, query?: FluentQuery<ModelDTO>): Promise<Primitives[]>;
68
+ private static readonly lokiOperatorMap;
68
69
  private getLokiOperator;
69
70
  }