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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.184",
3
+ "version": "2.0.185",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",