@irohalab/mira-sdk-angular 1.3.0 → 1.4.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 +43 -0
- package/api/default.serviceInterface.d.ts +13 -0
- package/esm2022/api/default.service.mjs +126 -2
- package/esm2022/api/default.serviceInterface.mjs +1 -1
- package/esm2022/model/idListRequestBody.mjs +12 -0
- package/esm2022/model/models.mjs +2 -1
- package/fesm2022/irohalab-mira-sdk-angular.mjs +136 -1
- package/fesm2022/irohalab-mira-sdk-angular.mjs.map +1 -1
- package/model/idListRequestBody.d.ts +13 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
package/api/default.service.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { CreateSubItemFavoriteRequestBody } from '../model/createSubItemFavorite
|
|
|
5
5
|
import { DeleteClientMappingByMainItemResponse } from '../model/deleteClientMappingByMainItemResponse';
|
|
6
6
|
import { Favorite } from '../model/favorite';
|
|
7
7
|
import { GetOnAirItemListResponse } from '../model/getOnAirItemListResponse';
|
|
8
|
+
import { IdListRequestBody } from '../model/idListRequestBody';
|
|
8
9
|
import { ListFavoritesResponse } from '../model/listFavoritesResponse';
|
|
9
10
|
import { ListMainItemResponse } from '../model/listMainItemResponse';
|
|
10
11
|
import { ListSubItemFavoriteResponse } from '../model/listSubItemFavoriteResponse';
|
|
@@ -46,6 +47,48 @@ export declare class DefaultMira implements DefaultMiraInterface {
|
|
|
46
47
|
context?: HttpContext;
|
|
47
48
|
transferCache?: boolean;
|
|
48
49
|
}): Observable<HttpEvent<ClientMapping>>;
|
|
50
|
+
/**
|
|
51
|
+
* get mainItems by id list
|
|
52
|
+
* @param IdListRequestBody
|
|
53
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
54
|
+
* @param reportProgress flag to report request and response progress.
|
|
55
|
+
*/
|
|
56
|
+
batchGetMainItemByIdList(IdListRequestBody: IdListRequestBody, observe?: 'body', reportProgress?: boolean, options?: {
|
|
57
|
+
httpHeaderAccept?: 'application/json';
|
|
58
|
+
context?: HttpContext;
|
|
59
|
+
transferCache?: boolean;
|
|
60
|
+
}): Observable<MainItem>;
|
|
61
|
+
batchGetMainItemByIdList(IdListRequestBody: IdListRequestBody, observe?: 'response', reportProgress?: boolean, options?: {
|
|
62
|
+
httpHeaderAccept?: 'application/json';
|
|
63
|
+
context?: HttpContext;
|
|
64
|
+
transferCache?: boolean;
|
|
65
|
+
}): Observable<HttpResponse<MainItem>>;
|
|
66
|
+
batchGetMainItemByIdList(IdListRequestBody: IdListRequestBody, observe?: 'events', reportProgress?: boolean, options?: {
|
|
67
|
+
httpHeaderAccept?: 'application/json';
|
|
68
|
+
context?: HttpContext;
|
|
69
|
+
transferCache?: boolean;
|
|
70
|
+
}): Observable<HttpEvent<MainItem>>;
|
|
71
|
+
/**
|
|
72
|
+
* get SubItems by id list
|
|
73
|
+
* @param IdListRequestBody
|
|
74
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
75
|
+
* @param reportProgress flag to report request and response progress.
|
|
76
|
+
*/
|
|
77
|
+
batchGetSubItemsByIdList(IdListRequestBody: IdListRequestBody, observe?: 'body', reportProgress?: boolean, options?: {
|
|
78
|
+
httpHeaderAccept?: 'application/json';
|
|
79
|
+
context?: HttpContext;
|
|
80
|
+
transferCache?: boolean;
|
|
81
|
+
}): Observable<SubItem>;
|
|
82
|
+
batchGetSubItemsByIdList(IdListRequestBody: IdListRequestBody, observe?: 'response', reportProgress?: boolean, options?: {
|
|
83
|
+
httpHeaderAccept?: 'application/json';
|
|
84
|
+
context?: HttpContext;
|
|
85
|
+
transferCache?: boolean;
|
|
86
|
+
}): Observable<HttpResponse<SubItem>>;
|
|
87
|
+
batchGetSubItemsByIdList(IdListRequestBody: IdListRequestBody, observe?: 'events', reportProgress?: boolean, options?: {
|
|
88
|
+
httpHeaderAccept?: 'application/json';
|
|
89
|
+
context?: HttpContext;
|
|
90
|
+
transferCache?: boolean;
|
|
91
|
+
}): Observable<HttpEvent<SubItem>>;
|
|
49
92
|
/**
|
|
50
93
|
* create a favorite for user and item
|
|
51
94
|
* @param Favorite
|
|
@@ -15,6 +15,7 @@ import { CreateSubItemFavoriteRequestBody } from '../model/models';
|
|
|
15
15
|
import { DeleteClientMappingByMainItemResponse } from '../model/models';
|
|
16
16
|
import { Favorite } from '../model/models';
|
|
17
17
|
import { GetOnAirItemListResponse } from '../model/models';
|
|
18
|
+
import { IdListRequestBody } from '../model/models';
|
|
18
19
|
import { ListFavoritesResponse } from '../model/models';
|
|
19
20
|
import { ListMainItemResponse } from '../model/models';
|
|
20
21
|
import { ListSubItemFavoriteResponse } from '../model/models';
|
|
@@ -33,6 +34,18 @@ export interface DefaultMiraInterface {
|
|
|
33
34
|
* @param request_body
|
|
34
35
|
*/
|
|
35
36
|
addClientMapping(request_body: Array<string>, extraHttpRequestParams?: any): Observable<ClientMapping>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* get mainItems by id list
|
|
40
|
+
* @param IdListRequestBody
|
|
41
|
+
*/
|
|
42
|
+
batchGetMainItemByIdList(IdListRequestBody: IdListRequestBody, extraHttpRequestParams?: any): Observable<MainItem>;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* get SubItems by id list
|
|
46
|
+
* @param IdListRequestBody
|
|
47
|
+
*/
|
|
48
|
+
batchGetSubItemsByIdList(IdListRequestBody: IdListRequestBody, extraHttpRequestParams?: any): Observable<SubItem>;
|
|
36
49
|
/**
|
|
37
50
|
*
|
|
38
51
|
* create a favorite for user and item
|