@deliverart/sdk-js-company 1.1.3 → 1.1.5

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.
Files changed (3) hide show
  1. package/dist/index.d.cts +695 -695
  2. package/dist/index.d.ts +695 -695
  3. package/package.json +4 -4
package/dist/index.d.cts CHANGED
@@ -10,26 +10,26 @@ declare const companySchema: z.ZodObject<{
10
10
  vat: z.ZodString;
11
11
  taxCode: z.ZodNullable<z.ZodString>;
12
12
  operationalAddress: z.ZodObject<{
13
- line1: z.ZodString;
13
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
- city: z.ZodString;
16
- region: z.ZodString;
17
- postalCode: z.ZodString;
18
- country: z.ZodString;
15
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
19
  }, "strip", z.ZodTypeAny, {
20
- line1: string;
21
- city: string;
22
- region: string;
23
- postalCode: string;
24
- country: string;
20
+ line1?: string | null | undefined;
25
21
  line2?: string | null | undefined;
22
+ city?: string | null | undefined;
23
+ region?: string | null | undefined;
24
+ postalCode?: string | null | undefined;
25
+ country?: string | null | undefined;
26
26
  }, {
27
- line1: string;
28
- city: string;
29
- region: string;
30
- postalCode: string;
31
- country: string;
27
+ line1?: string | null | undefined;
32
28
  line2?: string | null | undefined;
29
+ city?: string | null | undefined;
30
+ region?: string | null | undefined;
31
+ postalCode?: string | null | undefined;
32
+ country?: string | null | undefined;
33
33
  }>;
34
34
  createdAt: z.ZodEffects<z.ZodString, string, string>;
35
35
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
@@ -39,12 +39,12 @@ declare const companySchema: z.ZodObject<{
39
39
  vat: string;
40
40
  taxCode: string | null;
41
41
  operationalAddress: {
42
- line1: string;
43
- city: string;
44
- region: string;
45
- postalCode: string;
46
- country: string;
42
+ line1?: string | null | undefined;
47
43
  line2?: string | null | undefined;
44
+ city?: string | null | undefined;
45
+ region?: string | null | undefined;
46
+ postalCode?: string | null | undefined;
47
+ country?: string | null | undefined;
48
48
  };
49
49
  createdAt: string;
50
50
  updatedAt: string;
@@ -54,12 +54,12 @@ declare const companySchema: z.ZodObject<{
54
54
  vat: string;
55
55
  taxCode: string | null;
56
56
  operationalAddress: {
57
- line1: string;
58
- city: string;
59
- region: string;
60
- postalCode: string;
61
- country: string;
57
+ line1?: string | null | undefined;
62
58
  line2?: string | null | undefined;
59
+ city?: string | null | undefined;
60
+ region?: string | null | undefined;
61
+ postalCode?: string | null | undefined;
62
+ country?: string | null | undefined;
63
63
  };
64
64
  createdAt: string;
65
65
  updatedAt: string;
@@ -71,51 +71,51 @@ declare const companyDetailsSchema: z.ZodObject<{
71
71
  vat: z.ZodString;
72
72
  taxCode: z.ZodNullable<z.ZodString>;
73
73
  operationalAddress: z.ZodObject<{
74
- line1: z.ZodString;
74
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
75
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
- city: z.ZodString;
77
- region: z.ZodString;
78
- postalCode: z.ZodString;
79
- country: z.ZodString;
76
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
77
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
78
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
79
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80
80
  }, "strip", z.ZodTypeAny, {
81
- line1: string;
82
- city: string;
83
- region: string;
84
- postalCode: string;
85
- country: string;
81
+ line1?: string | null | undefined;
86
82
  line2?: string | null | undefined;
83
+ city?: string | null | undefined;
84
+ region?: string | null | undefined;
85
+ postalCode?: string | null | undefined;
86
+ country?: string | null | undefined;
87
87
  }, {
88
- line1: string;
89
- city: string;
90
- region: string;
91
- postalCode: string;
92
- country: string;
88
+ line1?: string | null | undefined;
93
89
  line2?: string | null | undefined;
90
+ city?: string | null | undefined;
91
+ region?: string | null | undefined;
92
+ postalCode?: string | null | undefined;
93
+ country?: string | null | undefined;
94
94
  }>;
95
95
  createdAt: z.ZodEffects<z.ZodString, string, string>;
96
96
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
97
97
  } & {
98
98
  billingAddress: z.ZodObject<{
99
- line1: z.ZodString;
99
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
100
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
101
- city: z.ZodString;
102
- region: z.ZodString;
103
- postalCode: z.ZodString;
104
- country: z.ZodString;
101
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
102
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
103
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
104
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
105
105
  }, "strip", z.ZodTypeAny, {
106
- line1: string;
107
- city: string;
108
- region: string;
109
- postalCode: string;
110
- country: string;
106
+ line1?: string | null | undefined;
111
107
  line2?: string | null | undefined;
108
+ city?: string | null | undefined;
109
+ region?: string | null | undefined;
110
+ postalCode?: string | null | undefined;
111
+ country?: string | null | undefined;
112
112
  }, {
113
- line1: string;
114
- city: string;
115
- region: string;
116
- postalCode: string;
117
- country: string;
113
+ line1?: string | null | undefined;
118
114
  line2?: string | null | undefined;
115
+ city?: string | null | undefined;
116
+ region?: string | null | undefined;
117
+ postalCode?: string | null | undefined;
118
+ country?: string | null | undefined;
119
119
  }>;
120
120
  billingData: z.ZodEffects<z.ZodObject<{
121
121
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -140,22 +140,22 @@ declare const companyDetailsSchema: z.ZodObject<{
140
140
  vat: string;
141
141
  taxCode: string | null;
142
142
  operationalAddress: {
143
- line1: string;
144
- city: string;
145
- region: string;
146
- postalCode: string;
147
- country: string;
143
+ line1?: string | null | undefined;
148
144
  line2?: string | null | undefined;
145
+ city?: string | null | undefined;
146
+ region?: string | null | undefined;
147
+ postalCode?: string | null | undefined;
148
+ country?: string | null | undefined;
149
149
  };
150
150
  createdAt: string;
151
151
  updatedAt: string;
152
152
  billingAddress: {
153
- line1: string;
154
- city: string;
155
- region: string;
156
- postalCode: string;
157
- country: string;
153
+ line1?: string | null | undefined;
158
154
  line2?: string | null | undefined;
155
+ city?: string | null | undefined;
156
+ region?: string | null | undefined;
157
+ postalCode?: string | null | undefined;
158
+ country?: string | null | undefined;
159
159
  };
160
160
  billingData: {
161
161
  sdi?: string | null | undefined;
@@ -168,22 +168,22 @@ declare const companyDetailsSchema: z.ZodObject<{
168
168
  vat: string;
169
169
  taxCode: string | null;
170
170
  operationalAddress: {
171
- line1: string;
172
- city: string;
173
- region: string;
174
- postalCode: string;
175
- country: string;
171
+ line1?: string | null | undefined;
176
172
  line2?: string | null | undefined;
173
+ city?: string | null | undefined;
174
+ region?: string | null | undefined;
175
+ postalCode?: string | null | undefined;
176
+ country?: string | null | undefined;
177
177
  };
178
178
  createdAt: string;
179
179
  updatedAt: string;
180
180
  billingAddress: {
181
- line1: string;
182
- city: string;
183
- region: string;
184
- postalCode: string;
185
- country: string;
181
+ line1?: string | null | undefined;
186
182
  line2?: string | null | undefined;
183
+ city?: string | null | undefined;
184
+ region?: string | null | undefined;
185
+ postalCode?: string | null | undefined;
186
+ country?: string | null | undefined;
187
187
  };
188
188
  billingData: {
189
189
  sdi?: string | null | undefined;
@@ -198,51 +198,51 @@ declare const writableCompanySchema: z.ZodObject<Pick<{
198
198
  vat: z.ZodString;
199
199
  taxCode: z.ZodNullable<z.ZodString>;
200
200
  operationalAddress: z.ZodObject<{
201
- line1: z.ZodString;
201
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
202
202
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
203
- city: z.ZodString;
204
- region: z.ZodString;
205
- postalCode: z.ZodString;
206
- country: z.ZodString;
203
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
204
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
205
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
206
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
207
207
  }, "strip", z.ZodTypeAny, {
208
- line1: string;
209
- city: string;
210
- region: string;
211
- postalCode: string;
212
- country: string;
208
+ line1?: string | null | undefined;
213
209
  line2?: string | null | undefined;
210
+ city?: string | null | undefined;
211
+ region?: string | null | undefined;
212
+ postalCode?: string | null | undefined;
213
+ country?: string | null | undefined;
214
214
  }, {
215
- line1: string;
216
- city: string;
217
- region: string;
218
- postalCode: string;
219
- country: string;
215
+ line1?: string | null | undefined;
220
216
  line2?: string | null | undefined;
217
+ city?: string | null | undefined;
218
+ region?: string | null | undefined;
219
+ postalCode?: string | null | undefined;
220
+ country?: string | null | undefined;
221
221
  }>;
222
222
  createdAt: z.ZodEffects<z.ZodString, string, string>;
223
223
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
224
224
  } & {
225
225
  billingAddress: z.ZodObject<{
226
- line1: z.ZodString;
226
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
227
227
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
228
- city: z.ZodString;
229
- region: z.ZodString;
230
- postalCode: z.ZodString;
231
- country: z.ZodString;
228
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
229
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
230
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
231
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
232
232
  }, "strip", z.ZodTypeAny, {
233
- line1: string;
234
- city: string;
235
- region: string;
236
- postalCode: string;
237
- country: string;
233
+ line1?: string | null | undefined;
238
234
  line2?: string | null | undefined;
235
+ city?: string | null | undefined;
236
+ region?: string | null | undefined;
237
+ postalCode?: string | null | undefined;
238
+ country?: string | null | undefined;
239
239
  }, {
240
- line1: string;
241
- city: string;
242
- region: string;
243
- postalCode: string;
244
- country: string;
240
+ line1?: string | null | undefined;
245
241
  line2?: string | null | undefined;
242
+ city?: string | null | undefined;
243
+ region?: string | null | undefined;
244
+ postalCode?: string | null | undefined;
245
+ country?: string | null | undefined;
246
246
  }>;
247
247
  billingData: z.ZodEffects<z.ZodObject<{
248
248
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -266,20 +266,20 @@ declare const writableCompanySchema: z.ZodObject<Pick<{
266
266
  vat: string;
267
267
  taxCode: string | null;
268
268
  operationalAddress: {
269
- line1: string;
270
- city: string;
271
- region: string;
272
- postalCode: string;
273
- country: string;
269
+ line1?: string | null | undefined;
274
270
  line2?: string | null | undefined;
271
+ city?: string | null | undefined;
272
+ region?: string | null | undefined;
273
+ postalCode?: string | null | undefined;
274
+ country?: string | null | undefined;
275
275
  };
276
276
  billingAddress: {
277
- line1: string;
278
- city: string;
279
- region: string;
280
- postalCode: string;
281
- country: string;
277
+ line1?: string | null | undefined;
282
278
  line2?: string | null | undefined;
279
+ city?: string | null | undefined;
280
+ region?: string | null | undefined;
281
+ postalCode?: string | null | undefined;
282
+ country?: string | null | undefined;
283
283
  };
284
284
  billingData: {
285
285
  sdi?: string | null | undefined;
@@ -291,20 +291,20 @@ declare const writableCompanySchema: z.ZodObject<Pick<{
291
291
  vat: string;
292
292
  taxCode: string | null;
293
293
  operationalAddress: {
294
- line1: string;
295
- city: string;
296
- region: string;
297
- postalCode: string;
298
- country: string;
294
+ line1?: string | null | undefined;
299
295
  line2?: string | null | undefined;
296
+ city?: string | null | undefined;
297
+ region?: string | null | undefined;
298
+ postalCode?: string | null | undefined;
299
+ country?: string | null | undefined;
300
300
  };
301
301
  billingAddress: {
302
- line1: string;
303
- city: string;
304
- region: string;
305
- postalCode: string;
306
- country: string;
302
+ line1?: string | null | undefined;
307
303
  line2?: string | null | undefined;
304
+ city?: string | null | undefined;
305
+ region?: string | null | undefined;
306
+ postalCode?: string | null | undefined;
307
+ country?: string | null | undefined;
308
308
  };
309
309
  billingData: {
310
310
  sdi?: string | null | undefined;
@@ -356,48 +356,48 @@ declare const createCompanyInputSchema: z.ZodObject<{
356
356
  vat: z.ZodString;
357
357
  taxCode: z.ZodNullable<z.ZodString>;
358
358
  operationalAddress: z.ZodObject<{
359
- line1: z.ZodString;
359
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
360
360
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
361
- city: z.ZodString;
362
- region: z.ZodString;
363
- postalCode: z.ZodString;
364
- country: z.ZodString;
361
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
362
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
363
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
364
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
365
365
  }, "strip", z.ZodTypeAny, {
366
- line1: string;
367
- city: string;
368
- region: string;
369
- postalCode: string;
370
- country: string;
366
+ line1?: string | null | undefined;
371
367
  line2?: string | null | undefined;
368
+ city?: string | null | undefined;
369
+ region?: string | null | undefined;
370
+ postalCode?: string | null | undefined;
371
+ country?: string | null | undefined;
372
372
  }, {
373
- line1: string;
374
- city: string;
375
- region: string;
376
- postalCode: string;
377
- country: string;
373
+ line1?: string | null | undefined;
378
374
  line2?: string | null | undefined;
375
+ city?: string | null | undefined;
376
+ region?: string | null | undefined;
377
+ postalCode?: string | null | undefined;
378
+ country?: string | null | undefined;
379
379
  }>;
380
380
  billingAddress: z.ZodObject<{
381
- line1: z.ZodString;
381
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
382
382
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
383
- city: z.ZodString;
384
- region: z.ZodString;
385
- postalCode: z.ZodString;
386
- country: z.ZodString;
383
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
384
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
385
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
386
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
387
387
  }, "strip", z.ZodTypeAny, {
388
- line1: string;
389
- city: string;
390
- region: string;
391
- postalCode: string;
392
- country: string;
388
+ line1?: string | null | undefined;
393
389
  line2?: string | null | undefined;
390
+ city?: string | null | undefined;
391
+ region?: string | null | undefined;
392
+ postalCode?: string | null | undefined;
393
+ country?: string | null | undefined;
394
394
  }, {
395
- line1: string;
396
- city: string;
397
- region: string;
398
- postalCode: string;
399
- country: string;
395
+ line1?: string | null | undefined;
400
396
  line2?: string | null | undefined;
397
+ city?: string | null | undefined;
398
+ region?: string | null | undefined;
399
+ postalCode?: string | null | undefined;
400
+ country?: string | null | undefined;
401
401
  }>;
402
402
  billingData: z.ZodEffects<z.ZodObject<{
403
403
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -421,20 +421,20 @@ declare const createCompanyInputSchema: z.ZodObject<{
421
421
  vat: string;
422
422
  taxCode: string | null;
423
423
  operationalAddress: {
424
- line1: string;
425
- city: string;
426
- region: string;
427
- postalCode: string;
428
- country: string;
424
+ line1?: string | null | undefined;
429
425
  line2?: string | null | undefined;
426
+ city?: string | null | undefined;
427
+ region?: string | null | undefined;
428
+ postalCode?: string | null | undefined;
429
+ country?: string | null | undefined;
430
430
  };
431
431
  billingAddress: {
432
- line1: string;
433
- city: string;
434
- region: string;
435
- postalCode: string;
436
- country: string;
432
+ line1?: string | null | undefined;
437
433
  line2?: string | null | undefined;
434
+ city?: string | null | undefined;
435
+ region?: string | null | undefined;
436
+ postalCode?: string | null | undefined;
437
+ country?: string | null | undefined;
438
438
  };
439
439
  billingData: {
440
440
  sdi?: string | null | undefined;
@@ -446,20 +446,20 @@ declare const createCompanyInputSchema: z.ZodObject<{
446
446
  vat: string;
447
447
  taxCode: string | null;
448
448
  operationalAddress: {
449
- line1: string;
450
- city: string;
451
- region: string;
452
- postalCode: string;
453
- country: string;
449
+ line1?: string | null | undefined;
454
450
  line2?: string | null | undefined;
451
+ city?: string | null | undefined;
452
+ region?: string | null | undefined;
453
+ postalCode?: string | null | undefined;
454
+ country?: string | null | undefined;
455
455
  };
456
456
  billingAddress: {
457
- line1: string;
458
- city: string;
459
- region: string;
460
- postalCode: string;
461
- country: string;
457
+ line1?: string | null | undefined;
462
458
  line2?: string | null | undefined;
459
+ city?: string | null | undefined;
460
+ region?: string | null | undefined;
461
+ postalCode?: string | null | undefined;
462
+ country?: string | null | undefined;
463
463
  };
464
464
  billingData: {
465
465
  sdi?: string | null | undefined;
@@ -474,51 +474,51 @@ declare const createCompanyResponseSchema: z.ZodObject<{
474
474
  vat: z.ZodString;
475
475
  taxCode: z.ZodNullable<z.ZodString>;
476
476
  operationalAddress: z.ZodObject<{
477
- line1: z.ZodString;
477
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
478
478
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
479
- city: z.ZodString;
480
- region: z.ZodString;
481
- postalCode: z.ZodString;
482
- country: z.ZodString;
479
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
480
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
481
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
482
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
483
483
  }, "strip", z.ZodTypeAny, {
484
- line1: string;
485
- city: string;
486
- region: string;
487
- postalCode: string;
488
- country: string;
484
+ line1?: string | null | undefined;
489
485
  line2?: string | null | undefined;
486
+ city?: string | null | undefined;
487
+ region?: string | null | undefined;
488
+ postalCode?: string | null | undefined;
489
+ country?: string | null | undefined;
490
490
  }, {
491
- line1: string;
492
- city: string;
493
- region: string;
494
- postalCode: string;
495
- country: string;
491
+ line1?: string | null | undefined;
496
492
  line2?: string | null | undefined;
493
+ city?: string | null | undefined;
494
+ region?: string | null | undefined;
495
+ postalCode?: string | null | undefined;
496
+ country?: string | null | undefined;
497
497
  }>;
498
498
  createdAt: z.ZodEffects<z.ZodString, string, string>;
499
499
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
500
500
  } & {
501
501
  billingAddress: z.ZodObject<{
502
- line1: z.ZodString;
502
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
503
503
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
504
- city: z.ZodString;
505
- region: z.ZodString;
506
- postalCode: z.ZodString;
507
- country: z.ZodString;
504
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
505
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
506
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
507
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
508
508
  }, "strip", z.ZodTypeAny, {
509
- line1: string;
510
- city: string;
511
- region: string;
512
- postalCode: string;
513
- country: string;
509
+ line1?: string | null | undefined;
514
510
  line2?: string | null | undefined;
511
+ city?: string | null | undefined;
512
+ region?: string | null | undefined;
513
+ postalCode?: string | null | undefined;
514
+ country?: string | null | undefined;
515
515
  }, {
516
- line1: string;
517
- city: string;
518
- region: string;
519
- postalCode: string;
520
- country: string;
516
+ line1?: string | null | undefined;
521
517
  line2?: string | null | undefined;
518
+ city?: string | null | undefined;
519
+ region?: string | null | undefined;
520
+ postalCode?: string | null | undefined;
521
+ country?: string | null | undefined;
522
522
  }>;
523
523
  billingData: z.ZodEffects<z.ZodObject<{
524
524
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -543,22 +543,22 @@ declare const createCompanyResponseSchema: z.ZodObject<{
543
543
  vat: string;
544
544
  taxCode: string | null;
545
545
  operationalAddress: {
546
- line1: string;
547
- city: string;
548
- region: string;
549
- postalCode: string;
550
- country: string;
546
+ line1?: string | null | undefined;
551
547
  line2?: string | null | undefined;
548
+ city?: string | null | undefined;
549
+ region?: string | null | undefined;
550
+ postalCode?: string | null | undefined;
551
+ country?: string | null | undefined;
552
552
  };
553
553
  createdAt: string;
554
554
  updatedAt: string;
555
555
  billingAddress: {
556
- line1: string;
557
- city: string;
558
- region: string;
559
- postalCode: string;
560
- country: string;
556
+ line1?: string | null | undefined;
561
557
  line2?: string | null | undefined;
558
+ city?: string | null | undefined;
559
+ region?: string | null | undefined;
560
+ postalCode?: string | null | undefined;
561
+ country?: string | null | undefined;
562
562
  };
563
563
  billingData: {
564
564
  sdi?: string | null | undefined;
@@ -571,22 +571,22 @@ declare const createCompanyResponseSchema: z.ZodObject<{
571
571
  vat: string;
572
572
  taxCode: string | null;
573
573
  operationalAddress: {
574
- line1: string;
575
- city: string;
576
- region: string;
577
- postalCode: string;
578
- country: string;
574
+ line1?: string | null | undefined;
579
575
  line2?: string | null | undefined;
576
+ city?: string | null | undefined;
577
+ region?: string | null | undefined;
578
+ postalCode?: string | null | undefined;
579
+ country?: string | null | undefined;
580
580
  };
581
581
  createdAt: string;
582
582
  updatedAt: string;
583
583
  billingAddress: {
584
- line1: string;
585
- city: string;
586
- region: string;
587
- postalCode: string;
588
- country: string;
584
+ line1?: string | null | undefined;
589
585
  line2?: string | null | undefined;
586
+ city?: string | null | undefined;
587
+ region?: string | null | undefined;
588
+ postalCode?: string | null | undefined;
589
+ country?: string | null | undefined;
590
590
  };
591
591
  billingData: {
592
592
  sdi?: string | null | undefined;
@@ -604,48 +604,48 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
604
604
  vat: z.ZodString;
605
605
  taxCode: z.ZodNullable<z.ZodString>;
606
606
  operationalAddress: z.ZodObject<{
607
- line1: z.ZodString;
607
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
608
608
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
609
- city: z.ZodString;
610
- region: z.ZodString;
611
- postalCode: z.ZodString;
612
- country: z.ZodString;
609
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
610
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
611
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
612
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
613
613
  }, "strip", z.ZodTypeAny, {
614
- line1: string;
615
- city: string;
616
- region: string;
617
- postalCode: string;
618
- country: string;
614
+ line1?: string | null | undefined;
619
615
  line2?: string | null | undefined;
616
+ city?: string | null | undefined;
617
+ region?: string | null | undefined;
618
+ postalCode?: string | null | undefined;
619
+ country?: string | null | undefined;
620
620
  }, {
621
- line1: string;
622
- city: string;
623
- region: string;
624
- postalCode: string;
625
- country: string;
621
+ line1?: string | null | undefined;
626
622
  line2?: string | null | undefined;
623
+ city?: string | null | undefined;
624
+ region?: string | null | undefined;
625
+ postalCode?: string | null | undefined;
626
+ country?: string | null | undefined;
627
627
  }>;
628
628
  billingAddress: z.ZodObject<{
629
- line1: z.ZodString;
629
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
630
630
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
631
- city: z.ZodString;
632
- region: z.ZodString;
633
- postalCode: z.ZodString;
634
- country: z.ZodString;
631
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
632
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
633
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
634
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
635
635
  }, "strip", z.ZodTypeAny, {
636
- line1: string;
637
- city: string;
638
- region: string;
639
- postalCode: string;
640
- country: string;
636
+ line1?: string | null | undefined;
641
637
  line2?: string | null | undefined;
638
+ city?: string | null | undefined;
639
+ region?: string | null | undefined;
640
+ postalCode?: string | null | undefined;
641
+ country?: string | null | undefined;
642
642
  }, {
643
- line1: string;
644
- city: string;
645
- region: string;
646
- postalCode: string;
647
- country: string;
643
+ line1?: string | null | undefined;
648
644
  line2?: string | null | undefined;
645
+ city?: string | null | undefined;
646
+ region?: string | null | undefined;
647
+ postalCode?: string | null | undefined;
648
+ country?: string | null | undefined;
649
649
  }>;
650
650
  billingData: z.ZodEffects<z.ZodObject<{
651
651
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -669,20 +669,20 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
669
669
  vat: string;
670
670
  taxCode: string | null;
671
671
  operationalAddress: {
672
- line1: string;
673
- city: string;
674
- region: string;
675
- postalCode: string;
676
- country: string;
672
+ line1?: string | null | undefined;
677
673
  line2?: string | null | undefined;
674
+ city?: string | null | undefined;
675
+ region?: string | null | undefined;
676
+ postalCode?: string | null | undefined;
677
+ country?: string | null | undefined;
678
678
  };
679
679
  billingAddress: {
680
- line1: string;
681
- city: string;
682
- region: string;
683
- postalCode: string;
684
- country: string;
680
+ line1?: string | null | undefined;
685
681
  line2?: string | null | undefined;
682
+ city?: string | null | undefined;
683
+ region?: string | null | undefined;
684
+ postalCode?: string | null | undefined;
685
+ country?: string | null | undefined;
686
686
  };
687
687
  billingData: {
688
688
  sdi?: string | null | undefined;
@@ -694,20 +694,20 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
694
694
  vat: string;
695
695
  taxCode: string | null;
696
696
  operationalAddress: {
697
- line1: string;
698
- city: string;
699
- region: string;
700
- postalCode: string;
701
- country: string;
697
+ line1?: string | null | undefined;
702
698
  line2?: string | null | undefined;
699
+ city?: string | null | undefined;
700
+ region?: string | null | undefined;
701
+ postalCode?: string | null | undefined;
702
+ country?: string | null | undefined;
703
703
  };
704
704
  billingAddress: {
705
- line1: string;
706
- city: string;
707
- region: string;
708
- postalCode: string;
709
- country: string;
705
+ line1?: string | null | undefined;
710
706
  line2?: string | null | undefined;
707
+ city?: string | null | undefined;
708
+ region?: string | null | undefined;
709
+ postalCode?: string | null | undefined;
710
+ country?: string | null | undefined;
711
711
  };
712
712
  billingData: {
713
713
  sdi?: string | null | undefined;
@@ -721,51 +721,51 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
721
721
  vat: z.ZodString;
722
722
  taxCode: z.ZodNullable<z.ZodString>;
723
723
  operationalAddress: z.ZodObject<{
724
- line1: z.ZodString;
724
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
725
725
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
726
- city: z.ZodString;
727
- region: z.ZodString;
728
- postalCode: z.ZodString;
729
- country: z.ZodString;
726
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
727
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
728
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
729
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
730
730
  }, "strip", z.ZodTypeAny, {
731
- line1: string;
732
- city: string;
733
- region: string;
734
- postalCode: string;
735
- country: string;
731
+ line1?: string | null | undefined;
736
732
  line2?: string | null | undefined;
733
+ city?: string | null | undefined;
734
+ region?: string | null | undefined;
735
+ postalCode?: string | null | undefined;
736
+ country?: string | null | undefined;
737
737
  }, {
738
- line1: string;
739
- city: string;
740
- region: string;
741
- postalCode: string;
742
- country: string;
738
+ line1?: string | null | undefined;
743
739
  line2?: string | null | undefined;
740
+ city?: string | null | undefined;
741
+ region?: string | null | undefined;
742
+ postalCode?: string | null | undefined;
743
+ country?: string | null | undefined;
744
744
  }>;
745
745
  createdAt: z.ZodEffects<z.ZodString, string, string>;
746
746
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
747
747
  } & {
748
748
  billingAddress: z.ZodObject<{
749
- line1: z.ZodString;
749
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
750
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
751
- city: z.ZodString;
752
- region: z.ZodString;
753
- postalCode: z.ZodString;
754
- country: z.ZodString;
751
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
752
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
754
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
755
755
  }, "strip", z.ZodTypeAny, {
756
- line1: string;
757
- city: string;
758
- region: string;
759
- postalCode: string;
760
- country: string;
756
+ line1?: string | null | undefined;
761
757
  line2?: string | null | undefined;
758
+ city?: string | null | undefined;
759
+ region?: string | null | undefined;
760
+ postalCode?: string | null | undefined;
761
+ country?: string | null | undefined;
762
762
  }, {
763
- line1: string;
764
- city: string;
765
- region: string;
766
- postalCode: string;
767
- country: string;
763
+ line1?: string | null | undefined;
768
764
  line2?: string | null | undefined;
765
+ city?: string | null | undefined;
766
+ region?: string | null | undefined;
767
+ postalCode?: string | null | undefined;
768
+ country?: string | null | undefined;
769
769
  }>;
770
770
  billingData: z.ZodEffects<z.ZodObject<{
771
771
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -790,22 +790,22 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
790
790
  vat: string;
791
791
  taxCode: string | null;
792
792
  operationalAddress: {
793
- line1: string;
794
- city: string;
795
- region: string;
796
- postalCode: string;
797
- country: string;
793
+ line1?: string | null | undefined;
798
794
  line2?: string | null | undefined;
795
+ city?: string | null | undefined;
796
+ region?: string | null | undefined;
797
+ postalCode?: string | null | undefined;
798
+ country?: string | null | undefined;
799
799
  };
800
800
  createdAt: string;
801
801
  updatedAt: string;
802
802
  billingAddress: {
803
- line1: string;
804
- city: string;
805
- region: string;
806
- postalCode: string;
807
- country: string;
803
+ line1?: string | null | undefined;
808
804
  line2?: string | null | undefined;
805
+ city?: string | null | undefined;
806
+ region?: string | null | undefined;
807
+ postalCode?: string | null | undefined;
808
+ country?: string | null | undefined;
809
809
  };
810
810
  billingData: {
811
811
  sdi?: string | null | undefined;
@@ -818,22 +818,22 @@ declare class CreateCompany extends AbstractApiRequest<typeof createCompanyInput
818
818
  vat: string;
819
819
  taxCode: string | null;
820
820
  operationalAddress: {
821
- line1: string;
822
- city: string;
823
- region: string;
824
- postalCode: string;
825
- country: string;
821
+ line1?: string | null | undefined;
826
822
  line2?: string | null | undefined;
823
+ city?: string | null | undefined;
824
+ region?: string | null | undefined;
825
+ postalCode?: string | null | undefined;
826
+ country?: string | null | undefined;
827
827
  };
828
828
  createdAt: string;
829
829
  updatedAt: string;
830
830
  billingAddress: {
831
- line1: string;
832
- city: string;
833
- region: string;
834
- postalCode: string;
835
- country: string;
831
+ line1?: string | null | undefined;
836
832
  line2?: string | null | undefined;
833
+ city?: string | null | undefined;
834
+ region?: string | null | undefined;
835
+ postalCode?: string | null | undefined;
836
+ country?: string | null | undefined;
837
837
  };
838
838
  billingData: {
839
839
  sdi?: string | null | undefined;
@@ -909,26 +909,26 @@ declare const getCompaniesResponseSchema: z.ZodObject<{
909
909
  vat: z.ZodString;
910
910
  taxCode: z.ZodNullable<z.ZodString>;
911
911
  operationalAddress: z.ZodObject<{
912
- line1: z.ZodString;
912
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
913
913
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
914
- city: z.ZodString;
915
- region: z.ZodString;
916
- postalCode: z.ZodString;
917
- country: z.ZodString;
914
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
915
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
916
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
917
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
918
918
  }, "strip", z.ZodTypeAny, {
919
- line1: string;
920
- city: string;
921
- region: string;
922
- postalCode: string;
923
- country: string;
919
+ line1?: string | null | undefined;
924
920
  line2?: string | null | undefined;
921
+ city?: string | null | undefined;
922
+ region?: string | null | undefined;
923
+ postalCode?: string | null | undefined;
924
+ country?: string | null | undefined;
925
925
  }, {
926
- line1: string;
927
- city: string;
928
- region: string;
929
- postalCode: string;
930
- country: string;
926
+ line1?: string | null | undefined;
931
927
  line2?: string | null | undefined;
928
+ city?: string | null | undefined;
929
+ region?: string | null | undefined;
930
+ postalCode?: string | null | undefined;
931
+ country?: string | null | undefined;
932
932
  }>;
933
933
  createdAt: z.ZodEffects<z.ZodString, string, string>;
934
934
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
@@ -938,12 +938,12 @@ declare const getCompaniesResponseSchema: z.ZodObject<{
938
938
  vat: string;
939
939
  taxCode: string | null;
940
940
  operationalAddress: {
941
- line1: string;
942
- city: string;
943
- region: string;
944
- postalCode: string;
945
- country: string;
941
+ line1?: string | null | undefined;
946
942
  line2?: string | null | undefined;
943
+ city?: string | null | undefined;
944
+ region?: string | null | undefined;
945
+ postalCode?: string | null | undefined;
946
+ country?: string | null | undefined;
947
947
  };
948
948
  createdAt: string;
949
949
  updatedAt: string;
@@ -953,12 +953,12 @@ declare const getCompaniesResponseSchema: z.ZodObject<{
953
953
  vat: string;
954
954
  taxCode: string | null;
955
955
  operationalAddress: {
956
- line1: string;
957
- city: string;
958
- region: string;
959
- postalCode: string;
960
- country: string;
956
+ line1?: string | null | undefined;
961
957
  line2?: string | null | undefined;
958
+ city?: string | null | undefined;
959
+ region?: string | null | undefined;
960
+ postalCode?: string | null | undefined;
961
+ country?: string | null | undefined;
962
962
  };
963
963
  createdAt: string;
964
964
  updatedAt: string;
@@ -992,12 +992,12 @@ declare const getCompaniesResponseSchema: z.ZodObject<{
992
992
  vat: string;
993
993
  taxCode: string | null;
994
994
  operationalAddress: {
995
- line1: string;
996
- city: string;
997
- region: string;
998
- postalCode: string;
999
- country: string;
995
+ line1?: string | null | undefined;
1000
996
  line2?: string | null | undefined;
997
+ city?: string | null | undefined;
998
+ region?: string | null | undefined;
999
+ postalCode?: string | null | undefined;
1000
+ country?: string | null | undefined;
1001
1001
  };
1002
1002
  createdAt: string;
1003
1003
  updatedAt: string;
@@ -1017,12 +1017,12 @@ declare const getCompaniesResponseSchema: z.ZodObject<{
1017
1017
  vat: string;
1018
1018
  taxCode: string | null;
1019
1019
  operationalAddress: {
1020
- line1: string;
1021
- city: string;
1022
- region: string;
1023
- postalCode: string;
1024
- country: string;
1020
+ line1?: string | null | undefined;
1025
1021
  line2?: string | null | undefined;
1022
+ city?: string | null | undefined;
1023
+ region?: string | null | undefined;
1024
+ postalCode?: string | null | undefined;
1025
+ country?: string | null | undefined;
1026
1026
  };
1027
1027
  createdAt: string;
1028
1028
  updatedAt: string;
@@ -1049,26 +1049,26 @@ declare class GetCompanies extends AbstractApiRequest<typeof getCompaniesInputSc
1049
1049
  vat: z.ZodString;
1050
1050
  taxCode: z.ZodNullable<z.ZodString>;
1051
1051
  operationalAddress: z.ZodObject<{
1052
- line1: z.ZodString;
1052
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1053
1053
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1054
- city: z.ZodString;
1055
- region: z.ZodString;
1056
- postalCode: z.ZodString;
1057
- country: z.ZodString;
1054
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1055
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1056
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1057
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1058
1058
  }, "strip", z.ZodTypeAny, {
1059
- line1: string;
1060
- city: string;
1061
- region: string;
1062
- postalCode: string;
1063
- country: string;
1059
+ line1?: string | null | undefined;
1064
1060
  line2?: string | null | undefined;
1061
+ city?: string | null | undefined;
1062
+ region?: string | null | undefined;
1063
+ postalCode?: string | null | undefined;
1064
+ country?: string | null | undefined;
1065
1065
  }, {
1066
- line1: string;
1067
- city: string;
1068
- region: string;
1069
- postalCode: string;
1070
- country: string;
1066
+ line1?: string | null | undefined;
1071
1067
  line2?: string | null | undefined;
1068
+ city?: string | null | undefined;
1069
+ region?: string | null | undefined;
1070
+ postalCode?: string | null | undefined;
1071
+ country?: string | null | undefined;
1072
1072
  }>;
1073
1073
  createdAt: z.ZodEffects<z.ZodString, string, string>;
1074
1074
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
@@ -1078,12 +1078,12 @@ declare class GetCompanies extends AbstractApiRequest<typeof getCompaniesInputSc
1078
1078
  vat: string;
1079
1079
  taxCode: string | null;
1080
1080
  operationalAddress: {
1081
- line1: string;
1082
- city: string;
1083
- region: string;
1084
- postalCode: string;
1085
- country: string;
1081
+ line1?: string | null | undefined;
1086
1082
  line2?: string | null | undefined;
1083
+ city?: string | null | undefined;
1084
+ region?: string | null | undefined;
1085
+ postalCode?: string | null | undefined;
1086
+ country?: string | null | undefined;
1087
1087
  };
1088
1088
  createdAt: string;
1089
1089
  updatedAt: string;
@@ -1093,12 +1093,12 @@ declare class GetCompanies extends AbstractApiRequest<typeof getCompaniesInputSc
1093
1093
  vat: string;
1094
1094
  taxCode: string | null;
1095
1095
  operationalAddress: {
1096
- line1: string;
1097
- city: string;
1098
- region: string;
1099
- postalCode: string;
1100
- country: string;
1096
+ line1?: string | null | undefined;
1101
1097
  line2?: string | null | undefined;
1098
+ city?: string | null | undefined;
1099
+ region?: string | null | undefined;
1100
+ postalCode?: string | null | undefined;
1101
+ country?: string | null | undefined;
1102
1102
  };
1103
1103
  createdAt: string;
1104
1104
  updatedAt: string;
@@ -1132,12 +1132,12 @@ declare class GetCompanies extends AbstractApiRequest<typeof getCompaniesInputSc
1132
1132
  vat: string;
1133
1133
  taxCode: string | null;
1134
1134
  operationalAddress: {
1135
- line1: string;
1136
- city: string;
1137
- region: string;
1138
- postalCode: string;
1139
- country: string;
1135
+ line1?: string | null | undefined;
1140
1136
  line2?: string | null | undefined;
1137
+ city?: string | null | undefined;
1138
+ region?: string | null | undefined;
1139
+ postalCode?: string | null | undefined;
1140
+ country?: string | null | undefined;
1141
1141
  };
1142
1142
  createdAt: string;
1143
1143
  updatedAt: string;
@@ -1157,12 +1157,12 @@ declare class GetCompanies extends AbstractApiRequest<typeof getCompaniesInputSc
1157
1157
  vat: string;
1158
1158
  taxCode: string | null;
1159
1159
  operationalAddress: {
1160
- line1: string;
1161
- city: string;
1162
- region: string;
1163
- postalCode: string;
1164
- country: string;
1160
+ line1?: string | null | undefined;
1165
1161
  line2?: string | null | undefined;
1162
+ city?: string | null | undefined;
1163
+ region?: string | null | undefined;
1164
+ postalCode?: string | null | undefined;
1165
+ country?: string | null | undefined;
1166
1166
  };
1167
1167
  createdAt: string;
1168
1168
  updatedAt: string;
@@ -1229,51 +1229,51 @@ declare const getCompanyDetailsResponseSchema: z.ZodObject<{
1229
1229
  vat: z.ZodString;
1230
1230
  taxCode: z.ZodNullable<z.ZodString>;
1231
1231
  operationalAddress: z.ZodObject<{
1232
- line1: z.ZodString;
1232
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1233
1233
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1234
- city: z.ZodString;
1235
- region: z.ZodString;
1236
- postalCode: z.ZodString;
1237
- country: z.ZodString;
1234
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1235
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1236
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1237
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
1238
  }, "strip", z.ZodTypeAny, {
1239
- line1: string;
1240
- city: string;
1241
- region: string;
1242
- postalCode: string;
1243
- country: string;
1239
+ line1?: string | null | undefined;
1244
1240
  line2?: string | null | undefined;
1241
+ city?: string | null | undefined;
1242
+ region?: string | null | undefined;
1243
+ postalCode?: string | null | undefined;
1244
+ country?: string | null | undefined;
1245
1245
  }, {
1246
- line1: string;
1247
- city: string;
1248
- region: string;
1249
- postalCode: string;
1250
- country: string;
1246
+ line1?: string | null | undefined;
1251
1247
  line2?: string | null | undefined;
1248
+ city?: string | null | undefined;
1249
+ region?: string | null | undefined;
1250
+ postalCode?: string | null | undefined;
1251
+ country?: string | null | undefined;
1252
1252
  }>;
1253
1253
  createdAt: z.ZodEffects<z.ZodString, string, string>;
1254
1254
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
1255
1255
  } & {
1256
1256
  billingAddress: z.ZodObject<{
1257
- line1: z.ZodString;
1257
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1258
1258
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1259
- city: z.ZodString;
1260
- region: z.ZodString;
1261
- postalCode: z.ZodString;
1262
- country: z.ZodString;
1259
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1260
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1261
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1262
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1263
1263
  }, "strip", z.ZodTypeAny, {
1264
- line1: string;
1265
- city: string;
1266
- region: string;
1267
- postalCode: string;
1268
- country: string;
1264
+ line1?: string | null | undefined;
1269
1265
  line2?: string | null | undefined;
1266
+ city?: string | null | undefined;
1267
+ region?: string | null | undefined;
1268
+ postalCode?: string | null | undefined;
1269
+ country?: string | null | undefined;
1270
1270
  }, {
1271
- line1: string;
1272
- city: string;
1273
- region: string;
1274
- postalCode: string;
1275
- country: string;
1271
+ line1?: string | null | undefined;
1276
1272
  line2?: string | null | undefined;
1273
+ city?: string | null | undefined;
1274
+ region?: string | null | undefined;
1275
+ postalCode?: string | null | undefined;
1276
+ country?: string | null | undefined;
1277
1277
  }>;
1278
1278
  billingData: z.ZodEffects<z.ZodObject<{
1279
1279
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1298,22 +1298,22 @@ declare const getCompanyDetailsResponseSchema: z.ZodObject<{
1298
1298
  vat: string;
1299
1299
  taxCode: string | null;
1300
1300
  operationalAddress: {
1301
- line1: string;
1302
- city: string;
1303
- region: string;
1304
- postalCode: string;
1305
- country: string;
1301
+ line1?: string | null | undefined;
1306
1302
  line2?: string | null | undefined;
1303
+ city?: string | null | undefined;
1304
+ region?: string | null | undefined;
1305
+ postalCode?: string | null | undefined;
1306
+ country?: string | null | undefined;
1307
1307
  };
1308
1308
  createdAt: string;
1309
1309
  updatedAt: string;
1310
1310
  billingAddress: {
1311
- line1: string;
1312
- city: string;
1313
- region: string;
1314
- postalCode: string;
1315
- country: string;
1311
+ line1?: string | null | undefined;
1316
1312
  line2?: string | null | undefined;
1313
+ city?: string | null | undefined;
1314
+ region?: string | null | undefined;
1315
+ postalCode?: string | null | undefined;
1316
+ country?: string | null | undefined;
1317
1317
  };
1318
1318
  billingData: {
1319
1319
  sdi?: string | null | undefined;
@@ -1326,22 +1326,22 @@ declare const getCompanyDetailsResponseSchema: z.ZodObject<{
1326
1326
  vat: string;
1327
1327
  taxCode: string | null;
1328
1328
  operationalAddress: {
1329
- line1: string;
1330
- city: string;
1331
- region: string;
1332
- postalCode: string;
1333
- country: string;
1329
+ line1?: string | null | undefined;
1334
1330
  line2?: string | null | undefined;
1331
+ city?: string | null | undefined;
1332
+ region?: string | null | undefined;
1333
+ postalCode?: string | null | undefined;
1334
+ country?: string | null | undefined;
1335
1335
  };
1336
1336
  createdAt: string;
1337
1337
  updatedAt: string;
1338
1338
  billingAddress: {
1339
- line1: string;
1340
- city: string;
1341
- region: string;
1342
- postalCode: string;
1343
- country: string;
1339
+ line1?: string | null | undefined;
1344
1340
  line2?: string | null | undefined;
1341
+ city?: string | null | undefined;
1342
+ region?: string | null | undefined;
1343
+ postalCode?: string | null | undefined;
1344
+ country?: string | null | undefined;
1345
1345
  };
1346
1346
  billingData: {
1347
1347
  sdi?: string | null | undefined;
@@ -1361,51 +1361,51 @@ declare class GetCompanyDetails extends AbstractApiRequest<typeof getCompanyDeta
1361
1361
  vat: z.ZodString;
1362
1362
  taxCode: z.ZodNullable<z.ZodString>;
1363
1363
  operationalAddress: z.ZodObject<{
1364
- line1: z.ZodString;
1364
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1365
1365
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1366
- city: z.ZodString;
1367
- region: z.ZodString;
1368
- postalCode: z.ZodString;
1369
- country: z.ZodString;
1366
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1367
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1368
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1369
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1370
1370
  }, "strip", z.ZodTypeAny, {
1371
- line1: string;
1372
- city: string;
1373
- region: string;
1374
- postalCode: string;
1375
- country: string;
1371
+ line1?: string | null | undefined;
1376
1372
  line2?: string | null | undefined;
1373
+ city?: string | null | undefined;
1374
+ region?: string | null | undefined;
1375
+ postalCode?: string | null | undefined;
1376
+ country?: string | null | undefined;
1377
1377
  }, {
1378
- line1: string;
1379
- city: string;
1380
- region: string;
1381
- postalCode: string;
1382
- country: string;
1378
+ line1?: string | null | undefined;
1383
1379
  line2?: string | null | undefined;
1380
+ city?: string | null | undefined;
1381
+ region?: string | null | undefined;
1382
+ postalCode?: string | null | undefined;
1383
+ country?: string | null | undefined;
1384
1384
  }>;
1385
1385
  createdAt: z.ZodEffects<z.ZodString, string, string>;
1386
1386
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
1387
1387
  } & {
1388
1388
  billingAddress: z.ZodObject<{
1389
- line1: z.ZodString;
1389
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1390
1390
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1391
- city: z.ZodString;
1392
- region: z.ZodString;
1393
- postalCode: z.ZodString;
1394
- country: z.ZodString;
1391
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1392
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1393
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1394
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1395
1395
  }, "strip", z.ZodTypeAny, {
1396
- line1: string;
1397
- city: string;
1398
- region: string;
1399
- postalCode: string;
1400
- country: string;
1396
+ line1?: string | null | undefined;
1401
1397
  line2?: string | null | undefined;
1398
+ city?: string | null | undefined;
1399
+ region?: string | null | undefined;
1400
+ postalCode?: string | null | undefined;
1401
+ country?: string | null | undefined;
1402
1402
  }, {
1403
- line1: string;
1404
- city: string;
1405
- region: string;
1406
- postalCode: string;
1407
- country: string;
1403
+ line1?: string | null | undefined;
1408
1404
  line2?: string | null | undefined;
1405
+ city?: string | null | undefined;
1406
+ region?: string | null | undefined;
1407
+ postalCode?: string | null | undefined;
1408
+ country?: string | null | undefined;
1409
1409
  }>;
1410
1410
  billingData: z.ZodEffects<z.ZodObject<{
1411
1411
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1430,22 +1430,22 @@ declare class GetCompanyDetails extends AbstractApiRequest<typeof getCompanyDeta
1430
1430
  vat: string;
1431
1431
  taxCode: string | null;
1432
1432
  operationalAddress: {
1433
- line1: string;
1434
- city: string;
1435
- region: string;
1436
- postalCode: string;
1437
- country: string;
1433
+ line1?: string | null | undefined;
1438
1434
  line2?: string | null | undefined;
1435
+ city?: string | null | undefined;
1436
+ region?: string | null | undefined;
1437
+ postalCode?: string | null | undefined;
1438
+ country?: string | null | undefined;
1439
1439
  };
1440
1440
  createdAt: string;
1441
1441
  updatedAt: string;
1442
1442
  billingAddress: {
1443
- line1: string;
1444
- city: string;
1445
- region: string;
1446
- postalCode: string;
1447
- country: string;
1443
+ line1?: string | null | undefined;
1448
1444
  line2?: string | null | undefined;
1445
+ city?: string | null | undefined;
1446
+ region?: string | null | undefined;
1447
+ postalCode?: string | null | undefined;
1448
+ country?: string | null | undefined;
1449
1449
  };
1450
1450
  billingData: {
1451
1451
  sdi?: string | null | undefined;
@@ -1458,22 +1458,22 @@ declare class GetCompanyDetails extends AbstractApiRequest<typeof getCompanyDeta
1458
1458
  vat: string;
1459
1459
  taxCode: string | null;
1460
1460
  operationalAddress: {
1461
- line1: string;
1462
- city: string;
1463
- region: string;
1464
- postalCode: string;
1465
- country: string;
1461
+ line1?: string | null | undefined;
1466
1462
  line2?: string | null | undefined;
1463
+ city?: string | null | undefined;
1464
+ region?: string | null | undefined;
1465
+ postalCode?: string | null | undefined;
1466
+ country?: string | null | undefined;
1467
1467
  };
1468
1468
  createdAt: string;
1469
1469
  updatedAt: string;
1470
1470
  billingAddress: {
1471
- line1: string;
1472
- city: string;
1473
- region: string;
1474
- postalCode: string;
1475
- country: string;
1471
+ line1?: string | null | undefined;
1476
1472
  line2?: string | null | undefined;
1473
+ city?: string | null | undefined;
1474
+ region?: string | null | undefined;
1475
+ postalCode?: string | null | undefined;
1476
+ country?: string | null | undefined;
1477
1477
  };
1478
1478
  billingData: {
1479
1479
  sdi?: string | null | undefined;
@@ -1493,48 +1493,48 @@ declare const updateCompanyInputSchema: z.ZodObject<{
1493
1493
  vat: z.ZodOptional<z.ZodString>;
1494
1494
  taxCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1495
1495
  operationalAddress: z.ZodOptional<z.ZodObject<{
1496
- line1: z.ZodString;
1496
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1497
1497
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1498
- city: z.ZodString;
1499
- region: z.ZodString;
1500
- postalCode: z.ZodString;
1501
- country: z.ZodString;
1498
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1499
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1500
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1501
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1502
1502
  }, "strip", z.ZodTypeAny, {
1503
- line1: string;
1504
- city: string;
1505
- region: string;
1506
- postalCode: string;
1507
- country: string;
1503
+ line1?: string | null | undefined;
1508
1504
  line2?: string | null | undefined;
1505
+ city?: string | null | undefined;
1506
+ region?: string | null | undefined;
1507
+ postalCode?: string | null | undefined;
1508
+ country?: string | null | undefined;
1509
1509
  }, {
1510
- line1: string;
1511
- city: string;
1512
- region: string;
1513
- postalCode: string;
1514
- country: string;
1510
+ line1?: string | null | undefined;
1515
1511
  line2?: string | null | undefined;
1512
+ city?: string | null | undefined;
1513
+ region?: string | null | undefined;
1514
+ postalCode?: string | null | undefined;
1515
+ country?: string | null | undefined;
1516
1516
  }>>;
1517
1517
  billingAddress: z.ZodOptional<z.ZodObject<{
1518
- line1: z.ZodString;
1518
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1519
1519
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1520
- city: z.ZodString;
1521
- region: z.ZodString;
1522
- postalCode: z.ZodString;
1523
- country: z.ZodString;
1520
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1521
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1522
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1523
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1524
1524
  }, "strip", z.ZodTypeAny, {
1525
- line1: string;
1526
- city: string;
1527
- region: string;
1528
- postalCode: string;
1529
- country: string;
1525
+ line1?: string | null | undefined;
1530
1526
  line2?: string | null | undefined;
1527
+ city?: string | null | undefined;
1528
+ region?: string | null | undefined;
1529
+ postalCode?: string | null | undefined;
1530
+ country?: string | null | undefined;
1531
1531
  }, {
1532
- line1: string;
1533
- city: string;
1534
- region: string;
1535
- postalCode: string;
1536
- country: string;
1532
+ line1?: string | null | undefined;
1537
1533
  line2?: string | null | undefined;
1534
+ city?: string | null | undefined;
1535
+ region?: string | null | undefined;
1536
+ postalCode?: string | null | undefined;
1537
+ country?: string | null | undefined;
1538
1538
  }>>;
1539
1539
  billingData: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1540
1540
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1558,20 +1558,20 @@ declare const updateCompanyInputSchema: z.ZodObject<{
1558
1558
  vat?: string | undefined;
1559
1559
  taxCode?: string | null | undefined;
1560
1560
  operationalAddress?: {
1561
- line1: string;
1562
- city: string;
1563
- region: string;
1564
- postalCode: string;
1565
- country: string;
1561
+ line1?: string | null | undefined;
1566
1562
  line2?: string | null | undefined;
1563
+ city?: string | null | undefined;
1564
+ region?: string | null | undefined;
1565
+ postalCode?: string | null | undefined;
1566
+ country?: string | null | undefined;
1567
1567
  } | undefined;
1568
1568
  billingAddress?: {
1569
- line1: string;
1570
- city: string;
1571
- region: string;
1572
- postalCode: string;
1573
- country: string;
1569
+ line1?: string | null | undefined;
1574
1570
  line2?: string | null | undefined;
1571
+ city?: string | null | undefined;
1572
+ region?: string | null | undefined;
1573
+ postalCode?: string | null | undefined;
1574
+ country?: string | null | undefined;
1575
1575
  } | undefined;
1576
1576
  billingData?: {
1577
1577
  sdi?: string | null | undefined;
@@ -1583,20 +1583,20 @@ declare const updateCompanyInputSchema: z.ZodObject<{
1583
1583
  vat?: string | undefined;
1584
1584
  taxCode?: string | null | undefined;
1585
1585
  operationalAddress?: {
1586
- line1: string;
1587
- city: string;
1588
- region: string;
1589
- postalCode: string;
1590
- country: string;
1586
+ line1?: string | null | undefined;
1591
1587
  line2?: string | null | undefined;
1588
+ city?: string | null | undefined;
1589
+ region?: string | null | undefined;
1590
+ postalCode?: string | null | undefined;
1591
+ country?: string | null | undefined;
1592
1592
  } | undefined;
1593
1593
  billingAddress?: {
1594
- line1: string;
1595
- city: string;
1596
- region: string;
1597
- postalCode: string;
1598
- country: string;
1594
+ line1?: string | null | undefined;
1599
1595
  line2?: string | null | undefined;
1596
+ city?: string | null | undefined;
1597
+ region?: string | null | undefined;
1598
+ postalCode?: string | null | undefined;
1599
+ country?: string | null | undefined;
1600
1600
  } | undefined;
1601
1601
  billingData?: {
1602
1602
  sdi?: string | null | undefined;
@@ -1611,51 +1611,51 @@ declare const updateCompanyResponseSchema: z.ZodObject<{
1611
1611
  vat: z.ZodString;
1612
1612
  taxCode: z.ZodNullable<z.ZodString>;
1613
1613
  operationalAddress: z.ZodObject<{
1614
- line1: z.ZodString;
1614
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1615
1615
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1616
- city: z.ZodString;
1617
- region: z.ZodString;
1618
- postalCode: z.ZodString;
1619
- country: z.ZodString;
1616
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1617
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1618
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1619
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1620
1620
  }, "strip", z.ZodTypeAny, {
1621
- line1: string;
1622
- city: string;
1623
- region: string;
1624
- postalCode: string;
1625
- country: string;
1621
+ line1?: string | null | undefined;
1626
1622
  line2?: string | null | undefined;
1623
+ city?: string | null | undefined;
1624
+ region?: string | null | undefined;
1625
+ postalCode?: string | null | undefined;
1626
+ country?: string | null | undefined;
1627
1627
  }, {
1628
- line1: string;
1629
- city: string;
1630
- region: string;
1631
- postalCode: string;
1632
- country: string;
1628
+ line1?: string | null | undefined;
1633
1629
  line2?: string | null | undefined;
1630
+ city?: string | null | undefined;
1631
+ region?: string | null | undefined;
1632
+ postalCode?: string | null | undefined;
1633
+ country?: string | null | undefined;
1634
1634
  }>;
1635
1635
  createdAt: z.ZodEffects<z.ZodString, string, string>;
1636
1636
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
1637
1637
  } & {
1638
1638
  billingAddress: z.ZodObject<{
1639
- line1: z.ZodString;
1639
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1640
1640
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1641
- city: z.ZodString;
1642
- region: z.ZodString;
1643
- postalCode: z.ZodString;
1644
- country: z.ZodString;
1641
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1642
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1643
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1644
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1645
1645
  }, "strip", z.ZodTypeAny, {
1646
- line1: string;
1647
- city: string;
1648
- region: string;
1649
- postalCode: string;
1650
- country: string;
1646
+ line1?: string | null | undefined;
1651
1647
  line2?: string | null | undefined;
1648
+ city?: string | null | undefined;
1649
+ region?: string | null | undefined;
1650
+ postalCode?: string | null | undefined;
1651
+ country?: string | null | undefined;
1652
1652
  }, {
1653
- line1: string;
1654
- city: string;
1655
- region: string;
1656
- postalCode: string;
1657
- country: string;
1653
+ line1?: string | null | undefined;
1658
1654
  line2?: string | null | undefined;
1655
+ city?: string | null | undefined;
1656
+ region?: string | null | undefined;
1657
+ postalCode?: string | null | undefined;
1658
+ country?: string | null | undefined;
1659
1659
  }>;
1660
1660
  billingData: z.ZodEffects<z.ZodObject<{
1661
1661
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1680,22 +1680,22 @@ declare const updateCompanyResponseSchema: z.ZodObject<{
1680
1680
  vat: string;
1681
1681
  taxCode: string | null;
1682
1682
  operationalAddress: {
1683
- line1: string;
1684
- city: string;
1685
- region: string;
1686
- postalCode: string;
1687
- country: string;
1683
+ line1?: string | null | undefined;
1688
1684
  line2?: string | null | undefined;
1685
+ city?: string | null | undefined;
1686
+ region?: string | null | undefined;
1687
+ postalCode?: string | null | undefined;
1688
+ country?: string | null | undefined;
1689
1689
  };
1690
1690
  createdAt: string;
1691
1691
  updatedAt: string;
1692
1692
  billingAddress: {
1693
- line1: string;
1694
- city: string;
1695
- region: string;
1696
- postalCode: string;
1697
- country: string;
1693
+ line1?: string | null | undefined;
1698
1694
  line2?: string | null | undefined;
1695
+ city?: string | null | undefined;
1696
+ region?: string | null | undefined;
1697
+ postalCode?: string | null | undefined;
1698
+ country?: string | null | undefined;
1699
1699
  };
1700
1700
  billingData: {
1701
1701
  sdi?: string | null | undefined;
@@ -1708,22 +1708,22 @@ declare const updateCompanyResponseSchema: z.ZodObject<{
1708
1708
  vat: string;
1709
1709
  taxCode: string | null;
1710
1710
  operationalAddress: {
1711
- line1: string;
1712
- city: string;
1713
- region: string;
1714
- postalCode: string;
1715
- country: string;
1711
+ line1?: string | null | undefined;
1716
1712
  line2?: string | null | undefined;
1713
+ city?: string | null | undefined;
1714
+ region?: string | null | undefined;
1715
+ postalCode?: string | null | undefined;
1716
+ country?: string | null | undefined;
1717
1717
  };
1718
1718
  createdAt: string;
1719
1719
  updatedAt: string;
1720
1720
  billingAddress: {
1721
- line1: string;
1722
- city: string;
1723
- region: string;
1724
- postalCode: string;
1725
- country: string;
1721
+ line1?: string | null | undefined;
1726
1722
  line2?: string | null | undefined;
1723
+ city?: string | null | undefined;
1724
+ region?: string | null | undefined;
1725
+ postalCode?: string | null | undefined;
1726
+ country?: string | null | undefined;
1727
1727
  };
1728
1728
  billingData: {
1729
1729
  sdi?: string | null | undefined;
@@ -1741,48 +1741,48 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1741
1741
  vat: z.ZodOptional<z.ZodString>;
1742
1742
  taxCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1743
1743
  operationalAddress: z.ZodOptional<z.ZodObject<{
1744
- line1: z.ZodString;
1744
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1745
1745
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1746
- city: z.ZodString;
1747
- region: z.ZodString;
1748
- postalCode: z.ZodString;
1749
- country: z.ZodString;
1746
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1747
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1748
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1749
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1750
1750
  }, "strip", z.ZodTypeAny, {
1751
- line1: string;
1752
- city: string;
1753
- region: string;
1754
- postalCode: string;
1755
- country: string;
1751
+ line1?: string | null | undefined;
1756
1752
  line2?: string | null | undefined;
1753
+ city?: string | null | undefined;
1754
+ region?: string | null | undefined;
1755
+ postalCode?: string | null | undefined;
1756
+ country?: string | null | undefined;
1757
1757
  }, {
1758
- line1: string;
1759
- city: string;
1760
- region: string;
1761
- postalCode: string;
1762
- country: string;
1758
+ line1?: string | null | undefined;
1763
1759
  line2?: string | null | undefined;
1760
+ city?: string | null | undefined;
1761
+ region?: string | null | undefined;
1762
+ postalCode?: string | null | undefined;
1763
+ country?: string | null | undefined;
1764
1764
  }>>;
1765
1765
  billingAddress: z.ZodOptional<z.ZodObject<{
1766
- line1: z.ZodString;
1766
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1767
1767
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1768
- city: z.ZodString;
1769
- region: z.ZodString;
1770
- postalCode: z.ZodString;
1771
- country: z.ZodString;
1768
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1769
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1770
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1771
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1772
1772
  }, "strip", z.ZodTypeAny, {
1773
- line1: string;
1774
- city: string;
1775
- region: string;
1776
- postalCode: string;
1777
- country: string;
1773
+ line1?: string | null | undefined;
1778
1774
  line2?: string | null | undefined;
1775
+ city?: string | null | undefined;
1776
+ region?: string | null | undefined;
1777
+ postalCode?: string | null | undefined;
1778
+ country?: string | null | undefined;
1779
1779
  }, {
1780
- line1: string;
1781
- city: string;
1782
- region: string;
1783
- postalCode: string;
1784
- country: string;
1780
+ line1?: string | null | undefined;
1785
1781
  line2?: string | null | undefined;
1782
+ city?: string | null | undefined;
1783
+ region?: string | null | undefined;
1784
+ postalCode?: string | null | undefined;
1785
+ country?: string | null | undefined;
1786
1786
  }>>;
1787
1787
  billingData: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1788
1788
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1806,20 +1806,20 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1806
1806
  vat?: string | undefined;
1807
1807
  taxCode?: string | null | undefined;
1808
1808
  operationalAddress?: {
1809
- line1: string;
1810
- city: string;
1811
- region: string;
1812
- postalCode: string;
1813
- country: string;
1809
+ line1?: string | null | undefined;
1814
1810
  line2?: string | null | undefined;
1811
+ city?: string | null | undefined;
1812
+ region?: string | null | undefined;
1813
+ postalCode?: string | null | undefined;
1814
+ country?: string | null | undefined;
1815
1815
  } | undefined;
1816
1816
  billingAddress?: {
1817
- line1: string;
1818
- city: string;
1819
- region: string;
1820
- postalCode: string;
1821
- country: string;
1817
+ line1?: string | null | undefined;
1822
1818
  line2?: string | null | undefined;
1819
+ city?: string | null | undefined;
1820
+ region?: string | null | undefined;
1821
+ postalCode?: string | null | undefined;
1822
+ country?: string | null | undefined;
1823
1823
  } | undefined;
1824
1824
  billingData?: {
1825
1825
  sdi?: string | null | undefined;
@@ -1831,20 +1831,20 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1831
1831
  vat?: string | undefined;
1832
1832
  taxCode?: string | null | undefined;
1833
1833
  operationalAddress?: {
1834
- line1: string;
1835
- city: string;
1836
- region: string;
1837
- postalCode: string;
1838
- country: string;
1834
+ line1?: string | null | undefined;
1839
1835
  line2?: string | null | undefined;
1836
+ city?: string | null | undefined;
1837
+ region?: string | null | undefined;
1838
+ postalCode?: string | null | undefined;
1839
+ country?: string | null | undefined;
1840
1840
  } | undefined;
1841
1841
  billingAddress?: {
1842
- line1: string;
1843
- city: string;
1844
- region: string;
1845
- postalCode: string;
1846
- country: string;
1842
+ line1?: string | null | undefined;
1847
1843
  line2?: string | null | undefined;
1844
+ city?: string | null | undefined;
1845
+ region?: string | null | undefined;
1846
+ postalCode?: string | null | undefined;
1847
+ country?: string | null | undefined;
1848
1848
  } | undefined;
1849
1849
  billingData?: {
1850
1850
  sdi?: string | null | undefined;
@@ -1858,51 +1858,51 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1858
1858
  vat: z.ZodString;
1859
1859
  taxCode: z.ZodNullable<z.ZodString>;
1860
1860
  operationalAddress: z.ZodObject<{
1861
- line1: z.ZodString;
1861
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1862
1862
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1863
- city: z.ZodString;
1864
- region: z.ZodString;
1865
- postalCode: z.ZodString;
1866
- country: z.ZodString;
1863
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1864
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1865
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1866
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1867
1867
  }, "strip", z.ZodTypeAny, {
1868
- line1: string;
1869
- city: string;
1870
- region: string;
1871
- postalCode: string;
1872
- country: string;
1868
+ line1?: string | null | undefined;
1873
1869
  line2?: string | null | undefined;
1870
+ city?: string | null | undefined;
1871
+ region?: string | null | undefined;
1872
+ postalCode?: string | null | undefined;
1873
+ country?: string | null | undefined;
1874
1874
  }, {
1875
- line1: string;
1876
- city: string;
1877
- region: string;
1878
- postalCode: string;
1879
- country: string;
1875
+ line1?: string | null | undefined;
1880
1876
  line2?: string | null | undefined;
1877
+ city?: string | null | undefined;
1878
+ region?: string | null | undefined;
1879
+ postalCode?: string | null | undefined;
1880
+ country?: string | null | undefined;
1881
1881
  }>;
1882
1882
  createdAt: z.ZodEffects<z.ZodString, string, string>;
1883
1883
  updatedAt: z.ZodEffects<z.ZodString, string, string>;
1884
1884
  } & {
1885
1885
  billingAddress: z.ZodObject<{
1886
- line1: z.ZodString;
1886
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1887
1887
  line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1888
- city: z.ZodString;
1889
- region: z.ZodString;
1890
- postalCode: z.ZodString;
1891
- country: z.ZodString;
1888
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1889
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1890
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1891
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1892
1892
  }, "strip", z.ZodTypeAny, {
1893
- line1: string;
1894
- city: string;
1895
- region: string;
1896
- postalCode: string;
1897
- country: string;
1893
+ line1?: string | null | undefined;
1898
1894
  line2?: string | null | undefined;
1895
+ city?: string | null | undefined;
1896
+ region?: string | null | undefined;
1897
+ postalCode?: string | null | undefined;
1898
+ country?: string | null | undefined;
1899
1899
  }, {
1900
- line1: string;
1901
- city: string;
1902
- region: string;
1903
- postalCode: string;
1904
- country: string;
1900
+ line1?: string | null | undefined;
1905
1901
  line2?: string | null | undefined;
1902
+ city?: string | null | undefined;
1903
+ region?: string | null | undefined;
1904
+ postalCode?: string | null | undefined;
1905
+ country?: string | null | undefined;
1906
1906
  }>;
1907
1907
  billingData: z.ZodEffects<z.ZodObject<{
1908
1908
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1927,22 +1927,22 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1927
1927
  vat: string;
1928
1928
  taxCode: string | null;
1929
1929
  operationalAddress: {
1930
- line1: string;
1931
- city: string;
1932
- region: string;
1933
- postalCode: string;
1934
- country: string;
1930
+ line1?: string | null | undefined;
1935
1931
  line2?: string | null | undefined;
1932
+ city?: string | null | undefined;
1933
+ region?: string | null | undefined;
1934
+ postalCode?: string | null | undefined;
1935
+ country?: string | null | undefined;
1936
1936
  };
1937
1937
  createdAt: string;
1938
1938
  updatedAt: string;
1939
1939
  billingAddress: {
1940
- line1: string;
1941
- city: string;
1942
- region: string;
1943
- postalCode: string;
1944
- country: string;
1940
+ line1?: string | null | undefined;
1945
1941
  line2?: string | null | undefined;
1942
+ city?: string | null | undefined;
1943
+ region?: string | null | undefined;
1944
+ postalCode?: string | null | undefined;
1945
+ country?: string | null | undefined;
1946
1946
  };
1947
1947
  billingData: {
1948
1948
  sdi?: string | null | undefined;
@@ -1955,22 +1955,22 @@ declare class UpdateCompany extends AbstractApiRequest<typeof updateCompanyInput
1955
1955
  vat: string;
1956
1956
  taxCode: string | null;
1957
1957
  operationalAddress: {
1958
- line1: string;
1959
- city: string;
1960
- region: string;
1961
- postalCode: string;
1962
- country: string;
1958
+ line1?: string | null | undefined;
1963
1959
  line2?: string | null | undefined;
1960
+ city?: string | null | undefined;
1961
+ region?: string | null | undefined;
1962
+ postalCode?: string | null | undefined;
1963
+ country?: string | null | undefined;
1964
1964
  };
1965
1965
  createdAt: string;
1966
1966
  updatedAt: string;
1967
1967
  billingAddress: {
1968
- line1: string;
1969
- city: string;
1970
- region: string;
1971
- postalCode: string;
1972
- country: string;
1968
+ line1?: string | null | undefined;
1973
1969
  line2?: string | null | undefined;
1970
+ city?: string | null | undefined;
1971
+ region?: string | null | undefined;
1972
+ postalCode?: string | null | undefined;
1973
+ country?: string | null | undefined;
1974
1974
  };
1975
1975
  billingData: {
1976
1976
  sdi?: string | null | undefined;