controlresell 2.20.18 → 2.20.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "controlresell",
3
- "version": "2.20.18",
3
+ "version": "2.20.19",
4
4
  "description": "Auto-generated zod project from Kotlin using zodable",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -7,12 +7,12 @@ export declare const CustomersResponseSchema: z.ZodObject<{
7
7
  userId: z.ZodNumber;
8
8
  firstName: z.ZodString;
9
9
  lastName: z.ZodString;
10
- birthDate: z.ZodDate;
11
- email: z.ZodString;
12
- idNumber: z.ZodString;
13
- phone: z.ZodString;
14
- iban: z.ZodString;
15
- bic: z.ZodString;
10
+ birthDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
11
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ idNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
+ iban: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ bic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  phoneVerified: z.ZodBoolean;
17
17
  addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
18
  addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -24,13 +24,13 @@ export declare const CustomersResponseSchema: z.ZodObject<{
24
24
  userId: number;
25
25
  firstName: string;
26
26
  lastName: string;
27
- birthDate: Date;
28
- email: string;
29
- idNumber: string;
30
- phone: string;
31
- iban: string;
32
- bic: string;
33
27
  phoneVerified: boolean;
28
+ birthDate?: Date | null | undefined;
29
+ email?: string | null | undefined;
30
+ idNumber?: string | null | undefined;
31
+ phone?: string | null | undefined;
32
+ iban?: string | null | undefined;
33
+ bic?: string | null | undefined;
34
34
  addressLine1?: string | null | undefined;
35
35
  addressLine2?: string | null | undefined;
36
36
  city?: string | null | undefined;
@@ -41,13 +41,13 @@ export declare const CustomersResponseSchema: z.ZodObject<{
41
41
  userId: number;
42
42
  firstName: string;
43
43
  lastName: string;
44
- birthDate: Date;
45
- email: string;
46
- idNumber: string;
47
- phone: string;
48
- iban: string;
49
- bic: string;
50
44
  phoneVerified: boolean;
45
+ birthDate?: Date | null | undefined;
46
+ email?: string | null | undefined;
47
+ idNumber?: string | null | undefined;
48
+ phone?: string | null | undefined;
49
+ iban?: string | null | undefined;
50
+ bic?: string | null | undefined;
51
51
  addressLine1?: string | null | undefined;
52
52
  addressLine2?: string | null | undefined;
53
53
  city?: string | null | undefined;
@@ -63,13 +63,13 @@ export declare const CustomersResponseSchema: z.ZodObject<{
63
63
  userId: number;
64
64
  firstName: string;
65
65
  lastName: string;
66
- birthDate: Date;
67
- email: string;
68
- idNumber: string;
69
- phone: string;
70
- iban: string;
71
- bic: string;
72
66
  phoneVerified: boolean;
67
+ birthDate?: Date | null | undefined;
68
+ email?: string | null | undefined;
69
+ idNumber?: string | null | undefined;
70
+ phone?: string | null | undefined;
71
+ iban?: string | null | undefined;
72
+ bic?: string | null | undefined;
73
73
  addressLine1?: string | null | undefined;
74
74
  addressLine2?: string | null | undefined;
75
75
  city?: string | null | undefined;
@@ -86,13 +86,13 @@ export declare const CustomersResponseSchema: z.ZodObject<{
86
86
  userId: number;
87
87
  firstName: string;
88
88
  lastName: string;
89
- birthDate: Date;
90
- email: string;
91
- idNumber: string;
92
- phone: string;
93
- iban: string;
94
- bic: string;
95
89
  phoneVerified: boolean;
90
+ birthDate?: Date | null | undefined;
91
+ email?: string | null | undefined;
92
+ idNumber?: string | null | undefined;
93
+ phone?: string | null | undefined;
94
+ iban?: string | null | undefined;
95
+ bic?: string | null | undefined;
96
96
  addressLine1?: string | null | undefined;
97
97
  addressLine2?: string | null | undefined;
98
98
  city?: string | null | undefined;
@@ -91,12 +91,12 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
91
91
  userId: z.ZodNumber;
92
92
  firstName: z.ZodString;
93
93
  lastName: z.ZodString;
94
- birthDate: z.ZodDate;
95
- email: z.ZodString;
96
- idNumber: z.ZodString;
97
- phone: z.ZodString;
98
- iban: z.ZodString;
99
- bic: z.ZodString;
94
+ birthDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
95
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
96
+ idNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
97
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
98
+ iban: z.ZodOptional<z.ZodNullable<z.ZodString>>;
99
+ bic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
100
  phoneVerified: z.ZodBoolean;
101
101
  addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
102
102
  addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -108,13 +108,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
108
108
  userId: number;
109
109
  firstName: string;
110
110
  lastName: string;
111
- birthDate: Date;
112
- email: string;
113
- idNumber: string;
114
- phone: string;
115
- iban: string;
116
- bic: string;
117
111
  phoneVerified: boolean;
112
+ birthDate?: Date | null | undefined;
113
+ email?: string | null | undefined;
114
+ idNumber?: string | null | undefined;
115
+ phone?: string | null | undefined;
116
+ iban?: string | null | undefined;
117
+ bic?: string | null | undefined;
118
118
  addressLine1?: string | null | undefined;
119
119
  addressLine2?: string | null | undefined;
120
120
  city?: string | null | undefined;
@@ -125,13 +125,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
125
125
  userId: number;
126
126
  firstName: string;
127
127
  lastName: string;
128
- birthDate: Date;
129
- email: string;
130
- idNumber: string;
131
- phone: string;
132
- iban: string;
133
- bic: string;
134
128
  phoneVerified: boolean;
129
+ birthDate?: Date | null | undefined;
130
+ email?: string | null | undefined;
131
+ idNumber?: string | null | undefined;
132
+ phone?: string | null | undefined;
133
+ iban?: string | null | undefined;
134
+ bic?: string | null | undefined;
135
135
  addressLine1?: string | null | undefined;
136
136
  addressLine2?: string | null | undefined;
137
137
  city?: string | null | undefined;
@@ -258,13 +258,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
258
258
  userId: number;
259
259
  firstName: string;
260
260
  lastName: string;
261
- birthDate: Date;
262
- email: string;
263
- idNumber: string;
264
- phone: string;
265
- iban: string;
266
- bic: string;
267
261
  phoneVerified: boolean;
262
+ birthDate?: Date | null | undefined;
263
+ email?: string | null | undefined;
264
+ idNumber?: string | null | undefined;
265
+ phone?: string | null | undefined;
266
+ iban?: string | null | undefined;
267
+ bic?: string | null | undefined;
268
268
  addressLine1?: string | null | undefined;
269
269
  addressLine2?: string | null | undefined;
270
270
  city?: string | null | undefined;
@@ -337,13 +337,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
337
337
  userId: number;
338
338
  firstName: string;
339
339
  lastName: string;
340
- birthDate: Date;
341
- email: string;
342
- idNumber: string;
343
- phone: string;
344
- iban: string;
345
- bic: string;
346
340
  phoneVerified: boolean;
341
+ birthDate?: Date | null | undefined;
342
+ email?: string | null | undefined;
343
+ idNumber?: string | null | undefined;
344
+ phone?: string | null | undefined;
345
+ iban?: string | null | undefined;
346
+ bic?: string | null | undefined;
347
347
  addressLine1?: string | null | undefined;
348
348
  addressLine2?: string | null | undefined;
349
349
  city?: string | null | undefined;
@@ -421,13 +421,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
421
421
  userId: number;
422
422
  firstName: string;
423
423
  lastName: string;
424
- birthDate: Date;
425
- email: string;
426
- idNumber: string;
427
- phone: string;
428
- iban: string;
429
- bic: string;
430
424
  phoneVerified: boolean;
425
+ birthDate?: Date | null | undefined;
426
+ email?: string | null | undefined;
427
+ idNumber?: string | null | undefined;
428
+ phone?: string | null | undefined;
429
+ iban?: string | null | undefined;
430
+ bic?: string | null | undefined;
431
431
  addressLine1?: string | null | undefined;
432
432
  addressLine2?: string | null | undefined;
433
433
  city?: string | null | undefined;
@@ -506,13 +506,13 @@ export declare const ListInvoicesResponseSchema: z.ZodObject<{
506
506
  userId: number;
507
507
  firstName: string;
508
508
  lastName: string;
509
- birthDate: Date;
510
- email: string;
511
- idNumber: string;
512
- phone: string;
513
- iban: string;
514
- bic: string;
515
509
  phoneVerified: boolean;
510
+ birthDate?: Date | null | undefined;
511
+ email?: string | null | undefined;
512
+ idNumber?: string | null | undefined;
513
+ phone?: string | null | undefined;
514
+ iban?: string | null | undefined;
515
+ bic?: string | null | undefined;
516
516
  addressLine1?: string | null | undefined;
517
517
  addressLine2?: string | null | undefined;
518
518
  city?: string | null | undefined;
@@ -2706,12 +2706,12 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2706
2706
  userId: z.ZodNumber;
2707
2707
  firstName: z.ZodString;
2708
2708
  lastName: z.ZodString;
2709
- birthDate: z.ZodDate;
2710
- email: z.ZodString;
2711
- idNumber: z.ZodString;
2712
- phone: z.ZodString;
2713
- iban: z.ZodString;
2714
- bic: z.ZodString;
2709
+ birthDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2710
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2711
+ idNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2712
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2713
+ iban: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2714
+ bic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2715
2715
  phoneVerified: z.ZodBoolean;
2716
2716
  addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2717
2717
  addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2723,13 +2723,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2723
2723
  userId: number;
2724
2724
  firstName: string;
2725
2725
  lastName: string;
2726
- birthDate: Date;
2727
- email: string;
2728
- idNumber: string;
2729
- phone: string;
2730
- iban: string;
2731
- bic: string;
2732
2726
  phoneVerified: boolean;
2727
+ birthDate?: Date | null | undefined;
2728
+ email?: string | null | undefined;
2729
+ idNumber?: string | null | undefined;
2730
+ phone?: string | null | undefined;
2731
+ iban?: string | null | undefined;
2732
+ bic?: string | null | undefined;
2733
2733
  addressLine1?: string | null | undefined;
2734
2734
  addressLine2?: string | null | undefined;
2735
2735
  city?: string | null | undefined;
@@ -2740,13 +2740,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2740
2740
  userId: number;
2741
2741
  firstName: string;
2742
2742
  lastName: string;
2743
- birthDate: Date;
2744
- email: string;
2745
- idNumber: string;
2746
- phone: string;
2747
- iban: string;
2748
- bic: string;
2749
2743
  phoneVerified: boolean;
2744
+ birthDate?: Date | null | undefined;
2745
+ email?: string | null | undefined;
2746
+ idNumber?: string | null | undefined;
2747
+ phone?: string | null | undefined;
2748
+ iban?: string | null | undefined;
2749
+ bic?: string | null | undefined;
2750
2750
  addressLine1?: string | null | undefined;
2751
2751
  addressLine2?: string | null | undefined;
2752
2752
  city?: string | null | undefined;
@@ -2873,13 +2873,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2873
2873
  userId: number;
2874
2874
  firstName: string;
2875
2875
  lastName: string;
2876
- birthDate: Date;
2877
- email: string;
2878
- idNumber: string;
2879
- phone: string;
2880
- iban: string;
2881
- bic: string;
2882
2876
  phoneVerified: boolean;
2877
+ birthDate?: Date | null | undefined;
2878
+ email?: string | null | undefined;
2879
+ idNumber?: string | null | undefined;
2880
+ phone?: string | null | undefined;
2881
+ iban?: string | null | undefined;
2882
+ bic?: string | null | undefined;
2883
2883
  addressLine1?: string | null | undefined;
2884
2884
  addressLine2?: string | null | undefined;
2885
2885
  city?: string | null | undefined;
@@ -2952,13 +2952,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2952
2952
  userId: number;
2953
2953
  firstName: string;
2954
2954
  lastName: string;
2955
- birthDate: Date;
2956
- email: string;
2957
- idNumber: string;
2958
- phone: string;
2959
- iban: string;
2960
- bic: string;
2961
2955
  phoneVerified: boolean;
2956
+ birthDate?: Date | null | undefined;
2957
+ email?: string | null | undefined;
2958
+ idNumber?: string | null | undefined;
2959
+ phone?: string | null | undefined;
2960
+ iban?: string | null | undefined;
2961
+ bic?: string | null | undefined;
2962
2962
  addressLine1?: string | null | undefined;
2963
2963
  addressLine2?: string | null | undefined;
2964
2964
  city?: string | null | undefined;
@@ -3066,13 +3066,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
3066
3066
  userId: number;
3067
3067
  firstName: string;
3068
3068
  lastName: string;
3069
- birthDate: Date;
3070
- email: string;
3071
- idNumber: string;
3072
- phone: string;
3073
- iban: string;
3074
- bic: string;
3075
3069
  phoneVerified: boolean;
3070
+ birthDate?: Date | null | undefined;
3071
+ email?: string | null | undefined;
3072
+ idNumber?: string | null | undefined;
3073
+ phone?: string | null | undefined;
3074
+ iban?: string | null | undefined;
3075
+ bic?: string | null | undefined;
3076
3076
  addressLine1?: string | null | undefined;
3077
3077
  addressLine2?: string | null | undefined;
3078
3078
  city?: string | null | undefined;
@@ -3180,13 +3180,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
3180
3180
  userId: number;
3181
3181
  firstName: string;
3182
3182
  lastName: string;
3183
- birthDate: Date;
3184
- email: string;
3185
- idNumber: string;
3186
- phone: string;
3187
- iban: string;
3188
- bic: string;
3189
3183
  phoneVerified: boolean;
3184
+ birthDate?: Date | null | undefined;
3185
+ email?: string | null | undefined;
3186
+ idNumber?: string | null | undefined;
3187
+ phone?: string | null | undefined;
3188
+ iban?: string | null | undefined;
3189
+ bic?: string | null | undefined;
3190
3190
  addressLine1?: string | null | undefined;
3191
3191
  addressLine2?: string | null | undefined;
3192
3192
  city?: string | null | undefined;
@@ -3680,13 +3680,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
3680
3680
  userId: number;
3681
3681
  firstName: string;
3682
3682
  lastName: string;
3683
- birthDate: Date;
3684
- email: string;
3685
- idNumber: string;
3686
- phone: string;
3687
- iban: string;
3688
- bic: string;
3689
3683
  phoneVerified: boolean;
3684
+ birthDate?: Date | null | undefined;
3685
+ email?: string | null | undefined;
3686
+ idNumber?: string | null | undefined;
3687
+ phone?: string | null | undefined;
3688
+ iban?: string | null | undefined;
3689
+ bic?: string | null | undefined;
3690
3690
  addressLine1?: string | null | undefined;
3691
3691
  addressLine2?: string | null | undefined;
3692
3692
  city?: string | null | undefined;
@@ -4180,13 +4180,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
4180
4180
  userId: number;
4181
4181
  firstName: string;
4182
4182
  lastName: string;
4183
- birthDate: Date;
4184
- email: string;
4185
- idNumber: string;
4186
- phone: string;
4187
- iban: string;
4188
- bic: string;
4189
4183
  phoneVerified: boolean;
4184
+ birthDate?: Date | null | undefined;
4185
+ email?: string | null | undefined;
4186
+ idNumber?: string | null | undefined;
4187
+ phone?: string | null | undefined;
4188
+ iban?: string | null | undefined;
4189
+ bic?: string | null | undefined;
4190
4190
  addressLine1?: string | null | undefined;
4191
4191
  addressLine2?: string | null | undefined;
4192
4192
  city?: string | null | undefined;
@@ -4685,13 +4685,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
4685
4685
  userId: number;
4686
4686
  firstName: string;
4687
4687
  lastName: string;
4688
- birthDate: Date;
4689
- email: string;
4690
- idNumber: string;
4691
- phone: string;
4692
- iban: string;
4693
- bic: string;
4694
4688
  phoneVerified: boolean;
4689
+ birthDate?: Date | null | undefined;
4690
+ email?: string | null | undefined;
4691
+ idNumber?: string | null | undefined;
4692
+ phone?: string | null | undefined;
4693
+ iban?: string | null | undefined;
4694
+ bic?: string | null | undefined;
4695
4695
  addressLine1?: string | null | undefined;
4696
4696
  addressLine2?: string | null | undefined;
4697
4697
  city?: string | null | undefined;
@@ -5191,13 +5191,13 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
5191
5191
  userId: number;
5192
5192
  firstName: string;
5193
5193
  lastName: string;
5194
- birthDate: Date;
5195
- email: string;
5196
- idNumber: string;
5197
- phone: string;
5198
- iban: string;
5199
- bic: string;
5200
5194
  phoneVerified: boolean;
5195
+ birthDate?: Date | null | undefined;
5196
+ email?: string | null | undefined;
5197
+ idNumber?: string | null | undefined;
5198
+ phone?: string | null | undefined;
5199
+ iban?: string | null | undefined;
5200
+ bic?: string | null | undefined;
5201
5201
  addressLine1?: string | null | undefined;
5202
5202
  addressLine2?: string | null | undefined;
5203
5203
  city?: string | null | undefined;
@@ -2703,12 +2703,12 @@ export declare const ListedItemSchema: z.ZodObject<{
2703
2703
  userId: z.ZodNumber;
2704
2704
  firstName: z.ZodString;
2705
2705
  lastName: z.ZodString;
2706
- birthDate: z.ZodDate;
2707
- email: z.ZodString;
2708
- idNumber: z.ZodString;
2709
- phone: z.ZodString;
2710
- iban: z.ZodString;
2711
- bic: z.ZodString;
2706
+ birthDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2707
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2708
+ idNumber: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2709
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2710
+ iban: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2711
+ bic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2712
2712
  phoneVerified: z.ZodBoolean;
2713
2713
  addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2714
2714
  addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2720,13 +2720,13 @@ export declare const ListedItemSchema: z.ZodObject<{
2720
2720
  userId: number;
2721
2721
  firstName: string;
2722
2722
  lastName: string;
2723
- birthDate: Date;
2724
- email: string;
2725
- idNumber: string;
2726
- phone: string;
2727
- iban: string;
2728
- bic: string;
2729
2723
  phoneVerified: boolean;
2724
+ birthDate?: Date | null | undefined;
2725
+ email?: string | null | undefined;
2726
+ idNumber?: string | null | undefined;
2727
+ phone?: string | null | undefined;
2728
+ iban?: string | null | undefined;
2729
+ bic?: string | null | undefined;
2730
2730
  addressLine1?: string | null | undefined;
2731
2731
  addressLine2?: string | null | undefined;
2732
2732
  city?: string | null | undefined;
@@ -2737,13 +2737,13 @@ export declare const ListedItemSchema: z.ZodObject<{
2737
2737
  userId: number;
2738
2738
  firstName: string;
2739
2739
  lastName: string;
2740
- birthDate: Date;
2741
- email: string;
2742
- idNumber: string;
2743
- phone: string;
2744
- iban: string;
2745
- bic: string;
2746
2740
  phoneVerified: boolean;
2741
+ birthDate?: Date | null | undefined;
2742
+ email?: string | null | undefined;
2743
+ idNumber?: string | null | undefined;
2744
+ phone?: string | null | undefined;
2745
+ iban?: string | null | undefined;
2746
+ bic?: string | null | undefined;
2747
2747
  addressLine1?: string | null | undefined;
2748
2748
  addressLine2?: string | null | undefined;
2749
2749
  city?: string | null | undefined;
@@ -2870,13 +2870,13 @@ export declare const ListedItemSchema: z.ZodObject<{
2870
2870
  userId: number;
2871
2871
  firstName: string;
2872
2872
  lastName: string;
2873
- birthDate: Date;
2874
- email: string;
2875
- idNumber: string;
2876
- phone: string;
2877
- iban: string;
2878
- bic: string;
2879
2873
  phoneVerified: boolean;
2874
+ birthDate?: Date | null | undefined;
2875
+ email?: string | null | undefined;
2876
+ idNumber?: string | null | undefined;
2877
+ phone?: string | null | undefined;
2878
+ iban?: string | null | undefined;
2879
+ bic?: string | null | undefined;
2880
2880
  addressLine1?: string | null | undefined;
2881
2881
  addressLine2?: string | null | undefined;
2882
2882
  city?: string | null | undefined;
@@ -2949,13 +2949,13 @@ export declare const ListedItemSchema: z.ZodObject<{
2949
2949
  userId: number;
2950
2950
  firstName: string;
2951
2951
  lastName: string;
2952
- birthDate: Date;
2953
- email: string;
2954
- idNumber: string;
2955
- phone: string;
2956
- iban: string;
2957
- bic: string;
2958
2952
  phoneVerified: boolean;
2953
+ birthDate?: Date | null | undefined;
2954
+ email?: string | null | undefined;
2955
+ idNumber?: string | null | undefined;
2956
+ phone?: string | null | undefined;
2957
+ iban?: string | null | undefined;
2958
+ bic?: string | null | undefined;
2959
2959
  addressLine1?: string | null | undefined;
2960
2960
  addressLine2?: string | null | undefined;
2961
2961
  city?: string | null | undefined;
@@ -3063,13 +3063,13 @@ export declare const ListedItemSchema: z.ZodObject<{
3063
3063
  userId: number;
3064
3064
  firstName: string;
3065
3065
  lastName: string;
3066
- birthDate: Date;
3067
- email: string;
3068
- idNumber: string;
3069
- phone: string;
3070
- iban: string;
3071
- bic: string;
3072
3066
  phoneVerified: boolean;
3067
+ birthDate?: Date | null | undefined;
3068
+ email?: string | null | undefined;
3069
+ idNumber?: string | null | undefined;
3070
+ phone?: string | null | undefined;
3071
+ iban?: string | null | undefined;
3072
+ bic?: string | null | undefined;
3073
3073
  addressLine1?: string | null | undefined;
3074
3074
  addressLine2?: string | null | undefined;
3075
3075
  city?: string | null | undefined;
@@ -3177,13 +3177,13 @@ export declare const ListedItemSchema: z.ZodObject<{
3177
3177
  userId: number;
3178
3178
  firstName: string;
3179
3179
  lastName: string;
3180
- birthDate: Date;
3181
- email: string;
3182
- idNumber: string;
3183
- phone: string;
3184
- iban: string;
3185
- bic: string;
3186
3180
  phoneVerified: boolean;
3181
+ birthDate?: Date | null | undefined;
3182
+ email?: string | null | undefined;
3183
+ idNumber?: string | null | undefined;
3184
+ phone?: string | null | undefined;
3185
+ iban?: string | null | undefined;
3186
+ bic?: string | null | undefined;
3187
3187
  addressLine1?: string | null | undefined;
3188
3188
  addressLine2?: string | null | undefined;
3189
3189
  city?: string | null | undefined;
@@ -3677,13 +3677,13 @@ export declare const ListedItemSchema: z.ZodObject<{
3677
3677
  userId: number;
3678
3678
  firstName: string;
3679
3679
  lastName: string;
3680
- birthDate: Date;
3681
- email: string;
3682
- idNumber: string;
3683
- phone: string;
3684
- iban: string;
3685
- bic: string;
3686
3680
  phoneVerified: boolean;
3681
+ birthDate?: Date | null | undefined;
3682
+ email?: string | null | undefined;
3683
+ idNumber?: string | null | undefined;
3684
+ phone?: string | null | undefined;
3685
+ iban?: string | null | undefined;
3686
+ bic?: string | null | undefined;
3687
3687
  addressLine1?: string | null | undefined;
3688
3688
  addressLine2?: string | null | undefined;
3689
3689
  city?: string | null | undefined;
@@ -4177,13 +4177,13 @@ export declare const ListedItemSchema: z.ZodObject<{
4177
4177
  userId: number;
4178
4178
  firstName: string;
4179
4179
  lastName: string;
4180
- birthDate: Date;
4181
- email: string;
4182
- idNumber: string;
4183
- phone: string;
4184
- iban: string;
4185
- bic: string;
4186
4180
  phoneVerified: boolean;
4181
+ birthDate?: Date | null | undefined;
4182
+ email?: string | null | undefined;
4183
+ idNumber?: string | null | undefined;
4184
+ phone?: string | null | undefined;
4185
+ iban?: string | null | undefined;
4186
+ bic?: string | null | undefined;
4187
4187
  addressLine1?: string | null | undefined;
4188
4188
  addressLine2?: string | null | undefined;
4189
4189
  city?: string | null | undefined;