@valolytics/ts-valorant-dtos 11.0.1

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 (115) hide show
  1. package/dist/dtos/agents.json +1758 -0
  2. package/dist/dtos/buddies.json +12782 -0
  3. package/dist/dtos/bundles.json +3362 -0
  4. package/dist/dtos/ceremonies.json +32 -0
  5. package/dist/dtos/competitiveTiers.json +1549 -0
  6. package/dist/dtos/contentTiers.json +57 -0
  7. package/dist/dtos/contracts.json +33904 -0
  8. package/dist/dtos/currencies.json +38 -0
  9. package/dist/dtos/events.json +106 -0
  10. package/dist/dtos/gameModes.json +399 -0
  11. package/dist/dtos/gears.json +102 -0
  12. package/dist/dtos/levelBorders.json +202 -0
  13. package/dist/dtos/maps.json +3186 -0
  14. package/dist/dtos/playerCards.json +8439 -0
  15. package/dist/dtos/playerTitles.json +2158 -0
  16. package/dist/dtos/roles.json +30 -0
  17. package/dist/dtos/seasons.json +452 -0
  18. package/dist/dtos/sprays.json +17436 -0
  19. package/dist/dtos/themes.json +2543 -0
  20. package/dist/dtos/weapons.json +55152 -0
  21. package/dist/index.d.ts +30 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/index.js +64 -0
  24. package/dist/logger/index.d.ts +3 -0
  25. package/dist/logger/index.d.ts.map +1 -0
  26. package/dist/logger/index.js +8 -0
  27. package/dist/models/account.model.d.ts +9 -0
  28. package/dist/models/account.model.d.ts.map +1 -0
  29. package/dist/models/account.model.js +13 -0
  30. package/dist/models/activeShard.model.d.ts +7 -0
  31. package/dist/models/activeShard.model.d.ts.map +1 -0
  32. package/dist/models/activeShard.model.js +11 -0
  33. package/dist/models/agent.model.d.ts +59 -0
  34. package/dist/models/agent.model.d.ts.map +1 -0
  35. package/dist/models/agent.model.js +78 -0
  36. package/dist/models/buddy.model.d.ts +21 -0
  37. package/dist/models/buddy.model.d.ts.map +1 -0
  38. package/dist/models/buddy.model.js +27 -0
  39. package/dist/models/bundle.model.d.ts +15 -0
  40. package/dist/models/bundle.model.d.ts.map +1 -0
  41. package/dist/models/bundle.model.js +21 -0
  42. package/dist/models/ceremony.model.d.ts +7 -0
  43. package/dist/models/ceremony.model.d.ts.map +1 -0
  44. package/dist/models/ceremony.model.js +11 -0
  45. package/dist/models/competitiveTier.model.d.ts +21 -0
  46. package/dist/models/competitiveTier.model.d.ts.map +1 -0
  47. package/dist/models/competitiveTier.model.js +27 -0
  48. package/dist/models/contentTier.model.d.ts +13 -0
  49. package/dist/models/contentTier.model.d.ts.map +1 -0
  50. package/dist/models/contentTier.model.js +17 -0
  51. package/dist/models/contract.model.d.ts +43 -0
  52. package/dist/models/contract.model.d.ts.map +1 -0
  53. package/dist/models/contract.model.js +55 -0
  54. package/dist/models/currency.model.d.ts +10 -0
  55. package/dist/models/currency.model.d.ts.map +1 -0
  56. package/dist/models/currency.model.js +14 -0
  57. package/dist/models/event.model.d.ts +10 -0
  58. package/dist/models/event.model.d.ts.map +1 -0
  59. package/dist/models/event.model.js +14 -0
  60. package/dist/models/gameMode.model.d.ts +29 -0
  61. package/dist/models/gameMode.model.d.ts.map +1 -0
  62. package/dist/models/gameMode.model.js +37 -0
  63. package/dist/models/gear.model.d.ts +18 -0
  64. package/dist/models/gear.model.d.ts.map +1 -0
  65. package/dist/models/gear.model.js +24 -0
  66. package/dist/models/levelBorder.model.d.ts +10 -0
  67. package/dist/models/levelBorder.model.d.ts.map +1 -0
  68. package/dist/models/levelBorder.model.js +14 -0
  69. package/dist/models/location.model.d.ts +15 -0
  70. package/dist/models/location.model.d.ts.map +1 -0
  71. package/dist/models/location.model.js +28 -0
  72. package/dist/models/map.model.d.ts +31 -0
  73. package/dist/models/map.model.d.ts.map +1 -0
  74. package/dist/models/map.model.js +47 -0
  75. package/dist/models/match.model.d.ts +648 -0
  76. package/dist/models/match.model.d.ts.map +1 -0
  77. package/dist/models/match.model.js +506 -0
  78. package/dist/models/matchlist.model.d.ts +13 -0
  79. package/dist/models/matchlist.model.d.ts.map +1 -0
  80. package/dist/models/matchlist.model.js +22 -0
  81. package/dist/models/playerCard.model.d.ts +14 -0
  82. package/dist/models/playerCard.model.d.ts.map +1 -0
  83. package/dist/models/playerCard.model.js +18 -0
  84. package/dist/models/playerTitle.model.d.ts +9 -0
  85. package/dist/models/playerTitle.model.d.ts.map +1 -0
  86. package/dist/models/playerTitle.model.js +13 -0
  87. package/dist/models/role.model.d.ts +9 -0
  88. package/dist/models/role.model.d.ts.map +1 -0
  89. package/dist/models/role.model.js +13 -0
  90. package/dist/models/season.model.d.ts +11 -0
  91. package/dist/models/season.model.d.ts.map +1 -0
  92. package/dist/models/season.model.js +15 -0
  93. package/dist/models/shopData.model.d.ts +19 -0
  94. package/dist/models/shopData.model.d.ts.map +1 -0
  95. package/dist/models/shopData.model.js +25 -0
  96. package/dist/models/spray.model.d.ts +26 -0
  97. package/dist/models/spray.model.d.ts.map +1 -0
  98. package/dist/models/spray.model.js +32 -0
  99. package/dist/models/theme.model.d.ts +9 -0
  100. package/dist/models/theme.model.d.ts.map +1 -0
  101. package/dist/models/theme.model.js +13 -0
  102. package/dist/models/version.model.d.ts +12 -0
  103. package/dist/models/version.model.d.ts.map +1 -0
  104. package/dist/models/version.model.js +16 -0
  105. package/dist/models/weapon.model.d.ts +100 -0
  106. package/dist/models/weapon.model.d.ts.map +1 -0
  107. package/dist/models/weapon.model.js +126 -0
  108. package/dist/scripts/fetch-data.d.ts +2 -0
  109. package/dist/scripts/fetch-data.d.ts.map +1 -0
  110. package/dist/scripts/fetch-data.js +75 -0
  111. package/dist/services/dtos.service.d.ts +184 -0
  112. package/dist/services/dtos.service.d.ts.map +1 -0
  113. package/dist/services/dtos.service.js +274 -0
  114. package/dist/tsconfig.tsbuildinfo +1 -0
  115. package/package.json +32 -0
@@ -0,0 +1,30 @@
1
+ {
2
+ "1b47567f-8f7b-444b-aae3-b0c634622d10": {
3
+ "uuid": "1b47567f-8f7b-444b-aae3-b0c634622d10",
4
+ "displayName": "Initiator",
5
+ "description": "Initiators challenge angles by setting up their team to enter contested ground and push defenders away.",
6
+ "displayIcon": "https://media.valorant-api.com/agents/roles/1b47567f-8f7b-444b-aae3-b0c634622d10/displayicon.png",
7
+ "assetPath": "ShooterGame/Content/Characters/_Core/Roles/Breaker_PrimaryDataAsset"
8
+ },
9
+ "5fc02f99-4091-4486-a531-98459a3e95e9": {
10
+ "uuid": "5fc02f99-4091-4486-a531-98459a3e95e9",
11
+ "displayName": "Sentinel",
12
+ "description": "Sentinels are defensive experts who can lock down areas and watch flanks, both on attacker and defender rounds.",
13
+ "displayIcon": "https://media.valorant-api.com/agents/roles/5fc02f99-4091-4486-a531-98459a3e95e9/displayicon.png",
14
+ "assetPath": "ShooterGame/Content/Characters/_Core/Roles/Sentinel_PrimaryDataAsset"
15
+ },
16
+ "dbe8757e-9e92-4ed4-b39f-9dfc589691d4": {
17
+ "uuid": "dbe8757e-9e92-4ed4-b39f-9dfc589691d4",
18
+ "displayName": "Duelist",
19
+ "description": "Duelists are self-sufficient fraggers who their team expects, through abilities and skills, to get high frags and seek out engagements first.",
20
+ "displayIcon": "https://media.valorant-api.com/agents/roles/dbe8757e-9e92-4ed4-b39f-9dfc589691d4/displayicon.png",
21
+ "assetPath": "ShooterGame/Content/Characters/_Core/Roles/Assault_PrimaryDataAsset"
22
+ },
23
+ "4ee40330-ecdd-4f2f-98a8-eb1243428373": {
24
+ "uuid": "4ee40330-ecdd-4f2f-98a8-eb1243428373",
25
+ "displayName": "Controller",
26
+ "description": "Controllers are experts in slicing up dangerous territory to set their team up for success.",
27
+ "displayIcon": "https://media.valorant-api.com/agents/roles/4ee40330-ecdd-4f2f-98a8-eb1243428373/displayicon.png",
28
+ "assetPath": "ShooterGame/Content/Characters/_Core/Roles/Strategist_PrimaryDataAsset"
29
+ }
30
+ }
@@ -0,0 +1,452 @@
1
+ {
2
+ "0df5adb9-4dcb-6899-1306-3e9860661dd3": {
3
+ "uuid": "0df5adb9-4dcb-6899-1306-3e9860661dd3",
4
+ "displayName": "Closed Beta",
5
+ "title": null,
6
+ "type": null,
7
+ "startTime": "2020-04-06T16:00:00Z",
8
+ "endTime": "2020-05-29T06:59:00Z",
9
+ "parentUuid": null,
10
+ "assetPath": "ShooterGame/Content/Seasons/Season_CB_DataAsset"
11
+ },
12
+ "3f61c772-4560-cd3f-5d3f-a7ab5abda6b3": {
13
+ "uuid": "3f61c772-4560-cd3f-5d3f-a7ab5abda6b3",
14
+ "displayName": "ACT I",
15
+ "title": null,
16
+ "type": "EAresSeasonType::Act",
17
+ "startTime": "2020-06-01T07:00:00Z",
18
+ "endTime": "2020-08-04T00:00:00Z",
19
+ "parentUuid": "fcf2c8f4-4324-e50b-2e23-718e4a3ab046",
20
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode1_Act1_DataAsset"
21
+ },
22
+ "0530b9c4-4980-f2ee-df5d-09864cd00542": {
23
+ "uuid": "0530b9c4-4980-f2ee-df5d-09864cd00542",
24
+ "displayName": "ACT II",
25
+ "title": null,
26
+ "type": "EAresSeasonType::Act",
27
+ "startTime": "2020-08-04T00:00:00Z",
28
+ "endTime": "2020-10-13T00:00:00Z",
29
+ "parentUuid": "fcf2c8f4-4324-e50b-2e23-718e4a3ab046",
30
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode1_Act2_DataAsset"
31
+ },
32
+ "46ea6166-4573-1128-9cea-60a15640059b": {
33
+ "uuid": "46ea6166-4573-1128-9cea-60a15640059b",
34
+ "displayName": "ACT III",
35
+ "title": null,
36
+ "type": "EAresSeasonType::Act",
37
+ "startTime": "2020-10-13T00:00:00Z",
38
+ "endTime": "2021-01-12T00:00:00Z",
39
+ "parentUuid": "fcf2c8f4-4324-e50b-2e23-718e4a3ab046",
40
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode1_Act3_DataAsset"
41
+ },
42
+ "fcf2c8f4-4324-e50b-2e23-718e4a3ab046": {
43
+ "uuid": "fcf2c8f4-4324-e50b-2e23-718e4a3ab046",
44
+ "displayName": "EPISODE 1",
45
+ "title": null,
46
+ "type": null,
47
+ "startTime": "2020-06-01T07:00:00Z",
48
+ "endTime": "2021-01-12T00:00:00Z",
49
+ "parentUuid": null,
50
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode1_DataAsset"
51
+ },
52
+ "97b6e739-44cc-ffa7-49ad-398ba502ceb0": {
53
+ "uuid": "97b6e739-44cc-ffa7-49ad-398ba502ceb0",
54
+ "displayName": "ACT I",
55
+ "title": null,
56
+ "type": "EAresSeasonType::Act",
57
+ "startTime": "2021-01-12T00:00:00Z",
58
+ "endTime": "2021-03-02T00:00:00Z",
59
+ "parentUuid": "71c81c67-4fae-ceb1-844c-aab2bb8710fa",
60
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode2_Act1_DataAsset"
61
+ },
62
+ "ab57ef51-4e59-da91-cc8d-51a5a2b9b8ff": {
63
+ "uuid": "ab57ef51-4e59-da91-cc8d-51a5a2b9b8ff",
64
+ "displayName": "ACT II",
65
+ "title": null,
66
+ "type": "EAresSeasonType::Act",
67
+ "startTime": "2021-03-02T00:00:00Z",
68
+ "endTime": "2021-04-27T00:00:00Z",
69
+ "parentUuid": "71c81c67-4fae-ceb1-844c-aab2bb8710fa",
70
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode2_Act2_DataAsset"
71
+ },
72
+ "52e9749a-429b-7060-99fe-4595426a0cf7": {
73
+ "uuid": "52e9749a-429b-7060-99fe-4595426a0cf7",
74
+ "displayName": "ACT III",
75
+ "title": null,
76
+ "type": "EAresSeasonType::Act",
77
+ "startTime": "2021-04-27T00:00:00Z",
78
+ "endTime": "2021-06-22T00:00:00Z",
79
+ "parentUuid": "71c81c67-4fae-ceb1-844c-aab2bb8710fa",
80
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode2_Act3_DataAsset"
81
+ },
82
+ "71c81c67-4fae-ceb1-844c-aab2bb8710fa": {
83
+ "uuid": "71c81c67-4fae-ceb1-844c-aab2bb8710fa",
84
+ "displayName": "EPISODE 2",
85
+ "title": null,
86
+ "type": null,
87
+ "startTime": "2021-01-12T00:00:00Z",
88
+ "endTime": "2021-06-22T00:00:00Z",
89
+ "parentUuid": null,
90
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode2_DataAsset"
91
+ },
92
+ "2a27e5d2-4d30-c9e2-b15a-93b8909a442c": {
93
+ "uuid": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
94
+ "displayName": "ACT I",
95
+ "title": null,
96
+ "type": "EAresSeasonType::Act",
97
+ "startTime": "2021-06-22T00:00:00Z",
98
+ "endTime": "2021-09-08T00:00:00Z",
99
+ "parentUuid": "97b39124-46ce-8b55-8fd1-7cbf7ffe173f",
100
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode3_Act1_DataAsset"
101
+ },
102
+ "4cb622e1-4244-6da3-7276-8daaf1c01be2": {
103
+ "uuid": "4cb622e1-4244-6da3-7276-8daaf1c01be2",
104
+ "displayName": "ACT II",
105
+ "title": null,
106
+ "type": "EAresSeasonType::Act",
107
+ "startTime": "2021-09-08T00:00:00Z",
108
+ "endTime": "2021-11-02T00:00:00Z",
109
+ "parentUuid": "97b39124-46ce-8b55-8fd1-7cbf7ffe173f",
110
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode3_Act2_DataAsset"
111
+ },
112
+ "a16955a5-4ad0-f761-5e9e-389df1c892fb": {
113
+ "uuid": "a16955a5-4ad0-f761-5e9e-389df1c892fb",
114
+ "displayName": "ACT III",
115
+ "title": null,
116
+ "type": "EAresSeasonType::Act",
117
+ "startTime": "2021-11-02T00:00:00Z",
118
+ "endTime": "2022-01-11T00:00:00Z",
119
+ "parentUuid": "97b39124-46ce-8b55-8fd1-7cbf7ffe173f",
120
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode3_Act3_DataAsset"
121
+ },
122
+ "97b39124-46ce-8b55-8fd1-7cbf7ffe173f": {
123
+ "uuid": "97b39124-46ce-8b55-8fd1-7cbf7ffe173f",
124
+ "displayName": "EPISODE 3",
125
+ "title": null,
126
+ "type": null,
127
+ "startTime": "2021-06-22T00:00:00Z",
128
+ "endTime": "2022-01-11T00:00:00Z",
129
+ "parentUuid": null,
130
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode3_DataAsset"
131
+ },
132
+ "573f53ac-41a5-3a7d-d9ce-d6a6298e5704": {
133
+ "uuid": "573f53ac-41a5-3a7d-d9ce-d6a6298e5704",
134
+ "displayName": "ACT I",
135
+ "title": null,
136
+ "type": "EAresSeasonType::Act",
137
+ "startTime": "2022-01-11T00:00:00Z",
138
+ "endTime": "2022-03-01T00:00:00Z",
139
+ "parentUuid": "808202d6-4f2b-a8ff-1feb-b3a0590ad79f",
140
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode4_Act1_DataAsset"
141
+ },
142
+ "d929bc38-4ab6-7da4-94f0-ee84f8ac141e": {
143
+ "uuid": "d929bc38-4ab6-7da4-94f0-ee84f8ac141e",
144
+ "displayName": "ACT II",
145
+ "title": null,
146
+ "type": "EAresSeasonType::Act",
147
+ "startTime": "2022-03-01T00:00:00Z",
148
+ "endTime": "2022-04-26T00:00:00Z",
149
+ "parentUuid": "808202d6-4f2b-a8ff-1feb-b3a0590ad79f",
150
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode4_Act2_DataAsset"
151
+ },
152
+ "3e47230a-463c-a301-eb7d-67bb60357d4f": {
153
+ "uuid": "3e47230a-463c-a301-eb7d-67bb60357d4f",
154
+ "displayName": "ACT III",
155
+ "title": null,
156
+ "type": "EAresSeasonType::Act",
157
+ "startTime": "2022-04-26T00:00:00Z",
158
+ "endTime": "2022-06-21T00:00:00Z",
159
+ "parentUuid": "808202d6-4f2b-a8ff-1feb-b3a0590ad79f",
160
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode4_Act3_DataAsset"
161
+ },
162
+ "808202d6-4f2b-a8ff-1feb-b3a0590ad79f": {
163
+ "uuid": "808202d6-4f2b-a8ff-1feb-b3a0590ad79f",
164
+ "displayName": "EPISODE 4",
165
+ "title": null,
166
+ "type": null,
167
+ "startTime": "2022-01-11T00:00:00Z",
168
+ "endTime": "2022-06-21T00:00:00Z",
169
+ "parentUuid": null,
170
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode4_DataAsset"
171
+ },
172
+ "67e373c7-48f7-b422-641b-079ace30b427": {
173
+ "uuid": "67e373c7-48f7-b422-641b-079ace30b427",
174
+ "displayName": "ACT I",
175
+ "title": null,
176
+ "type": "EAresSeasonType::Act",
177
+ "startTime": "2022-06-21T00:00:00Z",
178
+ "endTime": "2022-08-23T00:00:00Z",
179
+ "parentUuid": "79f9d00f-433a-85d6-dfc3-60aef115e699",
180
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode5_Act1_DataAsset"
181
+ },
182
+ "7a85de9a-4032-61a9-61d8-f4aa2b4a84b6": {
183
+ "uuid": "7a85de9a-4032-61a9-61d8-f4aa2b4a84b6",
184
+ "displayName": "ACT II",
185
+ "title": null,
186
+ "type": "EAresSeasonType::Act",
187
+ "startTime": "2022-08-23T00:00:00Z",
188
+ "endTime": "2022-10-18T00:00:00Z",
189
+ "parentUuid": "79f9d00f-433a-85d6-dfc3-60aef115e699",
190
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode5_Act2_DataAsset"
191
+ },
192
+ "aca29595-40e4-01f5-3f35-b1b3d304c96e": {
193
+ "uuid": "aca29595-40e4-01f5-3f35-b1b3d304c96e",
194
+ "displayName": "ACT III",
195
+ "title": null,
196
+ "type": "EAresSeasonType::Act",
197
+ "startTime": "2022-10-18T00:00:00Z",
198
+ "endTime": "2023-01-10T00:00:00Z",
199
+ "parentUuid": "79f9d00f-433a-85d6-dfc3-60aef115e699",
200
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode5_Act3_DataAsset"
201
+ },
202
+ "79f9d00f-433a-85d6-dfc3-60aef115e699": {
203
+ "uuid": "79f9d00f-433a-85d6-dfc3-60aef115e699",
204
+ "displayName": "EPISODE 5",
205
+ "title": null,
206
+ "type": null,
207
+ "startTime": "2022-06-21T00:00:00Z",
208
+ "endTime": "2023-01-10T00:00:00Z",
209
+ "parentUuid": null,
210
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode5_DataAsset"
211
+ },
212
+ "9c91a445-4f78-1baa-a3ea-8f8aadf4914d": {
213
+ "uuid": "9c91a445-4f78-1baa-a3ea-8f8aadf4914d",
214
+ "displayName": "ACT I",
215
+ "title": null,
216
+ "type": "EAresSeasonType::Act",
217
+ "startTime": "2023-01-10T00:00:00Z",
218
+ "endTime": "2023-03-07T00:00:00Z",
219
+ "parentUuid": "3ec8084a-4e45-4d22-d801-f8a63e5a208b",
220
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode6_Act1_DataAsset"
221
+ },
222
+ "34093c29-4306-43de-452f-3f944bde22be": {
223
+ "uuid": "34093c29-4306-43de-452f-3f944bde22be",
224
+ "displayName": "ACT II",
225
+ "title": null,
226
+ "type": "EAresSeasonType::Act",
227
+ "startTime": "2023-03-07T00:00:00Z",
228
+ "endTime": "2023-04-25T00:00:00Z",
229
+ "parentUuid": "3ec8084a-4e45-4d22-d801-f8a63e5a208b",
230
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode6_Act2_DataAsset"
231
+ },
232
+ "2de5423b-4aad-02ad-8d9b-c0a931958861": {
233
+ "uuid": "2de5423b-4aad-02ad-8d9b-c0a931958861",
234
+ "displayName": "ACT III",
235
+ "title": null,
236
+ "type": "EAresSeasonType::Act",
237
+ "startTime": "2023-04-25T00:00:00Z",
238
+ "endTime": "2023-06-27T00:00:00Z",
239
+ "parentUuid": "3ec8084a-4e45-4d22-d801-f8a63e5a208b",
240
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode6_Act3_DataAsset"
241
+ },
242
+ "3ec8084a-4e45-4d22-d801-f8a63e5a208b": {
243
+ "uuid": "3ec8084a-4e45-4d22-d801-f8a63e5a208b",
244
+ "displayName": "EPISODE 6",
245
+ "title": null,
246
+ "type": null,
247
+ "startTime": "2023-01-10T00:00:00Z",
248
+ "endTime": "2023-06-27T00:00:00Z",
249
+ "parentUuid": null,
250
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode6_DataAsset"
251
+ },
252
+ "0981a882-4e7d-371a-70c4-c3b4f46c504a": {
253
+ "uuid": "0981a882-4e7d-371a-70c4-c3b4f46c504a",
254
+ "displayName": "ACT I",
255
+ "title": null,
256
+ "type": "EAresSeasonType::Act",
257
+ "startTime": "2023-06-27T00:00:00Z",
258
+ "endTime": "2023-08-29T00:00:00Z",
259
+ "parentUuid": "1a2fc1de-4f58-4a89-49d0-f28b720ff76f",
260
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode7_Act1_DataAsset"
261
+ },
262
+ "03dfd004-45d4-ebfd-ab0a-948ce780dac4": {
263
+ "uuid": "03dfd004-45d4-ebfd-ab0a-948ce780dac4",
264
+ "displayName": "ACT II",
265
+ "title": null,
266
+ "type": "EAresSeasonType::Act",
267
+ "startTime": "2023-08-29T00:00:00Z",
268
+ "endTime": "2023-10-31T00:00:00Z",
269
+ "parentUuid": "1a2fc1de-4f58-4a89-49d0-f28b720ff76f",
270
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode7_Act2_DataAsset"
271
+ },
272
+ "4401f9fd-4170-2e4c-4bc3-f3b4d7d150d1": {
273
+ "uuid": "4401f9fd-4170-2e4c-4bc3-f3b4d7d150d1",
274
+ "displayName": "ACT III",
275
+ "title": null,
276
+ "type": "EAresSeasonType::Act",
277
+ "startTime": "2023-10-31T00:00:00Z",
278
+ "endTime": "2024-01-09T00:00:00Z",
279
+ "parentUuid": "1a2fc1de-4f58-4a89-49d0-f28b720ff76f",
280
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode7_Act3_DataAsset"
281
+ },
282
+ "1a2fc1de-4f58-4a89-49d0-f28b720ff76f": {
283
+ "uuid": "1a2fc1de-4f58-4a89-49d0-f28b720ff76f",
284
+ "displayName": "EPISODE 7",
285
+ "title": null,
286
+ "type": null,
287
+ "startTime": "2023-06-27T00:00:00Z",
288
+ "endTime": "2024-01-09T00:00:00Z",
289
+ "parentUuid": null,
290
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode7_DataAsset"
291
+ },
292
+ "ec876e6c-43e8-fa63-ffc1-2e8d4db25525": {
293
+ "uuid": "ec876e6c-43e8-fa63-ffc1-2e8d4db25525",
294
+ "displayName": "ACT I",
295
+ "title": null,
296
+ "type": "EAresSeasonType::Act",
297
+ "startTime": "2024-01-09T00:00:00Z",
298
+ "endTime": "2024-03-05T00:00:00Z",
299
+ "parentUuid": "843cc465-4f0a-7466-ccda-19a427f8e478",
300
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode8_Act1_DataAsset"
301
+ },
302
+ "22d10d66-4d2a-a340-6c54-408c7bd53807": {
303
+ "uuid": "22d10d66-4d2a-a340-6c54-408c7bd53807",
304
+ "displayName": "ACT II",
305
+ "title": null,
306
+ "type": "EAresSeasonType::Act",
307
+ "startTime": "2024-03-05T00:00:00Z",
308
+ "endTime": "2024-04-30T00:00:00Z",
309
+ "parentUuid": "843cc465-4f0a-7466-ccda-19a427f8e478",
310
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode8_Act2_DataAsset"
311
+ },
312
+ "4539cac3-47ae-90e5-3d01-b3812ca3274e": {
313
+ "uuid": "4539cac3-47ae-90e5-3d01-b3812ca3274e",
314
+ "displayName": "ACT III",
315
+ "title": "EPISODE 8 // ACT III",
316
+ "type": "EAresSeasonType::Act",
317
+ "startTime": "2024-04-30T00:00:00Z",
318
+ "endTime": "2024-06-26T00:00:00Z",
319
+ "parentUuid": "843cc465-4f0a-7466-ccda-19a427f8e478",
320
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode8_Act3_DataAsset"
321
+ },
322
+ "843cc465-4f0a-7466-ccda-19a427f8e478": {
323
+ "uuid": "843cc465-4f0a-7466-ccda-19a427f8e478",
324
+ "displayName": "EPISODE 8",
325
+ "title": "DEFIANCE",
326
+ "type": null,
327
+ "startTime": "2024-01-09T00:00:00Z",
328
+ "endTime": "2024-06-26T00:00:00Z",
329
+ "parentUuid": null,
330
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode8_DataAsset"
331
+ },
332
+ "52ca6698-41c1-e7de-4008-8994d2221209": {
333
+ "uuid": "52ca6698-41c1-e7de-4008-8994d2221209",
334
+ "displayName": "ACT I",
335
+ "title": "EPISODE 9 // ACT I",
336
+ "type": "EAresSeasonType::Act",
337
+ "startTime": "2024-06-26T00:00:00Z",
338
+ "endTime": "2024-08-28T00:00:00Z",
339
+ "parentUuid": "d1ad9e7a-4e3f-e8c6-eb1b-148162a5acf7",
340
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode9_Act1_DataAsset"
341
+ },
342
+ "292f58db-4c17-89a7-b1c0-ba988f0e9d98": {
343
+ "uuid": "292f58db-4c17-89a7-b1c0-ba988f0e9d98",
344
+ "displayName": "ACT II",
345
+ "title": "EPISODE 9 // ACT II",
346
+ "type": "EAresSeasonType::Act",
347
+ "startTime": "2024-08-28T00:00:00Z",
348
+ "endTime": "2024-10-23T00:00:00Z",
349
+ "parentUuid": "d1ad9e7a-4e3f-e8c6-eb1b-148162a5acf7",
350
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode9_Act2_DataAsset"
351
+ },
352
+ "dcde7346-4085-de4f-c463-2489ed47983b": {
353
+ "uuid": "dcde7346-4085-de4f-c463-2489ed47983b",
354
+ "displayName": "ACT III",
355
+ "title": "EPISODE 9 // ACT III",
356
+ "type": "EAresSeasonType::Act",
357
+ "startTime": "2024-10-23T00:00:00Z",
358
+ "endTime": "2025-01-08T00:00:00Z",
359
+ "parentUuid": "d1ad9e7a-4e3f-e8c6-eb1b-148162a5acf7",
360
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode9_Act3_DataAsset"
361
+ },
362
+ "d1ad9e7a-4e3f-e8c6-eb1b-148162a5acf7": {
363
+ "uuid": "d1ad9e7a-4e3f-e8c6-eb1b-148162a5acf7",
364
+ "displayName": "EPISODE 9",
365
+ "title": "COLLISION",
366
+ "type": null,
367
+ "startTime": "2024-06-26T00:00:00Z",
368
+ "endTime": "2025-01-08T00:00:00Z",
369
+ "parentUuid": null,
370
+ "assetPath": "ShooterGame/Content/Seasons/Season_Episode9_DataAsset"
371
+ },
372
+ "476b0893-4c2e-abd6-c5fe-708facff0772": {
373
+ "uuid": "476b0893-4c2e-abd6-c5fe-708facff0772",
374
+ "displayName": "ACT I",
375
+ "title": "V25 // ACT I",
376
+ "type": "EAresSeasonType::Act",
377
+ "startTime": "2025-01-08T00:00:00Z",
378
+ "endTime": "2025-03-05T00:00:00Z",
379
+ "parentUuid": "439dd42d-4a59-9e41-b50b-1ebb6810f22c",
380
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-1_Act1_DataAsset"
381
+ },
382
+ "16118998-4705-5813-86dd-0292a2439d90": {
383
+ "uuid": "16118998-4705-5813-86dd-0292a2439d90",
384
+ "displayName": "ACT II",
385
+ "title": "V25 // ACT II",
386
+ "type": "EAresSeasonType::Act",
387
+ "startTime": "2025-03-05T00:00:00Z",
388
+ "endTime": "2025-04-30T00:00:00Z",
389
+ "parentUuid": "439dd42d-4a59-9e41-b50b-1ebb6810f22c",
390
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-1_Act2_DataAsset"
391
+ },
392
+ "aef237a0-494d-3a14-a1c8-ec8de84e309c": {
393
+ "uuid": "aef237a0-494d-3a14-a1c8-ec8de84e309c",
394
+ "displayName": "ACT III",
395
+ "title": "V25 // ACT III",
396
+ "type": "EAresSeasonType::Act",
397
+ "startTime": "2025-04-30T00:00:00Z",
398
+ "endTime": "2025-06-25T00:00:00Z",
399
+ "parentUuid": "439dd42d-4a59-9e41-b50b-1ebb6810f22c",
400
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-1_Act3_DataAsset"
401
+ },
402
+ "439dd42d-4a59-9e41-b50b-1ebb6810f22c": {
403
+ "uuid": "439dd42d-4a59-9e41-b50b-1ebb6810f22c",
404
+ "displayName": "V25",
405
+ "title": null,
406
+ "type": null,
407
+ "startTime": "2025-01-08T00:00:00Z",
408
+ "endTime": "2025-06-25T00:00:00Z",
409
+ "parentUuid": null,
410
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-1_DataAsset"
411
+ },
412
+ "ac12e9b3-47e6-9599-8fa1-0bb473e5efc7": {
413
+ "uuid": "ac12e9b3-47e6-9599-8fa1-0bb473e5efc7",
414
+ "displayName": "ACT IV",
415
+ "title": "V25 // ACT IV",
416
+ "type": "EAresSeasonType::Act",
417
+ "startTime": "2025-06-25T00:00:00Z",
418
+ "endTime": "2025-08-20T00:00:00Z",
419
+ "parentUuid": "c470d964-4bf4-1261-87aa-c484252f2d66",
420
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-2_Act4_DataAsset"
421
+ },
422
+ "5adc33fa-4f30-2899-f131-6fba64c5dd3a": {
423
+ "uuid": "5adc33fa-4f30-2899-f131-6fba64c5dd3a",
424
+ "displayName": "ACT V",
425
+ "title": "V25 // ACT V",
426
+ "type": "EAresSeasonType::Act",
427
+ "startTime": "2025-08-20T00:00:00Z",
428
+ "endTime": "2025-10-15T00:00:00Z",
429
+ "parentUuid": "c470d964-4bf4-1261-87aa-c484252f2d66",
430
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-2_Act5_DataAsset"
431
+ },
432
+ "4c4b8cff-43eb-13d3-8f14-96b783c90cd2": {
433
+ "uuid": "4c4b8cff-43eb-13d3-8f14-96b783c90cd2",
434
+ "displayName": "ACT VI",
435
+ "title": "V25 // ACT VI",
436
+ "type": "EAresSeasonType::Act",
437
+ "startTime": "2025-10-15T00:00:00Z",
438
+ "endTime": "2026-01-07T00:00:00Z",
439
+ "parentUuid": "c470d964-4bf4-1261-87aa-c484252f2d66",
440
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-2_Act6_DataAsset"
441
+ },
442
+ "c470d964-4bf4-1261-87aa-c484252f2d66": {
443
+ "uuid": "c470d964-4bf4-1261-87aa-c484252f2d66",
444
+ "displayName": "V25",
445
+ "title": null,
446
+ "type": null,
447
+ "startTime": "2025-06-25T00:00:00Z",
448
+ "endTime": "2026-01-07T00:00:00Z",
449
+ "parentUuid": null,
450
+ "assetPath": "ShooterGame/Content/Seasons/Season_EpisodeV25-2_DataAsset"
451
+ }
452
+ }