@deepintel-ltd/farmpro-contracts 1.22.4 → 1.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/routes/categories.routes.d.ts +26 -26
- package/dist/routes/commodity-deals.routes.d.ts +217 -42
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
- package/dist/routes/crop-profile.routes.d.ts +8 -8
- package/dist/routes/farm-enterprises.routes.d.ts +395 -0
- package/dist/routes/farm-enterprises.routes.d.ts.map +1 -1
- package/dist/routes/farm-enterprises.routes.js +14 -1
- package/dist/routes/farms.routes.d.ts +73 -20
- package/dist/routes/farms.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +96 -96
- package/dist/routes/field-monitoring.routes.d.ts +2 -2
- package/dist/routes/finance.routes.d.ts +8 -8
- package/dist/routes/index.d.ts +9 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +6 -0
- package/dist/routes/invoices.routes.d.ts +210 -60
- package/dist/routes/invoices.routes.d.ts.map +1 -1
- package/dist/routes/invoices.routes.js +4 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +2 -2
- package/dist/routes/notifications.routes.d.ts +12 -12
- package/dist/routes/organization-capabilities.routes.d.ts +1671 -0
- package/dist/routes/organization-capabilities.routes.d.ts.map +1 -0
- package/dist/routes/organization-capabilities.routes.js +74 -0
- package/dist/routes/organizations.routes.d.ts +90 -47
- package/dist/routes/organizations.routes.d.ts.map +1 -1
- package/dist/routes/purchase-orders.routes.d.ts +2061 -0
- package/dist/routes/purchase-orders.routes.d.ts.map +1 -0
- package/dist/routes/purchase-orders.routes.js +55 -0
- package/dist/routes/suppliers.routes.d.ts +96 -96
- package/dist/routes/team-payments.routes.d.ts +105 -105
- package/dist/routes/team.routes.d.ts +125 -25
- package/dist/routes/team.routes.d.ts.map +1 -1
- package/dist/routes/trade-cash-events.routes.d.ts +3837 -0
- package/dist/routes/trade-cash-events.routes.d.ts.map +1 -0
- package/dist/routes/trade-cash-events.routes.js +126 -0
- package/dist/routes/waybills.routes.d.ts +229 -15
- package/dist/routes/waybills.routes.d.ts.map +1 -1
- package/dist/routes/waybills.routes.js +4 -1
- package/dist/schemas/categories.schemas.d.ts +21 -21
- package/dist/schemas/commodity-deals.schemas.d.ts +116 -18
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +7 -0
- package/dist/schemas/crop-profile.schemas.d.ts +12 -12
- package/dist/schemas/farm-enterprises.schemas.d.ts +185 -0
- package/dist/schemas/farm-enterprises.schemas.d.ts.map +1 -1
- package/dist/schemas/farm-enterprises.schemas.js +21 -0
- package/dist/schemas/farms.schemas.d.ts +121 -19
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/farms.schemas.js +15 -1
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +2 -2
- package/dist/schemas/finance.schemas.d.ts +8 -8
- package/dist/schemas/invoices.schemas.d.ts +153 -39
- package/dist/schemas/invoices.schemas.d.ts.map +1 -1
- package/dist/schemas/invoices.schemas.js +8 -2
- package/dist/schemas/notifications.schemas.d.ts +18 -18
- package/dist/schemas/organization-capabilities.schemas.d.ts +355 -0
- package/dist/schemas/organization-capabilities.schemas.d.ts.map +1 -0
- package/dist/schemas/organization-capabilities.schemas.js +19 -0
- package/dist/schemas/organizations.schemas.d.ts +105 -46
- package/dist/schemas/organizations.schemas.d.ts.map +1 -1
- package/dist/schemas/organizations.schemas.js +8 -1
- package/dist/schemas/purchase-orders.schemas.d.ts +1031 -0
- package/dist/schemas/purchase-orders.schemas.d.ts.map +1 -0
- package/dist/schemas/purchase-orders.schemas.js +49 -0
- package/dist/schemas/suppliers.schemas.d.ts +96 -96
- package/dist/schemas/team-payments.schemas.d.ts +87 -87
- package/dist/schemas/team.schemas.d.ts +137 -20
- package/dist/schemas/team.schemas.d.ts.map +1 -1
- package/dist/schemas/team.schemas.js +29 -1
- package/dist/schemas/trade-cash-events.schemas.d.ts +1524 -0
- package/dist/schemas/trade-cash-events.schemas.d.ts.map +1 -0
- package/dist/schemas/trade-cash-events.schemas.js +131 -0
- package/dist/schemas/waybills.schemas.d.ts +177 -9
- package/dist/schemas/waybills.schemas.d.ts.map +1 -1
- package/dist/schemas/waybills.schemas.js +9 -0
- package/package.json +1 -1
|
@@ -67,10 +67,10 @@ export declare const supplierAttributesSchema: z.ZodObject<{
|
|
|
67
67
|
updatedAt: string;
|
|
68
68
|
name: string;
|
|
69
69
|
phone: string | null;
|
|
70
|
-
|
|
70
|
+
address: string | null;
|
|
71
71
|
organizationId: string;
|
|
72
|
+
notes: string | null;
|
|
72
73
|
contactPerson: string | null;
|
|
73
|
-
address: string | null;
|
|
74
74
|
rating: number | null;
|
|
75
75
|
priceHistory?: {
|
|
76
76
|
date: string;
|
|
@@ -87,10 +87,10 @@ export declare const supplierAttributesSchema: z.ZodObject<{
|
|
|
87
87
|
updatedAt: string;
|
|
88
88
|
name: string;
|
|
89
89
|
phone: string | null;
|
|
90
|
-
|
|
90
|
+
address: string | null;
|
|
91
91
|
organizationId: string;
|
|
92
|
+
notes: string | null;
|
|
92
93
|
contactPerson: string | null;
|
|
93
|
-
address: string | null;
|
|
94
94
|
rating: number | null;
|
|
95
95
|
priceHistory?: {
|
|
96
96
|
date: string;
|
|
@@ -115,18 +115,18 @@ export declare const createSupplierAttributesSchema: z.ZodObject<{
|
|
|
115
115
|
name: string;
|
|
116
116
|
email?: string | undefined;
|
|
117
117
|
phone?: string | undefined;
|
|
118
|
+
address?: string | undefined;
|
|
118
119
|
notes?: string | undefined;
|
|
119
120
|
contactPerson?: string | undefined;
|
|
120
|
-
address?: string | undefined;
|
|
121
121
|
rating?: number | undefined;
|
|
122
122
|
}, {
|
|
123
123
|
type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
|
|
124
124
|
name: string;
|
|
125
125
|
email?: string | undefined;
|
|
126
126
|
phone?: string | undefined;
|
|
127
|
+
address?: string | undefined;
|
|
127
128
|
notes?: string | undefined;
|
|
128
129
|
contactPerson?: string | undefined;
|
|
129
|
-
address?: string | undefined;
|
|
130
130
|
rating?: number | undefined;
|
|
131
131
|
}>;
|
|
132
132
|
export declare const updateSupplierAttributesSchema: z.ZodObject<{
|
|
@@ -143,18 +143,18 @@ export declare const updateSupplierAttributesSchema: z.ZodObject<{
|
|
|
143
143
|
email?: string | null | undefined;
|
|
144
144
|
name?: string | undefined;
|
|
145
145
|
phone?: string | null | undefined;
|
|
146
|
+
address?: string | null | undefined;
|
|
146
147
|
notes?: string | null | undefined;
|
|
147
148
|
contactPerson?: string | null | undefined;
|
|
148
|
-
address?: string | null | undefined;
|
|
149
149
|
rating?: number | null | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
|
|
152
152
|
email?: string | null | undefined;
|
|
153
153
|
name?: string | undefined;
|
|
154
154
|
phone?: string | null | undefined;
|
|
155
|
+
address?: string | null | undefined;
|
|
155
156
|
notes?: string | null | undefined;
|
|
156
157
|
contactPerson?: string | null | undefined;
|
|
157
|
-
address?: string | null | undefined;
|
|
158
158
|
rating?: number | null | undefined;
|
|
159
159
|
}>;
|
|
160
160
|
export declare const buyerAttributesSchema: z.ZodObject<{
|
|
@@ -198,10 +198,10 @@ export declare const buyerAttributesSchema: z.ZodObject<{
|
|
|
198
198
|
updatedAt: string;
|
|
199
199
|
name: string;
|
|
200
200
|
phone: string | null;
|
|
201
|
-
|
|
201
|
+
address: string | null;
|
|
202
202
|
organizationId: string;
|
|
203
|
+
notes: string | null;
|
|
203
204
|
contactPerson: string | null;
|
|
204
|
-
address: string | null;
|
|
205
205
|
rating: number | null;
|
|
206
206
|
priceHistory?: {
|
|
207
207
|
date: string;
|
|
@@ -218,10 +218,10 @@ export declare const buyerAttributesSchema: z.ZodObject<{
|
|
|
218
218
|
updatedAt: string;
|
|
219
219
|
name: string;
|
|
220
220
|
phone: string | null;
|
|
221
|
-
|
|
221
|
+
address: string | null;
|
|
222
222
|
organizationId: string;
|
|
223
|
+
notes: string | null;
|
|
223
224
|
contactPerson: string | null;
|
|
224
|
-
address: string | null;
|
|
225
225
|
rating: number | null;
|
|
226
226
|
priceHistory?: {
|
|
227
227
|
date: string;
|
|
@@ -246,18 +246,18 @@ export declare const createBuyerAttributesSchema: z.ZodObject<{
|
|
|
246
246
|
name: string;
|
|
247
247
|
email?: string | undefined;
|
|
248
248
|
phone?: string | undefined;
|
|
249
|
+
address?: string | undefined;
|
|
249
250
|
notes?: string | undefined;
|
|
250
251
|
contactPerson?: string | undefined;
|
|
251
|
-
address?: string | undefined;
|
|
252
252
|
rating?: number | undefined;
|
|
253
253
|
crops?: string[] | undefined;
|
|
254
254
|
}, {
|
|
255
255
|
name: string;
|
|
256
256
|
email?: string | undefined;
|
|
257
257
|
phone?: string | undefined;
|
|
258
|
+
address?: string | undefined;
|
|
258
259
|
notes?: string | undefined;
|
|
259
260
|
contactPerson?: string | undefined;
|
|
260
|
-
address?: string | undefined;
|
|
261
261
|
rating?: number | undefined;
|
|
262
262
|
crops?: string[] | undefined;
|
|
263
263
|
}>;
|
|
@@ -274,18 +274,18 @@ export declare const updateBuyerAttributesSchema: z.ZodObject<{
|
|
|
274
274
|
email?: string | null | undefined;
|
|
275
275
|
name?: string | undefined;
|
|
276
276
|
phone?: string | null | undefined;
|
|
277
|
+
address?: string | null | undefined;
|
|
277
278
|
notes?: string | null | undefined;
|
|
278
279
|
contactPerson?: string | null | undefined;
|
|
279
|
-
address?: string | null | undefined;
|
|
280
280
|
rating?: number | null | undefined;
|
|
281
281
|
crops?: string[] | undefined;
|
|
282
282
|
}, {
|
|
283
283
|
email?: string | null | undefined;
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
phone?: string | null | undefined;
|
|
286
|
+
address?: string | null | undefined;
|
|
286
287
|
notes?: string | null | undefined;
|
|
287
288
|
contactPerson?: string | null | undefined;
|
|
288
|
-
address?: string | null | undefined;
|
|
289
289
|
rating?: number | null | undefined;
|
|
290
290
|
crops?: string[] | undefined;
|
|
291
291
|
}>;
|
|
@@ -305,18 +305,18 @@ export declare const createSupplierSchema: z.ZodObject<{
|
|
|
305
305
|
name: string;
|
|
306
306
|
email?: string | undefined;
|
|
307
307
|
phone?: string | undefined;
|
|
308
|
+
address?: string | undefined;
|
|
308
309
|
notes?: string | undefined;
|
|
309
310
|
contactPerson?: string | undefined;
|
|
310
|
-
address?: string | undefined;
|
|
311
311
|
rating?: number | undefined;
|
|
312
312
|
}, {
|
|
313
313
|
type: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide";
|
|
314
314
|
name: string;
|
|
315
315
|
email?: string | undefined;
|
|
316
316
|
phone?: string | undefined;
|
|
317
|
+
address?: string | undefined;
|
|
317
318
|
notes?: string | undefined;
|
|
318
319
|
contactPerson?: string | undefined;
|
|
319
|
-
address?: string | undefined;
|
|
320
320
|
rating?: number | undefined;
|
|
321
321
|
}>;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -326,9 +326,9 @@ export declare const createSupplierSchema: z.ZodObject<{
|
|
|
326
326
|
name: string;
|
|
327
327
|
email?: string | undefined;
|
|
328
328
|
phone?: string | undefined;
|
|
329
|
+
address?: string | undefined;
|
|
329
330
|
notes?: string | undefined;
|
|
330
331
|
contactPerson?: string | undefined;
|
|
331
|
-
address?: string | undefined;
|
|
332
332
|
rating?: number | undefined;
|
|
333
333
|
};
|
|
334
334
|
}, {
|
|
@@ -338,9 +338,9 @@ export declare const createSupplierSchema: z.ZodObject<{
|
|
|
338
338
|
name: string;
|
|
339
339
|
email?: string | undefined;
|
|
340
340
|
phone?: string | undefined;
|
|
341
|
+
address?: string | undefined;
|
|
341
342
|
notes?: string | undefined;
|
|
342
343
|
contactPerson?: string | undefined;
|
|
343
|
-
address?: string | undefined;
|
|
344
344
|
rating?: number | undefined;
|
|
345
345
|
};
|
|
346
346
|
}>;
|
|
@@ -361,18 +361,18 @@ export declare const updateSupplierSchema: z.ZodObject<{
|
|
|
361
361
|
email?: string | null | undefined;
|
|
362
362
|
name?: string | undefined;
|
|
363
363
|
phone?: string | null | undefined;
|
|
364
|
+
address?: string | null | undefined;
|
|
364
365
|
notes?: string | null | undefined;
|
|
365
366
|
contactPerson?: string | null | undefined;
|
|
366
|
-
address?: string | null | undefined;
|
|
367
367
|
rating?: number | null | undefined;
|
|
368
368
|
}, {
|
|
369
369
|
type?: "other" | "fertilizer" | "labor" | "equipment" | "seed" | "pesticide" | undefined;
|
|
370
370
|
email?: string | null | undefined;
|
|
371
371
|
name?: string | undefined;
|
|
372
372
|
phone?: string | null | undefined;
|
|
373
|
+
address?: string | null | undefined;
|
|
373
374
|
notes?: string | null | undefined;
|
|
374
375
|
contactPerson?: string | null | undefined;
|
|
375
|
-
address?: string | null | undefined;
|
|
376
376
|
rating?: number | null | undefined;
|
|
377
377
|
}>;
|
|
378
378
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -383,9 +383,9 @@ export declare const updateSupplierSchema: z.ZodObject<{
|
|
|
383
383
|
email?: string | null | undefined;
|
|
384
384
|
name?: string | undefined;
|
|
385
385
|
phone?: string | null | undefined;
|
|
386
|
+
address?: string | null | undefined;
|
|
386
387
|
notes?: string | null | undefined;
|
|
387
388
|
contactPerson?: string | null | undefined;
|
|
388
|
-
address?: string | null | undefined;
|
|
389
389
|
rating?: number | null | undefined;
|
|
390
390
|
};
|
|
391
391
|
}, {
|
|
@@ -396,9 +396,9 @@ export declare const updateSupplierSchema: z.ZodObject<{
|
|
|
396
396
|
email?: string | null | undefined;
|
|
397
397
|
name?: string | undefined;
|
|
398
398
|
phone?: string | null | undefined;
|
|
399
|
+
address?: string | null | undefined;
|
|
399
400
|
notes?: string | null | undefined;
|
|
400
401
|
contactPerson?: string | null | undefined;
|
|
401
|
-
address?: string | null | undefined;
|
|
402
402
|
rating?: number | null | undefined;
|
|
403
403
|
};
|
|
404
404
|
}>;
|
|
@@ -417,18 +417,18 @@ export declare const createBuyerSchema: z.ZodObject<{
|
|
|
417
417
|
name: string;
|
|
418
418
|
email?: string | undefined;
|
|
419
419
|
phone?: string | undefined;
|
|
420
|
+
address?: string | undefined;
|
|
420
421
|
notes?: string | undefined;
|
|
421
422
|
contactPerson?: string | undefined;
|
|
422
|
-
address?: string | undefined;
|
|
423
423
|
rating?: number | undefined;
|
|
424
424
|
crops?: string[] | undefined;
|
|
425
425
|
}, {
|
|
426
426
|
name: string;
|
|
427
427
|
email?: string | undefined;
|
|
428
428
|
phone?: string | undefined;
|
|
429
|
+
address?: string | undefined;
|
|
429
430
|
notes?: string | undefined;
|
|
430
431
|
contactPerson?: string | undefined;
|
|
431
|
-
address?: string | undefined;
|
|
432
432
|
rating?: number | undefined;
|
|
433
433
|
crops?: string[] | undefined;
|
|
434
434
|
}>;
|
|
@@ -438,9 +438,9 @@ export declare const createBuyerSchema: z.ZodObject<{
|
|
|
438
438
|
name: string;
|
|
439
439
|
email?: string | undefined;
|
|
440
440
|
phone?: string | undefined;
|
|
441
|
+
address?: string | undefined;
|
|
441
442
|
notes?: string | undefined;
|
|
442
443
|
contactPerson?: string | undefined;
|
|
443
|
-
address?: string | undefined;
|
|
444
444
|
rating?: number | undefined;
|
|
445
445
|
crops?: string[] | undefined;
|
|
446
446
|
};
|
|
@@ -450,9 +450,9 @@ export declare const createBuyerSchema: z.ZodObject<{
|
|
|
450
450
|
name: string;
|
|
451
451
|
email?: string | undefined;
|
|
452
452
|
phone?: string | undefined;
|
|
453
|
+
address?: string | undefined;
|
|
453
454
|
notes?: string | undefined;
|
|
454
455
|
contactPerson?: string | undefined;
|
|
455
|
-
address?: string | undefined;
|
|
456
456
|
rating?: number | undefined;
|
|
457
457
|
crops?: string[] | undefined;
|
|
458
458
|
};
|
|
@@ -473,18 +473,18 @@ export declare const updateBuyerSchema: z.ZodObject<{
|
|
|
473
473
|
email?: string | null | undefined;
|
|
474
474
|
name?: string | undefined;
|
|
475
475
|
phone?: string | null | undefined;
|
|
476
|
+
address?: string | null | undefined;
|
|
476
477
|
notes?: string | null | undefined;
|
|
477
478
|
contactPerson?: string | null | undefined;
|
|
478
|
-
address?: string | null | undefined;
|
|
479
479
|
rating?: number | null | undefined;
|
|
480
480
|
crops?: string[] | undefined;
|
|
481
481
|
}, {
|
|
482
482
|
email?: string | null | undefined;
|
|
483
483
|
name?: string | undefined;
|
|
484
484
|
phone?: string | null | undefined;
|
|
485
|
+
address?: string | null | undefined;
|
|
485
486
|
notes?: string | null | undefined;
|
|
486
487
|
contactPerson?: string | null | undefined;
|
|
487
|
-
address?: string | null | undefined;
|
|
488
488
|
rating?: number | null | undefined;
|
|
489
489
|
crops?: string[] | undefined;
|
|
490
490
|
}>;
|
|
@@ -495,9 +495,9 @@ export declare const updateBuyerSchema: z.ZodObject<{
|
|
|
495
495
|
email?: string | null | undefined;
|
|
496
496
|
name?: string | undefined;
|
|
497
497
|
phone?: string | null | undefined;
|
|
498
|
+
address?: string | null | undefined;
|
|
498
499
|
notes?: string | null | undefined;
|
|
499
500
|
contactPerson?: string | null | undefined;
|
|
500
|
-
address?: string | null | undefined;
|
|
501
501
|
rating?: number | null | undefined;
|
|
502
502
|
crops?: string[] | undefined;
|
|
503
503
|
};
|
|
@@ -508,9 +508,9 @@ export declare const updateBuyerSchema: z.ZodObject<{
|
|
|
508
508
|
email?: string | null | undefined;
|
|
509
509
|
name?: string | undefined;
|
|
510
510
|
phone?: string | null | undefined;
|
|
511
|
+
address?: string | null | undefined;
|
|
511
512
|
notes?: string | null | undefined;
|
|
512
513
|
contactPerson?: string | null | undefined;
|
|
513
|
-
address?: string | null | undefined;
|
|
514
514
|
rating?: number | null | undefined;
|
|
515
515
|
crops?: string[] | undefined;
|
|
516
516
|
};
|
|
@@ -560,10 +560,10 @@ export declare const supplierResourceSchema: z.ZodObject<{
|
|
|
560
560
|
updatedAt: string;
|
|
561
561
|
name: string;
|
|
562
562
|
phone: string | null;
|
|
563
|
-
|
|
563
|
+
address: string | null;
|
|
564
564
|
organizationId: string;
|
|
565
|
+
notes: string | null;
|
|
565
566
|
contactPerson: string | null;
|
|
566
|
-
address: string | null;
|
|
567
567
|
rating: number | null;
|
|
568
568
|
priceHistory?: {
|
|
569
569
|
date: string;
|
|
@@ -580,10 +580,10 @@ export declare const supplierResourceSchema: z.ZodObject<{
|
|
|
580
580
|
updatedAt: string;
|
|
581
581
|
name: string;
|
|
582
582
|
phone: string | null;
|
|
583
|
-
|
|
583
|
+
address: string | null;
|
|
584
584
|
organizationId: string;
|
|
585
|
+
notes: string | null;
|
|
585
586
|
contactPerson: string | null;
|
|
586
|
-
address: string | null;
|
|
587
587
|
rating: number | null;
|
|
588
588
|
priceHistory?: {
|
|
589
589
|
date: string;
|
|
@@ -607,10 +607,10 @@ export declare const supplierResourceSchema: z.ZodObject<{
|
|
|
607
607
|
updatedAt: string;
|
|
608
608
|
name: string;
|
|
609
609
|
phone: string | null;
|
|
610
|
-
|
|
610
|
+
address: string | null;
|
|
611
611
|
organizationId: string;
|
|
612
|
+
notes: string | null;
|
|
612
613
|
contactPerson: string | null;
|
|
613
|
-
address: string | null;
|
|
614
614
|
rating: number | null;
|
|
615
615
|
priceHistory?: {
|
|
616
616
|
date: string;
|
|
@@ -634,10 +634,10 @@ export declare const supplierResourceSchema: z.ZodObject<{
|
|
|
634
634
|
updatedAt: string;
|
|
635
635
|
name: string;
|
|
636
636
|
phone: string | null;
|
|
637
|
-
|
|
637
|
+
address: string | null;
|
|
638
638
|
organizationId: string;
|
|
639
|
+
notes: string | null;
|
|
639
640
|
contactPerson: string | null;
|
|
640
|
-
address: string | null;
|
|
641
641
|
rating: number | null;
|
|
642
642
|
priceHistory?: {
|
|
643
643
|
date: string;
|
|
@@ -696,10 +696,10 @@ export declare const buyerResourceSchema: z.ZodObject<{
|
|
|
696
696
|
updatedAt: string;
|
|
697
697
|
name: string;
|
|
698
698
|
phone: string | null;
|
|
699
|
-
|
|
699
|
+
address: string | null;
|
|
700
700
|
organizationId: string;
|
|
701
|
+
notes: string | null;
|
|
701
702
|
contactPerson: string | null;
|
|
702
|
-
address: string | null;
|
|
703
703
|
rating: number | null;
|
|
704
704
|
priceHistory?: {
|
|
705
705
|
date: string;
|
|
@@ -716,10 +716,10 @@ export declare const buyerResourceSchema: z.ZodObject<{
|
|
|
716
716
|
updatedAt: string;
|
|
717
717
|
name: string;
|
|
718
718
|
phone: string | null;
|
|
719
|
-
|
|
719
|
+
address: string | null;
|
|
720
720
|
organizationId: string;
|
|
721
|
+
notes: string | null;
|
|
721
722
|
contactPerson: string | null;
|
|
722
|
-
address: string | null;
|
|
723
723
|
rating: number | null;
|
|
724
724
|
priceHistory?: {
|
|
725
725
|
date: string;
|
|
@@ -743,10 +743,10 @@ export declare const buyerResourceSchema: z.ZodObject<{
|
|
|
743
743
|
updatedAt: string;
|
|
744
744
|
name: string;
|
|
745
745
|
phone: string | null;
|
|
746
|
-
|
|
746
|
+
address: string | null;
|
|
747
747
|
organizationId: string;
|
|
748
|
+
notes: string | null;
|
|
748
749
|
contactPerson: string | null;
|
|
749
|
-
address: string | null;
|
|
750
750
|
rating: number | null;
|
|
751
751
|
priceHistory?: {
|
|
752
752
|
date: string;
|
|
@@ -770,10 +770,10 @@ export declare const buyerResourceSchema: z.ZodObject<{
|
|
|
770
770
|
updatedAt: string;
|
|
771
771
|
name: string;
|
|
772
772
|
phone: string | null;
|
|
773
|
-
|
|
773
|
+
address: string | null;
|
|
774
774
|
organizationId: string;
|
|
775
|
+
notes: string | null;
|
|
775
776
|
contactPerson: string | null;
|
|
776
|
-
address: string | null;
|
|
777
777
|
rating: number | null;
|
|
778
778
|
priceHistory?: {
|
|
779
779
|
date: string;
|
|
@@ -835,10 +835,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
835
835
|
updatedAt: string;
|
|
836
836
|
name: string;
|
|
837
837
|
phone: string | null;
|
|
838
|
-
|
|
838
|
+
address: string | null;
|
|
839
839
|
organizationId: string;
|
|
840
|
+
notes: string | null;
|
|
840
841
|
contactPerson: string | null;
|
|
841
|
-
address: string | null;
|
|
842
842
|
rating: number | null;
|
|
843
843
|
priceHistory?: {
|
|
844
844
|
date: string;
|
|
@@ -855,10 +855,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
855
855
|
updatedAt: string;
|
|
856
856
|
name: string;
|
|
857
857
|
phone: string | null;
|
|
858
|
-
|
|
858
|
+
address: string | null;
|
|
859
859
|
organizationId: string;
|
|
860
|
+
notes: string | null;
|
|
860
861
|
contactPerson: string | null;
|
|
861
|
-
address: string | null;
|
|
862
862
|
rating: number | null;
|
|
863
863
|
priceHistory?: {
|
|
864
864
|
date: string;
|
|
@@ -882,10 +882,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
882
882
|
updatedAt: string;
|
|
883
883
|
name: string;
|
|
884
884
|
phone: string | null;
|
|
885
|
-
|
|
885
|
+
address: string | null;
|
|
886
886
|
organizationId: string;
|
|
887
|
+
notes: string | null;
|
|
887
888
|
contactPerson: string | null;
|
|
888
|
-
address: string | null;
|
|
889
889
|
rating: number | null;
|
|
890
890
|
priceHistory?: {
|
|
891
891
|
date: string;
|
|
@@ -909,10 +909,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
909
909
|
updatedAt: string;
|
|
910
910
|
name: string;
|
|
911
911
|
phone: string | null;
|
|
912
|
-
|
|
912
|
+
address: string | null;
|
|
913
913
|
organizationId: string;
|
|
914
|
+
notes: string | null;
|
|
914
915
|
contactPerson: string | null;
|
|
915
|
-
address: string | null;
|
|
916
916
|
rating: number | null;
|
|
917
917
|
priceHistory?: {
|
|
918
918
|
date: string;
|
|
@@ -962,10 +962,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
962
962
|
updatedAt: string;
|
|
963
963
|
name: string;
|
|
964
964
|
phone: string | null;
|
|
965
|
-
|
|
965
|
+
address: string | null;
|
|
966
966
|
organizationId: string;
|
|
967
|
+
notes: string | null;
|
|
967
968
|
contactPerson: string | null;
|
|
968
|
-
address: string | null;
|
|
969
969
|
rating: number | null;
|
|
970
970
|
priceHistory?: {
|
|
971
971
|
date: string;
|
|
@@ -1001,10 +1001,10 @@ export declare const supplierResponseSchema: z.ZodObject<{
|
|
|
1001
1001
|
updatedAt: string;
|
|
1002
1002
|
name: string;
|
|
1003
1003
|
phone: string | null;
|
|
1004
|
-
|
|
1004
|
+
address: string | null;
|
|
1005
1005
|
organizationId: string;
|
|
1006
|
+
notes: string | null;
|
|
1006
1007
|
contactPerson: string | null;
|
|
1007
|
-
address: string | null;
|
|
1008
1008
|
rating: number | null;
|
|
1009
1009
|
priceHistory?: {
|
|
1010
1010
|
date: string;
|
|
@@ -1076,10 +1076,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1076
1076
|
updatedAt: string;
|
|
1077
1077
|
name: string;
|
|
1078
1078
|
phone: string | null;
|
|
1079
|
-
|
|
1079
|
+
address: string | null;
|
|
1080
1080
|
organizationId: string;
|
|
1081
|
+
notes: string | null;
|
|
1081
1082
|
contactPerson: string | null;
|
|
1082
|
-
address: string | null;
|
|
1083
1083
|
rating: number | null;
|
|
1084
1084
|
priceHistory?: {
|
|
1085
1085
|
date: string;
|
|
@@ -1096,10 +1096,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1096
1096
|
updatedAt: string;
|
|
1097
1097
|
name: string;
|
|
1098
1098
|
phone: string | null;
|
|
1099
|
-
|
|
1099
|
+
address: string | null;
|
|
1100
1100
|
organizationId: string;
|
|
1101
|
+
notes: string | null;
|
|
1101
1102
|
contactPerson: string | null;
|
|
1102
|
-
address: string | null;
|
|
1103
1103
|
rating: number | null;
|
|
1104
1104
|
priceHistory?: {
|
|
1105
1105
|
date: string;
|
|
@@ -1123,10 +1123,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1123
1123
|
updatedAt: string;
|
|
1124
1124
|
name: string;
|
|
1125
1125
|
phone: string | null;
|
|
1126
|
-
|
|
1126
|
+
address: string | null;
|
|
1127
1127
|
organizationId: string;
|
|
1128
|
+
notes: string | null;
|
|
1128
1129
|
contactPerson: string | null;
|
|
1129
|
-
address: string | null;
|
|
1130
1130
|
rating: number | null;
|
|
1131
1131
|
priceHistory?: {
|
|
1132
1132
|
date: string;
|
|
@@ -1150,10 +1150,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1150
1150
|
updatedAt: string;
|
|
1151
1151
|
name: string;
|
|
1152
1152
|
phone: string | null;
|
|
1153
|
-
|
|
1153
|
+
address: string | null;
|
|
1154
1154
|
organizationId: string;
|
|
1155
|
+
notes: string | null;
|
|
1155
1156
|
contactPerson: string | null;
|
|
1156
|
-
address: string | null;
|
|
1157
1157
|
rating: number | null;
|
|
1158
1158
|
priceHistory?: {
|
|
1159
1159
|
date: string;
|
|
@@ -1203,10 +1203,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1203
1203
|
updatedAt: string;
|
|
1204
1204
|
name: string;
|
|
1205
1205
|
phone: string | null;
|
|
1206
|
-
|
|
1206
|
+
address: string | null;
|
|
1207
1207
|
organizationId: string;
|
|
1208
|
+
notes: string | null;
|
|
1208
1209
|
contactPerson: string | null;
|
|
1209
|
-
address: string | null;
|
|
1210
1210
|
rating: number | null;
|
|
1211
1211
|
priceHistory?: {
|
|
1212
1212
|
date: string;
|
|
@@ -1242,10 +1242,10 @@ export declare const supplierListResponseSchema: z.ZodObject<{
|
|
|
1242
1242
|
updatedAt: string;
|
|
1243
1243
|
name: string;
|
|
1244
1244
|
phone: string | null;
|
|
1245
|
-
|
|
1245
|
+
address: string | null;
|
|
1246
1246
|
organizationId: string;
|
|
1247
|
+
notes: string | null;
|
|
1247
1248
|
contactPerson: string | null;
|
|
1248
|
-
address: string | null;
|
|
1249
1249
|
rating: number | null;
|
|
1250
1250
|
priceHistory?: {
|
|
1251
1251
|
date: string;
|
|
@@ -1316,10 +1316,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1316
1316
|
updatedAt: string;
|
|
1317
1317
|
name: string;
|
|
1318
1318
|
phone: string | null;
|
|
1319
|
-
|
|
1319
|
+
address: string | null;
|
|
1320
1320
|
organizationId: string;
|
|
1321
|
+
notes: string | null;
|
|
1321
1322
|
contactPerson: string | null;
|
|
1322
|
-
address: string | null;
|
|
1323
1323
|
rating: number | null;
|
|
1324
1324
|
priceHistory?: {
|
|
1325
1325
|
date: string;
|
|
@@ -1336,10 +1336,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1336
1336
|
updatedAt: string;
|
|
1337
1337
|
name: string;
|
|
1338
1338
|
phone: string | null;
|
|
1339
|
-
|
|
1339
|
+
address: string | null;
|
|
1340
1340
|
organizationId: string;
|
|
1341
|
+
notes: string | null;
|
|
1341
1342
|
contactPerson: string | null;
|
|
1342
|
-
address: string | null;
|
|
1343
1343
|
rating: number | null;
|
|
1344
1344
|
priceHistory?: {
|
|
1345
1345
|
date: string;
|
|
@@ -1363,10 +1363,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1363
1363
|
updatedAt: string;
|
|
1364
1364
|
name: string;
|
|
1365
1365
|
phone: string | null;
|
|
1366
|
-
|
|
1366
|
+
address: string | null;
|
|
1367
1367
|
organizationId: string;
|
|
1368
|
+
notes: string | null;
|
|
1368
1369
|
contactPerson: string | null;
|
|
1369
|
-
address: string | null;
|
|
1370
1370
|
rating: number | null;
|
|
1371
1371
|
priceHistory?: {
|
|
1372
1372
|
date: string;
|
|
@@ -1390,10 +1390,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1390
1390
|
updatedAt: string;
|
|
1391
1391
|
name: string;
|
|
1392
1392
|
phone: string | null;
|
|
1393
|
-
|
|
1393
|
+
address: string | null;
|
|
1394
1394
|
organizationId: string;
|
|
1395
|
+
notes: string | null;
|
|
1395
1396
|
contactPerson: string | null;
|
|
1396
|
-
address: string | null;
|
|
1397
1397
|
rating: number | null;
|
|
1398
1398
|
priceHistory?: {
|
|
1399
1399
|
date: string;
|
|
@@ -1443,10 +1443,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1443
1443
|
updatedAt: string;
|
|
1444
1444
|
name: string;
|
|
1445
1445
|
phone: string | null;
|
|
1446
|
-
|
|
1446
|
+
address: string | null;
|
|
1447
1447
|
organizationId: string;
|
|
1448
|
+
notes: string | null;
|
|
1448
1449
|
contactPerson: string | null;
|
|
1449
|
-
address: string | null;
|
|
1450
1450
|
rating: number | null;
|
|
1451
1451
|
priceHistory?: {
|
|
1452
1452
|
date: string;
|
|
@@ -1482,10 +1482,10 @@ export declare const buyerResponseSchema: z.ZodObject<{
|
|
|
1482
1482
|
updatedAt: string;
|
|
1483
1483
|
name: string;
|
|
1484
1484
|
phone: string | null;
|
|
1485
|
-
|
|
1485
|
+
address: string | null;
|
|
1486
1486
|
organizationId: string;
|
|
1487
|
+
notes: string | null;
|
|
1487
1488
|
contactPerson: string | null;
|
|
1488
|
-
address: string | null;
|
|
1489
1489
|
rating: number | null;
|
|
1490
1490
|
priceHistory?: {
|
|
1491
1491
|
date: string;
|
|
@@ -1557,10 +1557,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1557
1557
|
updatedAt: string;
|
|
1558
1558
|
name: string;
|
|
1559
1559
|
phone: string | null;
|
|
1560
|
-
|
|
1560
|
+
address: string | null;
|
|
1561
1561
|
organizationId: string;
|
|
1562
|
+
notes: string | null;
|
|
1562
1563
|
contactPerson: string | null;
|
|
1563
|
-
address: string | null;
|
|
1564
1564
|
rating: number | null;
|
|
1565
1565
|
priceHistory?: {
|
|
1566
1566
|
date: string;
|
|
@@ -1577,10 +1577,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1577
1577
|
updatedAt: string;
|
|
1578
1578
|
name: string;
|
|
1579
1579
|
phone: string | null;
|
|
1580
|
-
|
|
1580
|
+
address: string | null;
|
|
1581
1581
|
organizationId: string;
|
|
1582
|
+
notes: string | null;
|
|
1582
1583
|
contactPerson: string | null;
|
|
1583
|
-
address: string | null;
|
|
1584
1584
|
rating: number | null;
|
|
1585
1585
|
priceHistory?: {
|
|
1586
1586
|
date: string;
|
|
@@ -1604,10 +1604,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1604
1604
|
updatedAt: string;
|
|
1605
1605
|
name: string;
|
|
1606
1606
|
phone: string | null;
|
|
1607
|
-
|
|
1607
|
+
address: string | null;
|
|
1608
1608
|
organizationId: string;
|
|
1609
|
+
notes: string | null;
|
|
1609
1610
|
contactPerson: string | null;
|
|
1610
|
-
address: string | null;
|
|
1611
1611
|
rating: number | null;
|
|
1612
1612
|
priceHistory?: {
|
|
1613
1613
|
date: string;
|
|
@@ -1631,10 +1631,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1631
1631
|
updatedAt: string;
|
|
1632
1632
|
name: string;
|
|
1633
1633
|
phone: string | null;
|
|
1634
|
-
|
|
1634
|
+
address: string | null;
|
|
1635
1635
|
organizationId: string;
|
|
1636
|
+
notes: string | null;
|
|
1636
1637
|
contactPerson: string | null;
|
|
1637
|
-
address: string | null;
|
|
1638
1638
|
rating: number | null;
|
|
1639
1639
|
priceHistory?: {
|
|
1640
1640
|
date: string;
|
|
@@ -1684,10 +1684,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1684
1684
|
updatedAt: string;
|
|
1685
1685
|
name: string;
|
|
1686
1686
|
phone: string | null;
|
|
1687
|
-
|
|
1687
|
+
address: string | null;
|
|
1688
1688
|
organizationId: string;
|
|
1689
|
+
notes: string | null;
|
|
1689
1690
|
contactPerson: string | null;
|
|
1690
|
-
address: string | null;
|
|
1691
1691
|
rating: number | null;
|
|
1692
1692
|
priceHistory?: {
|
|
1693
1693
|
date: string;
|
|
@@ -1723,10 +1723,10 @@ export declare const buyerListResponseSchema: z.ZodObject<{
|
|
|
1723
1723
|
updatedAt: string;
|
|
1724
1724
|
name: string;
|
|
1725
1725
|
phone: string | null;
|
|
1726
|
-
|
|
1726
|
+
address: string | null;
|
|
1727
1727
|
organizationId: string;
|
|
1728
|
+
notes: string | null;
|
|
1728
1729
|
contactPerson: string | null;
|
|
1729
|
-
address: string | null;
|
|
1730
1730
|
rating: number | null;
|
|
1731
1731
|
priceHistory?: {
|
|
1732
1732
|
date: string;
|