@leavittsoftware/lg-core-typescript 4.121.0 → 4.123.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.
- package/api3.leavitt.com.ts +5 -5
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -2063,6 +2063,10 @@ export interface FileExplorerFolderDto {
|
|
|
2063
2063
|
Name: string;
|
|
2064
2064
|
}
|
|
2065
2065
|
|
|
2066
|
+
export interface AssignPayerDto {
|
|
2067
|
+
PersonId: number;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2066
2070
|
export interface AdminExpenseCashItemDto {
|
|
2067
2071
|
Amount: Partial<number> | null;
|
|
2068
2072
|
BillToCompanyId: number | null;
|
|
@@ -2071,7 +2075,7 @@ export interface AdminExpenseCashItemDto {
|
|
|
2071
2075
|
Date: string | null;
|
|
2072
2076
|
Description: string | null;
|
|
2073
2077
|
ExpenseCategoryId: number | null;
|
|
2074
|
-
ExpenseFormId: number;
|
|
2078
|
+
ExpenseFormId: number | null;
|
|
2075
2079
|
Id: number | null;
|
|
2076
2080
|
Image: File | null;
|
|
2077
2081
|
Merchant: string | null;
|
|
@@ -2649,10 +2653,6 @@ export interface ReorderEducationSequenceDto {
|
|
|
2649
2653
|
NewOrder: Array<Partial<SequenceDto>>;
|
|
2650
2654
|
}
|
|
2651
2655
|
|
|
2652
|
-
export interface SendPayerNotificationDto {
|
|
2653
|
-
PersonId: number;
|
|
2654
|
-
}
|
|
2655
|
-
|
|
2656
2656
|
export interface UpsertCourseDto {
|
|
2657
2657
|
CategoryIds: Array<number>;
|
|
2658
2658
|
Certificate: File | null;
|