@irohalab/mira-sdk-angular 1.6.1 → 1.7.0
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/api/default.service.d.ts +4 -3
- package/api/default.serviceInterface.d.ts +2 -1
- package/esm2022/api/default.service.mjs +6 -6
- package/esm2022/api/default.serviceInterface.mjs +1 -1
- package/fesm2022/irohalab-mira-sdk-angular.mjs +5 -5
- package/fesm2022/irohalab-mira-sdk-angular.mjs.map +1 -1
- package/package.json +2 -1
package/api/default.service.d.ts
CHANGED
|
@@ -288,6 +288,7 @@ export declare class DefaultMira implements DefaultMiraInterface {
|
|
|
288
288
|
}): Observable<HttpEvent<ListFavoritesResponse>>;
|
|
289
289
|
/**
|
|
290
290
|
* list MainItems
|
|
291
|
+
* @param serviceClientId
|
|
291
292
|
* @param mainType
|
|
292
293
|
* @param type
|
|
293
294
|
* @param subType
|
|
@@ -299,17 +300,17 @@ export declare class DefaultMira implements DefaultMiraInterface {
|
|
|
299
300
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
300
301
|
* @param reportProgress flag to report request and response progress.
|
|
301
302
|
*/
|
|
302
|
-
listMainItems(mainType
|
|
303
|
+
listMainItems(serviceClientId?: string, mainType?: string, type?: string, subType?: string, offset?: number, limit?: number, orderBy?: string, sort?: string, keyword?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
303
304
|
httpHeaderAccept?: 'application/json';
|
|
304
305
|
context?: HttpContext;
|
|
305
306
|
transferCache?: boolean;
|
|
306
307
|
}): Observable<ListMainItemResponse>;
|
|
307
|
-
listMainItems(mainType
|
|
308
|
+
listMainItems(serviceClientId?: string, mainType?: string, type?: string, subType?: string, offset?: number, limit?: number, orderBy?: string, sort?: string, keyword?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
308
309
|
httpHeaderAccept?: 'application/json';
|
|
309
310
|
context?: HttpContext;
|
|
310
311
|
transferCache?: boolean;
|
|
311
312
|
}): Observable<HttpResponse<ListMainItemResponse>>;
|
|
312
|
-
listMainItems(mainType
|
|
313
|
+
listMainItems(serviceClientId?: string, mainType?: string, type?: string, subType?: string, offset?: number, limit?: number, orderBy?: string, sort?: string, keyword?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
313
314
|
httpHeaderAccept?: 'application/json';
|
|
314
315
|
context?: HttpContext;
|
|
315
316
|
transferCache?: boolean;
|
|
@@ -111,6 +111,7 @@ export interface DefaultMiraInterface {
|
|
|
111
111
|
/**
|
|
112
112
|
*
|
|
113
113
|
* list MainItems
|
|
114
|
+
* @param serviceClientId
|
|
114
115
|
* @param mainType
|
|
115
116
|
* @param type
|
|
116
117
|
* @param subType
|
|
@@ -120,7 +121,7 @@ export interface DefaultMiraInterface {
|
|
|
120
121
|
* @param sort
|
|
121
122
|
* @param keyword
|
|
122
123
|
*/
|
|
123
|
-
listMainItems(mainType
|
|
124
|
+
listMainItems(serviceClientId?: string, mainType?: string, type?: string, subType?: string, offset?: number, limit?: number, orderBy?: string, sort?: string, keyword?: string, extraHttpRequestParams?: any): Observable<ListMainItemResponse>;
|
|
124
125
|
/**
|
|
125
126
|
*
|
|
126
127
|
* list SubItemFavorite
|