sinfactura-types 1.6.57 → 1.6.58
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 +10 -0
- package/package.json +1 -1
package/dist/invoice.d.ts
CHANGED
|
@@ -272,6 +272,16 @@ declare global {
|
|
|
272
272
|
}[];
|
|
273
273
|
fetchedAt: string;
|
|
274
274
|
}
|
|
275
|
+
/** WSFECRED rejection-motivo catalog (`consultarTiposMotivosRechazo`), refreshed on a
|
|
276
|
+
* schedule. Persists as the platform-wide singleton PLATFORM / FCE_MOTIVOS (AFIP-global,
|
|
277
|
+
* not per-store) — api#1647; mirrors WsfexReferenceData. */
|
|
278
|
+
interface FceMotivosCatalog {
|
|
279
|
+
motivos: {
|
|
280
|
+
codigo: number;
|
|
281
|
+
descripcion?: string;
|
|
282
|
+
}[];
|
|
283
|
+
fetchedAt: string;
|
|
284
|
+
}
|
|
275
285
|
type FceStatus = 'emitted' | 'accepted' | 'rejected' | 'ceded';
|
|
276
286
|
/** FCE-specific fields, present only when Invoice.invoiceType is 201/202/203, 206/207/208, or 211/212/213. */
|
|
277
287
|
interface FceFields {
|