@connectedxm/admin 2.10.5 → 2.10.6
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 +15 -0
- package/dist/index.d.ts +15 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -910,6 +910,11 @@ interface Event extends BaseEvent {
|
|
|
910
910
|
creatorId: string | null;
|
|
911
911
|
creator: BaseAccount | null;
|
|
912
912
|
registrationLimit: number | null;
|
|
913
|
+
allowMultipleRegistrations: boolean;
|
|
914
|
+
allowSplitPayment: boolean;
|
|
915
|
+
splitPaymentPercentage: number;
|
|
916
|
+
splitPaymentNetDays: number | null;
|
|
917
|
+
splitPaymentDueDate: string | null;
|
|
913
918
|
publicRegistrants: boolean;
|
|
914
919
|
sessionsVisible: boolean;
|
|
915
920
|
speakersVisible: boolean;
|
|
@@ -4049,6 +4054,11 @@ interface EventCreateInputs {
|
|
|
4049
4054
|
registrationStart?: string | null;
|
|
4050
4055
|
registrationEnd?: string | null;
|
|
4051
4056
|
registrationLimit?: number | string | null;
|
|
4057
|
+
allowMultipleRegistrations?: boolean;
|
|
4058
|
+
allowSplitPayment?: boolean;
|
|
4059
|
+
splitPaymentPercentage?: number | string;
|
|
4060
|
+
splitPaymentNetDays?: number | string | null;
|
|
4061
|
+
splitPaymentDueDate?: string | null;
|
|
4052
4062
|
publicRegistrants?: boolean;
|
|
4053
4063
|
sessionsVisible?: boolean;
|
|
4054
4064
|
speakersVisible?: boolean;
|
|
@@ -4415,6 +4425,11 @@ interface EventUpdateInputs {
|
|
|
4415
4425
|
registrationStart?: string | null;
|
|
4416
4426
|
registrationEnd?: string | null;
|
|
4417
4427
|
registrationLimit?: number | null | string;
|
|
4428
|
+
allowMultipleRegistrations?: boolean;
|
|
4429
|
+
allowSplitPayment?: boolean;
|
|
4430
|
+
splitPaymentPercentage?: number | string;
|
|
4431
|
+
splitPaymentNetDays?: number | string | null;
|
|
4432
|
+
splitPaymentDueDate?: string | null;
|
|
4418
4433
|
publicRegistrants?: boolean;
|
|
4419
4434
|
sessionsVisible?: boolean;
|
|
4420
4435
|
speakersVisible?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -910,6 +910,11 @@ interface Event extends BaseEvent {
|
|
|
910
910
|
creatorId: string | null;
|
|
911
911
|
creator: BaseAccount | null;
|
|
912
912
|
registrationLimit: number | null;
|
|
913
|
+
allowMultipleRegistrations: boolean;
|
|
914
|
+
allowSplitPayment: boolean;
|
|
915
|
+
splitPaymentPercentage: number;
|
|
916
|
+
splitPaymentNetDays: number | null;
|
|
917
|
+
splitPaymentDueDate: string | null;
|
|
913
918
|
publicRegistrants: boolean;
|
|
914
919
|
sessionsVisible: boolean;
|
|
915
920
|
speakersVisible: boolean;
|
|
@@ -4049,6 +4054,11 @@ interface EventCreateInputs {
|
|
|
4049
4054
|
registrationStart?: string | null;
|
|
4050
4055
|
registrationEnd?: string | null;
|
|
4051
4056
|
registrationLimit?: number | string | null;
|
|
4057
|
+
allowMultipleRegistrations?: boolean;
|
|
4058
|
+
allowSplitPayment?: boolean;
|
|
4059
|
+
splitPaymentPercentage?: number | string;
|
|
4060
|
+
splitPaymentNetDays?: number | string | null;
|
|
4061
|
+
splitPaymentDueDate?: string | null;
|
|
4052
4062
|
publicRegistrants?: boolean;
|
|
4053
4063
|
sessionsVisible?: boolean;
|
|
4054
4064
|
speakersVisible?: boolean;
|
|
@@ -4415,6 +4425,11 @@ interface EventUpdateInputs {
|
|
|
4415
4425
|
registrationStart?: string | null;
|
|
4416
4426
|
registrationEnd?: string | null;
|
|
4417
4427
|
registrationLimit?: number | null | string;
|
|
4428
|
+
allowMultipleRegistrations?: boolean;
|
|
4429
|
+
allowSplitPayment?: boolean;
|
|
4430
|
+
splitPaymentPercentage?: number | string;
|
|
4431
|
+
splitPaymentNetDays?: number | string | null;
|
|
4432
|
+
splitPaymentDueDate?: string | null;
|
|
4418
4433
|
publicRegistrants?: boolean;
|
|
4419
4434
|
sessionsVisible?: boolean;
|
|
4420
4435
|
speakersVisible?: boolean;
|