@connectedxm/admin 2.8.2 → 2.8.3

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 CHANGED
@@ -624,6 +624,7 @@ interface BaseChannel {
624
624
  description: string | null;
625
625
  priority: number;
626
626
  visible: boolean;
627
+ private: boolean;
627
628
  imageId: string;
628
629
  image: BaseImage;
629
630
  bannerId: string | null;
@@ -3707,6 +3708,7 @@ interface ChannelCreateInputs {
3707
3708
  description?: string | null;
3708
3709
  priority?: number | string | null;
3709
3710
  visible?: boolean;
3711
+ private?: boolean;
3710
3712
  externalUrl?: string | null;
3711
3713
  appleUrl?: string | null;
3712
3714
  spotifyUrl?: string | null;
@@ -3732,6 +3734,7 @@ interface ChannelUpdateInputs {
3732
3734
  description?: string | null;
3733
3735
  priority?: number | string | null;
3734
3736
  visible?: boolean;
3737
+ private?: boolean;
3735
3738
  externalUrl?: string | null;
3736
3739
  appleUrl?: string | null;
3737
3740
  spotifyUrl?: string | null;
package/dist/index.d.ts CHANGED
@@ -624,6 +624,7 @@ interface BaseChannel {
624
624
  description: string | null;
625
625
  priority: number;
626
626
  visible: boolean;
627
+ private: boolean;
627
628
  imageId: string;
628
629
  image: BaseImage;
629
630
  bannerId: string | null;
@@ -3707,6 +3708,7 @@ interface ChannelCreateInputs {
3707
3708
  description?: string | null;
3708
3709
  priority?: number | string | null;
3709
3710
  visible?: boolean;
3711
+ private?: boolean;
3710
3712
  externalUrl?: string | null;
3711
3713
  appleUrl?: string | null;
3712
3714
  spotifyUrl?: string | null;
@@ -3732,6 +3734,7 @@ interface ChannelUpdateInputs {
3732
3734
  description?: string | null;
3733
3735
  priority?: number | string | null;
3734
3736
  visible?: boolean;
3737
+ private?: boolean;
3735
3738
  externalUrl?: string | null;
3736
3739
  appleUrl?: string | null;
3737
3740
  spotifyUrl?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.8.2",
3
+ "version": "2.8.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",