@openmeter/client 1.0.0-beta-779ca4f0b0b2 → 1.0.0-beta-2c10c475da54
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/models/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/models/types.d.ts
CHANGED
|
@@ -2378,7 +2378,7 @@ export interface WorkflowTaxSettings {
|
|
|
2378
2378
|
enabled: boolean;
|
|
2379
2379
|
/** Enforce tax calculation when tax is supported by the app. When enabled, the billing system will not allow to create an invoice without tax calculation. Enforcement is different per apps, for example, Stripe app requires customer to have a tax location when starting a paid subscription. */
|
|
2380
2380
|
enforced: boolean;
|
|
2381
|
-
/** Default tax configuration to apply to the invoices for line items. */
|
|
2381
|
+
/** Default tax configuration to apply to the invoices for line items. Setting a tax code (`stripe.code` / `taxCodeId`) on a profile's default tax config is deprecated and can no longer be added or changed: the organization default tax code is used instead. Existing tax-code values may still be removed, and `behavior` remains fully supported. */
|
|
2382
2382
|
default_tax_config?: TaxConfig;
|
|
2383
2383
|
}
|
|
2384
2384
|
/** Page paginated response. */
|
|
@@ -3198,7 +3198,7 @@ export interface WorkflowTaxSettingsInput {
|
|
|
3198
3198
|
enabled?: boolean;
|
|
3199
3199
|
/** Enforce tax calculation when tax is supported by the app. When enabled, the billing system will not allow to create an invoice without tax calculation. Enforcement is different per apps, for example, Stripe app requires customer to have a tax location when starting a paid subscription. */
|
|
3200
3200
|
enforced?: boolean;
|
|
3201
|
-
/** Default tax configuration to apply to the invoices for line items. */
|
|
3201
|
+
/** Default tax configuration to apply to the invoices for line items. Setting a tax code (`stripe.code` / `taxCodeId`) on a profile's default tax config is deprecated and can no longer be added or changed: the organization default tax code is used instead. Existing tax-code values may still be removed, and `behavior` remains fully supported. */
|
|
3202
3202
|
default_tax_config?: TaxConfig;
|
|
3203
3203
|
}
|
|
3204
3204
|
export interface IngestedEventPaginatedResponseInput {
|