maplestory-openapi 3.2.1 → 3.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.
Files changed (158) hide show
  1. package/README.md +50 -39
  2. package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
  3. package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
  4. package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +2 -2
  5. package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
  6. package/dist/cjs/maplestory/api/kms/dto/character/characterOtherStat.js +62 -0
  7. package/dist/cjs/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +34 -0
  8. package/dist/cjs/maplestory/api/kms/kms.js +4 -0
  9. package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +66 -10
  10. package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
  11. package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
  12. package/dist/cjs/maplestory/api/tms/dto/character/character.js +22 -0
  13. package/dist/cjs/maplestory/api/tms/dto/character/characterAbility.js +108 -0
  14. package/dist/cjs/maplestory/api/tms/dto/character/characterAndroidEquipment.js +424 -0
  15. package/dist/cjs/maplestory/api/tms/dto/character/characterBasic.js +93 -0
  16. package/dist/cjs/maplestory/api/tms/dto/character/characterBeautyEquipment.js +172 -0
  17. package/dist/cjs/maplestory/api/tms/dto/character/characterCashItemEquipment.js +228 -0
  18. package/dist/cjs/maplestory/api/tms/dto/character/characterDojang.js +49 -0
  19. package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrix.js +73 -0
  20. package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +113 -0
  21. package/dist/cjs/maplestory/api/tms/dto/character/characterHyperStat.js +97 -0
  22. package/dist/cjs/maplestory/api/tms/dto/character/characterImage.js +81 -0
  23. package/dist/cjs/maplestory/api/tms/dto/character/characterItemEquipment.js +1137 -0
  24. package/dist/cjs/maplestory/api/tms/dto/character/characterLinkSkill.js +115 -0
  25. package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +332 -0
  26. package/dist/cjs/maplestory/api/tms/dto/character/characterPopularity.js +27 -0
  27. package/dist/cjs/maplestory/api/tms/dto/character/characterPropensity.js +52 -0
  28. package/dist/cjs/maplestory/api/tms/dto/character/characterSetEffect.js +97 -0
  29. package/dist/cjs/maplestory/api/tms/dto/character/characterSkill.js +77 -0
  30. package/dist/cjs/maplestory/api/tms/dto/character/characterStat.js +57 -0
  31. package/dist/cjs/maplestory/api/tms/dto/character/characterSymbolEquipment.js +119 -0
  32. package/dist/cjs/maplestory/api/tms/dto/character/characterVMatrix.js +88 -0
  33. package/dist/cjs/maplestory/api/tms/dto/guild/guild.js +22 -0
  34. package/dist/cjs/maplestory/api/tms/dto/guild/guildBasic.js +107 -0
  35. package/dist/cjs/maplestory/api/tms/dto/union/union.js +47 -0
  36. package/dist/cjs/maplestory/api/tms/dto/union/unionArtifact.js +111 -0
  37. package/dist/cjs/maplestory/api/tms/dto/union/unionRaider.js +214 -0
  38. package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +802 -0
  39. package/dist/cjs/maplestory/api/tms/tms.js +109 -0
  40. package/dist/cjs/node_modules/base64-js/index.js +1 -1
  41. package/dist/cjs/node_modules/buffer/index.js +2 -2
  42. package/dist/cjs/node_modules/dayjs/plugin/utc.js +1 -1
  43. package/dist/cjs/node_modules/ieee754/index.js +1 -1
  44. package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
  45. package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
  46. package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +2 -2
  47. package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
  48. package/dist/esm/maplestory/api/kms/dto/character/characterOtherStat.js +56 -0
  49. package/dist/esm/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +30 -0
  50. package/dist/esm/maplestory/api/kms/kms.js +1 -0
  51. package/dist/esm/maplestory/api/kms/mapleStoryApi.js +66 -10
  52. package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
  53. package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
  54. package/dist/esm/maplestory/api/tms/dto/character/character.js +18 -0
  55. package/dist/esm/maplestory/api/tms/dto/character/characterAbility.js +102 -0
  56. package/dist/esm/maplestory/api/tms/dto/character/characterAndroidEquipment.js +413 -0
  57. package/dist/esm/maplestory/api/tms/dto/character/characterBasic.js +89 -0
  58. package/dist/esm/maplestory/api/tms/dto/character/characterBeautyEquipment.js +165 -0
  59. package/dist/esm/maplestory/api/tms/dto/character/characterCashItemEquipment.js +221 -0
  60. package/dist/esm/maplestory/api/tms/dto/character/characterDojang.js +45 -0
  61. package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrix.js +67 -0
  62. package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +108 -0
  63. package/dist/esm/maplestory/api/tms/dto/character/characterHyperStat.js +92 -0
  64. package/dist/esm/maplestory/api/tms/dto/character/characterImage.js +77 -0
  65. package/dist/esm/maplestory/api/tms/dto/character/characterItemEquipment.js +1123 -0
  66. package/dist/esm/maplestory/api/tms/dto/character/characterLinkSkill.js +110 -0
  67. package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +325 -0
  68. package/dist/esm/maplestory/api/tms/dto/character/characterPopularity.js +23 -0
  69. package/dist/esm/maplestory/api/tms/dto/character/characterPropensity.js +48 -0
  70. package/dist/esm/maplestory/api/tms/dto/character/characterSetEffect.js +90 -0
  71. package/dist/esm/maplestory/api/tms/dto/character/characterSkill.js +72 -0
  72. package/dist/esm/maplestory/api/tms/dto/character/characterStat.js +52 -0
  73. package/dist/esm/maplestory/api/tms/dto/character/characterSymbolEquipment.js +114 -0
  74. package/dist/esm/maplestory/api/tms/dto/character/characterVMatrix.js +83 -0
  75. package/dist/esm/maplestory/api/tms/dto/guild/guild.js +18 -0
  76. package/dist/esm/maplestory/api/tms/dto/guild/guildBasic.js +102 -0
  77. package/dist/esm/maplestory/api/tms/dto/union/union.js +43 -0
  78. package/dist/esm/maplestory/api/tms/dto/union/unionArtifact.js +105 -0
  79. package/dist/esm/maplestory/api/tms/dto/union/unionRaider.js +205 -0
  80. package/dist/esm/maplestory/api/tms/mapleStoryApi.js +794 -0
  81. package/dist/esm/maplestory/api/tms/tms.js +27 -0
  82. package/dist/esm/node_modules/base64-js/index.js +2 -2
  83. package/dist/esm/node_modules/buffer/index.js +2 -2
  84. package/dist/esm/node_modules/dayjs/plugin/utc.js +1 -1
  85. package/dist/esm/node_modules/ieee754/index.js +2 -2
  86. package/dist/index.min.js +1 -1
  87. package/package.json +6 -1
  88. package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +2 -0
  89. package/types/maplestory/api/common/dto/character/characterSkill.d.ts +1 -1
  90. package/types/maplestory/api/common/mapleStoryApi.d.ts +0 -16
  91. package/types/maplestory/api/kms/dto/character/characterImage.d.ts +2 -2
  92. package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +8 -0
  93. package/types/maplestory/api/kms/dto/character/characterOtherStat.d.ts +43 -0
  94. package/types/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.d.ts +23 -0
  95. package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +1 -1
  96. package/types/maplestory/api/kms/index.d.ts +1 -0
  97. package/types/maplestory/api/kms/mapleStoryApi.d.ts +27 -17
  98. package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +2 -0
  99. package/types/maplestory/api/kms/response/character/characterOtherStatBody.d.ts +12 -0
  100. package/types/maplestory/api/kms/response/character/characterRingExchangeSkillEquipmentBody.d.ts +6 -0
  101. package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +8 -0
  102. package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +1 -1
  103. package/types/maplestory/api/msea/mapleStoryApi.d.ts +1 -1
  104. package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +2 -0
  105. package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +1 -1
  106. package/types/maplestory/api/tms/dto/character/character.d.ts +12 -0
  107. package/types/maplestory/api/tms/dto/character/characterAbility.d.ts +72 -0
  108. package/types/maplestory/api/tms/dto/character/characterAndroidEquipment.d.ts +299 -0
  109. package/types/maplestory/api/tms/dto/character/characterBasic.d.ts +68 -0
  110. package/types/maplestory/api/tms/dto/character/characterBeautyEquipment.d.ts +117 -0
  111. package/types/maplestory/api/tms/dto/character/characterCashItemEquipment.d.ts +158 -0
  112. package/types/maplestory/api/tms/dto/character/characterDojang.d.ts +32 -0
  113. package/types/maplestory/api/tms/dto/character/characterHexaMatrix.d.ts +48 -0
  114. package/types/maplestory/api/tms/dto/character/characterHexaMatrixStat.d.ts +78 -0
  115. package/types/maplestory/api/tms/dto/character/characterHyperStat.d.ts +70 -0
  116. package/types/maplestory/api/tms/dto/character/characterImage.d.ts +74 -0
  117. package/types/maplestory/api/tms/dto/character/characterItemEquipment.d.ts +864 -0
  118. package/types/maplestory/api/tms/dto/character/characterLinkSkill.d.ts +78 -0
  119. package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +230 -0
  120. package/types/maplestory/api/tms/dto/character/characterPopularity.d.ts +16 -0
  121. package/types/maplestory/api/tms/dto/character/characterPropensity.d.ts +36 -0
  122. package/types/maplestory/api/tms/dto/character/characterSetEffect.d.ts +66 -0
  123. package/types/maplestory/api/tms/dto/character/characterSkill.d.ts +54 -0
  124. package/types/maplestory/api/tms/dto/character/characterStat.d.ts +38 -0
  125. package/types/maplestory/api/tms/dto/character/characterSymbolEquipment.d.ts +86 -0
  126. package/types/maplestory/api/tms/dto/character/characterVMatrix.d.ts +62 -0
  127. package/types/maplestory/api/tms/dto/guild/guild.d.ts +12 -0
  128. package/types/maplestory/api/tms/dto/guild/guildBasic.d.ts +78 -0
  129. package/types/maplestory/api/tms/dto/union/union.d.ts +32 -0
  130. package/types/maplestory/api/tms/dto/union/unionArtifact.d.ts +76 -0
  131. package/types/maplestory/api/tms/dto/union/unionRaider.d.ts +147 -0
  132. package/types/maplestory/api/tms/index.d.ts +27 -0
  133. package/types/maplestory/api/tms/mapleStoryApi.d.ts +364 -0
  134. package/types/maplestory/api/tms/response/character/characterAbilityBody.d.ts +19 -0
  135. package/types/maplestory/api/tms/response/character/characterAndroidEquipmentBody.d.ts +76 -0
  136. package/types/maplestory/api/tms/response/character/characterBasicBody.d.ts +16 -0
  137. package/types/maplestory/api/tms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
  138. package/types/maplestory/api/tms/response/character/characterBody.d.ts +3 -0
  139. package/types/maplestory/api/tms/response/character/characterCashItemEquipmentBody.d.ts +39 -0
  140. package/types/maplestory/api/tms/response/character/characterDojangBody.d.ts +8 -0
  141. package/types/maplestory/api/tms/response/character/characterHexaMatrixBody.d.ts +13 -0
  142. package/types/maplestory/api/tms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
  143. package/types/maplestory/api/tms/response/character/characterHyperStatBody.d.ts +18 -0
  144. package/types/maplestory/api/tms/response/character/characterItemEquipmentBody.d.ts +195 -0
  145. package/types/maplestory/api/tms/response/character/characterLinkSkillBody.d.ts +20 -0
  146. package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +56 -0
  147. package/types/maplestory/api/tms/response/character/characterPopularityBody.d.ts +4 -0
  148. package/types/maplestory/api/tms/response/character/characterPropensityBody.d.ts +9 -0
  149. package/types/maplestory/api/tms/response/character/characterSetEffectBody.d.ts +18 -0
  150. package/types/maplestory/api/tms/response/character/characterSkillBody.d.ts +14 -0
  151. package/types/maplestory/api/tms/response/character/characterStatBody.d.ts +10 -0
  152. package/types/maplestory/api/tms/response/character/characterSymbolEquipmentBody.d.ts +22 -0
  153. package/types/maplestory/api/tms/response/character/characterVMatrixBody.d.ts +16 -0
  154. package/types/maplestory/api/tms/response/guild/guildBasicBody.d.ts +20 -0
  155. package/types/maplestory/api/tms/response/guild/guildBody.d.ts +3 -0
  156. package/types/maplestory/api/tms/response/union/unionArtifactBody.d.ts +19 -0
  157. package/types/maplestory/api/tms/response/union/unionBody.d.ts +8 -0
  158. package/types/maplestory/api/tms/response/union/unionRaiderBody.d.ts +38 -0
@@ -0,0 +1,48 @@
1
+ import * as base from '../../../common/dto/character/characterHexaMatrix';
2
+ import { CharacterHexaMatrixBody, CharacterHexaMatrixEquipmentBody, CharacterHexaMatrixEquipmentLinkedSkillBody } from '../../response/character/characterHexaMatrixBody';
3
+ /**
4
+ * 角色已裝備於 HEXA 矩陣的 HEXA 核心資訊
5
+ */
6
+ export declare class CharacterHexaMatrixDto extends base.CharacterHexaMatrixDto {
7
+ /**
8
+ * 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
9
+ */
10
+ date: Date | null;
11
+ /**
12
+ * HEXA 核心資訊
13
+ */
14
+ characterHexaCoreEquipment: CharacterHexaMatrixEquipmentDto[];
15
+ constructor(obj: CharacterHexaMatrixBody);
16
+ }
17
+ /**
18
+ * 已連接的技能
19
+ */
20
+ export declare class CharacterHexaMatrixEquipmentLinkedSkillDto extends base.CharacterHexaMatrixEquipmentLinkedSkillDto {
21
+ /**
22
+ * HEXA 技能名稱
23
+ */
24
+ hexaSkillId: string;
25
+ constructor(obj: CharacterHexaMatrixEquipmentLinkedSkillBody);
26
+ }
27
+ /**
28
+ * HEXA 核心資訊
29
+ */
30
+ export declare class CharacterHexaMatrixEquipmentDto extends base.CharacterHexaMatrixEquipmentDto {
31
+ /**
32
+ * 核心名稱
33
+ */
34
+ hexaCoreName: string;
35
+ /**
36
+ * 核心等級
37
+ */
38
+ hexaCoreLevel: number;
39
+ /**
40
+ * 核心類型
41
+ */
42
+ hexaCoreType: string;
43
+ /**
44
+ * 已連接的技能
45
+ */
46
+ linkedSkill: CharacterHexaMatrixEquipmentLinkedSkillDto[];
47
+ constructor(obj: CharacterHexaMatrixEquipmentBody);
48
+ }
@@ -0,0 +1,78 @@
1
+ import * as base from '../../../common/dto/character/characterHexaMatrixStat';
2
+ import { CharacterHexaMatrixStatBody, CharacterHexaMatrixStatCoreBody } from '../../response/character/characterHexaMatrixStatBody';
3
+ /**
4
+ * 角色設定於 HEXA 矩陣中的 HEXA 屬性資訊
5
+ */
6
+ export declare class CharacterHexaMatrixStatDto extends base.CharacterHexaMatrixStatDto {
7
+ /**
8
+ * 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
9
+ */
10
+ date: Date | null;
11
+ /**
12
+ * 角色職業
13
+ */
14
+ characterClass: string | null;
15
+ /**
16
+ * HEXA 屬性 I 核心資訊
17
+ */
18
+ characterHexaStatCore: CharacterHexaMatrixStatCoreDto[];
19
+ /**
20
+ * HEXA 屬性 II 核心資訊
21
+ */
22
+ characterHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
23
+ /**
24
+ * HEXA 屬性 III 核心資訊
25
+ */
26
+ characterHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
27
+ /**
28
+ * 預設的 HEXA 屬性 I 核心資訊
29
+ */
30
+ presetHexaStatCore: CharacterHexaMatrixStatCoreDto[];
31
+ /**
32
+ * 預設的 HEXA 屬性 II 核心資訊
33
+ */
34
+ presetHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
35
+ /**
36
+ * 預設的 HEXA 屬性 III 核心資訊
37
+ */
38
+ presetHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
39
+ constructor(obj: CharacterHexaMatrixStatBody);
40
+ }
41
+ /**
42
+ * HEXA 屬性核心資訊
43
+ */
44
+ export declare class CharacterHexaMatrixStatCoreDto extends base.CharacterHexaMatrixStatCoreDto {
45
+ /**
46
+ * 欄位索引
47
+ */
48
+ slotId: string;
49
+ /**
50
+ * 主要屬性名稱
51
+ */
52
+ mainStatName: string;
53
+ /**
54
+ * 第一副屬性名稱
55
+ */
56
+ subStatName1: string;
57
+ /**
58
+ * 第二副屬性名稱
59
+ */
60
+ subStatName2: string;
61
+ /**
62
+ * 主要屬性等級
63
+ */
64
+ mainStatLevel: number;
65
+ /**
66
+ * 第一副屬性等級
67
+ */
68
+ subStatLevel1: number;
69
+ /**
70
+ * 第二副屬性等級
71
+ */
72
+ subStatLevel2: number;
73
+ /**
74
+ * 屬性核心階級
75
+ */
76
+ statGrade: number;
77
+ constructor(obj: CharacterHexaMatrixStatCoreBody);
78
+ }
@@ -0,0 +1,70 @@
1
+ import * as base from '../../../common/dto/character/characterHyperStat';
2
+ import { CharacterHyperStatBody, CharacterHyperStatPresetBody } from '../../response/character/characterHyperStatBody';
3
+ /**
4
+ * 角色極限屬性資訊
5
+ */
6
+ export declare class CharacterHyperStatDto extends base.CharacterHyperStatDto {
7
+ /**
8
+ * 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
9
+ */
10
+ date: Date | null;
11
+ /**
12
+ * 角色職業
13
+ */
14
+ characterClass: string | null;
15
+ /**
16
+ * 目前套用的預設編號
17
+ */
18
+ usePresetNo: string | null;
19
+ /**
20
+ * 可用的極限屬性點數上限
21
+ */
22
+ useAvailableHyperStat: number | null;
23
+ /**
24
+ * 預設 1 的極限屬性資訊
25
+ */
26
+ hyperStatPreset1: CharacterHyperStatPresetDto[];
27
+ /**
28
+ * 預設 1 剩餘的極限屬性點數
29
+ */
30
+ hyperStatPreset1RemainPoint: number | null;
31
+ /**
32
+ * 預設 2 的極限屬性資訊
33
+ */
34
+ hyperStatPreset2: CharacterHyperStatPresetDto[];
35
+ /**
36
+ * 預設 2 剩餘的極限屬性點數
37
+ */
38
+ hyperStatPreset2RemainPoint: number | null;
39
+ /**
40
+ * 預設 3 的極限屬性資訊
41
+ */
42
+ hyperStatPreset3: CharacterHyperStatPresetDto[];
43
+ /**
44
+ * 預設 3 剩餘的極限屬性點數
45
+ */
46
+ hyperStatPreset3RemainPoint: number | null;
47
+ constructor(obj: CharacterHyperStatBody);
48
+ }
49
+ /**
50
+ * 預設的極限屬性資訊
51
+ */
52
+ export declare class CharacterHyperStatPresetDto extends base.CharacterHyperStatPresetDto {
53
+ /**
54
+ * 能力值類型
55
+ */
56
+ statType: string;
57
+ /**
58
+ * 投入於能力值的點數
59
+ */
60
+ statPoint: number | null;
61
+ /**
62
+ * 能力值等級
63
+ */
64
+ statLevel: number;
65
+ /**
66
+ * 能力值提升量
67
+ */
68
+ statIncrease: string | null;
69
+ constructor(obj: CharacterHyperStatPresetBody);
70
+ }
@@ -0,0 +1,74 @@
1
+ import * as base from '../../../common/dto/character/characterImage';
2
+ import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../../../common/enum/characterImage';
3
+ /**
4
+ * 角色外型圖片資訊
5
+ */
6
+ export declare class CharacterImageDto extends base.CharacterImageDto {
7
+ /**
8
+ * 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
9
+ */
10
+ date: Date | null;
11
+ /**
12
+ * 角色外型圖片原始 (URL)
13
+ */
14
+ originUrl: string;
15
+ /**
16
+ * 角色外型圖片原始 (base64)
17
+ */
18
+ originImage: string;
19
+ /**
20
+ * 角色外型圖片 (base64)
21
+ */
22
+ image: string;
23
+ /**
24
+ * 角色動作
25
+ */
26
+ action: CharacterImageAction;
27
+ /**
28
+ * 角色表情
29
+ */
30
+ emotion: CharacterImageEmotion;
31
+ /**
32
+ * 角色武器動作
33
+ */
34
+ wmotion: CharacterImageWeaponMotion;
35
+ /**
36
+ * 角色動作影格
37
+ */
38
+ actionFrame: number | null;
39
+ /**
40
+ * 角色表情影格
41
+ */
42
+ emotionFrame: number | null;
43
+ /**
44
+ * 寬度 (對應背景大小,96 (預設) 至 1000)
45
+ */
46
+ width: number;
47
+ /**
48
+ * 高度 (對應背景大小,96 (預設) 至 1000)
49
+ */
50
+ height: number;
51
+ /**
52
+ * 角色的水平座標 (座標範圍 0 < x < 寬度,0 對應至最左起點)
53
+ */
54
+ x: number | null;
55
+ /**
56
+ * 角色的垂直座標 (座標範圍 0 < y < 高度,0 對應至最上方起點)
57
+ */
58
+ y: number | null;
59
+ constructor(obj: {
60
+ date: Date | null;
61
+ originUrl: string;
62
+ originImage: string;
63
+ image: string;
64
+ action: CharacterImageAction;
65
+ emotion: CharacterImageEmotion;
66
+ wmotion: CharacterImageWeaponMotion;
67
+ actionFrame: number | null;
68
+ emotionFrame: number | null;
69
+ width: number;
70
+ height: number;
71
+ x: number | null;
72
+ y: number | null;
73
+ });
74
+ }