hvp-shared 14.10.0 → 14.12.0
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.
|
@@ -42,6 +42,10 @@ export interface CreateRecurringPaymentRequest {
|
|
|
42
42
|
amount?: number;
|
|
43
43
|
/** Day of month to pay (default 1). */
|
|
44
44
|
payDay?: number;
|
|
45
|
+
/** Month the recurring starts applying (ISO, first of month). Defaults to creation month. */
|
|
46
|
+
startDate?: string;
|
|
47
|
+
/** Optional month it stops applying (ISO, first of month). Open-ended if omitted. */
|
|
48
|
+
endDate?: string;
|
|
45
49
|
isActive?: boolean;
|
|
46
50
|
}
|
|
47
51
|
export type UpdateRecurringPaymentRequest = Partial<CreateRecurringPaymentRequest>;
|
|
@@ -30,6 +30,8 @@ export interface SupplierPaymentItem {
|
|
|
30
30
|
paymentMethod?: string;
|
|
31
31
|
/** True when the status came from the automatic premarca (QVET), not a user action. */
|
|
32
32
|
isPremarked?: boolean;
|
|
33
|
+
/** True for a variable recurring whose amount for this month hasn't been captured yet. */
|
|
34
|
+
needsAmount?: boolean;
|
|
33
35
|
/** QVET credit: the invoice this payment settles (grouped by qvetInvoiceId). */
|
|
34
36
|
qvetInvoiceId?: number;
|
|
35
37
|
invoiceNumber?: string;
|