@fnlb-project/shared 1.0.7 → 1.0.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.
@@ -129,6 +129,24 @@ export declare enum Locales {
129
129
  Pt = "pt",
130
130
  Tr = "tr"
131
131
  }
132
+ export type ConnectionSchema = {
133
+ id?: string;
134
+ username?: string;
135
+ };
136
+ export interface IClientAccount {
137
+ user: {
138
+ id: string;
139
+ username: string;
140
+ email: string;
141
+ apiToken: string;
142
+ connections?: {
143
+ discord?: ConnectionSchema;
144
+ epic?: ConnectionSchema;
145
+ };
146
+ };
147
+ bots?: IDBBot[];
148
+ categories?: IDBCategory[];
149
+ }
132
150
  export interface IDBBot {
133
151
  id: string;
134
152
  owner: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
3
  "description": "FNLB Shared Library",
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"