sinfactura-types 1.6.60 → 1.6.62

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/invoice.d.ts CHANGED
@@ -99,6 +99,19 @@ declare global {
99
99
  comprasCbte: string;
100
100
  comprasAlicuotas: string;
101
101
  }
102
+ /**
103
+ * `GET /reports?mode=iva-simple-apertura&date=YYYYMM` response (api#1741,
104
+ * IVA Simple F.2051). `rows` is the CRLF-terminated, header-less apertura
105
+ * CSV (`;` separators, `,` decimals) for the accountant to import into
106
+ * Portal IVA; empty string = empty period. `count` = aggregated bucket
107
+ * rows, NOT source vouchers. Requires `Afip.actividades` configured —
108
+ * otherwise `400 ACTIVIDADES_NOT_CONFIGURED`.
109
+ */
110
+ interface IvaSimpleAperturaResponse {
111
+ period: string;
112
+ rows: string;
113
+ count: number;
114
+ }
102
115
  /**
103
116
  * ARCA Obs.Code/Obs.Msg pair, parsed from FECAESolicitar's Observaciones[]
104
117
  * when Resultado='O' (approved-with-warnings). (api#1559)
package/dist/order.d.ts CHANGED
@@ -36,6 +36,7 @@ declare global {
36
36
  status?: "emitted" | "skipped" | "failed";
37
37
  reason?: string;
38
38
  claimId?: string;
39
+ source?: 'auto' | 'manual';
39
40
  };
40
41
  disabled?: boolean;
41
42
  items: Partial<BasketItem>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.6.60",
3
+ "version": "1.6.62",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",