@openmeter/sdk 1.0.0-beta-253cc22d1efb → 1.0.0-beta-c19dca6a9462
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 +11 -0
- package/dist/cjs/src/zod/index.cjs +167 -28
- package/dist/cjs/src/zod/index.cjs.map +1 -1
- package/dist/cjs/src/zod/index.d.cts +46 -0
- package/dist/src/client/schemas.d.ts +11 -0
- package/dist/src/zod/index.d.ts +46 -0
- package/dist/src/zod/index.js +138 -0
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -11611,14 +11611,25 @@ export interface components {
|
|
|
11611
11611
|
behavior?: components['schemas']['TaxBehavior'];
|
|
11612
11612
|
/**
|
|
11613
11613
|
* Stripe tax config
|
|
11614
|
+
* @deprecated
|
|
11614
11615
|
* @description Stripe tax config.
|
|
11615
11616
|
*/
|
|
11616
11617
|
stripe?: components['schemas']['StripeTaxConfig'];
|
|
11617
11618
|
/**
|
|
11618
11619
|
* Custom invoicing tax config
|
|
11620
|
+
* @deprecated
|
|
11619
11621
|
* @description Custom invoicing tax config.
|
|
11620
11622
|
*/
|
|
11621
11623
|
customInvoicing?: components['schemas']['CustomInvoicingTaxConfig'];
|
|
11624
|
+
/**
|
|
11625
|
+
* Tax code ID
|
|
11626
|
+
* @description Tax code reference.
|
|
11627
|
+
*
|
|
11628
|
+
* When both `taxCodeId` and `stripe.code` are provided, `taxCodeId` takes precedence:
|
|
11629
|
+
* the referenced tax code entity is used and `stripe.code` is ignored.
|
|
11630
|
+
* @example 01G65Z755AFWAKHE12NY0CQ9FH
|
|
11631
|
+
*/
|
|
11632
|
+
taxCodeId?: string;
|
|
11622
11633
|
};
|
|
11623
11634
|
/**
|
|
11624
11635
|
* @description The mode of the tiered price.
|