@irohalab/mira-sdk-angular 1.10.0 → 1.11.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 +66 -0
- package/api/default.serviceInterface.d.ts +21 -0
- package/esm2022/api/default.service.mjs +160 -1
- package/esm2022/api/default.serviceInterface.mjs +1 -1
- package/esm2022/model/characterRelationsWithMainItems.mjs +2 -0
- package/esm2022/model/itemCastCharacterRelation.mjs +12 -0
- package/esm2022/model/itemPersonRelation.mjs +12 -0
- package/esm2022/model/itemRelation.mjs +12 -0
- package/esm2022/model/itemRelationsWithMainItems.mjs +2 -0
- package/esm2022/model/models.mjs +7 -1
- package/esm2022/model/personRelationsWithMainItems.mjs +2 -0
- package/fesm2022/irohalab-mira-sdk-angular.mjs +192 -0
- package/fesm2022/irohalab-mira-sdk-angular.mjs.map +1 -1
- package/model/characterRelationsWithMainItems.d.ts +16 -0
- package/model/itemCastCharacterRelation.d.ts +25 -0
- package/model/itemPersonRelation.d.ts +22 -0
- package/model/itemRelation.d.ts +22 -0
- package/model/itemRelationsWithMainItems.d.ts +20 -0
- package/model/models.d.ts +6 -0
- package/model/personRelationsWithMainItems.d.ts +18 -0
- package/package.json +1 -1
|
@@ -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 { ItemCastCharacterRelation } from './itemCastCharacterRelation';
|
|
12
|
+
import { MainItem } from './mainItem';
|
|
13
|
+
export interface CharacterRelationsWithMainItems {
|
|
14
|
+
mainItems: Array<MainItem>;
|
|
15
|
+
relatedItems: Array<ItemCastCharacterRelation>;
|
|
16
|
+
}
|
|
@@ -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
|
+
/**
|
|
12
|
+
* represent the relation among the Item type, Person type and Character type MainItems, it can also only be Item and Character type relation.
|
|
13
|
+
*/
|
|
14
|
+
export interface ItemCastCharacterRelation {
|
|
15
|
+
id: string;
|
|
16
|
+
mainItemId: string;
|
|
17
|
+
mainItemBgmId: number;
|
|
18
|
+
relatedCastId?: string | null;
|
|
19
|
+
relatedCastBgmId: number | null;
|
|
20
|
+
relatedCharacterId?: string | null;
|
|
21
|
+
relatedCharacterBgmId: number;
|
|
22
|
+
characterType: string;
|
|
23
|
+
isLocked: boolean;
|
|
24
|
+
relationType?: string;
|
|
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
|
+
/**
|
|
12
|
+
* represent the relation between the Item type MainItem and Person type MainItem
|
|
13
|
+
*/
|
|
14
|
+
export interface ItemPersonRelation {
|
|
15
|
+
id: string;
|
|
16
|
+
mainItemId: string;
|
|
17
|
+
mainItemBgmId: number;
|
|
18
|
+
personItemId?: string | null;
|
|
19
|
+
personItemBgmId: number;
|
|
20
|
+
relationType: string;
|
|
21
|
+
isLocked: boolean;
|
|
22
|
+
}
|
|
@@ -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
|
+
/**
|
|
12
|
+
* represent the relation of the Item type MainItems
|
|
13
|
+
*/
|
|
14
|
+
export interface ItemRelation {
|
|
15
|
+
id: string;
|
|
16
|
+
mainItemId: string;
|
|
17
|
+
mainItemBgmId: number;
|
|
18
|
+
relatedItemId?: string | null;
|
|
19
|
+
relatedBgmId: number;
|
|
20
|
+
relationType: string;
|
|
21
|
+
isLocked: boolean;
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { ItemPersonRelation } from './itemPersonRelation';
|
|
12
|
+
import { ItemCastCharacterRelation } from './itemCastCharacterRelation';
|
|
13
|
+
import { MainItem } from './mainItem';
|
|
14
|
+
import { ItemRelation } from './itemRelation';
|
|
15
|
+
export interface ItemRelationsWithMainItems {
|
|
16
|
+
mainItems: Array<MainItem>;
|
|
17
|
+
relatedItems: Array<ItemRelation>;
|
|
18
|
+
relatedPersons: Array<ItemPersonRelation>;
|
|
19
|
+
relatedCharacters: Array<ItemCastCharacterRelation>;
|
|
20
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './batchGetMainItemByIdListResult';
|
|
2
2
|
export * from './batchGetSubItemByIdListResult';
|
|
3
|
+
export * from './characterRelationsWithMainItems';
|
|
3
4
|
export * from './clientMapping';
|
|
4
5
|
export * from './createSubItemFavoriteRequestBody';
|
|
5
6
|
export * from './deleteClientMappingByMainItemResponse';
|
|
@@ -10,7 +11,11 @@ export * from './favoriteStatus';
|
|
|
10
11
|
export * from './getOnAirItemListResponse';
|
|
11
12
|
export * from './idListRequestBody';
|
|
12
13
|
export * from './imageInfo';
|
|
14
|
+
export * from './itemCastCharacterRelation';
|
|
13
15
|
export * from './itemEntity';
|
|
16
|
+
export * from './itemPersonRelation';
|
|
17
|
+
export * from './itemRelation';
|
|
18
|
+
export * from './itemRelationsWithMainItems';
|
|
14
19
|
export * from './itemSubType';
|
|
15
20
|
export * from './itemType';
|
|
16
21
|
export * from './listFavoritesResponse';
|
|
@@ -19,6 +24,7 @@ export * from './listSubItemFavoriteResponse';
|
|
|
19
24
|
export * from './mainItem';
|
|
20
25
|
export * from './onAirItem';
|
|
21
26
|
export * from './patchFavoriteBody';
|
|
27
|
+
export * from './personRelationsWithMainItems';
|
|
22
28
|
export * from './propertyType';
|
|
23
29
|
export * from './propertyValue';
|
|
24
30
|
export * from './propertyValueValue';
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { ItemPersonRelation } from './itemPersonRelation';
|
|
12
|
+
import { ItemCastCharacterRelation } from './itemCastCharacterRelation';
|
|
13
|
+
import { MainItem } from './mainItem';
|
|
14
|
+
export interface PersonRelationsWithMainItems {
|
|
15
|
+
mainItems: Array<MainItem>;
|
|
16
|
+
relatedItems: Array<ItemPersonRelation>;
|
|
17
|
+
relatedCharacters: Array<ItemCastCharacterRelation>;
|
|
18
|
+
}
|