sunat-engine-nest 2.0.2 → 2.0.3
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.
|
@@ -243,9 +243,19 @@ export interface VoidedPayload {
|
|
|
243
243
|
details: VoidedDetailSunat[];
|
|
244
244
|
}
|
|
245
245
|
export interface CdrResponse {
|
|
246
|
+
cdrId?: string;
|
|
247
|
+
responseDate?: string;
|
|
248
|
+
responseTime?: string;
|
|
246
249
|
code?: string;
|
|
247
250
|
description?: string;
|
|
251
|
+
documentId?: string;
|
|
252
|
+
documentTypeCode?: string;
|
|
253
|
+
issuerId?: string;
|
|
254
|
+
receiverId?: string;
|
|
255
|
+
statusReasonCode?: string;
|
|
256
|
+
statusReason?: string;
|
|
248
257
|
notes?: string[];
|
|
258
|
+
additionalInfo?: string[];
|
|
249
259
|
}
|
|
250
260
|
export interface SunatResponse {
|
|
251
261
|
success?: boolean;
|
package/package.json
CHANGED