@openmeter/sdk 1.0.0-beta-5e4e38ebc196 → 1.0.0-beta-b694510b867f
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/cjs/src/client/schemas.d.cts +5 -0
- package/dist/cjs/src/zod/index.cjs +4 -0
- package/dist/cjs/src/zod/index.d.cts +3 -0
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.5bfbaf19.tsbuildinfo → tsconfig.6952c14e.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.73d87dac.tsbuildinfo → tsconfig.c1b93225.tsbuildinfo} +1 -1
- package/dist/src/client/schemas.d.ts +5 -0
- package/dist/src/zod/index.d.ts +3 -0
- package/dist/src/zod/index.js +4 -0
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -5747,6 +5747,11 @@ export interface components {
|
|
|
5747
5747
|
* @example 01G65Z755AFWAKHE12NY0CQ9FH
|
|
5748
5748
|
*/
|
|
5749
5749
|
customerId: string;
|
|
5750
|
+
/** @description Override the progressive billing setting of the customer.
|
|
5751
|
+
*
|
|
5752
|
+
* Can be used to disable/enable progressive billing in case the business logic
|
|
5753
|
+
* requires it, if not provided the billing profile's progressive billing setting will be used. */
|
|
5754
|
+
progressiveBillingOverride?: boolean;
|
|
5750
5755
|
};
|
|
5751
5756
|
/** @description Reference to an invoice. */
|
|
5752
5757
|
InvoiceReference: {
|
|
@@ -3304,6 +3304,10 @@ exports.invoicePendingLinesActionBody = zod_1.z
|
|
|
3304
3304
|
.describe('InvoicePendingLinesActionFiltersInput specifies which lines to include in the invoice.')
|
|
3305
3305
|
.optional()
|
|
3306
3306
|
.describe('Filters to apply when creating the invoice.'),
|
|
3307
|
+
progressiveBillingOverride: zod_1.z
|
|
3308
|
+
.boolean()
|
|
3309
|
+
.optional()
|
|
3310
|
+
.describe("Override the progressive billing setting of the customer.\n\nCan be used to disable/enable progressive billing in case the business logic\nrequires it, if not provided the billing profile's progressive billing setting will be used."),
|
|
3307
3311
|
})
|
|
3308
3312
|
.describe('BillingInvoiceActionInput is the input for creating an invoice.\n\nInvoice creation is always based on already pending line items created by the billingCreateLineByCustomer\noperation. Empty invoices are not allowed.');
|
|
3309
3313
|
/**
|
|
@@ -5521,18 +5521,21 @@ export declare const invoicePendingLinesActionBody: zod.ZodObject<{
|
|
|
5521
5521
|
}, {
|
|
5522
5522
|
lineIds?: string[] | undefined;
|
|
5523
5523
|
}>>;
|
|
5524
|
+
progressiveBillingOverride: zod.ZodOptional<zod.ZodBoolean>;
|
|
5524
5525
|
}, "strip", zod.ZodTypeAny, {
|
|
5525
5526
|
customerId: string;
|
|
5526
5527
|
asOf?: Date | undefined;
|
|
5527
5528
|
filters?: {
|
|
5528
5529
|
lineIds?: string[] | undefined;
|
|
5529
5530
|
} | undefined;
|
|
5531
|
+
progressiveBillingOverride?: boolean | undefined;
|
|
5530
5532
|
}, {
|
|
5531
5533
|
customerId: string;
|
|
5532
5534
|
asOf?: Date | undefined;
|
|
5533
5535
|
filters?: {
|
|
5534
5536
|
lineIds?: string[] | undefined;
|
|
5535
5537
|
} | undefined;
|
|
5538
|
+
progressiveBillingOverride?: boolean | undefined;
|
|
5536
5539
|
}>;
|
|
5537
5540
|
/**
|
|
5538
5541
|
* Get an invoice by ID.
|