guildwars2-ts 1.0.1 → 1.0.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/dist/index.d.mts +2 -8
- package/dist/index.d.ts +2 -8
- package/dist/index.js +667 -972
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +667 -972
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -315,11 +315,11 @@ declare class AccountBuildStorageDTO {
|
|
|
315
315
|
/**
|
|
316
316
|
* Selected legends (revenant only)
|
|
317
317
|
*/
|
|
318
|
-
readonly legends?:
|
|
318
|
+
readonly legends?: Array<string | null>;
|
|
319
319
|
/**
|
|
320
320
|
* Selected aquatic legends (revenant only)
|
|
321
321
|
*/
|
|
322
|
-
readonly aquatic_legends?:
|
|
322
|
+
readonly aquatic_legends?: Array<string | null>;
|
|
323
323
|
}
|
|
324
324
|
declare class Specializations$1 {
|
|
325
325
|
/**
|
|
@@ -345,12 +345,6 @@ declare class Skills$3 {
|
|
|
345
345
|
*/
|
|
346
346
|
readonly elite: number | null;
|
|
347
347
|
}
|
|
348
|
-
declare class Legend {
|
|
349
|
-
/**
|
|
350
|
-
* Name of the legend (only for revenant)
|
|
351
|
-
*/
|
|
352
|
-
readonly legend: string | null;
|
|
353
|
-
}
|
|
354
348
|
|
|
355
349
|
/**
|
|
356
350
|
* /v2/account/dailycrafting definition
|
package/dist/index.d.ts
CHANGED
|
@@ -315,11 +315,11 @@ declare class AccountBuildStorageDTO {
|
|
|
315
315
|
/**
|
|
316
316
|
* Selected legends (revenant only)
|
|
317
317
|
*/
|
|
318
|
-
readonly legends?:
|
|
318
|
+
readonly legends?: Array<string | null>;
|
|
319
319
|
/**
|
|
320
320
|
* Selected aquatic legends (revenant only)
|
|
321
321
|
*/
|
|
322
|
-
readonly aquatic_legends?:
|
|
322
|
+
readonly aquatic_legends?: Array<string | null>;
|
|
323
323
|
}
|
|
324
324
|
declare class Specializations$1 {
|
|
325
325
|
/**
|
|
@@ -345,12 +345,6 @@ declare class Skills$3 {
|
|
|
345
345
|
*/
|
|
346
346
|
readonly elite: number | null;
|
|
347
347
|
}
|
|
348
|
-
declare class Legend {
|
|
349
|
-
/**
|
|
350
|
-
* Name of the legend (only for revenant)
|
|
351
|
-
*/
|
|
352
|
-
readonly legend: string | null;
|
|
353
|
-
}
|
|
354
348
|
|
|
355
349
|
/**
|
|
356
350
|
* /v2/account/dailycrafting definition
|