@connectedxm/client 6.4.1 → 6.4.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -232,6 +232,7 @@ interface BaseActivity {
232
232
  account: BaseAccount;
233
233
  groupId: string | null;
234
234
  eventId: string | null;
235
+ pinned: boolean;
235
236
  contentId: string | null;
236
237
  commentedId: string | null;
237
238
  createdAt: string;
@@ -445,6 +446,7 @@ interface BaseRegistrationQuestion {
445
446
  mutable: boolean;
446
447
  min: string | null;
447
448
  max: string | null;
449
+ masked: boolean;
448
450
  validation: string | null;
449
451
  validationMessage: string | null;
450
452
  locationOption: LocationQuestionOption | null;
@@ -932,6 +934,7 @@ interface BaseEventSessionQuestion {
932
934
  mutable: boolean;
933
935
  min: string | null;
934
936
  max: string | null;
937
+ masked: boolean;
935
938
  validation: string | null;
936
939
  validationMessage: string | null;
937
940
  locationOption: LocationQuestionOption | null;
@@ -1284,6 +1287,7 @@ interface Payment extends BasePayment {
1284
1287
  space: BaseBookingSpace | null;
1285
1288
  membership: BaseSubscriptionProduct | null;
1286
1289
  coupon: BaseCoupon | null;
1290
+ invoice: BaseInvoice | null;
1287
1291
  lineItems: PaymentLineItem[];
1288
1292
  }
1289
1293
  declare enum PaymentLineItemType {
@@ -1321,7 +1325,6 @@ interface BasePaymentLineItem {
1321
1325
  passAddOnId: string | null;
1322
1326
  reservationId: string | null;
1323
1327
  accessId: string | null;
1324
- invoiceId: string | null;
1325
1328
  bookingId: string | null;
1326
1329
  subscriptionId: string | null;
1327
1330
  paymentId: number;
@@ -1639,7 +1642,6 @@ interface BaseInvoice {
1639
1642
  }
1640
1643
  interface Invoice extends BaseInvoice {
1641
1644
  lineItems: BaseInvoiceLineItem[];
1642
- lineItem: PaymentLineItem | null;
1643
1645
  createdAt: string;
1644
1646
  updatedAt: string;
1645
1647
  type?: string;
@@ -1650,6 +1652,7 @@ interface Invoice extends BaseInvoice {
1650
1652
  event: BaseEvent | null;
1651
1653
  organization: BaseOrganization;
1652
1654
  notes: string | null;
1655
+ payments: BasePayment[];
1653
1656
  }
1654
1657
  interface BaseInvoiceLineItem {
1655
1658
  id: string;
@@ -2297,6 +2300,7 @@ interface BaseSurveyQuestion {
2297
2300
  mutable: boolean;
2298
2301
  min: string | null;
2299
2302
  max: string | null;
2303
+ masked: boolean;
2300
2304
  validation: string | null;
2301
2305
  validationMessage: string | null;
2302
2306
  locationOption: LocationQuestionOption | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.4.1",
3
+ "version": "6.4.3",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",