@botpress/client 0.46.0 → 0.47.0
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/.turbo/turbo-build.log +7 -7
- package/.turbo/turbo-generate.log +1 -1
- package/dist/bundle.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5451,6 +5451,14 @@ interface GetUpcomingInvoiceResponse {
|
|
|
5451
5451
|
* Type of the line item.
|
|
5452
5452
|
*/
|
|
5453
5453
|
type: "invoiceitem" | "subscription";
|
|
5454
|
+
/**
|
|
5455
|
+
* Start date of the line item period.
|
|
5456
|
+
*/
|
|
5457
|
+
periodStart: string | null;
|
|
5458
|
+
/**
|
|
5459
|
+
* End date of the line item period.
|
|
5460
|
+
*/
|
|
5461
|
+
periodEnd: string | null;
|
|
5454
5462
|
}[];
|
|
5455
5463
|
}
|
|
5456
5464
|
|