@irohalab/mira-sdk-angular 0.2.1 → 0.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 +217 -3
- package/api/default.serviceInterface.d.ts +82 -3
- package/esm2022/api/default.service.mjs +508 -4
- package/esm2022/api/default.serviceInterface.mjs +1 -1
- package/esm2022/model/createFavoriteRequestBody.mjs +2 -0
- package/esm2022/model/createFavoriteResponse.mjs +2 -0
- package/esm2022/model/createSubItemFavoriteRequestBody.mjs +12 -0
- package/esm2022/model/createSubItemFavoriteResponse.mjs +2 -0
- package/esm2022/model/entityBase.mjs +3 -3
- package/esm2022/model/favorite.mjs +2 -0
- package/esm2022/model/favoriteStatus.mjs +18 -0
- package/esm2022/model/getMainItemByIdResponse.mjs +1 -1
- package/esm2022/model/getOnAirItemListResponse.mjs +1 -1
- package/esm2022/model/getSubItemResponse.mjs +2 -0
- package/esm2022/model/imageInfo.mjs +3 -3
- package/esm2022/model/itemEntity.mjs +1 -1
- package/esm2022/model/itemSubType.mjs +3 -3
- package/esm2022/model/itemType.mjs +3 -3
- package/esm2022/model/listFavoritesResponse.mjs +2 -0
- package/esm2022/model/listMainItemResponse.mjs +2 -0
- package/esm2022/model/listSubItemFavoriteResponse.mjs +2 -0
- package/esm2022/model/mainItem.mjs +1 -1
- package/esm2022/model/models.mjs +13 -1
- package/esm2022/model/onAirItem.mjs +1 -1
- package/esm2022/model/patchFavoriteBody.mjs +2 -0
- package/esm2022/model/propertyValue.mjs +1 -1
- package/esm2022/model/propertyValueValue.mjs +3 -3
- package/esm2022/model/subItem.mjs +1 -1
- package/esm2022/model/subItemFavorite.mjs +2 -0
- package/fesm2022/irohalab-mira-sdk-angular.mjs +548 -15
- package/fesm2022/irohalab-mira-sdk-angular.mjs.map +1 -1
- package/model/createFavoriteRequestBody.d.ts +17 -0
- package/model/createFavoriteResponse.d.ts +18 -0
- package/model/createSubItemFavoriteRequestBody.d.ts +13 -0
- package/model/createSubItemFavoriteResponse.d.ts +18 -0
- package/model/entityBase.d.ts +3 -3
- package/model/favorite.d.ts +30 -0
- package/model/favoriteStatus.d.ts +18 -0
- package/model/getMainItemByIdResponse.d.ts +2 -2
- package/model/getOnAirItemListResponse.d.ts +2 -2
- package/model/getSubItemResponse.d.ts +18 -0
- package/model/imageInfo.d.ts +3 -3
- package/model/itemEntity.d.ts +3 -3
- package/model/itemSubType.d.ts +2 -2
- package/model/itemType.d.ts +2 -2
- package/model/listFavoritesResponse.d.ts +25 -0
- package/model/listMainItemResponse.d.ts +25 -0
- package/model/listSubItemFavoriteResponse.d.ts +22 -0
- package/model/mainItem.d.ts +3 -3
- package/model/models.d.ts +12 -0
- package/model/onAirItem.d.ts +3 -3
- package/model/patchFavoriteBody.d.ts +16 -0
- package/model/propertyValue.d.ts +2 -2
- package/model/propertyValueValue.d.ts +2 -2
- package/model/subItem.d.ts +3 -3
- package/model/subItemFavorite.d.ts +26 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
+
* https://openapi-generator.tech
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*/
|
|
11
|
+
import { MainItem } from './mainItem';
|
|
12
|
+
export interface ListMainItemResponse {
|
|
13
|
+
/**
|
|
14
|
+
* a list of MainItems
|
|
15
|
+
*/
|
|
16
|
+
data: Array<MainItem>;
|
|
17
|
+
/**
|
|
18
|
+
* total number of the result
|
|
19
|
+
*/
|
|
20
|
+
total: number;
|
|
21
|
+
/**
|
|
22
|
+
* result code, 0 is successful.
|
|
23
|
+
*/
|
|
24
|
+
status: number;
|
|
25
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
+
* https://openapi-generator.tech
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*/
|
|
11
|
+
import { SubItemFavorite } from './subItemFavorite';
|
|
12
|
+
export interface ListSubItemFavoriteResponse {
|
|
13
|
+
data: SubItemFavorite;
|
|
14
|
+
/**
|
|
15
|
+
* total number of the result, if itemId is provided, this field will not available
|
|
16
|
+
*/
|
|
17
|
+
total?: number;
|
|
18
|
+
/**
|
|
19
|
+
* result code, 0 is successful.
|
|
20
|
+
*/
|
|
21
|
+
status: number;
|
|
22
|
+
}
|
package/model/mainItem.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* mira
|
|
3
|
-
*
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
4
|
*
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -14,7 +14,7 @@ import { SubItem } from './subItem';
|
|
|
14
14
|
import { PropertyValue } from './propertyValue';
|
|
15
15
|
import { ImageInfo } from './imageInfo';
|
|
16
16
|
export interface MainItem {
|
|
17
|
-
id:
|
|
17
|
+
id: string;
|
|
18
18
|
/**
|
|
19
19
|
* RFC3339 Datetime
|
|
20
20
|
*/
|
package/model/models.d.ts
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
|
+
export * from './createFavoriteRequestBody';
|
|
2
|
+
export * from './createFavoriteResponse';
|
|
3
|
+
export * from './createSubItemFavoriteRequestBody';
|
|
4
|
+
export * from './createSubItemFavoriteResponse';
|
|
1
5
|
export * from './entityBase';
|
|
6
|
+
export * from './favorite';
|
|
7
|
+
export * from './favoriteStatus';
|
|
2
8
|
export * from './getMainItemByIdResponse';
|
|
3
9
|
export * from './getOnAirItemListResponse';
|
|
10
|
+
export * from './getSubItemResponse';
|
|
4
11
|
export * from './imageInfo';
|
|
5
12
|
export * from './itemEntity';
|
|
6
13
|
export * from './itemSubType';
|
|
7
14
|
export * from './itemType';
|
|
15
|
+
export * from './listFavoritesResponse';
|
|
16
|
+
export * from './listMainItemResponse';
|
|
17
|
+
export * from './listSubItemFavoriteResponse';
|
|
8
18
|
export * from './mainItem';
|
|
9
19
|
export * from './onAirItem';
|
|
20
|
+
export * from './patchFavoriteBody';
|
|
10
21
|
export * from './propertyValue';
|
|
11
22
|
export * from './propertyValueValue';
|
|
12
23
|
export * from './subItem';
|
|
24
|
+
export * from './subItemFavorite';
|
package/model/onAirItem.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* mira
|
|
3
|
-
*
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
4
|
*
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -12,7 +12,7 @@ import { ItemSubType } from './itemSubType';
|
|
|
12
12
|
import { ItemType } from './itemType';
|
|
13
13
|
import { ImageInfo } from './imageInfo';
|
|
14
14
|
export interface OnAirItem {
|
|
15
|
-
id:
|
|
15
|
+
id: string;
|
|
16
16
|
bgmId: number;
|
|
17
17
|
/**
|
|
18
18
|
* RFC3339 Datetime
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
+
* https://openapi-generator.tech
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*/
|
|
11
|
+
import { FavoriteStatus } from './favoriteStatus';
|
|
12
|
+
export interface PatchFavoriteBody {
|
|
13
|
+
status: FavoriteStatus;
|
|
14
|
+
}
|
|
15
|
+
export declare namespace PatchFavoriteBody {
|
|
16
|
+
}
|
package/model/propertyValue.d.ts
CHANGED
package/model/subItem.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* mira
|
|
3
|
-
*
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
4
|
*
|
|
5
5
|
*
|
|
6
6
|
*
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { PropertyValue } from './propertyValue';
|
|
12
12
|
export interface SubItem {
|
|
13
|
-
id:
|
|
13
|
+
id: string;
|
|
14
14
|
/**
|
|
15
15
|
* RFC3339 Datetime
|
|
16
16
|
*/
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* mira API
|
|
3
|
+
* API for Project-Mira
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
+
* https://openapi-generator.tech
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*/
|
|
11
|
+
import { SubItem } from './subItem';
|
|
12
|
+
export interface SubItemFavorite {
|
|
13
|
+
id: string;
|
|
14
|
+
/**
|
|
15
|
+
* RFC3339 Datetime
|
|
16
|
+
*/
|
|
17
|
+
createdTime: string;
|
|
18
|
+
/**
|
|
19
|
+
* RFC3339 Datetime to set the updateTime
|
|
20
|
+
*/
|
|
21
|
+
updateTime?: string;
|
|
22
|
+
version: number;
|
|
23
|
+
deleted: boolean;
|
|
24
|
+
subItem: SubItem;
|
|
25
|
+
userId: string;
|
|
26
|
+
}
|