@connectedxm/admin 2.7.0 → 2.7.2
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 +29 -11
- package/dist/index.d.ts +29 -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: string | 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
|
};
|
|
@@ -1370,6 +1380,7 @@ interface Organization extends BaseOrganization {
|
|
|
1370
1380
|
createdAt: string;
|
|
1371
1381
|
updatedAt: string;
|
|
1372
1382
|
integrations: Integration[];
|
|
1383
|
+
appName: string | null;
|
|
1373
1384
|
appIconId: string | null;
|
|
1374
1385
|
appIcon: BaseImage | null;
|
|
1375
1386
|
appAdaptiveIconId: string | null;
|
|
@@ -3711,7 +3722,8 @@ interface ChannelContentCreateInputs {
|
|
|
3711
3722
|
body?: string | null;
|
|
3712
3723
|
imageUrl?: string | null;
|
|
3713
3724
|
imageId?: string | null;
|
|
3714
|
-
|
|
3725
|
+
squareImageId?: string | null;
|
|
3726
|
+
audioId?: number | null;
|
|
3715
3727
|
videoId?: string | null;
|
|
3716
3728
|
externalUrl?: string | null;
|
|
3717
3729
|
appleUrl?: string | null;
|
|
@@ -3784,6 +3796,7 @@ interface ChannelContentUpdateInputs {
|
|
|
3784
3796
|
body?: string | null;
|
|
3785
3797
|
imageUrl?: string | null;
|
|
3786
3798
|
imageId?: string | null;
|
|
3799
|
+
squareImageId?: string | null;
|
|
3787
3800
|
audioId?: number | null;
|
|
3788
3801
|
videoId?: string | null;
|
|
3789
3802
|
externalUrl?: string | null;
|
|
@@ -3927,6 +3940,7 @@ interface EventCreateInputs {
|
|
|
3927
3940
|
reservationDescription?: string | null;
|
|
3928
3941
|
externalUrl?: string | null;
|
|
3929
3942
|
imageId?: string | null;
|
|
3943
|
+
squareImageId?: string | null;
|
|
3930
3944
|
backgroundImageId?: string | null;
|
|
3931
3945
|
venue?: string | null;
|
|
3932
3946
|
address1?: string | null;
|
|
@@ -4287,6 +4301,7 @@ interface EventUpdateInputs {
|
|
|
4287
4301
|
eventEnd?: string | null;
|
|
4288
4302
|
externalUrl?: string | null;
|
|
4289
4303
|
imageId?: string | null;
|
|
4304
|
+
squareImageId?: string | null;
|
|
4290
4305
|
backgroundImageId?: string | null;
|
|
4291
4306
|
venue?: string | null;
|
|
4292
4307
|
address1?: string | null;
|
|
@@ -4331,6 +4346,7 @@ interface GroupCreateInputs {
|
|
|
4331
4346
|
active?: boolean;
|
|
4332
4347
|
access?: keyof typeof GroupAccess | null;
|
|
4333
4348
|
imageId?: string | null;
|
|
4349
|
+
squareImageId?: string | null;
|
|
4334
4350
|
externalUrl?: string | null;
|
|
4335
4351
|
}
|
|
4336
4352
|
interface GroupMembershipUpdateInputs {
|
|
@@ -4377,6 +4393,7 @@ interface GroupUpdateInputs {
|
|
|
4377
4393
|
active?: boolean;
|
|
4378
4394
|
access?: keyof typeof GroupAccess | null;
|
|
4379
4395
|
imageId?: string | null;
|
|
4396
|
+
squareImageId?: string | null;
|
|
4380
4397
|
externalUrl?: string | null;
|
|
4381
4398
|
}
|
|
4382
4399
|
interface ImageCreateInputs {
|
|
@@ -4475,6 +4492,7 @@ interface OrganizationUpdateInputs {
|
|
|
4475
4492
|
zip?: string | null;
|
|
4476
4493
|
primaryColor?: string | null;
|
|
4477
4494
|
secondaryColor?: string | null;
|
|
4495
|
+
appName?: string | null;
|
|
4478
4496
|
logoId?: string | null;
|
|
4479
4497
|
darkLogoId?: string | null;
|
|
4480
4498
|
iconId?: string | null;
|
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: string | 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
|
};
|
|
@@ -1370,6 +1380,7 @@ interface Organization extends BaseOrganization {
|
|
|
1370
1380
|
createdAt: string;
|
|
1371
1381
|
updatedAt: string;
|
|
1372
1382
|
integrations: Integration[];
|
|
1383
|
+
appName: string | null;
|
|
1373
1384
|
appIconId: string | null;
|
|
1374
1385
|
appIcon: BaseImage | null;
|
|
1375
1386
|
appAdaptiveIconId: string | null;
|
|
@@ -3711,7 +3722,8 @@ interface ChannelContentCreateInputs {
|
|
|
3711
3722
|
body?: string | null;
|
|
3712
3723
|
imageUrl?: string | null;
|
|
3713
3724
|
imageId?: string | null;
|
|
3714
|
-
|
|
3725
|
+
squareImageId?: string | null;
|
|
3726
|
+
audioId?: number | null;
|
|
3715
3727
|
videoId?: string | null;
|
|
3716
3728
|
externalUrl?: string | null;
|
|
3717
3729
|
appleUrl?: string | null;
|
|
@@ -3784,6 +3796,7 @@ interface ChannelContentUpdateInputs {
|
|
|
3784
3796
|
body?: string | null;
|
|
3785
3797
|
imageUrl?: string | null;
|
|
3786
3798
|
imageId?: string | null;
|
|
3799
|
+
squareImageId?: string | null;
|
|
3787
3800
|
audioId?: number | null;
|
|
3788
3801
|
videoId?: string | null;
|
|
3789
3802
|
externalUrl?: string | null;
|
|
@@ -3927,6 +3940,7 @@ interface EventCreateInputs {
|
|
|
3927
3940
|
reservationDescription?: string | null;
|
|
3928
3941
|
externalUrl?: string | null;
|
|
3929
3942
|
imageId?: string | null;
|
|
3943
|
+
squareImageId?: string | null;
|
|
3930
3944
|
backgroundImageId?: string | null;
|
|
3931
3945
|
venue?: string | null;
|
|
3932
3946
|
address1?: string | null;
|
|
@@ -4287,6 +4301,7 @@ interface EventUpdateInputs {
|
|
|
4287
4301
|
eventEnd?: string | null;
|
|
4288
4302
|
externalUrl?: string | null;
|
|
4289
4303
|
imageId?: string | null;
|
|
4304
|
+
squareImageId?: string | null;
|
|
4290
4305
|
backgroundImageId?: string | null;
|
|
4291
4306
|
venue?: string | null;
|
|
4292
4307
|
address1?: string | null;
|
|
@@ -4331,6 +4346,7 @@ interface GroupCreateInputs {
|
|
|
4331
4346
|
active?: boolean;
|
|
4332
4347
|
access?: keyof typeof GroupAccess | null;
|
|
4333
4348
|
imageId?: string | null;
|
|
4349
|
+
squareImageId?: string | null;
|
|
4334
4350
|
externalUrl?: string | null;
|
|
4335
4351
|
}
|
|
4336
4352
|
interface GroupMembershipUpdateInputs {
|
|
@@ -4377,6 +4393,7 @@ interface GroupUpdateInputs {
|
|
|
4377
4393
|
active?: boolean;
|
|
4378
4394
|
access?: keyof typeof GroupAccess | null;
|
|
4379
4395
|
imageId?: string | null;
|
|
4396
|
+
squareImageId?: string | null;
|
|
4380
4397
|
externalUrl?: string | null;
|
|
4381
4398
|
}
|
|
4382
4399
|
interface ImageCreateInputs {
|
|
@@ -4475,6 +4492,7 @@ interface OrganizationUpdateInputs {
|
|
|
4475
4492
|
zip?: string | null;
|
|
4476
4493
|
primaryColor?: string | null;
|
|
4477
4494
|
secondaryColor?: string | null;
|
|
4495
|
+
appName?: string | null;
|
|
4478
4496
|
logoId?: string | null;
|
|
4479
4497
|
darkLogoId?: string | null;
|
|
4480
4498
|
iconId?: string | null;
|