@connectedxm/admin 5.4.3 → 5.4.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 +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -991,6 +991,11 @@ interface Event extends BaseEvent {
|
|
|
991
991
|
groupOnly: boolean;
|
|
992
992
|
backgroundImageId: string | null;
|
|
993
993
|
backgroundImage: BaseImage | null;
|
|
994
|
+
registrationHeaderImageId: string | null;
|
|
995
|
+
registrationHeaderImage: BaseImage | null;
|
|
996
|
+
registrationFooterImageId: string | null;
|
|
997
|
+
registrationFooterImage: BaseImage | null;
|
|
998
|
+
registrationHideTitle: boolean;
|
|
994
999
|
activityFeedEnabled: boolean;
|
|
995
1000
|
meetingId: string | null;
|
|
996
1001
|
meeting: BaseMeeting | null;
|
|
@@ -4602,6 +4607,9 @@ interface EventCreateInputs {
|
|
|
4602
4607
|
registration?: boolean;
|
|
4603
4608
|
registrationStart?: string | null;
|
|
4604
4609
|
registrationEnd?: string | null;
|
|
4610
|
+
registrationHeaderImageId?: string | null;
|
|
4611
|
+
registrationFooterImageId?: string | null;
|
|
4612
|
+
registrationHideTitle?: boolean;
|
|
4605
4613
|
registrationLimit?: number | string | null;
|
|
4606
4614
|
allowMultipleRegistrations?: boolean;
|
|
4607
4615
|
allowSplitPayment?: boolean;
|
|
@@ -4978,6 +4986,9 @@ interface EventUpdateInputs {
|
|
|
4978
4986
|
registration?: boolean;
|
|
4979
4987
|
registrationStart?: string | null;
|
|
4980
4988
|
registrationEnd?: string | null;
|
|
4989
|
+
registrationHeaderImageId?: string | null;
|
|
4990
|
+
registrationFooterImageId?: string | null;
|
|
4991
|
+
registrationHideTitle?: boolean;
|
|
4981
4992
|
registrationLimit?: number | null | string;
|
|
4982
4993
|
allowMultipleRegistrations?: boolean;
|
|
4983
4994
|
allowSplitPayment?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -991,6 +991,11 @@ interface Event extends BaseEvent {
|
|
|
991
991
|
groupOnly: boolean;
|
|
992
992
|
backgroundImageId: string | null;
|
|
993
993
|
backgroundImage: BaseImage | null;
|
|
994
|
+
registrationHeaderImageId: string | null;
|
|
995
|
+
registrationHeaderImage: BaseImage | null;
|
|
996
|
+
registrationFooterImageId: string | null;
|
|
997
|
+
registrationFooterImage: BaseImage | null;
|
|
998
|
+
registrationHideTitle: boolean;
|
|
994
999
|
activityFeedEnabled: boolean;
|
|
995
1000
|
meetingId: string | null;
|
|
996
1001
|
meeting: BaseMeeting | null;
|
|
@@ -4602,6 +4607,9 @@ interface EventCreateInputs {
|
|
|
4602
4607
|
registration?: boolean;
|
|
4603
4608
|
registrationStart?: string | null;
|
|
4604
4609
|
registrationEnd?: string | null;
|
|
4610
|
+
registrationHeaderImageId?: string | null;
|
|
4611
|
+
registrationFooterImageId?: string | null;
|
|
4612
|
+
registrationHideTitle?: boolean;
|
|
4605
4613
|
registrationLimit?: number | string | null;
|
|
4606
4614
|
allowMultipleRegistrations?: boolean;
|
|
4607
4615
|
allowSplitPayment?: boolean;
|
|
@@ -4978,6 +4986,9 @@ interface EventUpdateInputs {
|
|
|
4978
4986
|
registration?: boolean;
|
|
4979
4987
|
registrationStart?: string | null;
|
|
4980
4988
|
registrationEnd?: string | null;
|
|
4989
|
+
registrationHeaderImageId?: string | null;
|
|
4990
|
+
registrationFooterImageId?: string | null;
|
|
4991
|
+
registrationHideTitle?: boolean;
|
|
4981
4992
|
registrationLimit?: number | null | string;
|
|
4982
4993
|
allowMultipleRegistrations?: boolean;
|
|
4983
4994
|
allowSplitPayment?: boolean;
|