poi-plugin-quest-info-2 0.10.1 → 0.10.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.
- package/CHANGELOG.md +6 -0
- package/build/kcQuestsData/DATA_VERSION +1 -1
- package/build/kcQuestsData/index.ts +1 -1
- package/build/kcQuestsData/quests-scn.json +62 -62
- package/build/kcanotifyGamedata/DATA_VERSION +1 -1
- package/build/kcanotifyGamedata/index.ts +1 -1
- package/build/prePostQuest.json +183 -109
- package/package.json +1 -1
- package/src/__tests__/__snapshots__/questHelper.spec.ts.snap +10 -0
- package/src/__tests__/kcanotifyData.spec.ts +1 -1
- package/src/__tests__/kcwikiData.spec.ts +1 -1
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ Object {
|
|
|
19
19
|
"1106": true,
|
|
20
20
|
"1109": true,
|
|
21
21
|
"111": true,
|
|
22
|
+
"1111": true,
|
|
22
23
|
"1113": true,
|
|
23
24
|
"1116": true,
|
|
24
25
|
"1117": true,
|
|
@@ -187,6 +188,7 @@ Object {
|
|
|
187
188
|
"327": true,
|
|
188
189
|
"328": true,
|
|
189
190
|
"330": true,
|
|
191
|
+
"331": true,
|
|
190
192
|
"337": true,
|
|
191
193
|
"339": true,
|
|
192
194
|
"342": true,
|
|
@@ -202,6 +204,7 @@ Object {
|
|
|
202
204
|
"362": true,
|
|
203
205
|
"364": true,
|
|
204
206
|
"365": true,
|
|
207
|
+
"366": true,
|
|
205
208
|
"368": true,
|
|
206
209
|
"401": true,
|
|
207
210
|
"402": true,
|
|
@@ -234,6 +237,7 @@ Object {
|
|
|
234
237
|
"439": true,
|
|
235
238
|
"440": true,
|
|
236
239
|
"442": true,
|
|
240
|
+
"443": true,
|
|
237
241
|
"444": true,
|
|
238
242
|
"445": true,
|
|
239
243
|
"610": true,
|
|
@@ -266,6 +270,7 @@ Object {
|
|
|
266
270
|
"641": true,
|
|
267
271
|
"642": true,
|
|
268
272
|
"643": true,
|
|
273
|
+
"644": true,
|
|
269
274
|
"645": true,
|
|
270
275
|
"646": true,
|
|
271
276
|
"647": true,
|
|
@@ -300,6 +305,7 @@ Object {
|
|
|
300
305
|
"688": true,
|
|
301
306
|
"689": true,
|
|
302
307
|
"690": true,
|
|
308
|
+
"695": true,
|
|
303
309
|
"696": true,
|
|
304
310
|
"698": true,
|
|
305
311
|
"704": true,
|
|
@@ -366,6 +372,7 @@ Object {
|
|
|
366
372
|
"886": true,
|
|
367
373
|
"887": true,
|
|
368
374
|
"888": true,
|
|
375
|
+
"889": true,
|
|
369
376
|
"890": true,
|
|
370
377
|
"891": true,
|
|
371
378
|
"892": true,
|
|
@@ -392,6 +399,7 @@ Object {
|
|
|
392
399
|
"928": true,
|
|
393
400
|
"929": true,
|
|
394
401
|
"930": true,
|
|
402
|
+
"931": true,
|
|
395
403
|
"933": true,
|
|
396
404
|
"934": true,
|
|
397
405
|
"935": true,
|
|
@@ -412,6 +420,7 @@ Object {
|
|
|
412
420
|
"970": true,
|
|
413
421
|
"973": true,
|
|
414
422
|
"974": true,
|
|
423
|
+
"975": true,
|
|
415
424
|
"976": true,
|
|
416
425
|
"977": true,
|
|
417
426
|
"978": true,
|
|
@@ -424,6 +433,7 @@ Object {
|
|
|
424
433
|
"994": true,
|
|
425
434
|
"995": true,
|
|
426
435
|
"996": true,
|
|
436
|
+
"998": true,
|
|
427
437
|
}
|
|
428
438
|
`;
|
|
429
439
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { version, QuestData } from '../../build/kcanotifyGamedata'
|
|
2
2
|
|
|
3
3
|
test('should Kcanotify Game data version correct', () => {
|
|
4
|
-
expect(version).toMatchInlineSnapshot(`"
|
|
4
|
+
expect(version).toMatchInlineSnapshot(`"2023082801"`)
|
|
5
5
|
})
|
|
6
6
|
|
|
7
7
|
test('should Kcanotify Game data keys correct', () => {
|
|
@@ -4,7 +4,7 @@ import newQuestData from '../../build/kcQuestsData/quests-scn-new.json'
|
|
|
4
4
|
describe('should version correct', () => {
|
|
5
5
|
test('should KcwikiQuestData Game data version correct', () => {
|
|
6
6
|
expect(version).toMatchInlineSnapshot(
|
|
7
|
-
`"
|
|
7
|
+
`"616d6de3edd416e1a620ac30e017b0c6b335e685"`
|
|
8
8
|
)
|
|
9
9
|
})
|
|
10
10
|
|