@fnlb-project/shared 1.4.7 → 1.4.8
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/types/index.d.ts +30 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -371,6 +371,36 @@ export interface ISerializedCommand {
|
|
|
371
371
|
onlyPartyMembers?: boolean;
|
|
372
372
|
};
|
|
373
373
|
}
|
|
374
|
+
export interface IAPICosmetic {
|
|
375
|
+
id: string;
|
|
376
|
+
type: string;
|
|
377
|
+
displayType: string;
|
|
378
|
+
name: string;
|
|
379
|
+
added: string;
|
|
380
|
+
tags: string[];
|
|
381
|
+
variants?: {
|
|
382
|
+
t: string;
|
|
383
|
+
n: string;
|
|
384
|
+
o: {
|
|
385
|
+
t: string;
|
|
386
|
+
n: string;
|
|
387
|
+
}[];
|
|
388
|
+
}[];
|
|
389
|
+
path: string;
|
|
390
|
+
}
|
|
391
|
+
export interface IAPILiteCosmetic {
|
|
392
|
+
id: string;
|
|
393
|
+
type: string;
|
|
394
|
+
name: string;
|
|
395
|
+
variants?: {
|
|
396
|
+
t: string;
|
|
397
|
+
n: string;
|
|
398
|
+
o: {
|
|
399
|
+
t: string;
|
|
400
|
+
n: string;
|
|
401
|
+
}[];
|
|
402
|
+
}[];
|
|
403
|
+
}
|
|
374
404
|
export interface IBaseError {
|
|
375
405
|
message: string;
|
|
376
406
|
errorCode: ErrorCodes;
|