@autobusal/providers 1.45.0 → 1.45.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/persons.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autobusal/providers",
3
- "version": "1.45.0",
3
+ "version": "1.45.1",
4
4
  "author": "Ferjolt Ozuni",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/types/persons.ts CHANGED
@@ -12,6 +12,8 @@ export interface BillingData {
12
12
  bill_country: number
13
13
  bill_company: string
14
14
  bill_nipt: string
15
+ // Claude - 2026-09-25: a private buyer's personal ID number, for the fiscal invoice
16
+ bill_id_number?: string
15
17
  comments: string
16
18
  terms: string
17
19
  }