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