sowhat-types 2.0.184 → 2.0.185
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/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -441,7 +441,7 @@ interface CreateProjectInput {
|
|
|
441
441
|
initialAmount: number;
|
|
442
442
|
monthlyAmount: number;
|
|
443
443
|
need: ProjectNeedEnum;
|
|
444
|
-
financialProduct: FinancialProductEnum;
|
|
444
|
+
financialProduct: FinancialProductEnum | null;
|
|
445
445
|
note: string | null;
|
|
446
446
|
}
|
|
447
447
|
|
|
@@ -451,7 +451,7 @@ interface UpdateProjectInput {
|
|
|
451
451
|
initialAmount?: number;
|
|
452
452
|
monthlyAmount?: number;
|
|
453
453
|
need?: ProjectNeedEnum;
|
|
454
|
-
financialProduct?: FinancialProductEnum;
|
|
454
|
+
financialProduct?: FinancialProductEnum | null;
|
|
455
455
|
note?: string | null;
|
|
456
456
|
}
|
|
457
457
|
|
|
@@ -973,7 +973,7 @@ interface ProjectResponse {
|
|
|
973
973
|
initialAmount: number;
|
|
974
974
|
monthlyAmount: number;
|
|
975
975
|
need: ProjectNeedEnum;
|
|
976
|
-
financialProduct: FinancialProductEnum;
|
|
976
|
+
financialProduct: FinancialProductEnum | null;
|
|
977
977
|
note: string | null;
|
|
978
978
|
updatedAt: Date;
|
|
979
979
|
createdAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -441,7 +441,7 @@ interface CreateProjectInput {
|
|
|
441
441
|
initialAmount: number;
|
|
442
442
|
monthlyAmount: number;
|
|
443
443
|
need: ProjectNeedEnum;
|
|
444
|
-
financialProduct: FinancialProductEnum;
|
|
444
|
+
financialProduct: FinancialProductEnum | null;
|
|
445
445
|
note: string | null;
|
|
446
446
|
}
|
|
447
447
|
|
|
@@ -451,7 +451,7 @@ interface UpdateProjectInput {
|
|
|
451
451
|
initialAmount?: number;
|
|
452
452
|
monthlyAmount?: number;
|
|
453
453
|
need?: ProjectNeedEnum;
|
|
454
|
-
financialProduct?: FinancialProductEnum;
|
|
454
|
+
financialProduct?: FinancialProductEnum | null;
|
|
455
455
|
note?: string | null;
|
|
456
456
|
}
|
|
457
457
|
|
|
@@ -973,7 +973,7 @@ interface ProjectResponse {
|
|
|
973
973
|
initialAmount: number;
|
|
974
974
|
monthlyAmount: number;
|
|
975
975
|
need: ProjectNeedEnum;
|
|
976
|
-
financialProduct: FinancialProductEnum;
|
|
976
|
+
financialProduct: FinancialProductEnum | null;
|
|
977
977
|
note: string | null;
|
|
978
978
|
updatedAt: Date;
|
|
979
979
|
createdAt: Date;
|