@connectedxm/admin 1.1.4 → 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/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -224,6 +224,8 @@ interface BaseAccount {
|
|
|
224
224
|
createdAt: string;
|
|
225
225
|
}
|
|
226
226
|
interface Account extends BaseAccount {
|
|
227
|
+
bannerId: string | null;
|
|
228
|
+
banner: BaseImage | null;
|
|
227
229
|
phone: string | null;
|
|
228
230
|
interests: BaseInterest[];
|
|
229
231
|
title: string | null;
|
|
@@ -587,9 +589,10 @@ interface Channel extends BaseChannel {
|
|
|
587
589
|
spotifyUrl: string | null;
|
|
588
590
|
googleUrl: string | null;
|
|
589
591
|
youtubeUrl: string | null;
|
|
592
|
+
creatorId: string | null;
|
|
593
|
+
creator: BaseAccount | null;
|
|
590
594
|
createdAt: string;
|
|
591
595
|
updatedAt: string;
|
|
592
|
-
hosts: BaseAccount[];
|
|
593
596
|
_count: {
|
|
594
597
|
contents: number;
|
|
595
598
|
};
|
|
@@ -2367,6 +2370,7 @@ interface AccountCreateInputs {
|
|
|
2367
2370
|
firstName?: string | null;
|
|
2368
2371
|
lastName?: string | null;
|
|
2369
2372
|
imageId?: string | null;
|
|
2373
|
+
bannerId?: string | null;
|
|
2370
2374
|
phone?: string | null;
|
|
2371
2375
|
title?: string | null;
|
|
2372
2376
|
company?: string | null;
|
|
@@ -2397,6 +2401,7 @@ interface AccountUpdateInputs {
|
|
|
2397
2401
|
firstName?: string | null;
|
|
2398
2402
|
lastName?: string | null;
|
|
2399
2403
|
imageId?: string | null;
|
|
2404
|
+
bannerId?: string | null;
|
|
2400
2405
|
username?: string | null;
|
|
2401
2406
|
phone?: string | null;
|
|
2402
2407
|
title?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -224,6 +224,8 @@ interface BaseAccount {
|
|
|
224
224
|
createdAt: string;
|
|
225
225
|
}
|
|
226
226
|
interface Account extends BaseAccount {
|
|
227
|
+
bannerId: string | null;
|
|
228
|
+
banner: BaseImage | null;
|
|
227
229
|
phone: string | null;
|
|
228
230
|
interests: BaseInterest[];
|
|
229
231
|
title: string | null;
|
|
@@ -587,9 +589,10 @@ interface Channel extends BaseChannel {
|
|
|
587
589
|
spotifyUrl: string | null;
|
|
588
590
|
googleUrl: string | null;
|
|
589
591
|
youtubeUrl: string | null;
|
|
592
|
+
creatorId: string | null;
|
|
593
|
+
creator: BaseAccount | null;
|
|
590
594
|
createdAt: string;
|
|
591
595
|
updatedAt: string;
|
|
592
|
-
hosts: BaseAccount[];
|
|
593
596
|
_count: {
|
|
594
597
|
contents: number;
|
|
595
598
|
};
|
|
@@ -2367,6 +2370,7 @@ interface AccountCreateInputs {
|
|
|
2367
2370
|
firstName?: string | null;
|
|
2368
2371
|
lastName?: string | null;
|
|
2369
2372
|
imageId?: string | null;
|
|
2373
|
+
bannerId?: string | null;
|
|
2370
2374
|
phone?: string | null;
|
|
2371
2375
|
title?: string | null;
|
|
2372
2376
|
company?: string | null;
|
|
@@ -2397,6 +2401,7 @@ interface AccountUpdateInputs {
|
|
|
2397
2401
|
firstName?: string | null;
|
|
2398
2402
|
lastName?: string | null;
|
|
2399
2403
|
imageId?: string | null;
|
|
2404
|
+
bannerId?: string | null;
|
|
2400
2405
|
username?: string | null;
|
|
2401
2406
|
phone?: string | null;
|
|
2402
2407
|
title?: string | null;
|