@connectedxm/admin 2.7.1 → 2.7.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 +27 -11
- package/dist/index.d.ts +27 -11
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -552,31 +552,37 @@ interface BenefitTranslation {
|
|
|
552
552
|
updatedAt: string;
|
|
553
553
|
}
|
|
554
554
|
interface BaseChannelContent {
|
|
555
|
-
channelId: string;
|
|
556
555
|
id: string;
|
|
557
|
-
slug: string;
|
|
558
556
|
featured: boolean;
|
|
559
|
-
|
|
560
|
-
published: string | null;
|
|
561
|
-
visible: boolean;
|
|
557
|
+
slug: string;
|
|
562
558
|
title: string | null;
|
|
563
559
|
description: string | null;
|
|
560
|
+
imageId: string | null;
|
|
561
|
+
image: BaseImage | null;
|
|
562
|
+
squareImageId: string | null;
|
|
563
|
+
squareImage: BaseImage | null;
|
|
564
|
+
imageUrl: string | null;
|
|
565
|
+
audioId: number | null;
|
|
566
|
+
audio: BaseFile | null;
|
|
567
|
+
videoId: string | null;
|
|
568
|
+
video: BaseVideo | null;
|
|
569
|
+
channelId: string;
|
|
570
|
+
channel: BaseChannel | null;
|
|
564
571
|
duration: string | null;
|
|
572
|
+
published: string | null;
|
|
573
|
+
visible: boolean;
|
|
565
574
|
email: boolean;
|
|
566
575
|
push: boolean;
|
|
567
576
|
}
|
|
568
577
|
interface ChannelContent extends BaseChannelContent {
|
|
569
578
|
body: string | null;
|
|
570
|
-
|
|
571
|
-
audioUrl: string | null;
|
|
572
|
-
videoUrl: string | null;
|
|
579
|
+
editor: string | null;
|
|
573
580
|
externalUrl: string | null;
|
|
574
581
|
appleUrl: string | null;
|
|
575
582
|
spotifyUrl: string | null;
|
|
576
583
|
googleUrl: string | null;
|
|
577
584
|
youtubeUrl: string | null;
|
|
578
|
-
|
|
579
|
-
mentions: BaseAccount[];
|
|
585
|
+
guests: BaseChannelContentGuest[];
|
|
580
586
|
publishSchedule: BaseSchedule | null;
|
|
581
587
|
createdAt: string;
|
|
582
588
|
updatedAt: string;
|
|
@@ -861,6 +867,8 @@ interface BaseEvent {
|
|
|
861
867
|
zip: string | null;
|
|
862
868
|
imageId: string | null;
|
|
863
869
|
image: BaseImage | null;
|
|
870
|
+
squareImageId: string | null;
|
|
871
|
+
squareImage: BaseImage | null;
|
|
864
872
|
registration: boolean;
|
|
865
873
|
registrationStart: string | null;
|
|
866
874
|
registrationEnd: string | null;
|
|
@@ -1083,6 +1091,8 @@ interface BaseGroup {
|
|
|
1083
1091
|
featured: boolean;
|
|
1084
1092
|
imageId: string | null;
|
|
1085
1093
|
image: BaseImage | null;
|
|
1094
|
+
squareImageId: string | null;
|
|
1095
|
+
squareImage: BaseImage | null;
|
|
1086
1096
|
_count: {
|
|
1087
1097
|
members: number;
|
|
1088
1098
|
};
|
|
@@ -3712,7 +3722,8 @@ interface ChannelContentCreateInputs {
|
|
|
3712
3722
|
body?: string | null;
|
|
3713
3723
|
imageUrl?: string | null;
|
|
3714
3724
|
imageId?: string | null;
|
|
3715
|
-
|
|
3725
|
+
squareImageId?: string | null;
|
|
3726
|
+
audioId?: number | null;
|
|
3716
3727
|
videoId?: string | null;
|
|
3717
3728
|
externalUrl?: string | null;
|
|
3718
3729
|
appleUrl?: string | null;
|
|
@@ -3785,6 +3796,7 @@ interface ChannelContentUpdateInputs {
|
|
|
3785
3796
|
body?: string | null;
|
|
3786
3797
|
imageUrl?: string | null;
|
|
3787
3798
|
imageId?: string | null;
|
|
3799
|
+
squareImageId?: string | null;
|
|
3788
3800
|
audioId?: number | null;
|
|
3789
3801
|
videoId?: string | null;
|
|
3790
3802
|
externalUrl?: string | null;
|
|
@@ -3928,6 +3940,7 @@ interface EventCreateInputs {
|
|
|
3928
3940
|
reservationDescription?: string | null;
|
|
3929
3941
|
externalUrl?: string | null;
|
|
3930
3942
|
imageId?: string | null;
|
|
3943
|
+
squareImageId?: string | null;
|
|
3931
3944
|
backgroundImageId?: string | null;
|
|
3932
3945
|
venue?: string | null;
|
|
3933
3946
|
address1?: string | null;
|
|
@@ -4288,6 +4301,7 @@ interface EventUpdateInputs {
|
|
|
4288
4301
|
eventEnd?: string | null;
|
|
4289
4302
|
externalUrl?: string | null;
|
|
4290
4303
|
imageId?: string | null;
|
|
4304
|
+
squareImageId?: string | null;
|
|
4291
4305
|
backgroundImageId?: string | null;
|
|
4292
4306
|
venue?: string | null;
|
|
4293
4307
|
address1?: string | null;
|
|
@@ -4332,6 +4346,7 @@ interface GroupCreateInputs {
|
|
|
4332
4346
|
active?: boolean;
|
|
4333
4347
|
access?: keyof typeof GroupAccess | null;
|
|
4334
4348
|
imageId?: string | null;
|
|
4349
|
+
squareImageId?: string | null;
|
|
4335
4350
|
externalUrl?: string | null;
|
|
4336
4351
|
}
|
|
4337
4352
|
interface GroupMembershipUpdateInputs {
|
|
@@ -4378,6 +4393,7 @@ interface GroupUpdateInputs {
|
|
|
4378
4393
|
active?: boolean;
|
|
4379
4394
|
access?: keyof typeof GroupAccess | null;
|
|
4380
4395
|
imageId?: string | null;
|
|
4396
|
+
squareImageId?: string | null;
|
|
4381
4397
|
externalUrl?: string | null;
|
|
4382
4398
|
}
|
|
4383
4399
|
interface ImageCreateInputs {
|
package/dist/index.d.ts
CHANGED
|
@@ -552,31 +552,37 @@ interface BenefitTranslation {
|
|
|
552
552
|
updatedAt: string;
|
|
553
553
|
}
|
|
554
554
|
interface BaseChannelContent {
|
|
555
|
-
channelId: string;
|
|
556
555
|
id: string;
|
|
557
|
-
slug: string;
|
|
558
556
|
featured: boolean;
|
|
559
|
-
|
|
560
|
-
published: string | null;
|
|
561
|
-
visible: boolean;
|
|
557
|
+
slug: string;
|
|
562
558
|
title: string | null;
|
|
563
559
|
description: string | null;
|
|
560
|
+
imageId: string | null;
|
|
561
|
+
image: BaseImage | null;
|
|
562
|
+
squareImageId: string | null;
|
|
563
|
+
squareImage: BaseImage | null;
|
|
564
|
+
imageUrl: string | null;
|
|
565
|
+
audioId: number | null;
|
|
566
|
+
audio: BaseFile | null;
|
|
567
|
+
videoId: string | null;
|
|
568
|
+
video: BaseVideo | null;
|
|
569
|
+
channelId: string;
|
|
570
|
+
channel: BaseChannel | null;
|
|
564
571
|
duration: string | null;
|
|
572
|
+
published: string | null;
|
|
573
|
+
visible: boolean;
|
|
565
574
|
email: boolean;
|
|
566
575
|
push: boolean;
|
|
567
576
|
}
|
|
568
577
|
interface ChannelContent extends BaseChannelContent {
|
|
569
578
|
body: string | null;
|
|
570
|
-
|
|
571
|
-
audioUrl: string | null;
|
|
572
|
-
videoUrl: string | null;
|
|
579
|
+
editor: string | null;
|
|
573
580
|
externalUrl: string | null;
|
|
574
581
|
appleUrl: string | null;
|
|
575
582
|
spotifyUrl: string | null;
|
|
576
583
|
googleUrl: string | null;
|
|
577
584
|
youtubeUrl: string | null;
|
|
578
|
-
|
|
579
|
-
mentions: BaseAccount[];
|
|
585
|
+
guests: BaseChannelContentGuest[];
|
|
580
586
|
publishSchedule: BaseSchedule | null;
|
|
581
587
|
createdAt: string;
|
|
582
588
|
updatedAt: string;
|
|
@@ -861,6 +867,8 @@ interface BaseEvent {
|
|
|
861
867
|
zip: string | null;
|
|
862
868
|
imageId: string | null;
|
|
863
869
|
image: BaseImage | null;
|
|
870
|
+
squareImageId: string | null;
|
|
871
|
+
squareImage: BaseImage | null;
|
|
864
872
|
registration: boolean;
|
|
865
873
|
registrationStart: string | null;
|
|
866
874
|
registrationEnd: string | null;
|
|
@@ -1083,6 +1091,8 @@ interface BaseGroup {
|
|
|
1083
1091
|
featured: boolean;
|
|
1084
1092
|
imageId: string | null;
|
|
1085
1093
|
image: BaseImage | null;
|
|
1094
|
+
squareImageId: string | null;
|
|
1095
|
+
squareImage: BaseImage | null;
|
|
1086
1096
|
_count: {
|
|
1087
1097
|
members: number;
|
|
1088
1098
|
};
|
|
@@ -3712,7 +3722,8 @@ interface ChannelContentCreateInputs {
|
|
|
3712
3722
|
body?: string | null;
|
|
3713
3723
|
imageUrl?: string | null;
|
|
3714
3724
|
imageId?: string | null;
|
|
3715
|
-
|
|
3725
|
+
squareImageId?: string | null;
|
|
3726
|
+
audioId?: number | null;
|
|
3716
3727
|
videoId?: string | null;
|
|
3717
3728
|
externalUrl?: string | null;
|
|
3718
3729
|
appleUrl?: string | null;
|
|
@@ -3785,6 +3796,7 @@ interface ChannelContentUpdateInputs {
|
|
|
3785
3796
|
body?: string | null;
|
|
3786
3797
|
imageUrl?: string | null;
|
|
3787
3798
|
imageId?: string | null;
|
|
3799
|
+
squareImageId?: string | null;
|
|
3788
3800
|
audioId?: number | null;
|
|
3789
3801
|
videoId?: string | null;
|
|
3790
3802
|
externalUrl?: string | null;
|
|
@@ -3928,6 +3940,7 @@ interface EventCreateInputs {
|
|
|
3928
3940
|
reservationDescription?: string | null;
|
|
3929
3941
|
externalUrl?: string | null;
|
|
3930
3942
|
imageId?: string | null;
|
|
3943
|
+
squareImageId?: string | null;
|
|
3931
3944
|
backgroundImageId?: string | null;
|
|
3932
3945
|
venue?: string | null;
|
|
3933
3946
|
address1?: string | null;
|
|
@@ -4288,6 +4301,7 @@ interface EventUpdateInputs {
|
|
|
4288
4301
|
eventEnd?: string | null;
|
|
4289
4302
|
externalUrl?: string | null;
|
|
4290
4303
|
imageId?: string | null;
|
|
4304
|
+
squareImageId?: string | null;
|
|
4291
4305
|
backgroundImageId?: string | null;
|
|
4292
4306
|
venue?: string | null;
|
|
4293
4307
|
address1?: string | null;
|
|
@@ -4332,6 +4346,7 @@ interface GroupCreateInputs {
|
|
|
4332
4346
|
active?: boolean;
|
|
4333
4347
|
access?: keyof typeof GroupAccess | null;
|
|
4334
4348
|
imageId?: string | null;
|
|
4349
|
+
squareImageId?: string | null;
|
|
4335
4350
|
externalUrl?: string | null;
|
|
4336
4351
|
}
|
|
4337
4352
|
interface GroupMembershipUpdateInputs {
|
|
@@ -4378,6 +4393,7 @@ interface GroupUpdateInputs {
|
|
|
4378
4393
|
active?: boolean;
|
|
4379
4394
|
access?: keyof typeof GroupAccess | null;
|
|
4380
4395
|
imageId?: string | null;
|
|
4396
|
+
squareImageId?: string | null;
|
|
4381
4397
|
externalUrl?: string | null;
|
|
4382
4398
|
}
|
|
4383
4399
|
interface ImageCreateInputs {
|