@nomalism-com/types 0.27.94 → 0.27.95
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.
|
@@ -104,24 +104,25 @@ export interface IExportPaymentsRequest {
|
|
|
104
104
|
npf_ids?: string[];
|
|
105
105
|
}
|
|
106
106
|
export type IBatchType = "national" | "international" | "null";
|
|
107
|
+
export interface IPaymentsBatchNpfDh {
|
|
108
|
+
id: string;
|
|
109
|
+
name: string;
|
|
110
|
+
sent: boolean;
|
|
111
|
+
owner_id: string;
|
|
112
|
+
owner_number: number;
|
|
113
|
+
owner_name: string;
|
|
114
|
+
owner_email: string | null;
|
|
115
|
+
external_document_header_id: string | null;
|
|
116
|
+
pdf_link: string | null;
|
|
117
|
+
total: number;
|
|
118
|
+
}
|
|
107
119
|
export interface IPaymentsBatchResponse {
|
|
108
120
|
batch_id: string;
|
|
109
121
|
batch_value: number;
|
|
110
122
|
batch_type: IBatchType | null;
|
|
111
123
|
multimedia_id: string | null;
|
|
112
124
|
times_downloaded: number;
|
|
113
|
-
npf_dh:
|
|
114
|
-
id: string;
|
|
115
|
-
name: string;
|
|
116
|
-
sent: boolean;
|
|
117
|
-
owner_id: string;
|
|
118
|
-
owner_number: number;
|
|
119
|
-
owner_name: string;
|
|
120
|
-
owner_email: string | null;
|
|
121
|
-
external_document_header_id: string | null;
|
|
122
|
-
pdf_link: string | null;
|
|
123
|
-
total: number;
|
|
124
|
-
}[];
|
|
125
|
+
npf_dh: IPaymentsBatchNpfDh[];
|
|
125
126
|
updated_at: Date;
|
|
126
127
|
updated_by: string;
|
|
127
128
|
created_at: Date;
|