@connectedxm/client 7.4.0 → 7.4.1

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.ts CHANGED
@@ -1433,7 +1433,8 @@ declare enum PaymentLineItemType {
1433
1433
  access = "access",
1434
1434
  invoice = "invoice",
1435
1435
  booking = "booking",
1436
- coupon = "coupon"
1436
+ coupon = "coupon",
1437
+ series = "series"
1437
1438
  }
1438
1439
  interface BasePaymentLineItem {
1439
1440
  id: string;
@@ -1454,6 +1455,7 @@ interface BasePaymentLineItem {
1454
1455
  sessionId: string | null;
1455
1456
  placeId: string | null;
1456
1457
  spaceId: string | null;
1458
+ seriesId: string | null;
1457
1459
  passId: string | null;
1458
1460
  packageId: string | null;
1459
1461
  passAddOnId: string | null;
@@ -1470,6 +1472,7 @@ interface PaymentLineItem extends BasePaymentLineItem {
1470
1472
  access: BaseEventSessionAccess | null;
1471
1473
  invoice: BaseInvoice | null;
1472
1474
  booking: BaseBooking | null;
1475
+ seriesRegistration: BaseSeriesRegistration | null;
1473
1476
  payment: BasePayment | null;
1474
1477
  }
1475
1478
  declare enum LeadStatus {
package/dist/index.js CHANGED
@@ -8310,6 +8310,7 @@ var PaymentLineItemType = /* @__PURE__ */ ((PaymentLineItemType2) => {
8310
8310
  PaymentLineItemType2["invoice"] = "invoice";
8311
8311
  PaymentLineItemType2["booking"] = "booking";
8312
8312
  PaymentLineItemType2["coupon"] = "coupon";
8313
+ PaymentLineItemType2["series"] = "series";
8313
8314
  return PaymentLineItemType2;
8314
8315
  })(PaymentLineItemType || {});
8315
8316
  var LeadStatus = /* @__PURE__ */ ((LeadStatus2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.4.0",
3
+ "version": "7.4.1",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",