@connectedxm/admin 2.10.4 → 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 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;
@@ -1595,6 +1600,8 @@ interface Payment extends BasePayment {
1595
1600
  account: BaseAccount;
1596
1601
  bypassedId: string | null;
1597
1602
  bypassedBy: BaseUser | null;
1603
+ refunds: BasePayment[];
1604
+ refunded: Omit<BasePayment, "refunded"> | null;
1598
1605
  integration: {
1599
1606
  type: PaymentIntegrationType;
1600
1607
  };
@@ -4047,6 +4054,11 @@ interface EventCreateInputs {
4047
4054
  registrationStart?: string | null;
4048
4055
  registrationEnd?: string | null;
4049
4056
  registrationLimit?: number | string | null;
4057
+ allowMultipleRegistrations?: boolean;
4058
+ allowSplitPayment?: boolean;
4059
+ splitPaymentPercentage?: number | string;
4060
+ splitPaymentNetDays?: number | string | null;
4061
+ splitPaymentDueDate?: string | null;
4050
4062
  publicRegistrants?: boolean;
4051
4063
  sessionsVisible?: boolean;
4052
4064
  speakersVisible?: boolean;
@@ -4413,6 +4425,11 @@ interface EventUpdateInputs {
4413
4425
  registrationStart?: string | null;
4414
4426
  registrationEnd?: string | null;
4415
4427
  registrationLimit?: number | null | string;
4428
+ allowMultipleRegistrations?: boolean;
4429
+ allowSplitPayment?: boolean;
4430
+ splitPaymentPercentage?: number | string;
4431
+ splitPaymentNetDays?: number | string | null;
4432
+ splitPaymentDueDate?: string | null;
4416
4433
  publicRegistrants?: boolean;
4417
4434
  sessionsVisible?: boolean;
4418
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;
@@ -1595,6 +1600,8 @@ interface Payment extends BasePayment {
1595
1600
  account: BaseAccount;
1596
1601
  bypassedId: string | null;
1597
1602
  bypassedBy: BaseUser | null;
1603
+ refunds: BasePayment[];
1604
+ refunded: Omit<BasePayment, "refunded"> | null;
1598
1605
  integration: {
1599
1606
  type: PaymentIntegrationType;
1600
1607
  };
@@ -4047,6 +4054,11 @@ interface EventCreateInputs {
4047
4054
  registrationStart?: string | null;
4048
4055
  registrationEnd?: string | null;
4049
4056
  registrationLimit?: number | string | null;
4057
+ allowMultipleRegistrations?: boolean;
4058
+ allowSplitPayment?: boolean;
4059
+ splitPaymentPercentage?: number | string;
4060
+ splitPaymentNetDays?: number | string | null;
4061
+ splitPaymentDueDate?: string | null;
4050
4062
  publicRegistrants?: boolean;
4051
4063
  sessionsVisible?: boolean;
4052
4064
  speakersVisible?: boolean;
@@ -4413,6 +4425,11 @@ interface EventUpdateInputs {
4413
4425
  registrationStart?: string | null;
4414
4426
  registrationEnd?: string | null;
4415
4427
  registrationLimit?: number | null | string;
4428
+ allowMultipleRegistrations?: boolean;
4429
+ allowSplitPayment?: boolean;
4430
+ splitPaymentPercentage?: number | string;
4431
+ splitPaymentNetDays?: number | string | null;
4432
+ splitPaymentDueDate?: string | null;
4416
4433
  publicRegistrants?: boolean;
4417
4434
  sessionsVisible?: boolean;
4418
4435
  speakersVisible?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.10.4",
3
+ "version": "2.10.6",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",