sinfactura-types 1.6.59 → 1.6.60

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/afip.d.ts CHANGED
@@ -90,6 +90,13 @@ declare global {
90
90
  city?: string;
91
91
  province?: string;
92
92
  postalCode?: string;
93
+ /** Registered activity codes from the A5 response (api#1741 — feeds store
94
+ * actividades autofill). Present only on cache rows written at
95
+ * PADRON_CACHE_SCHEMA_VERSION >= 2; older rows re-fetch on read. */
96
+ actividades?: {
97
+ id: number;
98
+ description?: string;
99
+ }[];
93
100
  }
94
101
  /**
95
102
  * Cached AFIP/ARCA platform-wide health snapshot (api#1213). One DDB row
package/dist/store.d.ts CHANGED
@@ -360,6 +360,19 @@ declare global {
360
360
  razonSocial?: string;
361
361
  pointOfSale?: number;
362
362
  activitiesStartedAt?: number;
363
+ /** Registered AFIP activity codes (6-digit nomenclador), api#1741 — drives the
364
+ * IVA Simple F.2051 apertura CSV export; autofillable from Padrón A5. */
365
+ actividades?: number[];
366
+ /** Provincial ISIB transparency config (Ley 27.743 art. 99 adhesions), api#1742.
367
+ * v1: CABA only (AGIP Res. 169/26 — prints the RATE, never an amount). `rate` is
368
+ * the store's own Ley Tarifaria percentage (e.g. 3.5 → "3,50%"); `regime: 'cm'`
369
+ * adds the Convenio Multilateral second line; `exempt` prints the exempt legend. */
370
+ iibbTransparency?: {
371
+ jurisdiction: 'caba';
372
+ regime: 'local' | 'cm';
373
+ rate: number;
374
+ exempt?: boolean;
375
+ };
363
376
  invoiceNote?: string;
364
377
  showInvoiceLogo?: boolean;
365
378
  currency: CatalogId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.6.59",
3
+ "version": "1.6.60",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",