@connectedxm/client 0.2.1 → 0.2.2
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.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1144,6 +1144,7 @@ interface BaseInvoice {
|
|
|
1144
1144
|
id: string;
|
|
1145
1145
|
title: string;
|
|
1146
1146
|
description: string | null;
|
|
1147
|
+
sentDate: string | null;
|
|
1147
1148
|
dueDate: string;
|
|
1148
1149
|
status: InvoiceStatus;
|
|
1149
1150
|
}
|
|
@@ -1156,6 +1157,11 @@ interface Invoice extends BaseInvoice {
|
|
|
1156
1157
|
intentId?: string;
|
|
1157
1158
|
connectionId?: string;
|
|
1158
1159
|
secret?: string;
|
|
1160
|
+
account: ({
|
|
1161
|
+
email: string;
|
|
1162
|
+
} & BaseAccount) | null;
|
|
1163
|
+
organization: BaseOrganization;
|
|
1164
|
+
notes: string | null;
|
|
1159
1165
|
}
|
|
1160
1166
|
interface BaseInvoiceLineItem {
|
|
1161
1167
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1144,6 +1144,7 @@ interface BaseInvoice {
|
|
|
1144
1144
|
id: string;
|
|
1145
1145
|
title: string;
|
|
1146
1146
|
description: string | null;
|
|
1147
|
+
sentDate: string | null;
|
|
1147
1148
|
dueDate: string;
|
|
1148
1149
|
status: InvoiceStatus;
|
|
1149
1150
|
}
|
|
@@ -1156,6 +1157,11 @@ interface Invoice extends BaseInvoice {
|
|
|
1156
1157
|
intentId?: string;
|
|
1157
1158
|
connectionId?: string;
|
|
1158
1159
|
secret?: string;
|
|
1160
|
+
account: ({
|
|
1161
|
+
email: string;
|
|
1162
|
+
} & BaseAccount) | null;
|
|
1163
|
+
organization: BaseOrganization;
|
|
1164
|
+
notes: string | null;
|
|
1159
1165
|
}
|
|
1160
1166
|
interface BaseInvoiceLineItem {
|
|
1161
1167
|
id: string;
|