@dataclouder/ngx-core 0.1.39 → 0.1.40

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/index.d.ts CHANGED
@@ -672,6 +672,7 @@ declare abstract class EntityCommunicationService<T> {
672
672
  constructor(serviceName: string);
673
673
  findAll(): Promise<T[]>;
674
674
  findOne(id: string): Promise<T>;
675
+ findOneByQuery(query: any, projection?: any): Promise<T>;
675
676
  createOrUpdate(entity: Partial<T>): Promise<T>;
676
677
  query(filterConfig: FiltersConfig): Promise<IFilterQueryResponse<T>>;
677
678
  update(id: string, update: any): Promise<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataclouder/ngx-core",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "description": "Angular core components library for DataClouder applications, only for internal use",
5
5
  "author": {
6
6
  "name": "dataclouder",