@connectedxm/client 7.0.9 → 7.0.10

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 +2 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1607,6 +1607,7 @@ interface BaseInvoice {
1607
1607
  sentDate: string | null;
1608
1608
  dueDate: string;
1609
1609
  status: InvoiceStatus;
1610
+ paymentIntegration: BasePaymentIntegration | null;
1610
1611
  }
1611
1612
  interface Invoice extends BaseInvoice {
1612
1613
  lineItems: BaseInvoiceLineItem[];
@@ -2100,6 +2101,7 @@ interface BaseBookingPlace {
2100
2101
  timezone: string;
2101
2102
  description: string | null;
2102
2103
  image: BaseImage | null;
2104
+ paymentIntegration: BasePaymentIntegration | null;
2103
2105
  }
2104
2106
  interface BookingPlace extends BaseBookingPlace {
2105
2107
  address1: string | null;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.0.9",
3
+ "version": "7.0.10",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/connectedxm/client-sdk.git"
9
+ "url": "git+https://github.com/connectedxm/client-sdk.git"
10
10
  },
11
11
  "license": "MIT",
12
12
  "private": false,