guildwars2-ts 1.1.2 → 1.1.5
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/README.md +1 -10
- package/dist/index.d.mts +170 -28
- package/dist/index.d.ts +170 -28
- package/dist/index.js +271 -25
- package/dist/index.mjs +271 -25
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -20,10 +20,7 @@ const api: GW2Api = new GW2Api({
|
|
|
20
20
|
// Token is not required for all of the endpoints
|
|
21
21
|
token: "YOUR-TOKEN-HERE",
|
|
22
22
|
language: ApiLanguage.English,
|
|
23
|
-
|
|
24
|
-
retry: true,
|
|
25
|
-
attempts: 3,
|
|
26
|
-
},
|
|
23
|
+
rateLimitRetry: true
|
|
27
24
|
});
|
|
28
25
|
|
|
29
26
|
(async () => {
|
|
@@ -42,12 +39,6 @@ const api: GW2Api = new GW2Api({
|
|
|
42
39
|
|
|
43
40
|
If you find any kinds of errors in the program code, or wish to add/update any of the functionality provided by this project, please feel free to open a pull request. Validation error logs are extremely helpful, so please include them in the request
|
|
44
41
|
|
|
45
|
-
## Plans
|
|
46
|
-
- Data caching for repeated requests
|
|
47
|
-
- Better logging
|
|
48
|
-
- Support for different schemas, when available
|
|
49
|
-
- Endpoint structure rework (backend only)
|
|
50
|
-
|
|
51
42
|
[npm-image]: https://img.shields.io/npm/v/guildwars2-ts
|
|
52
43
|
[npm-link]: https://www.npmjs.com/package/guildwars2-ts
|
|
53
44
|
[license]: https://img.shields.io/gitlab/license/dinckelman%2Fguildwars2-ts
|
package/dist/index.d.mts
CHANGED
|
@@ -26,17 +26,8 @@ type UrlParams = Record<string, string | number | string[] | number[]>;
|
|
|
26
26
|
interface ApiParams {
|
|
27
27
|
token?: string;
|
|
28
28
|
language?: ApiLanguage;
|
|
29
|
-
|
|
29
|
+
rateLimitRetry?: boolean;
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
* Ratelimiting parameters
|
|
33
|
-
*/
|
|
34
|
-
type RatelimitParams = {
|
|
35
|
-
retry: true;
|
|
36
|
-
attempts: number;
|
|
37
|
-
} | {
|
|
38
|
-
retry: false;
|
|
39
|
-
};
|
|
40
31
|
|
|
41
32
|
/**
|
|
42
33
|
* Base Api object. Implements anything needed for the requests to all endpoints
|
|
@@ -340,6 +331,70 @@ declare class AccountApi extends ApiBase {
|
|
|
340
331
|
id: number;
|
|
341
332
|
value: number;
|
|
342
333
|
}[]>;
|
|
334
|
+
/**
|
|
335
|
+
* Returns the current set of daily Wizard's Vault achievements for the account.
|
|
336
|
+
*/
|
|
337
|
+
getWizardsVaultDaily(): Promise<{
|
|
338
|
+
objectives: {
|
|
339
|
+
id: number;
|
|
340
|
+
title: string;
|
|
341
|
+
track: string;
|
|
342
|
+
acclaim: number;
|
|
343
|
+
progress_current: number;
|
|
344
|
+
progress_complete: number;
|
|
345
|
+
claimed: boolean;
|
|
346
|
+
}[];
|
|
347
|
+
meta_progress_current: number;
|
|
348
|
+
meta_progress_complete: number;
|
|
349
|
+
meta_reward_item_id: number;
|
|
350
|
+
meta_reward_astral: number;
|
|
351
|
+
meta_reward_claimed: boolean;
|
|
352
|
+
}>;
|
|
353
|
+
/**
|
|
354
|
+
* Returns the current set of Wizard's Vault rewards, along with details about which have already been purchased by the account, and in what quantity.
|
|
355
|
+
*/
|
|
356
|
+
getWizardsVaultListings(): Promise<{
|
|
357
|
+
id: number;
|
|
358
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
359
|
+
item_id: number;
|
|
360
|
+
item_count: number;
|
|
361
|
+
cost: number;
|
|
362
|
+
purchased?: number | undefined;
|
|
363
|
+
purchase_limit?: number | undefined;
|
|
364
|
+
}[]>;
|
|
365
|
+
/**
|
|
366
|
+
* Returns the current set of special Wizard's Vault achievements for the account.
|
|
367
|
+
*/
|
|
368
|
+
getWizardsVaultSpecial(): Promise<{
|
|
369
|
+
objectives: {
|
|
370
|
+
id: number;
|
|
371
|
+
title: string;
|
|
372
|
+
track: string;
|
|
373
|
+
acclaim: number;
|
|
374
|
+
progress_current: number;
|
|
375
|
+
progress_complete: number;
|
|
376
|
+
claimed: boolean;
|
|
377
|
+
}[];
|
|
378
|
+
}>;
|
|
379
|
+
/**
|
|
380
|
+
* Returns the current set of weekly Wizard's Vault achievements for the account.
|
|
381
|
+
*/
|
|
382
|
+
getWizardsVaultWeekly(): Promise<{
|
|
383
|
+
objectives: {
|
|
384
|
+
id: number;
|
|
385
|
+
title: string;
|
|
386
|
+
track: string;
|
|
387
|
+
acclaim: number;
|
|
388
|
+
progress_current: number;
|
|
389
|
+
progress_complete: number;
|
|
390
|
+
claimed: boolean;
|
|
391
|
+
}[];
|
|
392
|
+
meta_progress_current: number;
|
|
393
|
+
meta_progress_complete: number;
|
|
394
|
+
meta_reward_item_id: number;
|
|
395
|
+
meta_reward_astral: number;
|
|
396
|
+
meta_reward_claimed: boolean;
|
|
397
|
+
}>;
|
|
343
398
|
/**
|
|
344
399
|
* Returns information about which world bosses have been killed by the account since daily-reset.
|
|
345
400
|
*/
|
|
@@ -433,16 +488,16 @@ declare const BackstoryAnswersDTO: z.ZodArray<z.ZodObject<{
|
|
|
433
488
|
races: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
434
489
|
}, "strip", z.ZodTypeAny, {
|
|
435
490
|
id: string;
|
|
436
|
-
description: string;
|
|
437
491
|
title: string;
|
|
492
|
+
description: string;
|
|
438
493
|
journal: string;
|
|
439
494
|
question: number;
|
|
440
495
|
professions?: string[] | undefined;
|
|
441
496
|
races?: string[] | undefined;
|
|
442
497
|
}, {
|
|
443
498
|
id: string;
|
|
444
|
-
description: string;
|
|
445
499
|
title: string;
|
|
500
|
+
description: string;
|
|
446
501
|
journal: string;
|
|
447
502
|
question: number;
|
|
448
503
|
professions?: string[] | undefined;
|
|
@@ -469,17 +524,17 @@ declare const BackstoryQuestionsDTO: z.ZodArray<z.ZodObject<{
|
|
|
469
524
|
professions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
470
525
|
}, "strip", z.ZodTypeAny, {
|
|
471
526
|
id: number;
|
|
527
|
+
title: string;
|
|
472
528
|
description: string;
|
|
473
529
|
order: number;
|
|
474
|
-
title: string;
|
|
475
530
|
answers: string[];
|
|
476
531
|
races?: string[] | undefined;
|
|
477
532
|
professions?: string[] | undefined;
|
|
478
533
|
}, {
|
|
479
534
|
id: number;
|
|
535
|
+
title: string;
|
|
480
536
|
description: string;
|
|
481
537
|
order: number;
|
|
482
|
-
title: string;
|
|
483
538
|
answers: string[];
|
|
484
539
|
races?: string[] | undefined;
|
|
485
540
|
professions?: string[] | undefined;
|
|
@@ -1802,7 +1857,7 @@ declare const ColorsDTO: z.ZodArray<z.ZodObject<{
|
|
|
1802
1857
|
/** Color categories. */
|
|
1803
1858
|
categories: z.ZodUnion<[z.ZodTuple<[z.ZodEnum<["Gray", "Brown", "Red", "Orange", "Yellow", "Green", "Blue", "Purple"]>, z.ZodEnum<["Vibrant", "Leather", "Metal"]>, z.ZodEnum<["Starter", "Common", "Uncommon", "Rare", "Exclusive"]>], null>, z.ZodArray<z.ZodUndefined, "many">]>;
|
|
1804
1859
|
}, "strip", z.ZodTypeAny, {
|
|
1805
|
-
categories: (
|
|
1860
|
+
categories: (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[]) & (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[] | undefined);
|
|
1806
1861
|
id: number;
|
|
1807
1862
|
name: string;
|
|
1808
1863
|
base_rgb: number[];
|
|
@@ -1840,7 +1895,7 @@ declare const ColorsDTO: z.ZodArray<z.ZodObject<{
|
|
|
1840
1895
|
} | undefined;
|
|
1841
1896
|
item?: number | undefined;
|
|
1842
1897
|
}, {
|
|
1843
|
-
categories: (
|
|
1898
|
+
categories: (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[]) & (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[] | undefined);
|
|
1844
1899
|
id: number;
|
|
1845
1900
|
name: string;
|
|
1846
1901
|
base_rgb: number[];
|
|
@@ -5837,10 +5892,10 @@ declare const LegendaryArmoryDTO: z.ZodArray<z.ZodObject<{
|
|
|
5837
5892
|
max_count: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<7>, z.ZodLiteral<8>]>;
|
|
5838
5893
|
}, "strip", z.ZodTypeAny, {
|
|
5839
5894
|
id: number;
|
|
5840
|
-
max_count:
|
|
5895
|
+
max_count: 4 | 2 | 1 | 7 | 8;
|
|
5841
5896
|
}, {
|
|
5842
5897
|
id: number;
|
|
5843
|
-
max_count:
|
|
5898
|
+
max_count: 4 | 2 | 1 | 7 | 8;
|
|
5844
5899
|
}>, "many">;
|
|
5845
5900
|
|
|
5846
5901
|
/**
|
|
@@ -6087,16 +6142,16 @@ declare const MinisDTO: z.ZodArray<z.ZodObject<{
|
|
|
6087
6142
|
}, "strip", z.ZodTypeAny, {
|
|
6088
6143
|
id: number;
|
|
6089
6144
|
name: string;
|
|
6145
|
+
item_id: number;
|
|
6090
6146
|
order: number;
|
|
6091
6147
|
icon: string;
|
|
6092
|
-
item_id: number;
|
|
6093
6148
|
unlock?: string | undefined;
|
|
6094
6149
|
}, {
|
|
6095
6150
|
id: number;
|
|
6096
6151
|
name: string;
|
|
6152
|
+
item_id: number;
|
|
6097
6153
|
order: number;
|
|
6098
6154
|
icon: string;
|
|
6099
|
-
item_id: number;
|
|
6100
6155
|
unlock?: string | undefined;
|
|
6101
6156
|
}>, "many">;
|
|
6102
6157
|
|
|
@@ -9745,6 +9800,58 @@ declare const StoriesSeasonsDTO: z.ZodArray<z.ZodObject<{
|
|
|
9745
9800
|
order: number;
|
|
9746
9801
|
}>, "many">;
|
|
9747
9802
|
|
|
9803
|
+
/**
|
|
9804
|
+
* /v2/wizardsvault/listings definition
|
|
9805
|
+
*/
|
|
9806
|
+
declare const WizardsVaultListingsDTO: z.ZodArray<z.ZodObject<{
|
|
9807
|
+
/** The listing id. */
|
|
9808
|
+
id: z.ZodNumber;
|
|
9809
|
+
/** The id of the item */
|
|
9810
|
+
item_id: z.ZodNumber;
|
|
9811
|
+
/** The quantity of the item the user receives */
|
|
9812
|
+
item_count: z.ZodNumber;
|
|
9813
|
+
/** Appears to be the position in the wizards vault UI. */
|
|
9814
|
+
type: z.ZodEnum<["Featured", "Normal", "Legacy"]>;
|
|
9815
|
+
/** The quantity of Astral Acclaim to purchase . */
|
|
9816
|
+
cost: z.ZodNumber;
|
|
9817
|
+
}, "strip", z.ZodTypeAny, {
|
|
9818
|
+
id: number;
|
|
9819
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
9820
|
+
item_id: number;
|
|
9821
|
+
item_count: number;
|
|
9822
|
+
cost: number;
|
|
9823
|
+
}, {
|
|
9824
|
+
id: number;
|
|
9825
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
9826
|
+
item_id: number;
|
|
9827
|
+
item_count: number;
|
|
9828
|
+
cost: number;
|
|
9829
|
+
}>, "many">;
|
|
9830
|
+
|
|
9831
|
+
/**
|
|
9832
|
+
* /v2/wizardsvault/objectives definition
|
|
9833
|
+
*/
|
|
9834
|
+
declare const WizardsVaultObjectivesDTO: z.ZodArray<z.ZodObject<{
|
|
9835
|
+
/** The ID of the objective. */
|
|
9836
|
+
id: z.ZodNumber;
|
|
9837
|
+
/** The title of the objective. */
|
|
9838
|
+
title: z.ZodString;
|
|
9839
|
+
/** The reward track containing the objective. */
|
|
9840
|
+
track: z.ZodEnum<["PvP", "WvW", "PvE"]>;
|
|
9841
|
+
/** The amount of astral acclaim awarded. */
|
|
9842
|
+
acclaim: z.ZodNumber;
|
|
9843
|
+
}, "strip", z.ZodTypeAny, {
|
|
9844
|
+
id: number;
|
|
9845
|
+
title: string;
|
|
9846
|
+
track: "PvP" | "WvW" | "PvE";
|
|
9847
|
+
acclaim: number;
|
|
9848
|
+
}, {
|
|
9849
|
+
id: number;
|
|
9850
|
+
title: string;
|
|
9851
|
+
track: "PvP" | "WvW" | "PvE";
|
|
9852
|
+
acclaim: number;
|
|
9853
|
+
}>, "many">;
|
|
9854
|
+
|
|
9748
9855
|
/**
|
|
9749
9856
|
* /v2/wvw/abilities definition
|
|
9750
9857
|
*/
|
|
@@ -11021,8 +11128,8 @@ declare class GuildApi extends ApiBase {
|
|
|
11021
11128
|
} | {
|
|
11022
11129
|
type: "stash";
|
|
11023
11130
|
count: number;
|
|
11024
|
-
coins: number;
|
|
11025
11131
|
item_id: number;
|
|
11132
|
+
coins: number;
|
|
11026
11133
|
operation: "deposit" | "withdraw" | "move";
|
|
11027
11134
|
} | {
|
|
11028
11135
|
type: "motd";
|
|
@@ -12292,6 +12399,39 @@ declare class PvPApi extends ApiBase {
|
|
|
12292
12399
|
}>;
|
|
12293
12400
|
}
|
|
12294
12401
|
|
|
12402
|
+
declare class WizardsVaultApi extends ApiBase {
|
|
12403
|
+
/**
|
|
12404
|
+
* Returns information about the current Wizard's Vault season.
|
|
12405
|
+
*/
|
|
12406
|
+
get(): Promise<{
|
|
12407
|
+
listings: number[];
|
|
12408
|
+
objectives: number[];
|
|
12409
|
+
title: string;
|
|
12410
|
+
start: string;
|
|
12411
|
+
end: string;
|
|
12412
|
+
}>;
|
|
12413
|
+
/**
|
|
12414
|
+
* Returns details about listings in the Wizard's Vault.
|
|
12415
|
+
*/
|
|
12416
|
+
getListings(): Promise<z.infer<typeof numberArrayType>>;
|
|
12417
|
+
/**
|
|
12418
|
+
* Returns details about listings in the Wizard's Vault.
|
|
12419
|
+
*
|
|
12420
|
+
* @param ids - (optional) List of listing ids, or "all".
|
|
12421
|
+
*/
|
|
12422
|
+
getListings(ids: number[] | 'all'): Promise<z.infer<typeof WizardsVaultListingsDTO>>;
|
|
12423
|
+
/**
|
|
12424
|
+
* Returns all Wizard's Vault's objectives in the game.
|
|
12425
|
+
*/
|
|
12426
|
+
getObjectives(): Promise<z.infer<typeof numberArrayType>>;
|
|
12427
|
+
/**
|
|
12428
|
+
* Returns all Wizard's Vault's objectives in the game.
|
|
12429
|
+
*
|
|
12430
|
+
* @param ids - (optional) List of objective ids, or "all".
|
|
12431
|
+
*/
|
|
12432
|
+
getObjectives(ids: number[] | 'all'): Promise<z.infer<typeof WizardsVaultObjectivesDTO>>;
|
|
12433
|
+
}
|
|
12434
|
+
|
|
12295
12435
|
/**
|
|
12296
12436
|
* /v2/wvw Api
|
|
12297
12437
|
*/
|
|
@@ -12419,6 +12559,9 @@ declare class WorldVsWorldApi extends ApiBase {
|
|
|
12419
12559
|
getUpgrades(ids: number[] | 'all'): Promise<z.infer<typeof WvWUpgradesDTO>>;
|
|
12420
12560
|
}
|
|
12421
12561
|
|
|
12562
|
+
/**
|
|
12563
|
+
* Entrypoint for the API
|
|
12564
|
+
*/
|
|
12422
12565
|
declare class GW2Api extends ApiBase {
|
|
12423
12566
|
/** /v2/account Api */
|
|
12424
12567
|
readonly account: AccountApi;
|
|
@@ -12518,6 +12661,8 @@ declare class GW2Api extends ApiBase {
|
|
|
12518
12661
|
readonly tokenInfo: TokenInfoApi;
|
|
12519
12662
|
/** /v2/traits Api */
|
|
12520
12663
|
readonly traits: TraitsApi;
|
|
12664
|
+
/** /v2/wizardsvault Api */
|
|
12665
|
+
readonly wizardsVault: WizardsVaultApi;
|
|
12521
12666
|
/** /v2/worldbosses Api */
|
|
12522
12667
|
readonly worldBosses: WorldBossesApi;
|
|
12523
12668
|
/** /v2/worlds Api */
|
|
@@ -12530,13 +12675,10 @@ declare class GW2Api extends ApiBase {
|
|
|
12530
12675
|
* TSlog log level
|
|
12531
12676
|
*/
|
|
12532
12677
|
declare enum LogLevel {
|
|
12533
|
-
silly = 0,
|
|
12534
|
-
trace = 1,
|
|
12535
|
-
debug = 2,
|
|
12536
|
-
info = 3,
|
|
12537
|
-
warn = 4,
|
|
12538
12678
|
error = 5,
|
|
12539
|
-
|
|
12679
|
+
warn = 4,
|
|
12680
|
+
info = 3,
|
|
12681
|
+
debug = 2
|
|
12540
12682
|
}
|
|
12541
12683
|
/**
|
|
12542
12684
|
* Set logger level
|
|
@@ -12551,4 +12693,4 @@ declare const setLogLevel: (minLevel: LogLevel) => void;
|
|
|
12551
12693
|
*/
|
|
12552
12694
|
declare const setPathLogging: (displayFilePath: boolean) => void;
|
|
12553
12695
|
|
|
12554
|
-
export { ApiLanguage, ApiParams, GW2Api, LogLevel,
|
|
12696
|
+
export { ApiLanguage, type ApiParams, GW2Api, LogLevel, setLogLevel, setPathLogging };
|
package/dist/index.d.ts
CHANGED
|
@@ -26,17 +26,8 @@ type UrlParams = Record<string, string | number | string[] | number[]>;
|
|
|
26
26
|
interface ApiParams {
|
|
27
27
|
token?: string;
|
|
28
28
|
language?: ApiLanguage;
|
|
29
|
-
|
|
29
|
+
rateLimitRetry?: boolean;
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
* Ratelimiting parameters
|
|
33
|
-
*/
|
|
34
|
-
type RatelimitParams = {
|
|
35
|
-
retry: true;
|
|
36
|
-
attempts: number;
|
|
37
|
-
} | {
|
|
38
|
-
retry: false;
|
|
39
|
-
};
|
|
40
31
|
|
|
41
32
|
/**
|
|
42
33
|
* Base Api object. Implements anything needed for the requests to all endpoints
|
|
@@ -340,6 +331,70 @@ declare class AccountApi extends ApiBase {
|
|
|
340
331
|
id: number;
|
|
341
332
|
value: number;
|
|
342
333
|
}[]>;
|
|
334
|
+
/**
|
|
335
|
+
* Returns the current set of daily Wizard's Vault achievements for the account.
|
|
336
|
+
*/
|
|
337
|
+
getWizardsVaultDaily(): Promise<{
|
|
338
|
+
objectives: {
|
|
339
|
+
id: number;
|
|
340
|
+
title: string;
|
|
341
|
+
track: string;
|
|
342
|
+
acclaim: number;
|
|
343
|
+
progress_current: number;
|
|
344
|
+
progress_complete: number;
|
|
345
|
+
claimed: boolean;
|
|
346
|
+
}[];
|
|
347
|
+
meta_progress_current: number;
|
|
348
|
+
meta_progress_complete: number;
|
|
349
|
+
meta_reward_item_id: number;
|
|
350
|
+
meta_reward_astral: number;
|
|
351
|
+
meta_reward_claimed: boolean;
|
|
352
|
+
}>;
|
|
353
|
+
/**
|
|
354
|
+
* Returns the current set of Wizard's Vault rewards, along with details about which have already been purchased by the account, and in what quantity.
|
|
355
|
+
*/
|
|
356
|
+
getWizardsVaultListings(): Promise<{
|
|
357
|
+
id: number;
|
|
358
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
359
|
+
item_id: number;
|
|
360
|
+
item_count: number;
|
|
361
|
+
cost: number;
|
|
362
|
+
purchased?: number | undefined;
|
|
363
|
+
purchase_limit?: number | undefined;
|
|
364
|
+
}[]>;
|
|
365
|
+
/**
|
|
366
|
+
* Returns the current set of special Wizard's Vault achievements for the account.
|
|
367
|
+
*/
|
|
368
|
+
getWizardsVaultSpecial(): Promise<{
|
|
369
|
+
objectives: {
|
|
370
|
+
id: number;
|
|
371
|
+
title: string;
|
|
372
|
+
track: string;
|
|
373
|
+
acclaim: number;
|
|
374
|
+
progress_current: number;
|
|
375
|
+
progress_complete: number;
|
|
376
|
+
claimed: boolean;
|
|
377
|
+
}[];
|
|
378
|
+
}>;
|
|
379
|
+
/**
|
|
380
|
+
* Returns the current set of weekly Wizard's Vault achievements for the account.
|
|
381
|
+
*/
|
|
382
|
+
getWizardsVaultWeekly(): Promise<{
|
|
383
|
+
objectives: {
|
|
384
|
+
id: number;
|
|
385
|
+
title: string;
|
|
386
|
+
track: string;
|
|
387
|
+
acclaim: number;
|
|
388
|
+
progress_current: number;
|
|
389
|
+
progress_complete: number;
|
|
390
|
+
claimed: boolean;
|
|
391
|
+
}[];
|
|
392
|
+
meta_progress_current: number;
|
|
393
|
+
meta_progress_complete: number;
|
|
394
|
+
meta_reward_item_id: number;
|
|
395
|
+
meta_reward_astral: number;
|
|
396
|
+
meta_reward_claimed: boolean;
|
|
397
|
+
}>;
|
|
343
398
|
/**
|
|
344
399
|
* Returns information about which world bosses have been killed by the account since daily-reset.
|
|
345
400
|
*/
|
|
@@ -433,16 +488,16 @@ declare const BackstoryAnswersDTO: z.ZodArray<z.ZodObject<{
|
|
|
433
488
|
races: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
434
489
|
}, "strip", z.ZodTypeAny, {
|
|
435
490
|
id: string;
|
|
436
|
-
description: string;
|
|
437
491
|
title: string;
|
|
492
|
+
description: string;
|
|
438
493
|
journal: string;
|
|
439
494
|
question: number;
|
|
440
495
|
professions?: string[] | undefined;
|
|
441
496
|
races?: string[] | undefined;
|
|
442
497
|
}, {
|
|
443
498
|
id: string;
|
|
444
|
-
description: string;
|
|
445
499
|
title: string;
|
|
500
|
+
description: string;
|
|
446
501
|
journal: string;
|
|
447
502
|
question: number;
|
|
448
503
|
professions?: string[] | undefined;
|
|
@@ -469,17 +524,17 @@ declare const BackstoryQuestionsDTO: z.ZodArray<z.ZodObject<{
|
|
|
469
524
|
professions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
470
525
|
}, "strip", z.ZodTypeAny, {
|
|
471
526
|
id: number;
|
|
527
|
+
title: string;
|
|
472
528
|
description: string;
|
|
473
529
|
order: number;
|
|
474
|
-
title: string;
|
|
475
530
|
answers: string[];
|
|
476
531
|
races?: string[] | undefined;
|
|
477
532
|
professions?: string[] | undefined;
|
|
478
533
|
}, {
|
|
479
534
|
id: number;
|
|
535
|
+
title: string;
|
|
480
536
|
description: string;
|
|
481
537
|
order: number;
|
|
482
|
-
title: string;
|
|
483
538
|
answers: string[];
|
|
484
539
|
races?: string[] | undefined;
|
|
485
540
|
professions?: string[] | undefined;
|
|
@@ -1802,7 +1857,7 @@ declare const ColorsDTO: z.ZodArray<z.ZodObject<{
|
|
|
1802
1857
|
/** Color categories. */
|
|
1803
1858
|
categories: z.ZodUnion<[z.ZodTuple<[z.ZodEnum<["Gray", "Brown", "Red", "Orange", "Yellow", "Green", "Blue", "Purple"]>, z.ZodEnum<["Vibrant", "Leather", "Metal"]>, z.ZodEnum<["Starter", "Common", "Uncommon", "Rare", "Exclusive"]>], null>, z.ZodArray<z.ZodUndefined, "many">]>;
|
|
1804
1859
|
}, "strip", z.ZodTypeAny, {
|
|
1805
|
-
categories: (
|
|
1860
|
+
categories: (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[]) & (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[] | undefined);
|
|
1806
1861
|
id: number;
|
|
1807
1862
|
name: string;
|
|
1808
1863
|
base_rgb: number[];
|
|
@@ -1840,7 +1895,7 @@ declare const ColorsDTO: z.ZodArray<z.ZodObject<{
|
|
|
1840
1895
|
} | undefined;
|
|
1841
1896
|
item?: number | undefined;
|
|
1842
1897
|
}, {
|
|
1843
|
-
categories: (
|
|
1898
|
+
categories: (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[]) & (["Gray" | "Brown" | "Red" | "Orange" | "Yellow" | "Green" | "Blue" | "Purple", "Vibrant" | "Leather" | "Metal", "Starter" | "Common" | "Uncommon" | "Rare" | "Exclusive"] | undefined[] | undefined);
|
|
1844
1899
|
id: number;
|
|
1845
1900
|
name: string;
|
|
1846
1901
|
base_rgb: number[];
|
|
@@ -5837,10 +5892,10 @@ declare const LegendaryArmoryDTO: z.ZodArray<z.ZodObject<{
|
|
|
5837
5892
|
max_count: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<7>, z.ZodLiteral<8>]>;
|
|
5838
5893
|
}, "strip", z.ZodTypeAny, {
|
|
5839
5894
|
id: number;
|
|
5840
|
-
max_count:
|
|
5895
|
+
max_count: 4 | 2 | 1 | 7 | 8;
|
|
5841
5896
|
}, {
|
|
5842
5897
|
id: number;
|
|
5843
|
-
max_count:
|
|
5898
|
+
max_count: 4 | 2 | 1 | 7 | 8;
|
|
5844
5899
|
}>, "many">;
|
|
5845
5900
|
|
|
5846
5901
|
/**
|
|
@@ -6087,16 +6142,16 @@ declare const MinisDTO: z.ZodArray<z.ZodObject<{
|
|
|
6087
6142
|
}, "strip", z.ZodTypeAny, {
|
|
6088
6143
|
id: number;
|
|
6089
6144
|
name: string;
|
|
6145
|
+
item_id: number;
|
|
6090
6146
|
order: number;
|
|
6091
6147
|
icon: string;
|
|
6092
|
-
item_id: number;
|
|
6093
6148
|
unlock?: string | undefined;
|
|
6094
6149
|
}, {
|
|
6095
6150
|
id: number;
|
|
6096
6151
|
name: string;
|
|
6152
|
+
item_id: number;
|
|
6097
6153
|
order: number;
|
|
6098
6154
|
icon: string;
|
|
6099
|
-
item_id: number;
|
|
6100
6155
|
unlock?: string | undefined;
|
|
6101
6156
|
}>, "many">;
|
|
6102
6157
|
|
|
@@ -9745,6 +9800,58 @@ declare const StoriesSeasonsDTO: z.ZodArray<z.ZodObject<{
|
|
|
9745
9800
|
order: number;
|
|
9746
9801
|
}>, "many">;
|
|
9747
9802
|
|
|
9803
|
+
/**
|
|
9804
|
+
* /v2/wizardsvault/listings definition
|
|
9805
|
+
*/
|
|
9806
|
+
declare const WizardsVaultListingsDTO: z.ZodArray<z.ZodObject<{
|
|
9807
|
+
/** The listing id. */
|
|
9808
|
+
id: z.ZodNumber;
|
|
9809
|
+
/** The id of the item */
|
|
9810
|
+
item_id: z.ZodNumber;
|
|
9811
|
+
/** The quantity of the item the user receives */
|
|
9812
|
+
item_count: z.ZodNumber;
|
|
9813
|
+
/** Appears to be the position in the wizards vault UI. */
|
|
9814
|
+
type: z.ZodEnum<["Featured", "Normal", "Legacy"]>;
|
|
9815
|
+
/** The quantity of Astral Acclaim to purchase . */
|
|
9816
|
+
cost: z.ZodNumber;
|
|
9817
|
+
}, "strip", z.ZodTypeAny, {
|
|
9818
|
+
id: number;
|
|
9819
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
9820
|
+
item_id: number;
|
|
9821
|
+
item_count: number;
|
|
9822
|
+
cost: number;
|
|
9823
|
+
}, {
|
|
9824
|
+
id: number;
|
|
9825
|
+
type: "Featured" | "Normal" | "Legacy";
|
|
9826
|
+
item_id: number;
|
|
9827
|
+
item_count: number;
|
|
9828
|
+
cost: number;
|
|
9829
|
+
}>, "many">;
|
|
9830
|
+
|
|
9831
|
+
/**
|
|
9832
|
+
* /v2/wizardsvault/objectives definition
|
|
9833
|
+
*/
|
|
9834
|
+
declare const WizardsVaultObjectivesDTO: z.ZodArray<z.ZodObject<{
|
|
9835
|
+
/** The ID of the objective. */
|
|
9836
|
+
id: z.ZodNumber;
|
|
9837
|
+
/** The title of the objective. */
|
|
9838
|
+
title: z.ZodString;
|
|
9839
|
+
/** The reward track containing the objective. */
|
|
9840
|
+
track: z.ZodEnum<["PvP", "WvW", "PvE"]>;
|
|
9841
|
+
/** The amount of astral acclaim awarded. */
|
|
9842
|
+
acclaim: z.ZodNumber;
|
|
9843
|
+
}, "strip", z.ZodTypeAny, {
|
|
9844
|
+
id: number;
|
|
9845
|
+
title: string;
|
|
9846
|
+
track: "PvP" | "WvW" | "PvE";
|
|
9847
|
+
acclaim: number;
|
|
9848
|
+
}, {
|
|
9849
|
+
id: number;
|
|
9850
|
+
title: string;
|
|
9851
|
+
track: "PvP" | "WvW" | "PvE";
|
|
9852
|
+
acclaim: number;
|
|
9853
|
+
}>, "many">;
|
|
9854
|
+
|
|
9748
9855
|
/**
|
|
9749
9856
|
* /v2/wvw/abilities definition
|
|
9750
9857
|
*/
|
|
@@ -11021,8 +11128,8 @@ declare class GuildApi extends ApiBase {
|
|
|
11021
11128
|
} | {
|
|
11022
11129
|
type: "stash";
|
|
11023
11130
|
count: number;
|
|
11024
|
-
coins: number;
|
|
11025
11131
|
item_id: number;
|
|
11132
|
+
coins: number;
|
|
11026
11133
|
operation: "deposit" | "withdraw" | "move";
|
|
11027
11134
|
} | {
|
|
11028
11135
|
type: "motd";
|
|
@@ -12292,6 +12399,39 @@ declare class PvPApi extends ApiBase {
|
|
|
12292
12399
|
}>;
|
|
12293
12400
|
}
|
|
12294
12401
|
|
|
12402
|
+
declare class WizardsVaultApi extends ApiBase {
|
|
12403
|
+
/**
|
|
12404
|
+
* Returns information about the current Wizard's Vault season.
|
|
12405
|
+
*/
|
|
12406
|
+
get(): Promise<{
|
|
12407
|
+
listings: number[];
|
|
12408
|
+
objectives: number[];
|
|
12409
|
+
title: string;
|
|
12410
|
+
start: string;
|
|
12411
|
+
end: string;
|
|
12412
|
+
}>;
|
|
12413
|
+
/**
|
|
12414
|
+
* Returns details about listings in the Wizard's Vault.
|
|
12415
|
+
*/
|
|
12416
|
+
getListings(): Promise<z.infer<typeof numberArrayType>>;
|
|
12417
|
+
/**
|
|
12418
|
+
* Returns details about listings in the Wizard's Vault.
|
|
12419
|
+
*
|
|
12420
|
+
* @param ids - (optional) List of listing ids, or "all".
|
|
12421
|
+
*/
|
|
12422
|
+
getListings(ids: number[] | 'all'): Promise<z.infer<typeof WizardsVaultListingsDTO>>;
|
|
12423
|
+
/**
|
|
12424
|
+
* Returns all Wizard's Vault's objectives in the game.
|
|
12425
|
+
*/
|
|
12426
|
+
getObjectives(): Promise<z.infer<typeof numberArrayType>>;
|
|
12427
|
+
/**
|
|
12428
|
+
* Returns all Wizard's Vault's objectives in the game.
|
|
12429
|
+
*
|
|
12430
|
+
* @param ids - (optional) List of objective ids, or "all".
|
|
12431
|
+
*/
|
|
12432
|
+
getObjectives(ids: number[] | 'all'): Promise<z.infer<typeof WizardsVaultObjectivesDTO>>;
|
|
12433
|
+
}
|
|
12434
|
+
|
|
12295
12435
|
/**
|
|
12296
12436
|
* /v2/wvw Api
|
|
12297
12437
|
*/
|
|
@@ -12419,6 +12559,9 @@ declare class WorldVsWorldApi extends ApiBase {
|
|
|
12419
12559
|
getUpgrades(ids: number[] | 'all'): Promise<z.infer<typeof WvWUpgradesDTO>>;
|
|
12420
12560
|
}
|
|
12421
12561
|
|
|
12562
|
+
/**
|
|
12563
|
+
* Entrypoint for the API
|
|
12564
|
+
*/
|
|
12422
12565
|
declare class GW2Api extends ApiBase {
|
|
12423
12566
|
/** /v2/account Api */
|
|
12424
12567
|
readonly account: AccountApi;
|
|
@@ -12518,6 +12661,8 @@ declare class GW2Api extends ApiBase {
|
|
|
12518
12661
|
readonly tokenInfo: TokenInfoApi;
|
|
12519
12662
|
/** /v2/traits Api */
|
|
12520
12663
|
readonly traits: TraitsApi;
|
|
12664
|
+
/** /v2/wizardsvault Api */
|
|
12665
|
+
readonly wizardsVault: WizardsVaultApi;
|
|
12521
12666
|
/** /v2/worldbosses Api */
|
|
12522
12667
|
readonly worldBosses: WorldBossesApi;
|
|
12523
12668
|
/** /v2/worlds Api */
|
|
@@ -12530,13 +12675,10 @@ declare class GW2Api extends ApiBase {
|
|
|
12530
12675
|
* TSlog log level
|
|
12531
12676
|
*/
|
|
12532
12677
|
declare enum LogLevel {
|
|
12533
|
-
silly = 0,
|
|
12534
|
-
trace = 1,
|
|
12535
|
-
debug = 2,
|
|
12536
|
-
info = 3,
|
|
12537
|
-
warn = 4,
|
|
12538
12678
|
error = 5,
|
|
12539
|
-
|
|
12679
|
+
warn = 4,
|
|
12680
|
+
info = 3,
|
|
12681
|
+
debug = 2
|
|
12540
12682
|
}
|
|
12541
12683
|
/**
|
|
12542
12684
|
* Set logger level
|
|
@@ -12551,4 +12693,4 @@ declare const setLogLevel: (minLevel: LogLevel) => void;
|
|
|
12551
12693
|
*/
|
|
12552
12694
|
declare const setPathLogging: (displayFilePath: boolean) => void;
|
|
12553
12695
|
|
|
12554
|
-
export { ApiLanguage, ApiParams, GW2Api, LogLevel,
|
|
12696
|
+
export { ApiLanguage, type ApiParams, GW2Api, LogLevel, setLogLevel, setPathLogging };
|