@botpress/client 0.45.0 → 0.46.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 +30 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5422,6 +5422,36 @@ interface GetUpcomingInvoiceResponse {
|
|
|
5422
5422
|
* Total amount to pay of the invoice.
|
|
5423
5423
|
*/
|
|
5424
5424
|
total: number;
|
|
5425
|
+
/**
|
|
5426
|
+
* List of items included in the invoice.
|
|
5427
|
+
*/
|
|
5428
|
+
lineItems: {
|
|
5429
|
+
id: string;
|
|
5430
|
+
/**
|
|
5431
|
+
* Description of the line item.
|
|
5432
|
+
*/
|
|
5433
|
+
description: string;
|
|
5434
|
+
/**
|
|
5435
|
+
* Total amount to pay (in cents) of the line item.
|
|
5436
|
+
*/
|
|
5437
|
+
totalInCents: number;
|
|
5438
|
+
/**
|
|
5439
|
+
* Three-letter ISO currency code, in lowercase.
|
|
5440
|
+
*/
|
|
5441
|
+
currency: string;
|
|
5442
|
+
/**
|
|
5443
|
+
* Price per unit (in cents) of the line item.
|
|
5444
|
+
*/
|
|
5445
|
+
pricePerUnitInCents: number | null;
|
|
5446
|
+
/**
|
|
5447
|
+
* The quantity of the subscription, if the line item is a subscription or a proration.
|
|
5448
|
+
*/
|
|
5449
|
+
quantity: number | null;
|
|
5450
|
+
/**
|
|
5451
|
+
* Type of the line item.
|
|
5452
|
+
*/
|
|
5453
|
+
type: "invoiceitem" | "subscription";
|
|
5454
|
+
}[];
|
|
5425
5455
|
}
|
|
5426
5456
|
|
|
5427
5457
|
interface ChargeWorkspaceUnpaidInvoicesRequestHeaders {
|