@getlatedev/node 0.2.337 → 0.2.338

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/index.d.mts CHANGED
@@ -4683,6 +4683,32 @@ type UsageMetering = {
4683
4683
  */
4684
4684
  source?: 'cycle' | 'window';
4685
4685
  };
4686
+ /**
4687
+ * Estimated tax on the window's net `totals.total`, computed with
4688
+ * Stripe Tax against the billing address (the same engine the real
4689
+ * invoice uses; invoices apply exclusive tax, so the card is charged
4690
+ * total + tax). Null when the account has no billing address on
4691
+ * file, the total is zero or negative, or the estimate failed.
4692
+ *
4693
+ */
4694
+ tax?: {
4695
+ /**
4696
+ * Estimated tax in USD
4697
+ */
4698
+ taxUsd?: number;
4699
+ /**
4700
+ * Combined rate percentage
4701
+ */
4702
+ ratePercent?: (number) | null;
4703
+ /**
4704
+ * Human jurisdiction label
4705
+ */
4706
+ jurisdictionLabel?: (string) | null;
4707
+ /**
4708
+ * True for EU/UK B2B reverse charge (0 tax added by design).
4709
+ */
4710
+ reverseCharge?: boolean;
4711
+ } | null;
4686
4712
  };
4687
4713
  type granularity = 'day' | 'month' | 'total';
4688
4714
  /**
package/dist/index.d.ts CHANGED
@@ -4683,6 +4683,32 @@ type UsageMetering = {
4683
4683
  */
4684
4684
  source?: 'cycle' | 'window';
4685
4685
  };
4686
+ /**
4687
+ * Estimated tax on the window's net `totals.total`, computed with
4688
+ * Stripe Tax against the billing address (the same engine the real
4689
+ * invoice uses; invoices apply exclusive tax, so the card is charged
4690
+ * total + tax). Null when the account has no billing address on
4691
+ * file, the total is zero or negative, or the estimate failed.
4692
+ *
4693
+ */
4694
+ tax?: {
4695
+ /**
4696
+ * Estimated tax in USD
4697
+ */
4698
+ taxUsd?: number;
4699
+ /**
4700
+ * Combined rate percentage
4701
+ */
4702
+ ratePercent?: (number) | null;
4703
+ /**
4704
+ * Human jurisdiction label
4705
+ */
4706
+ jurisdictionLabel?: (string) | null;
4707
+ /**
4708
+ * True for EU/UK B2B reverse charge (0 tax added by design).
4709
+ */
4710
+ reverseCharge?: boolean;
4711
+ } | null;
4686
4712
  };
4687
4713
  type granularity = 'day' | 'month' | 'total';
4688
4714
  /**
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
36
36
  // package.json
37
37
  var package_default = {
38
38
  name: "@getlatedev/node",
39
- version: "0.2.337",
39
+ version: "0.2.338",
40
40
  description: "The official Node.js library for the Zernio API",
41
41
  main: "dist/index.js",
42
42
  module: "dist/index.mjs",
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
5
5
  // package.json
6
6
  var package_default = {
7
7
  name: "@getlatedev/node",
8
- version: "0.2.337",
8
+ version: "0.2.338",
9
9
  description: "The official Node.js library for the Zernio API",
10
10
  main: "dist/index.js",
11
11
  module: "dist/index.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.2.337",
3
+ "version": "0.2.338",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -3980,6 +3980,32 @@ export type UsageMetering = {
3980
3980
  */
3981
3981
  source?: 'cycle' | 'window';
3982
3982
  };
3983
+ /**
3984
+ * Estimated tax on the window's net `totals.total`, computed with
3985
+ * Stripe Tax against the billing address (the same engine the real
3986
+ * invoice uses; invoices apply exclusive tax, so the card is charged
3987
+ * total + tax). Null when the account has no billing address on
3988
+ * file, the total is zero or negative, or the estimate failed.
3989
+ *
3990
+ */
3991
+ tax?: {
3992
+ /**
3993
+ * Estimated tax in USD
3994
+ */
3995
+ taxUsd?: number;
3996
+ /**
3997
+ * Combined rate percentage
3998
+ */
3999
+ ratePercent?: (number) | null;
4000
+ /**
4001
+ * Human jurisdiction label
4002
+ */
4003
+ jurisdictionLabel?: (string) | null;
4004
+ /**
4005
+ * True for EU/UK B2B reverse charge (0 tax added by design).
4006
+ */
4007
+ reverseCharge?: boolean;
4008
+ } | null;
3983
4009
  };
3984
4010
 
3985
4011
  export type granularity = 'day' | 'month' | 'total';