@vergelijkdirect/comparison-forms 2.0.0-rc.26 → 2.0.0-rc.28

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.
@@ -294,9 +294,9 @@ declare interface AddressBearingFormData {
294
294
  }
295
295
 
296
296
  declare interface AddressData {
297
- zipCode?: string;
298
- houseNumber?: string;
299
- houseNumberAddition?: string;
297
+ zipCode: string;
298
+ houseNumber: string;
299
+ houseNumberAddition: string;
300
300
  city?: string;
301
301
  street?: string;
302
302
  }
@@ -538,7 +538,7 @@ export declare const LoanForm: typeof __VLS_export_9;
538
538
 
539
539
  export declare interface LoanFormData extends BirthdateFormData, FamilyCompositionFormData {
540
540
  LoanPurpose: string;
541
- LoanAmount: number | null;
541
+ LoanAmount: number;
542
542
  }
543
543
 
544
544
  export declare function loanPresenter(data: LoanFormData): ComparisonPayload;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vergelijkdirect/comparison-forms",
3
- "version": "2.0.0-rc.26",
3
+ "version": "2.0.0-rc.28",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite --config vite.preview.config.ts --host",