hvp-shared 14.10.0 → 14.11.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>;
|