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 +13 -0
- package/dist/order.d.ts +1 -0
- package/package.json +1 -1
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