@ecodev/natural 56.0.2 → 56.0.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.
|
@@ -70,7 +70,7 @@ export declare abstract class NaturalAbstractModelService<Tone, Vone extends {
|
|
|
70
70
|
* If available it will emit object from cache immediately, then it
|
|
71
71
|
* will **always** fetch from network and then the observable will be completed
|
|
72
72
|
*/
|
|
73
|
-
getOne(id: string): Observable<Tone>;
|
|
73
|
+
getOne(id: string, fetchPolicy?: WatchQueryFetchPolicy): Observable<Tone>;
|
|
74
74
|
/**
|
|
75
75
|
* Get a collection of objects
|
|
76
76
|
*
|
|
@@ -121,7 +121,7 @@ export declare abstract class NaturalAbstractModelService<Tone, Vone extends {
|
|
|
121
121
|
id: string;
|
|
122
122
|
}[]): Observable<Tdelete>;
|
|
123
123
|
/**
|
|
124
|
-
* Resolve model and items related to the model, if the id is provided, in order to show a form
|
|
124
|
+
* Resolve model from server (never from cache) and items related to the model, if the id is provided, in order to show a form
|
|
125
125
|
*/
|
|
126
126
|
resolve(id: string): Observable<Resolve<Tone | Vcreate['input']>>;
|
|
127
127
|
/**
|