@connectedxm/admin 1.1.3 → 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 +8 -1
- package/dist/index.d.ts +8 -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;
|
|
@@ -2563,6 +2568,7 @@ interface ChannelCreateInputs {
|
|
|
2563
2568
|
googleUrl?: string | null;
|
|
2564
2569
|
youtubeUrl?: string | null;
|
|
2565
2570
|
groupId?: string | null;
|
|
2571
|
+
creatorId?: string | null;
|
|
2566
2572
|
}
|
|
2567
2573
|
interface ChannelSubscriberUpdateInputs {
|
|
2568
2574
|
contentEmailNotification?: boolean;
|
|
@@ -2587,6 +2593,7 @@ interface ChannelUpdateInputs {
|
|
|
2587
2593
|
googleUrl?: string | null;
|
|
2588
2594
|
youtubeUrl?: string | null;
|
|
2589
2595
|
groupId?: string | null;
|
|
2596
|
+
creatorId?: string | null;
|
|
2590
2597
|
}
|
|
2591
2598
|
interface ChannelContentCreateInputs {
|
|
2592
2599
|
title: string;
|
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;
|
|
@@ -2563,6 +2568,7 @@ interface ChannelCreateInputs {
|
|
|
2563
2568
|
googleUrl?: string | null;
|
|
2564
2569
|
youtubeUrl?: string | null;
|
|
2565
2570
|
groupId?: string | null;
|
|
2571
|
+
creatorId?: string | null;
|
|
2566
2572
|
}
|
|
2567
2573
|
interface ChannelSubscriberUpdateInputs {
|
|
2568
2574
|
contentEmailNotification?: boolean;
|
|
@@ -2587,6 +2593,7 @@ interface ChannelUpdateInputs {
|
|
|
2587
2593
|
googleUrl?: string | null;
|
|
2588
2594
|
youtubeUrl?: string | null;
|
|
2589
2595
|
groupId?: string | null;
|
|
2596
|
+
creatorId?: string | null;
|
|
2590
2597
|
}
|
|
2591
2598
|
interface ChannelContentCreateInputs {
|
|
2592
2599
|
title: string;
|