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