@connectedxm/admin 2.8.2 → 2.8.4
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.cts +3 -4
- package/dist/index.d.ts +3 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -570,7 +570,6 @@ interface BaseChannelContent {
|
|
|
570
570
|
channel: BaseChannel | null;
|
|
571
571
|
duration: string | null;
|
|
572
572
|
published: string | null;
|
|
573
|
-
visible: boolean;
|
|
574
573
|
email: boolean;
|
|
575
574
|
push: boolean;
|
|
576
575
|
}
|
|
@@ -624,6 +623,7 @@ interface BaseChannel {
|
|
|
624
623
|
description: string | null;
|
|
625
624
|
priority: number;
|
|
626
625
|
visible: boolean;
|
|
626
|
+
private: boolean;
|
|
627
627
|
imageId: string;
|
|
628
628
|
image: BaseImage;
|
|
629
629
|
bannerId: string | null;
|
|
@@ -3707,6 +3707,7 @@ interface ChannelCreateInputs {
|
|
|
3707
3707
|
description?: string | null;
|
|
3708
3708
|
priority?: number | string | null;
|
|
3709
3709
|
visible?: boolean;
|
|
3710
|
+
private?: boolean;
|
|
3710
3711
|
externalUrl?: string | null;
|
|
3711
3712
|
appleUrl?: string | null;
|
|
3712
3713
|
spotifyUrl?: string | null;
|
|
@@ -3732,6 +3733,7 @@ interface ChannelUpdateInputs {
|
|
|
3732
3733
|
description?: string | null;
|
|
3733
3734
|
priority?: number | string | null;
|
|
3734
3735
|
visible?: boolean;
|
|
3736
|
+
private?: boolean;
|
|
3735
3737
|
externalUrl?: string | null;
|
|
3736
3738
|
appleUrl?: string | null;
|
|
3737
3739
|
spotifyUrl?: string | null;
|
|
@@ -3745,7 +3747,6 @@ interface ChannelContentCreateInputs {
|
|
|
3745
3747
|
published?: string | null;
|
|
3746
3748
|
channelId?: string | null;
|
|
3747
3749
|
featured?: boolean;
|
|
3748
|
-
visible?: boolean;
|
|
3749
3750
|
slug?: string | null;
|
|
3750
3751
|
description?: string | null;
|
|
3751
3752
|
duration?: string | null;
|
|
@@ -3818,7 +3819,6 @@ interface ChannelContentUpdateInputs {
|
|
|
3818
3819
|
published?: string | null;
|
|
3819
3820
|
channelId?: string | null;
|
|
3820
3821
|
featured?: boolean;
|
|
3821
|
-
visible?: boolean;
|
|
3822
3822
|
title?: string | null;
|
|
3823
3823
|
slug?: string | null;
|
|
3824
3824
|
description?: string | null;
|
|
@@ -18057,7 +18057,6 @@ interface UpdateChannelContentPublishScheduleParams extends MutationParams {
|
|
|
18057
18057
|
date: string;
|
|
18058
18058
|
email: boolean;
|
|
18059
18059
|
push: boolean;
|
|
18060
|
-
visible: boolean;
|
|
18061
18060
|
};
|
|
18062
18061
|
}
|
|
18063
18062
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -570,7 +570,6 @@ interface BaseChannelContent {
|
|
|
570
570
|
channel: BaseChannel | null;
|
|
571
571
|
duration: string | null;
|
|
572
572
|
published: string | null;
|
|
573
|
-
visible: boolean;
|
|
574
573
|
email: boolean;
|
|
575
574
|
push: boolean;
|
|
576
575
|
}
|
|
@@ -624,6 +623,7 @@ interface BaseChannel {
|
|
|
624
623
|
description: string | null;
|
|
625
624
|
priority: number;
|
|
626
625
|
visible: boolean;
|
|
626
|
+
private: boolean;
|
|
627
627
|
imageId: string;
|
|
628
628
|
image: BaseImage;
|
|
629
629
|
bannerId: string | null;
|
|
@@ -3707,6 +3707,7 @@ interface ChannelCreateInputs {
|
|
|
3707
3707
|
description?: string | null;
|
|
3708
3708
|
priority?: number | string | null;
|
|
3709
3709
|
visible?: boolean;
|
|
3710
|
+
private?: boolean;
|
|
3710
3711
|
externalUrl?: string | null;
|
|
3711
3712
|
appleUrl?: string | null;
|
|
3712
3713
|
spotifyUrl?: string | null;
|
|
@@ -3732,6 +3733,7 @@ interface ChannelUpdateInputs {
|
|
|
3732
3733
|
description?: string | null;
|
|
3733
3734
|
priority?: number | string | null;
|
|
3734
3735
|
visible?: boolean;
|
|
3736
|
+
private?: boolean;
|
|
3735
3737
|
externalUrl?: string | null;
|
|
3736
3738
|
appleUrl?: string | null;
|
|
3737
3739
|
spotifyUrl?: string | null;
|
|
@@ -3745,7 +3747,6 @@ interface ChannelContentCreateInputs {
|
|
|
3745
3747
|
published?: string | null;
|
|
3746
3748
|
channelId?: string | null;
|
|
3747
3749
|
featured?: boolean;
|
|
3748
|
-
visible?: boolean;
|
|
3749
3750
|
slug?: string | null;
|
|
3750
3751
|
description?: string | null;
|
|
3751
3752
|
duration?: string | null;
|
|
@@ -3818,7 +3819,6 @@ interface ChannelContentUpdateInputs {
|
|
|
3818
3819
|
published?: string | null;
|
|
3819
3820
|
channelId?: string | null;
|
|
3820
3821
|
featured?: boolean;
|
|
3821
|
-
visible?: boolean;
|
|
3822
3822
|
title?: string | null;
|
|
3823
3823
|
slug?: string | null;
|
|
3824
3824
|
description?: string | null;
|
|
@@ -18057,7 +18057,6 @@ interface UpdateChannelContentPublishScheduleParams extends MutationParams {
|
|
|
18057
18057
|
date: string;
|
|
18058
18058
|
email: boolean;
|
|
18059
18059
|
push: boolean;
|
|
18060
|
-
visible: boolean;
|
|
18061
18060
|
};
|
|
18062
18061
|
}
|
|
18063
18062
|
/**
|