hoshimi-venus 0.1.0 → 0.1.2

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.
@@ -1,18 +1,6 @@
1
- import type { GachaContinuousResultType, ResultRankType, LinkType, BoxGachaItemType, DokanType, ShopType, ResourceType, ResetTimingType, ActivityFanEventType, GachaType, GvgMatchResultType, LadderPanelType, AttributeType, MoodType, SkillPossessionType, AccessoryCategoryType, PhotoContestEvaluationRankType, ProfileBackgroundType, ProfileLayoutType, ProfileInformationType, ProfileColorType, ShopConditionRewardStatusType, ActivityFanEventHappeningType, ItemType, BacksideType, BacksideAreaType, BacksideDifficultyType, BacksidePracticeRankType, BacksideStageType, BacksidePanelType, BacksidePanelAttributeType, MusicChartType, SkillFailureType, StatusEffectType, SkillEfficacyType, PhotoImageType, ActivityCampaignEffectType, DeckEditType, DivisionCannotMoveReasonType, ForumListReplyRequestType, GachaRewardPatternType, GachaAnimationEmbeddedType, GiftSortType, GiftFilterType, GvgChallengeConsumptionType, GraphicType, HomePositionType, FunctionMaintenanceType, ProviderType, ErrorCode, PhotoImageRequestType, PhotoShootingActionType, PhotoContestBaseEvaluationType, PhotoContestBaseGuideRankType, ParameterType, TourType, TourEnemyType, TourAreaType, TourStepType, TutorialType } from './proto_enum';
1
+ import type { ResultRankType, LiveSkipType, LinkType, BoxGachaItemType, DokanType, ShopType, ResourceType, ResetTimingType, ActivityFanEventType, GachaContinuousResultType, GachaType, GvgMatchResultType, MarathonType, LadderPanelType, AttributeType, MoodType, SkillPossessionType, AccessoryCategoryType, PhotoContestEvaluationRankType, ProfileBackgroundType, ProfileLayoutType, ProfileInformationType, ProfileColorType, ShopConditionRewardStatusType, ActivityFanEventHappeningType, ItemType, BacksideType, BacksideAreaType, BacksideDifficultyType, BacksidePracticeRankType, BacksideStageType, BacksidePanelType, BacksidePanelAttributeType, MusicChartType, SkillFailureType, StatusEffectType, SkillEfficacyType, PhotoImageType, ActivityCampaignEffectType, DeckEditType, DivisionCannotMoveReasonType, ForumListReplyRequestType, GachaRewardPatternType, GachaAnimationEmbeddedType, GiftSortType, GiftFilterType, GvgChallengeConsumptionType, GraphicType, HomePositionType, FunctionMaintenanceType, MarathonRaidProgressType, RuleType, ProviderType, ErrorCode, PhotoImageRequestType, PhotoShootingActionType, PhotoContestBaseEvaluationType, PhotoContestBaseGuideRankType, ParameterType, TourType, TourEnemyType, TourAreaType, TourStepType, TutorialType } from './proto_enum';
2
2
  import type { Accessory, HelpCategory } from './proto_master';
3
- import type { UserPhoto, UserMission, Reward, Payslip, RewardResult, UserPublic, UserCharacter, User, UserItem, UserCard, UserCostume, UserAccessory, UserDeck, UserStory, UserPoint, UserStaff, UserMessage, UserTelephone, UserProfile, UserEmblem, UserCharacterMusic, UserBalance, UserTotalCount, UserArea, UserQuest, UserGachaButton, UserHomeTalk, UserPhotoReport, UserCardSupport, UserMessageSchedule, UserNotification, UserHierarchy, UserTutorial, UserHomePosition, UserMusic, UserDecoration, UserPhotoRecipe, UserBuddy, UserInvite, ConsumptionResult, UserGift, UserGiftHistory, UserLoginBonus, MasterTag } from './proto_transaction';
4
- export declare type GachaContinuousInfo = {
5
- totalDrawCount: number;
6
- cardIds: string[];
7
- isFinished: boolean;
8
- externalRewardInfo: ExternalRewardInfo;
9
- };
10
- export declare type GachaContinuousResult = {
11
- totalDrawCount: number;
12
- cardIds: string[];
13
- resultType: GachaContinuousResultType;
14
- externalRewardInfo: ExternalRewardInfo;
15
- };
3
+ import type { UserPhoto, UserMission, RewardResult, Reward, Payslip, UserPublic, UserCharacter, User, UserItem, UserCard, UserCostume, UserAccessory, UserDeck, UserStory, UserPoint, UserStaff, UserMessage, UserTelephone, UserProfile, UserEmblem, UserCharacterMusic, UserBalance, UserTotalCount, UserArea, UserQuest, UserGachaButton, UserHomeTalk, UserPhotoReport, UserCardSupport, UserMessageSchedule, UserNotification, UserHierarchy, UserTutorial, UserHomePosition, UserMusic, UserDecoration, UserPhotoRecipe, UserBuddy, UserInvite, UserHair, ConsumptionResult, UserGift, UserGiftHistory, UserLoginBonus, MasterTag } from './proto_transaction';
16
4
  export declare type ActiveFanEvent = {
17
5
  characterIds: string[];
18
6
  name: string;
@@ -38,6 +26,7 @@ export declare type ActiveRefresh = {
38
26
  export declare type ActivityCharacterInfo = {
39
27
  characterId: string;
40
28
  costumeId: string;
29
+ hairId: string;
41
30
  };
42
31
  export declare type ActivityLessonProgress = {
43
32
  stepRewardGold: number;
@@ -80,6 +69,7 @@ export declare type BacksideDeckCardDetailInfo = {
80
69
  photos: UserPhoto[];
81
70
  staminaPermil: number;
82
71
  supported: boolean;
72
+ displayHairId: string;
83
73
  };
84
74
  export declare type BacksideDeckCardInfo = {
85
75
  position: number;
@@ -129,6 +119,7 @@ export declare type BacksidePanelGoalInfo = {
129
119
  stageId: string;
130
120
  backsideQuestSettingId: string;
131
121
  mentalThreshold: number;
122
+ liveSkipType: LiveSkipType;
132
123
  };
133
124
  export declare type BacksidePanelLiveInfo = {
134
125
  musicId: string;
@@ -139,6 +130,7 @@ export declare type BacksidePanelLiveInfo = {
139
130
  stageId: string;
140
131
  backsideQuestSettingId: string;
141
132
  mentalThreshold: number;
133
+ liveSkipType: LiveSkipType;
142
134
  };
143
135
  export declare type BacksidePanelPvpInfo = {
144
136
  musicId: string;
@@ -150,6 +142,7 @@ export declare type BacksidePanelPvpInfo = {
150
142
  opponentInfo: BacksideOpponentInfo;
151
143
  backsideQuestSettingId: string;
152
144
  mentalThreshold: number;
145
+ liveSkipType: LiveSkipType;
153
146
  };
154
147
  export declare type BacksidePracticeStageInfo = {
155
148
  number: number;
@@ -214,6 +207,9 @@ export declare type DokanInfo = {
214
207
  name: string;
215
208
  shopType: ShopType;
216
209
  storyId: string;
210
+ linkTitle: string;
211
+ linkType: LinkType;
212
+ linkDetail: string;
217
213
  };
218
214
  export declare type EventButtonDisplayInfo = {
219
215
  conditionId: string;
@@ -267,11 +263,43 @@ export declare type ExchangeItem = {
267
263
  viewConditionId: string;
268
264
  unlockConditionId: string;
269
265
  };
266
+ export declare type ExerciseDeckPosition = {
267
+ position: number;
268
+ cardId: string;
269
+ part1AccessoryId: string;
270
+ part2AccessoryId: string;
271
+ photoAllInOneIds: string[];
272
+ };
273
+ export declare type ExerciseInfo = {
274
+ exerciseId: string;
275
+ unlocked: boolean;
276
+ positions: ExerciseDeckPosition[];
277
+ opponentInfo: QuestOpponentInfo;
278
+ };
279
+ export declare type ExerciseStartResponse = {
280
+ questId: string;
281
+ result: LiveResult;
282
+ rankType: ResultRankType;
283
+ rankPlus: number;
284
+ rankPatterns: QuestRankPattern[];
285
+ clearRewards: RewardResult[];
286
+ commonResponse: CommonResponse;
287
+ };
270
288
  export declare type ExternalRewardInfo = {
271
289
  externalRewardId: string;
272
290
  rewardId: string;
273
291
  isReceived: boolean;
274
292
  };
293
+ export declare type ExtraStoryInfo = {
294
+ id: string;
295
+ unlocked: boolean;
296
+ episodes: ExtraStoryEpisodeInfo[];
297
+ };
298
+ export declare type ExtraStoryPartInfo = {
299
+ id: string;
300
+ unlocked: boolean;
301
+ stories: ExtraStoryInfo[];
302
+ };
275
303
  export declare type FanEvent = {
276
304
  id: string;
277
305
  name: string;
@@ -306,6 +334,7 @@ export declare type FanEventCharacterInfo = {
306
334
  activityPoint: number;
307
335
  maxStep: number;
308
336
  lastSavedActivityPoint: number;
337
+ hairId: string;
309
338
  };
310
339
  export declare type FanEventProgress = {
311
340
  activityFanEventId: string;
@@ -346,6 +375,18 @@ export declare type GachaButtonInfo = {
346
375
  totalCount: number;
347
376
  drawTime: string;
348
377
  };
378
+ export declare type GachaContinuousInfo = {
379
+ totalDrawCount: number;
380
+ cardIds: string[];
381
+ isFinished: boolean;
382
+ externalRewardInfo: ExternalRewardInfo;
383
+ };
384
+ export declare type GachaContinuousResult = {
385
+ totalDrawCount: number;
386
+ cardIds: string[];
387
+ resultType: GachaContinuousResultType;
388
+ externalRewardInfo: ExternalRewardInfo;
389
+ };
349
390
  export declare type GachaExchangeInfo = {
350
391
  id: string;
351
392
  exchangedCount: number;
@@ -369,6 +410,7 @@ export declare type GachaInfo = {
369
410
  selectedCardIds: string[];
370
411
  premiumInfo: GachaPremiumInfo;
371
412
  continuousInfo: GachaContinuousInfo;
413
+ stampInfo: GachaStampInfo;
372
414
  };
373
415
  export declare type GachaPremiumInfo = {
374
416
  fixedPremiumRewardRequiredDrawCount: number;
@@ -532,6 +574,8 @@ export declare type HomeEnterResponse = {
532
574
  lessonInfo: LessonInfo;
533
575
  eventButtonDisplayInfos: EventButtonDisplayInfo[];
534
576
  hasCanReceiveInviteHostRewards: boolean;
577
+ existsUnclearedExercise: boolean;
578
+ extraStoryPartInfos: ExtraStoryPartInfo[];
535
579
  pvpRewardResultInfo: PvpRewardResultInfo;
536
580
  gvgRewardResultInfo: GvgRewardResultInfo;
537
581
  tourRewardResultInfos: TourRewardResultInfo[];
@@ -558,7 +602,7 @@ export declare type HomeLadderInfo = {
558
602
  isUnlocked: boolean;
559
603
  eventMissionId: string;
560
604
  messageGroupId: string;
561
- hasReachablePanel: boolean;
605
+ reachablePanelCount: number;
562
606
  };
563
607
  export declare type HomeMarathonInfo = {
564
608
  id: string;
@@ -573,6 +617,11 @@ export declare type HomeMarathonInfo = {
573
617
  isUnlocked: boolean;
574
618
  eventMissionId: string;
575
619
  isMaxStamina: boolean;
620
+ isRaidStaminaOverThreshold: boolean;
621
+ hasFinishedRaidQuest: boolean;
622
+ isRaidHostEnable: boolean;
623
+ reachableLadderPanelCount: number;
624
+ type: MarathonType;
576
625
  };
577
626
  export declare type HomePhotoContestInfo = {
578
627
  id: string;
@@ -638,6 +687,7 @@ export declare type LadderInfo = {
638
687
  topColorCode: string;
639
688
  bottomColorCode: string;
640
689
  bgmAssetId: string;
690
+ backgroundAssetId: string;
641
691
  };
642
692
  export declare type LadderPanel = {
643
693
  type: LadderPanelType;
@@ -693,6 +743,7 @@ export declare type LiveBattleQuestInfo = {
693
743
  questAudienceAdvantageId: string;
694
744
  moodType: MoodType;
695
745
  liveBonusGroupId: string;
746
+ liveSkipType: LiveSkipType;
696
747
  };
697
748
  export declare type LiveCardInfo = {
698
749
  position: number;
@@ -707,6 +758,7 @@ export declare type LiveCardResult = {
707
758
  export declare type LiveCharacterAssetInfo = {
708
759
  characterId: string;
709
760
  costumeId: string;
761
+ hairId: string;
710
762
  };
711
763
  export declare type LiveDeckCard = {
712
764
  index: number;
@@ -729,6 +781,8 @@ export declare type LiveDeckCard = {
729
781
  skills: LiveDeckCardSkill[];
730
782
  isBuddy: boolean;
731
783
  isFriendBuddy: boolean;
784
+ displayHairId: string;
785
+ isTourScout: boolean;
732
786
  };
733
787
  export declare type LiveDeckCardSkill = {
734
788
  index: number;
@@ -789,6 +843,14 @@ export declare type MarathonInfo = {
789
843
  noticeInfo: NoticeInfo;
790
844
  staminaRecoveryItemId: string;
791
845
  questUnlockItemId: string;
846
+ type: MarathonType;
847
+ raidStaminaRecoveryItemId: string;
848
+ initialRaidStamina: number;
849
+ raidStaminaRecoveryMinutes: number;
850
+ raidQuest: MarathonRaidQuest;
851
+ raidRequiredPointFriendDiscountRatePermil: number;
852
+ raidLimitHours: number;
853
+ ladderInfo: LadderInfo;
792
854
  };
793
855
  export declare type MarathonLiveBonusInfo = {
794
856
  liveBonusId: string;
@@ -819,8 +881,72 @@ export declare type MarathonQuestStartResponse = {
819
881
  highestClearRankType: ResultRankType;
820
882
  highestScore: string;
821
883
  addMarathonPoint: number;
884
+ friendApplyToBuddyInfo: FriendApplyToBuddyInfo;
822
885
  commonResponse: CommonResponse;
823
886
  };
887
+ export declare type MarathonRaidHostUser = {
888
+ name: string;
889
+ isFriend: boolean;
890
+ favoriteCard: FavoriteCardInfo;
891
+ favoritePhoto: FavoritePhotoInfo;
892
+ decorationId: string;
893
+ userId: string;
894
+ };
895
+ export declare type MarathonRaidQuest = {
896
+ id: string;
897
+ stageId: string;
898
+ name: string;
899
+ description: string;
900
+ unlockConditionId: string;
901
+ unlockDescription: string;
902
+ musicId: string;
903
+ musicChartPatternId: string;
904
+ position1AttributeType: AttributeType;
905
+ position2AttributeType: AttributeType;
906
+ position3AttributeType: AttributeType;
907
+ position4AttributeType: AttributeType;
908
+ position5AttributeType: AttributeType;
909
+ activeSkillWeightPermil: number;
910
+ specialSkillWeightPermil: number;
911
+ skillStaminaWeightPermil: number;
912
+ staminaRecoveryWeightPermil: number;
913
+ beatDanceWeightPermil: number;
914
+ beatVocalWeightPermil: number;
915
+ beatVisualWeightPermil: number;
916
+ questPressureId: string;
917
+ questCharacterAdvantageId: string;
918
+ questAudienceAdvantageId: string;
919
+ moodType: MoodType;
920
+ maxCapacity: number;
921
+ liveBonusGroupId: string;
922
+ unlocked: boolean;
923
+ difficulties: MarathonRaidQuestDifficulty[];
924
+ };
925
+ export declare type MarathonRaidQuestDifficulty = {
926
+ raidQuestId: string;
927
+ difficultyNumber: number;
928
+ difficultyLevel: number;
929
+ mentalThreshold: number;
930
+ clearScore: string;
931
+ requiredRaidStamina: number;
932
+ hostRewardId: string;
933
+ joinRewardId: string;
934
+ mvpRewardId: string;
935
+ unlockConditionId: string;
936
+ rewardManagerExp: number;
937
+ rewardCardExp: number;
938
+ cleared: boolean;
939
+ unlocked: boolean;
940
+ liveSkipType: LiveSkipType;
941
+ };
942
+ export declare type MarathonRaidRankedUser = {
943
+ rank: number;
944
+ userName: string;
945
+ managerLevel: number;
946
+ score: string;
947
+ emblemId: string;
948
+ userId: string;
949
+ };
824
950
  export declare type MarketItem = {
825
951
  number: number;
826
952
  consumptionResourceType: ResourceType;
@@ -1044,6 +1170,24 @@ export declare type QuestAreaInfo = {
1044
1170
  unlocked: boolean;
1045
1171
  quests: QuestInfo[];
1046
1172
  };
1173
+ export declare type QuestBulkDailyDeckPositionInfo = {
1174
+ position: number;
1175
+ cardId: string;
1176
+ };
1177
+ export declare type QuestBulkDailyInfo = {
1178
+ questId: string;
1179
+ deckPositions: QuestBulkDailyDeckPositionInfo[];
1180
+ rankType: ResultRankType;
1181
+ rankPlus: number;
1182
+ };
1183
+ export declare type QuestBulkDailyResultInfo = {
1184
+ questId: string;
1185
+ playCount: number;
1186
+ deckPositions: QuestBulkDailyDeckPositionInfo[];
1187
+ reward: QuestReward;
1188
+ rankType: ResultRankType;
1189
+ rankPlus: number;
1190
+ };
1047
1191
  export declare type QuestClearInfo = {
1048
1192
  score: string;
1049
1193
  userName: string;
@@ -1115,6 +1259,7 @@ export declare type QuestTopResponse = {
1115
1259
  towerArea: QuestAreaInfo;
1116
1260
  contestArea: QuestAreaInfo;
1117
1261
  isTowerTopUnlocked: boolean;
1262
+ bulkDailyInfos: QuestBulkDailyInfo[];
1118
1263
  commonResponse: CommonResponse;
1119
1264
  };
1120
1265
  export declare type QuestTowerAreaInfo = {
@@ -1319,6 +1464,7 @@ export declare type TourEffectLive = {
1319
1464
  rewardId: string;
1320
1465
  difficultyLevel: number;
1321
1466
  tourQuestSettingId: string;
1467
+ liveSkipType: LiveSkipType;
1322
1468
  };
1323
1469
  export declare type TourEffectPvp = {
1324
1470
  musicId: string;
@@ -1332,6 +1478,7 @@ export declare type TourEffectPvp = {
1332
1478
  scoutInfo: TourScoutInfo;
1333
1479
  rewardId: string;
1334
1480
  tourQuestSettingId: string;
1481
+ liveSkipType: LiveSkipType;
1335
1482
  };
1336
1483
  export declare type TourEffectRefresh = {
1337
1484
  amountPermil: number;
@@ -1388,6 +1535,7 @@ export declare type ActivityStartFanEventRequest = {
1388
1535
  characterIds: string[];
1389
1536
  costumeIds: string[];
1390
1537
  itemIds: string[];
1538
+ hairIds: string[];
1391
1539
  };
1392
1540
  export declare type ActivityStartFanEventResponse = {
1393
1541
  progress: FanEventProgress;
@@ -1438,6 +1586,7 @@ export declare type ActivityStartPromotionRequest = {
1438
1586
  activityPromotionId: string;
1439
1587
  characterIds: string[];
1440
1588
  costumeIds: string[];
1589
+ hairIds: string[];
1441
1590
  };
1442
1591
  export declare type ActivityStartPromotionResponse = {
1443
1592
  progress: PromotionProgress;
@@ -1487,6 +1636,7 @@ export declare type ActivityStartRefreshRequest = {
1487
1636
  activityRefreshLevel: number;
1488
1637
  characterIds: string[];
1489
1638
  costumeIds: string[];
1639
+ hairIds: string[];
1490
1640
  };
1491
1641
  export declare type ActivityStartRefreshResponse = {
1492
1642
  progress: RefreshProgress;
@@ -1518,6 +1668,7 @@ export declare type ActivityReceiveLessonRewardResponse = {
1518
1668
  };
1519
1669
  export declare type ActivityPromoteLessonRequest = {
1520
1670
  isFree: boolean;
1671
+ useItemId: string;
1521
1672
  };
1522
1673
  export declare type ActivityPromoteLessonResponse = {
1523
1674
  rewards: Reward[];
@@ -1570,6 +1721,7 @@ export declare type AuthLoginResponse = {
1570
1721
  userPublic: UserPublic;
1571
1722
  requiredFirebaseReauthenticate: boolean;
1572
1723
  };
1724
+ export declare type AuthDeleteResponse = {};
1573
1725
  export declare type BacksideTopRequest = {
1574
1726
  backsideId: string;
1575
1727
  };
@@ -1652,28 +1804,12 @@ export declare type BacksideStageSurpriseFinishResponse = {
1652
1804
  export declare type BacksideStageDeckPositionChangeRequest = {
1653
1805
  backsideId: string;
1654
1806
  deckPositionInfos: BacksideDeckPositionInfo[];
1655
- pieceNumber: number;
1656
- radiusNumber: number;
1657
- panelNumber: number;
1658
1807
  };
1659
1808
  export declare type BacksideStageDeckPositionChangeResponse = {
1660
- deckCardDetailInfos: BacksideDeckCardDetailInfo[];
1661
- deckCardStaminaInfos: BacksideDeckCardStaminaInfo[];
1662
1809
  deckUserCharacters: UserCharacter[];
1663
- baseDeckOverallValue: string;
1664
- commonResponse: CommonResponse;
1665
- };
1666
- export declare type BacksideStageDeckGetRequest = {
1667
- backsideId: string;
1668
- pieceNumber: number;
1669
- radiusNumber: number;
1670
- panelNumber: number;
1671
- };
1672
- export declare type BacksideStageDeckGetResponse = {
1673
- deckCardDetailInfos: BacksideDeckCardDetailInfo[];
1674
- deckCardStaminaInfos: BacksideDeckCardStaminaInfo[];
1675
- deckUserCharacters: UserCharacter[];
1676
- baseDeckOverallValue: string;
1810
+ deckDetailInfo: BacksideStageDeckDetailInfo;
1811
+ scoreLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1812
+ battleLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1677
1813
  commonResponse: CommonResponse;
1678
1814
  };
1679
1815
  export declare type BacksideInfo = {
@@ -1751,29 +1887,36 @@ export declare type BacksideLiveBonusInfo = {
1751
1887
  stageName: string;
1752
1888
  liveBonuses: BacksideLiveBonus[];
1753
1889
  };
1890
+ export declare type BacksideStageDeckDetailInfo = {
1891
+ deckCardDetailInfos: BacksideDeckCardDetailInfo[];
1892
+ deckCardStaminaInfos: BacksideDeckCardStaminaInfo[];
1893
+ baseDeckOverallValue: string;
1894
+ };
1754
1895
  export declare type BacksideStageInfo = {
1755
1896
  panelInfos: BacksidePanelInfo[];
1756
1897
  scheduleInfos: BacksideScheduleInfo[];
1757
1898
  nextActionCount: string;
1758
1899
  practiceScore: string;
1759
- deckCardDetailInfos: BacksideDeckCardDetailInfo[];
1760
- deckCardStaminaInfos: BacksideDeckCardStaminaInfo[];
1761
1900
  liveBonuses: BacksideLiveBonus[];
1762
1901
  allLiveBonusInfos: BacksideLiveBonusInfo[];
1763
1902
  cardLiveAbilityInfos: BacksideCardLiveAbilityInfo[];
1764
1903
  totalPracticeScore: string;
1765
1904
  deckUserCharacters: UserCharacter[];
1766
- baseDeckOverallValue: string;
1905
+ deckDetailInfo: BacksideStageDeckDetailInfo;
1906
+ scoreLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1907
+ battleLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1767
1908
  };
1768
1909
  export declare type BacksideStageProgressInfo = {
1769
1910
  panelInfos: BacksidePanelInfo[];
1770
1911
  nextActionCount: string;
1771
1912
  practiceScore: string;
1772
- deckCardStaminaInfos: BacksideDeckCardStaminaInfo[];
1773
1913
  liveBonuses: BacksideLiveBonus[];
1774
1914
  execPanelLocationInfo: BacksideExecPanelLocationInfo;
1775
1915
  totalPracticeScore: string;
1776
- deckCardDetailInfos: BacksideDeckCardDetailInfo[];
1916
+ deckUserCharacters: UserCharacter[];
1917
+ deckDetailInfo: BacksideStageDeckDetailInfo;
1918
+ scoreLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1919
+ battleLiveDeckDetailInfo: BacksideStageDeckDetailInfo;
1777
1920
  };
1778
1921
  export declare type BacksidePanelInfo = {
1779
1922
  pieceNumber: number;
@@ -2055,6 +2198,7 @@ export declare type NoticeInfo = {
2055
2198
  displayNotification: boolean;
2056
2199
  startTime: string;
2057
2200
  listTitle: string;
2201
+ notificationRestartTime: string;
2058
2202
  };
2059
2203
  export declare type PaidJpy = {
2060
2204
  amount: number;
@@ -2083,6 +2227,10 @@ export declare type EventStoryEpisodeInfo = {
2083
2227
  episode: number;
2084
2228
  unlocked: boolean;
2085
2229
  };
2230
+ export declare type ExtraStoryEpisodeInfo = {
2231
+ episode: number;
2232
+ unlocked: boolean;
2233
+ };
2086
2234
  export declare type EventExchangeBoothInfo = {
2087
2235
  id: string;
2088
2236
  name: string;
@@ -2103,6 +2251,10 @@ export declare type CurrentGvgInfo = {
2103
2251
  gvgSeason: GvgSeasonInfo;
2104
2252
  isRemainingChallenge: boolean;
2105
2253
  };
2254
+ export declare type GachaStampInfo = {
2255
+ currentSheetNumber: number;
2256
+ currentStampNumber: number;
2257
+ };
2106
2258
  export declare type HomeEventInfo = {
2107
2259
  eventMissionInfos: HomeEventMissionInfo[];
2108
2260
  tourInfos: HomeTourInfo[];
@@ -2139,6 +2291,20 @@ export declare type UserDeckPosition = {
2139
2291
  photoIds: string[];
2140
2292
  costumeId: string;
2141
2293
  buddyUserId: string;
2294
+ hairId: string;
2295
+ };
2296
+ export declare type LadderProgressInfo = {
2297
+ steps: LadderStep[];
2298
+ };
2299
+ export declare type LadderStep = {
2300
+ step: number;
2301
+ lane1Panel: LadderPanel;
2302
+ lane2Panel: LadderPanel;
2303
+ lane3Panel: LadderPanel;
2304
+ };
2305
+ export declare type FriendApplyToBuddyInfo = {
2306
+ isActive: boolean;
2307
+ isAlreadyOffered: boolean;
2142
2308
  };
2143
2309
  export declare type CommonResponse = {
2144
2310
  updatedData: UpdatedData;
@@ -2181,6 +2347,7 @@ export declare type UpdatedData = {
2181
2347
  photoRecipes: UserPhotoRecipe[];
2182
2348
  buddy: UserBuddy;
2183
2349
  invite: UserInvite;
2350
+ hairs: UserHair[];
2184
2351
  };
2185
2352
  export declare type DeletedData = {
2186
2353
  items: UserItem[];
@@ -2195,12 +2362,14 @@ export declare type DeletedData = {
2195
2362
  };
2196
2363
  export declare type CostumeSetRequest = {
2197
2364
  costumeId: string;
2365
+ hairId: string;
2198
2366
  };
2199
2367
  export declare type CostumeSetResponse = {
2200
2368
  commonResponse: CommonResponse;
2201
2369
  };
2202
2370
  export declare type CostumeLiveSetRequest = {
2203
2371
  costumeId: string;
2372
+ hairId: string;
2204
2373
  };
2205
2374
  export declare type CostumeLiveSetResponse = {
2206
2375
  commonResponse: CommonResponse;
@@ -2291,6 +2460,36 @@ export declare type ExchangeExecuteResponse = {
2291
2460
  booth: ExchangeBooth;
2292
2461
  commonResponse: CommonResponse;
2293
2462
  };
2463
+ export declare type ExchangeTryOnRequest = {
2464
+ exchangeId: string;
2465
+ costumeId: string;
2466
+ hairId: string;
2467
+ };
2468
+ export declare type ExchangeTryOnResponse = {
2469
+ commonResponse: CommonResponse;
2470
+ };
2471
+ export declare type ExerciseTopResponse = {
2472
+ exercises: ExerciseInfo[];
2473
+ commonResponse: CommonResponse;
2474
+ };
2475
+ export declare type ExerciseSaveDeckRequest = {
2476
+ exerciseId: string;
2477
+ positions: ExerciseDeckPosition[];
2478
+ };
2479
+ export declare type ExerciseSaveDeckResponse = {
2480
+ commonResponse: CommonResponse;
2481
+ };
2482
+ export declare type ExerciseStartRequest = {
2483
+ exerciseId: string;
2484
+ isSkip: boolean;
2485
+ };
2486
+ export declare type ExerciseListAssetRequest = {
2487
+ exerciseId: string;
2488
+ };
2489
+ export declare type ExerciseListAssetResponse = {
2490
+ characterAssets: LiveCharacterAssetInfo[];
2491
+ commonResponse: CommonResponse;
2492
+ };
2294
2493
  export declare type ForumListThreadReplyRequest = {
2295
2494
  threadId: string;
2296
2495
  requestType: ForumListReplyRequestType;
@@ -2392,6 +2591,7 @@ export declare type FriendApplyResponse = {
2392
2591
  isAlreadyOffered: boolean;
2393
2592
  isAccountBan: boolean;
2394
2593
  applied: boolean;
2594
+ isAccountDeleted: boolean;
2395
2595
  commonResponse: CommonResponse;
2396
2596
  };
2397
2597
  export declare type FriendApproveRequest = {
@@ -2403,6 +2603,7 @@ export declare type FriendApproveResponse = {
2403
2603
  isOfferDeleted: boolean;
2404
2604
  isAccountBan: boolean;
2405
2605
  approved: boolean;
2606
+ isAccountDeleted: boolean;
2406
2607
  commonResponse: CommonResponse;
2407
2608
  };
2408
2609
  export declare type FriendCancelRequest = {
@@ -2451,6 +2652,8 @@ export declare type GachaDrawResponse = {
2451
2652
  gachaMovie: GachaMovie;
2452
2653
  cardRewards: Reward[];
2453
2654
  continuousResult: GachaContinuousResult;
2655
+ stampInfo: GachaStampInfo;
2656
+ stampRewards: Reward[];
2454
2657
  commonResponse: CommonResponse;
2455
2658
  };
2456
2659
  export declare type GachaExchangeRequest = {
@@ -2589,7 +2792,6 @@ export declare type GvgTopInfo = {
2589
2792
  guildRankingRewards: GvgGuildRankingRewardInfo[];
2590
2793
  gvgQuest: LiveBattleQuestInfo;
2591
2794
  userGvgSeason: UserGvgSeasonInfo;
2592
- isSkipAvailable: boolean;
2593
2795
  };
2594
2796
  export declare type UserGvgSeasonInfo = {
2595
2797
  points: string[];
@@ -2655,6 +2857,12 @@ export declare type GvgListAssetResponse = {
2655
2857
  opponentCharacterAssets: LiveCharacterAssetInfo[];
2656
2858
  commonResponse: CommonResponse;
2657
2859
  };
2860
+ export declare type HairCheckRequest = {
2861
+ hairId: string;
2862
+ };
2863
+ export declare type HairCheckResponse = {
2864
+ commonResponse: CommonResponse;
2865
+ };
2658
2866
  export declare type HealthCheckRequest = {
2659
2867
  service: string;
2660
2868
  };
@@ -2818,6 +3026,7 @@ export declare type BannerInfo = {
2818
3026
  boardBanners: Banner[];
2819
3027
  questBanners: Banner[];
2820
3028
  inviteBanners: Banner[];
3029
+ exerciseBanners: Banner[];
2821
3030
  };
2822
3031
  export declare type FanEventInfo = {
2823
3032
  fanEvents: FanEvent[];
@@ -2887,17 +3096,9 @@ export declare type LadderPanelReachRequest = {
2887
3096
  export declare type LadderPanelReachResponse = {
2888
3097
  rewardResults: RewardResult[];
2889
3098
  progressInfo: LadderProgressInfo;
3099
+ reachablePanelCount: number;
2890
3100
  commonResponse: CommonResponse;
2891
3101
  };
2892
- export declare type LadderProgressInfo = {
2893
- steps: LadderStep[];
2894
- };
2895
- export declare type LadderStep = {
2896
- step: number;
2897
- lane1Panel: LadderPanel;
2898
- lane2Panel: LadderPanel;
2899
- lane3Panel: LadderPanel;
2900
- };
2901
3102
  export declare type LoginBonusListResponse = {
2902
3103
  infos: LoginBonusInfo[];
2903
3104
  commonResponse: CommonResponse;
@@ -2938,10 +3139,14 @@ export declare type MarathonQuestStartRequest = {
2938
3139
  deckNumber: number;
2939
3140
  isSkip: boolean;
2940
3141
  execCount: number;
3142
+ userBuddyDeckPositions: UserDeckPosition[];
3143
+ buddyDeckName: string;
2941
3144
  };
2942
3145
  export declare type MarathonQuestListAssetRequest = {
2943
- marathonQuestId: string;
3146
+ marathonId: string;
2944
3147
  deckNumber: number;
3148
+ userBuddyDeckPositions: UserDeckPosition[];
3149
+ buddyDeckName: string;
2945
3150
  };
2946
3151
  export declare type MarathonQuestListAssetResponse = {
2947
3152
  characterAssets: LiveCharacterAssetInfo[];
@@ -2959,9 +3164,12 @@ export declare type MarathonListDeckRequest = {
2959
3164
  marathonId: string;
2960
3165
  marathonQuestId: string;
2961
3166
  marathonQuestDifficultyNumber: number;
3167
+ marathonBuddyDecks: MarathonBuddyDeck[];
2962
3168
  };
2963
3169
  export declare type MarathonListDeckResponse = {
2964
3170
  deckInfos: MarathonDeckInfo[];
3171
+ buddyDeckInfos: MarathonDeckInfo[];
3172
+ commonResponse: CommonResponse;
2965
3173
  };
2966
3174
  export declare type MarathonDeckSaveRequest = {
2967
3175
  marathonQuestId: string;
@@ -2974,6 +3182,20 @@ export declare type MarathonDeckSaveResponse = {
2974
3182
  deckInfo: MarathonDeckInfo;
2975
3183
  commonResponse: CommonResponse;
2976
3184
  };
3185
+ export declare type MarathonBuddyDeckRequest = {
3186
+ marathonQuestId: string;
3187
+ marathonQuestDifficultyNumber: number;
3188
+ marathonBuddyDecks: MarathonBuddyDeck[];
3189
+ };
3190
+ export declare type MarathonBuddyDeck = {
3191
+ deckNumber: number;
3192
+ deckName: string;
3193
+ userBuddyDeckPositions: UserDeckPosition[];
3194
+ };
3195
+ export declare type MarathonBuddyDeckResponse = {
3196
+ buddyDeckInfos: MarathonDeckInfo[];
3197
+ commonResponse: CommonResponse;
3198
+ };
2977
3199
  export declare type MarathonBoxGachaDrawRequest = {
2978
3200
  marathonId: string;
2979
3201
  boxGachaId: string;
@@ -2991,10 +3213,135 @@ export declare type MarathonBoxGachaResetResponse = {
2991
3213
  boxGachaInfo: MarathonBoxGachaInfo;
2992
3214
  commonResponse: CommonResponse;
2993
3215
  };
3216
+ export declare type MarathonRaidListRequest = {
3217
+ marathonId: string;
3218
+ };
3219
+ export declare type MarathonRaidListResponse = {
3220
+ joinableQuests: MarathonRaidQuestProgress[];
3221
+ progressingQuests: MarathonRaidQuestProgress[];
3222
+ finishedQuests: MarathonRaidQuestProgress[];
3223
+ updateEnableTime: string;
3224
+ commonResponse: CommonResponse;
3225
+ };
3226
+ export declare type MarathonRaidCheckProgressRequest = {
3227
+ marathonId: string;
3228
+ raidId: string;
3229
+ };
3230
+ export declare type MarathonRaidCheckProgressResponse = {
3231
+ finished: boolean;
3232
+ commonResponse: CommonResponse;
3233
+ };
3234
+ export declare type MarathonRaidListHistoryRequest = {
3235
+ marathonId: string;
3236
+ };
3237
+ export declare type MarathonRaidListHistoryResponse = {
3238
+ quests: MarathonRaidQuestProgress[];
3239
+ commonResponse: CommonResponse;
3240
+ };
3241
+ export declare type MarathonRaidGetHistoryDetailRequest = {
3242
+ marathonId: string;
3243
+ raidId: string;
3244
+ };
3245
+ export declare type MarathonRaidGetHistoryDetailResponse = {
3246
+ raidResult: MarathonRaidResult;
3247
+ commonResponse: CommonResponse;
3248
+ };
3249
+ export declare type MarathonRaidListRankingRequest = {
3250
+ marathonId: string;
3251
+ raidId: string;
3252
+ };
3253
+ export declare type MarathonRaidListRankingResponse = {
3254
+ rankedUsers: MarathonRaidRankedUser[];
3255
+ selfScore: string;
3256
+ commonResponse: CommonResponse;
3257
+ };
3258
+ export declare type MarathonRaidStartRequest = {
3259
+ marathonId: string;
3260
+ difficultyNumber: number;
3261
+ deckNumber: number;
3262
+ isSkip: boolean;
3263
+ };
3264
+ export declare type MarathonRaidStartResponse = {
3265
+ marathonId: string;
3266
+ difficultyNumber: number;
3267
+ difficultyLevel: number;
3268
+ result: LiveResult;
3269
+ reward: QuestReward;
3270
+ hostRewards: RewardResult[];
3271
+ raidEndTime: string;
3272
+ raidResult: MarathonRaidResult;
3273
+ beforeScore: string;
3274
+ rankPatterns: QuestRankPattern[];
3275
+ commonResponse: CommonResponse;
3276
+ };
3277
+ export declare type MarathonRaidJoinRequest = {
3278
+ marathonId: string;
3279
+ raidId: string;
3280
+ deckNumber: number;
3281
+ isSkip: boolean;
3282
+ difficultyNumber: number;
3283
+ };
3284
+ export declare type MarathonRaidJoinResponse = {
3285
+ marathonId: string;
3286
+ difficultyNumber: number;
3287
+ difficultyLevel: number;
3288
+ result: LiveResult;
3289
+ joinRewards: RewardResult[];
3290
+ raidEndTime: string;
3291
+ raidResult: MarathonRaidResult;
3292
+ beforeScore: string;
3293
+ rankPatterns: QuestRankPattern[];
3294
+ commonResponse: CommonResponse;
3295
+ };
3296
+ export declare type MarathonRaidFinishRequest = {
3297
+ marathonId: string;
3298
+ raidId: string;
3299
+ };
3300
+ export declare type MarathonRaidFinishResponse = {
3301
+ raidResult: MarathonRaidResult;
3302
+ commonResponse: CommonResponse;
3303
+ };
3304
+ export declare type MarathonUseRaidStaminaRecoveryItemRequest = {
3305
+ marathonId: string;
3306
+ amount: number;
3307
+ };
3308
+ export declare type MarathonUseRaidStaminaRecoveryItemResponse = {
3309
+ userMarathonInfo: UserMarathonInfo;
3310
+ commonResponse: CommonResponse;
3311
+ };
3312
+ export declare type MarathonListRaidDeckRequest = {
3313
+ marathonId: string;
3314
+ difficultyNumber: number;
3315
+ raidId: string;
3316
+ };
3317
+ export declare type MarathonListRaidDeckResponse = {
3318
+ deckInfos: MarathonDeckInfo[];
3319
+ rankedUsers: MarathonRaidSimpleRankedUser[];
3320
+ commonResponse: CommonResponse;
3321
+ };
3322
+ export declare type MarathonRaidDeckSaveRequest = {
3323
+ marathonId: string;
3324
+ number: number;
3325
+ name: string;
3326
+ userDeckPositions: UserDeckPosition[];
3327
+ difficultyNumber: number;
3328
+ };
3329
+ export declare type MarathonRaidDeckSaveResponse = {
3330
+ deckInfo: MarathonDeckInfo;
3331
+ commonResponse: CommonResponse;
3332
+ };
2994
3333
  export declare type UserMarathonInfo = {
2995
3334
  currentStamina: number;
2996
3335
  staminaUpdatedTime: string;
2997
3336
  liveBonusInfos: MarathonLiveBonusInfo[];
3337
+ currentRaidStamina: number;
3338
+ raidStaminaUpdatedTime: string;
3339
+ ladderProgressInfo: LadderProgressInfo;
3340
+ progressingRaidQuestCount: number;
3341
+ finishedRaidQuestCount: number;
3342
+ nextRaidHostEnableTime: string;
3343
+ isRaidHostEnable: boolean;
3344
+ reachableLadderPanelCount: number;
2998
3345
  };
2999
3346
  export declare type MarathonQuestDifficultyLevelInfo = {
3000
3347
  marathonQuestDifficultyNumber: number;
@@ -3004,6 +3351,7 @@ export declare type MarathonQuestDifficultyLevelInfo = {
3004
3351
  opponentInfo: QuestOpponentInfo;
3005
3352
  unlocked: boolean;
3006
3353
  highestScore: string;
3354
+ liveSkipType: LiveSkipType;
3007
3355
  };
3008
3356
  export declare type MarathonDeckInfo = {
3009
3357
  number: number;
@@ -3026,6 +3374,34 @@ export declare type MarathonPhotoInfo = {
3026
3374
  level: number;
3027
3375
  abilities: MarathonPhotoAbilityInfo[];
3028
3376
  };
3377
+ export declare type MarathonRaidResult = {
3378
+ isClear: boolean;
3379
+ score: string;
3380
+ clearScore: string;
3381
+ totalScore: string;
3382
+ elapsedMilliSeconds: number;
3383
+ rank: number;
3384
+ joinedUserCount: number;
3385
+ mvpRewards: RewardResult[];
3386
+ rankedUsers: MarathonRaidRankedUser[];
3387
+ };
3388
+ export declare type MarathonRaidSimpleRankedUser = {
3389
+ rank: number;
3390
+ userName: string;
3391
+ userId: string;
3392
+ };
3393
+ export declare type MarathonRaidQuestProgress = {
3394
+ raidId: string;
3395
+ hostUser: MarathonRaidHostUser;
3396
+ raidEndTime: string;
3397
+ joinedUserCount: number;
3398
+ clearScore: string;
3399
+ totalScore: string;
3400
+ difficultyNumber: number;
3401
+ difficultyLevel: number;
3402
+ progressType: MarathonRaidProgressType;
3403
+ liveSkipType: LiveSkipType;
3404
+ };
3029
3405
  export declare type MarketListItemResponse = {
3030
3406
  marketItems: MarketItem[];
3031
3407
  nextResetTime: string;
@@ -3057,6 +3433,12 @@ export declare type MasterGetResponse = {
3057
3433
  export declare type MasterFaqResponse = {
3058
3434
  helpCategories: HelpCategory[];
3059
3435
  };
3436
+ export declare type MasterRuleRequest = {
3437
+ ruleType: RuleType;
3438
+ };
3439
+ export declare type MasterRuleResponse = {
3440
+ text: string;
3441
+ };
3060
3442
  export declare type MessageListGroupResponse = {
3061
3443
  infos: MessageGroupInfo[];
3062
3444
  commonResponse: CommonResponse;
@@ -3221,6 +3603,7 @@ export declare type NoticeListResponse = {
3221
3603
  noticeHasNext: boolean;
3222
3604
  malfunctionNoticeHasNext: boolean;
3223
3605
  prNoticeHasNext: boolean;
3606
+ roootAssociateToken: string;
3224
3607
  commonResponse: CommonResponse;
3225
3608
  };
3226
3609
  export declare type NoticeFetchRequest = {
@@ -3230,6 +3613,7 @@ export declare type NoticeFetchRequest = {
3230
3613
  export declare type NoticeFetchResponse = {
3231
3614
  notices: NoticeInfo[];
3232
3615
  hasNext: boolean;
3616
+ roootAssociateToken: string;
3233
3617
  commonResponse: CommonResponse;
3234
3618
  };
3235
3619
  export declare type NoticeGetRequest = {
@@ -3237,6 +3621,7 @@ export declare type NoticeGetRequest = {
3237
3621
  };
3238
3622
  export declare type NoticeGetResponse = {
3239
3623
  notice: NoticeInfo;
3624
+ roootAssociateToken: string;
3240
3625
  commonResponse: CommonResponse;
3241
3626
  };
3242
3627
  export declare type PhotoSwitchLockRequest = {
@@ -3302,6 +3687,7 @@ export declare type PhotoCheckShootingRequest = {
3302
3687
  photoStageId: string;
3303
3688
  characterIds: string[];
3304
3689
  costumeIds: string[];
3690
+ hairIds: string[];
3305
3691
  };
3306
3692
  export declare type PhotoCheckShootingResponse = {
3307
3693
  commonResponse: CommonResponse;
@@ -3316,12 +3702,34 @@ export declare type PhotoCreateShootingRequest = {
3316
3702
  characterIds: string[];
3317
3703
  costumeIds: string[];
3318
3704
  manualCount: number;
3705
+ hairIds: string[];
3319
3706
  };
3320
3707
  export declare type PhotoCreateShootingResponse = {
3321
3708
  photo: UserPhoto;
3322
3709
  isGift: boolean;
3323
3710
  commonResponse: CommonResponse;
3324
3711
  };
3712
+ export declare type PhotoCreateShootingsRequest = {
3713
+ actionType: PhotoShootingActionType;
3714
+ photoActivityId: string;
3715
+ photoMusicId: string;
3716
+ photoStageId: string;
3717
+ characterIds: string[];
3718
+ costumeIds: string[];
3719
+ hairIds: string[];
3720
+ createShootingParams: PhotoCreateShootingParam[];
3721
+ manualCount: number;
3722
+ };
3723
+ export declare type PhotoCreateShootingParam = {
3724
+ photoImageId: string;
3725
+ itemId: string;
3726
+ mainCharacterId: string;
3727
+ };
3728
+ export declare type PhotoCreateShootingsResponse = {
3729
+ photos: UserPhoto[];
3730
+ isGift: boolean;
3731
+ commonResponse: CommonResponse;
3732
+ };
3325
3733
  export declare type PhotoListShootingResponse = {
3326
3734
  activities: PhotoActivity[];
3327
3735
  musics: PhotoMusic[];
@@ -3380,6 +3788,7 @@ export declare type PhotoContestCheckShootingRequest = {
3380
3788
  selectedCharacterIds: string[];
3381
3789
  selectedCostumeIds: string[];
3382
3790
  sectionId: string;
3791
+ selectedHairIds: string[];
3383
3792
  };
3384
3793
  export declare type PhotoContestCheckShootingResponse = {
3385
3794
  nextPhotoImageId: string;
@@ -3405,6 +3814,8 @@ export declare type PhotoContestSubmitShootingRequest = {
3405
3814
  shootingMotionId: string;
3406
3815
  selectedCharacterIds: string[];
3407
3816
  selectedCostumeIds: string[];
3817
+ hairIds: string[];
3818
+ selectedHairIds: string[];
3408
3819
  };
3409
3820
  export declare type PhotoContestCreateShootingRequest = {
3410
3821
  photoContestId: string;
@@ -3494,7 +3905,6 @@ export declare type PvpTopResultInfo = {
3494
3905
  pvpQuest: LiveBattleQuestInfo;
3495
3906
  userPvpSeason: UserPvpSeasonInfo;
3496
3907
  rank: string;
3497
- isSkipAvailable: boolean;
3498
3908
  pvpTicketAvailableAmount: number;
3499
3909
  };
3500
3910
  export declare type UserPvpSeasonInfo = {
@@ -3551,6 +3961,7 @@ export declare type QuestListMainResponse = {
3551
3961
  };
3552
3962
  export declare type QuestListDailyResponse = {
3553
3963
  areas: QuestAreaInfo[];
3964
+ bulkDailyInfos: QuestBulkDailyInfo[];
3554
3965
  commonResponse: CommonResponse;
3555
3966
  };
3556
3967
  export declare type QuestListContestResponse = {
@@ -3570,6 +3981,10 @@ export declare type QuestStartRequest = {
3570
3981
  userBuddyDeckPositions: UserDeckPosition[];
3571
3982
  buddyDeckName: string;
3572
3983
  };
3984
+ export declare type QuestStartBulkDailyResponse = {
3985
+ results: QuestBulkDailyResultInfo[];
3986
+ commonResponse: CommonResponse;
3987
+ };
3573
3988
  export declare type QuestListTowerRankingRequest = {
3574
3989
  areaId: string;
3575
3990
  };
@@ -3627,10 +4042,6 @@ export declare type QuestTopPvpInfo = {
3627
4042
  remainingChallengeCount: number;
3628
4043
  latestPvpSeason: PvpSeasonInfo;
3629
4044
  };
3630
- export declare type FriendApplyToBuddyInfo = {
3631
- isActive: boolean;
3632
- isAlreadyOffered: boolean;
3633
- };
3634
4045
  export declare type RaceTopRequest = {
3635
4046
  raceId: string;
3636
4047
  };
@@ -3920,6 +4331,14 @@ export declare type ShopReceiveConditionRewardResponse = {
3920
4331
  rewards: RewardResult[];
3921
4332
  commonResponse: CommonResponse;
3922
4333
  };
4334
+ export declare type ShopTryOnRequest = {
4335
+ shopItemId: string;
4336
+ costumeId: string;
4337
+ hairId: string;
4338
+ };
4339
+ export declare type ShopTryOnResponse = {
4340
+ commonResponse: CommonResponse;
4341
+ };
3923
4342
  export declare type StaffTrainRequest = {
3924
4343
  parameterType: ParameterType;
3925
4344
  };
@@ -3956,6 +4375,19 @@ export declare type StoryReadEventResponse = {
3956
4375
  rewards: RewardResult[];
3957
4376
  commonResponse: CommonResponse;
3958
4377
  };
4378
+ export declare type StoryListExtraResponse = {
4379
+ infos: ExtraStoryPartInfo[];
4380
+ commonResponse: CommonResponse;
4381
+ };
4382
+ export declare type StoryReadExtraRequest = {
4383
+ extraStoryId: string;
4384
+ episode: number;
4385
+ isLast: boolean;
4386
+ };
4387
+ export declare type StoryReadExtraResponse = {
4388
+ rewards: RewardResult[];
4389
+ commonResponse: CommonResponse;
4390
+ };
3959
4391
  export declare type SystemCheckRequest = {
3960
4392
  firebaseIDToken: string;
3961
4393
  };
@@ -3966,6 +4398,7 @@ export declare type SystemCheckResponse = {
3966
4398
  keepAliveTimeoutMilliseconds: number;
3967
4399
  enableCrashlyticsCollection: boolean;
3968
4400
  enableUnityLogErrorToLogException: boolean;
4401
+ enableApiParallelExecutionSuppression: boolean;
3969
4402
  };
3970
4403
  export declare type MaintenanceInfo = {
3971
4404
  inMaintenance: boolean;
@@ -4291,6 +4724,7 @@ export declare type TutorialActivityReceiveLessonRewardResponse = {
4291
4724
  };
4292
4725
  export declare type TutorialPhotoCreateShootingRequest = {
4293
4726
  mainCharacterId: string;
4727
+ photoImageId: string;
4294
4728
  };
4295
4729
  export declare type TutorialPhotoCreateShootingResponse = {
4296
4730
  photo: UserPhoto;
@@ -4337,6 +4771,7 @@ export declare type UserGetResponse = {
4337
4771
  photoRecipes: UserPhotoRecipe[];
4338
4772
  buddy: UserBuddy;
4339
4773
  invite: UserInvite;
4774
+ hairs: UserHair[];
4340
4775
  userPublic: UserPublic;
4341
4776
  };
4342
4777
  export declare type UserUpdateRequest = {