erpnext-queue-client 1.10.3 → 1.11.0
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/erpnext/doctypes/item.d.ts +253 -13
- package/dist/erpnext/model/Compliance.d.ts +160 -0
- package/dist/erpnext/model/Compliance.js +40 -0
- package/dist/erpnext/model/Item.d.ts +718 -38
- package/dist/erpnext/model/Item.js +48 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -55,13 +55,18 @@ export declare const Item: z.ZodObject<{
|
|
|
55
55
|
has_serial_no: z.ZodNumber;
|
|
56
56
|
has_variants: z.ZodNumber;
|
|
57
57
|
variant_based_on: z.ZodString;
|
|
58
|
-
is_purchase_item: z.ZodNumber;
|
|
59
58
|
min_order_qty: z.ZodNumber;
|
|
60
59
|
safety_stock: z.ZodNumber;
|
|
60
|
+
is_purchase_item: z.ZodNumber;
|
|
61
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
61
62
|
lead_time_days: z.ZodNumber;
|
|
62
63
|
last_purchase_rate: z.ZodNumber;
|
|
63
64
|
is_customer_provided_item: z.ZodNumber;
|
|
64
65
|
delivered_by_supplier: z.ZodNumber;
|
|
66
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
67
|
+
fsc_percentage: z.ZodNumber;
|
|
68
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
69
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
65
70
|
sales_uom: z.ZodString;
|
|
66
71
|
is_sales_item: z.ZodNumber;
|
|
67
72
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -208,12 +213,107 @@ export declare const Item: z.ZodObject<{
|
|
|
208
213
|
company: string;
|
|
209
214
|
default_warehouse: string;
|
|
210
215
|
}>, "many">;
|
|
211
|
-
supplier_items: z.ZodArray<z.
|
|
216
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
217
|
+
name: z.ZodString;
|
|
218
|
+
owner: z.ZodString;
|
|
219
|
+
creation: z.ZodString;
|
|
220
|
+
modified: z.ZodString;
|
|
221
|
+
modified_by: z.ZodString;
|
|
222
|
+
parent: z.ZodString;
|
|
223
|
+
parentfield: z.ZodString;
|
|
224
|
+
parenttype: z.ZodString;
|
|
225
|
+
idx: z.ZodNumber;
|
|
226
|
+
docstatus: z.ZodNumber;
|
|
227
|
+
barcode: z.ZodString;
|
|
228
|
+
barcode_type: z.ZodString;
|
|
229
|
+
doctype: z.ZodString;
|
|
230
|
+
supplier: z.ZodString;
|
|
231
|
+
}, "strip", z.ZodTypeAny, {
|
|
232
|
+
name: string;
|
|
233
|
+
doctype: string;
|
|
234
|
+
owner: string;
|
|
235
|
+
creation: string;
|
|
236
|
+
modified: string;
|
|
237
|
+
modified_by: string;
|
|
238
|
+
parent: string;
|
|
239
|
+
parentfield: string;
|
|
240
|
+
parenttype: string;
|
|
241
|
+
idx: number;
|
|
242
|
+
docstatus: number;
|
|
243
|
+
barcode: string;
|
|
244
|
+
barcode_type: string;
|
|
245
|
+
supplier: string;
|
|
246
|
+
}, {
|
|
247
|
+
name: string;
|
|
248
|
+
doctype: string;
|
|
249
|
+
owner: string;
|
|
250
|
+
creation: string;
|
|
251
|
+
modified: string;
|
|
252
|
+
modified_by: string;
|
|
253
|
+
parent: string;
|
|
254
|
+
parentfield: string;
|
|
255
|
+
parenttype: string;
|
|
256
|
+
idx: number;
|
|
257
|
+
docstatus: number;
|
|
258
|
+
barcode: string;
|
|
259
|
+
barcode_type: string;
|
|
260
|
+
supplier: string;
|
|
261
|
+
}>, "many">;
|
|
212
262
|
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
213
263
|
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
214
264
|
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
215
265
|
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
266
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
216
267
|
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
268
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
269
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
270
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
271
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
272
|
+
name: z.ZodString;
|
|
273
|
+
owner: z.ZodString;
|
|
274
|
+
creation: z.ZodString;
|
|
275
|
+
modified: z.ZodString;
|
|
276
|
+
modified_by: z.ZodString;
|
|
277
|
+
parent: z.ZodString;
|
|
278
|
+
parentfield: z.ZodString;
|
|
279
|
+
parenttype: z.ZodString;
|
|
280
|
+
idx: z.ZodNumber;
|
|
281
|
+
docstatus: z.ZodNumber;
|
|
282
|
+
barcode: z.ZodString;
|
|
283
|
+
barcode_type: z.ZodString;
|
|
284
|
+
doctype: z.ZodString;
|
|
285
|
+
certification: z.ZodString;
|
|
286
|
+
}, "strip", z.ZodTypeAny, {
|
|
287
|
+
name: string;
|
|
288
|
+
doctype: string;
|
|
289
|
+
owner: string;
|
|
290
|
+
creation: string;
|
|
291
|
+
modified: string;
|
|
292
|
+
modified_by: string;
|
|
293
|
+
parent: string;
|
|
294
|
+
parentfield: string;
|
|
295
|
+
parenttype: string;
|
|
296
|
+
idx: number;
|
|
297
|
+
docstatus: number;
|
|
298
|
+
barcode: string;
|
|
299
|
+
barcode_type: string;
|
|
300
|
+
certification: string;
|
|
301
|
+
}, {
|
|
302
|
+
name: string;
|
|
303
|
+
doctype: string;
|
|
304
|
+
owner: string;
|
|
305
|
+
creation: string;
|
|
306
|
+
modified: string;
|
|
307
|
+
modified_by: string;
|
|
308
|
+
parent: string;
|
|
309
|
+
parentfield: string;
|
|
310
|
+
parenttype: string;
|
|
311
|
+
idx: number;
|
|
312
|
+
docstatus: number;
|
|
313
|
+
barcode: string;
|
|
314
|
+
barcode_type: string;
|
|
315
|
+
certification: string;
|
|
316
|
+
}>, "many">;
|
|
217
317
|
}, "strip", z.ZodTypeAny, {
|
|
218
318
|
description: string;
|
|
219
319
|
name: string;
|
|
@@ -264,13 +364,15 @@ export declare const Item: z.ZodObject<{
|
|
|
264
364
|
has_serial_no: number;
|
|
265
365
|
has_variants: number;
|
|
266
366
|
variant_based_on: string;
|
|
267
|
-
is_purchase_item: number;
|
|
268
367
|
min_order_qty: number;
|
|
269
368
|
safety_stock: number;
|
|
369
|
+
is_purchase_item: number;
|
|
370
|
+
custom_include_in_purchase_planning: number;
|
|
270
371
|
lead_time_days: number;
|
|
271
372
|
last_purchase_rate: number;
|
|
272
373
|
is_customer_provided_item: number;
|
|
273
374
|
delivered_by_supplier: number;
|
|
375
|
+
fsc_percentage: number;
|
|
274
376
|
sales_uom: string;
|
|
275
377
|
is_sales_item: number;
|
|
276
378
|
custom_is_selling_enabled: number;
|
|
@@ -331,8 +433,39 @@ export declare const Item: z.ZodObject<{
|
|
|
331
433
|
company: string;
|
|
332
434
|
default_warehouse: string;
|
|
333
435
|
}[];
|
|
334
|
-
supplier_items:
|
|
436
|
+
supplier_items: {
|
|
437
|
+
name: string;
|
|
438
|
+
doctype: string;
|
|
439
|
+
owner: string;
|
|
440
|
+
creation: string;
|
|
441
|
+
modified: string;
|
|
442
|
+
modified_by: string;
|
|
443
|
+
parent: string;
|
|
444
|
+
parentfield: string;
|
|
445
|
+
parenttype: string;
|
|
446
|
+
idx: number;
|
|
447
|
+
docstatus: number;
|
|
448
|
+
barcode: string;
|
|
449
|
+
barcode_type: string;
|
|
450
|
+
supplier: string;
|
|
451
|
+
}[];
|
|
335
452
|
customer_items: any[];
|
|
453
|
+
custom_certifications: {
|
|
454
|
+
name: string;
|
|
455
|
+
doctype: string;
|
|
456
|
+
owner: string;
|
|
457
|
+
creation: string;
|
|
458
|
+
modified: string;
|
|
459
|
+
modified_by: string;
|
|
460
|
+
parent: string;
|
|
461
|
+
parentfield: string;
|
|
462
|
+
parenttype: string;
|
|
463
|
+
idx: number;
|
|
464
|
+
docstatus: number;
|
|
465
|
+
barcode: string;
|
|
466
|
+
barcode_type: string;
|
|
467
|
+
certification: string;
|
|
468
|
+
}[];
|
|
336
469
|
image?: string | null | undefined;
|
|
337
470
|
warehouse_category?: string | null | undefined;
|
|
338
471
|
ean?: string | null | undefined;
|
|
@@ -342,9 +475,16 @@ export declare const Item: z.ZodObject<{
|
|
|
342
475
|
shipping_height?: number | null | undefined;
|
|
343
476
|
packaging_weight_cardboard?: number | null | undefined;
|
|
344
477
|
packaging_weight_plastic?: number | null | undefined;
|
|
478
|
+
fsc_status?: string | null | undefined;
|
|
479
|
+
custom_fsc_type_of_wood?: string | null | undefined;
|
|
480
|
+
custom_fsc_product_group?: string | null | undefined;
|
|
345
481
|
custom_product_version?: string | null | undefined;
|
|
346
482
|
custom_supplier?: string | null | undefined;
|
|
483
|
+
purchase_description?: string | null | undefined;
|
|
347
484
|
custom_stock_reserve?: number | null | undefined;
|
|
485
|
+
custom_sales_category?: string | null | undefined;
|
|
486
|
+
custom_shopify_content_configuration?: string | null | undefined;
|
|
487
|
+
custom_compliance?: string | null | undefined;
|
|
348
488
|
}, {
|
|
349
489
|
description: string;
|
|
350
490
|
name: string;
|
|
@@ -395,13 +535,15 @@ export declare const Item: z.ZodObject<{
|
|
|
395
535
|
has_serial_no: number;
|
|
396
536
|
has_variants: number;
|
|
397
537
|
variant_based_on: string;
|
|
398
|
-
is_purchase_item: number;
|
|
399
538
|
min_order_qty: number;
|
|
400
539
|
safety_stock: number;
|
|
540
|
+
is_purchase_item: number;
|
|
541
|
+
custom_include_in_purchase_planning: number;
|
|
401
542
|
lead_time_days: number;
|
|
402
543
|
last_purchase_rate: number;
|
|
403
544
|
is_customer_provided_item: number;
|
|
404
545
|
delivered_by_supplier: number;
|
|
546
|
+
fsc_percentage: number;
|
|
405
547
|
sales_uom: string;
|
|
406
548
|
is_sales_item: number;
|
|
407
549
|
custom_is_selling_enabled: number;
|
|
@@ -462,8 +604,39 @@ export declare const Item: z.ZodObject<{
|
|
|
462
604
|
company: string;
|
|
463
605
|
default_warehouse: string;
|
|
464
606
|
}[];
|
|
465
|
-
supplier_items:
|
|
607
|
+
supplier_items: {
|
|
608
|
+
name: string;
|
|
609
|
+
doctype: string;
|
|
610
|
+
owner: string;
|
|
611
|
+
creation: string;
|
|
612
|
+
modified: string;
|
|
613
|
+
modified_by: string;
|
|
614
|
+
parent: string;
|
|
615
|
+
parentfield: string;
|
|
616
|
+
parenttype: string;
|
|
617
|
+
idx: number;
|
|
618
|
+
docstatus: number;
|
|
619
|
+
barcode: string;
|
|
620
|
+
barcode_type: string;
|
|
621
|
+
supplier: string;
|
|
622
|
+
}[];
|
|
466
623
|
customer_items: any[];
|
|
624
|
+
custom_certifications: {
|
|
625
|
+
name: string;
|
|
626
|
+
doctype: string;
|
|
627
|
+
owner: string;
|
|
628
|
+
creation: string;
|
|
629
|
+
modified: string;
|
|
630
|
+
modified_by: string;
|
|
631
|
+
parent: string;
|
|
632
|
+
parentfield: string;
|
|
633
|
+
parenttype: string;
|
|
634
|
+
idx: number;
|
|
635
|
+
docstatus: number;
|
|
636
|
+
barcode: string;
|
|
637
|
+
barcode_type: string;
|
|
638
|
+
certification: string;
|
|
639
|
+
}[];
|
|
467
640
|
image?: string | null | undefined;
|
|
468
641
|
warehouse_category?: string | null | undefined;
|
|
469
642
|
ean?: string | null | undefined;
|
|
@@ -473,9 +646,16 @@ export declare const Item: z.ZodObject<{
|
|
|
473
646
|
shipping_height?: number | null | undefined;
|
|
474
647
|
packaging_weight_cardboard?: number | null | undefined;
|
|
475
648
|
packaging_weight_plastic?: number | null | undefined;
|
|
649
|
+
fsc_status?: string | null | undefined;
|
|
650
|
+
custom_fsc_type_of_wood?: string | null | undefined;
|
|
651
|
+
custom_fsc_product_group?: string | null | undefined;
|
|
476
652
|
custom_product_version?: string | null | undefined;
|
|
477
653
|
custom_supplier?: string | null | undefined;
|
|
654
|
+
purchase_description?: string | null | undefined;
|
|
478
655
|
custom_stock_reserve?: number | null | undefined;
|
|
656
|
+
custom_sales_category?: string | null | undefined;
|
|
657
|
+
custom_shopify_content_configuration?: string | null | undefined;
|
|
658
|
+
custom_compliance?: string | null | undefined;
|
|
479
659
|
}>;
|
|
480
660
|
export type ItemType = z.infer<typeof Item>;
|
|
481
661
|
export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<Omit<{
|
|
@@ -534,13 +714,18 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
|
|
|
534
714
|
has_serial_no: z.ZodNumber;
|
|
535
715
|
has_variants: z.ZodNumber;
|
|
536
716
|
variant_based_on: z.ZodString;
|
|
537
|
-
is_purchase_item: z.ZodNumber;
|
|
538
717
|
min_order_qty: z.ZodNumber;
|
|
539
718
|
safety_stock: z.ZodNumber;
|
|
719
|
+
is_purchase_item: z.ZodNumber;
|
|
720
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
540
721
|
lead_time_days: z.ZodNumber;
|
|
541
722
|
last_purchase_rate: z.ZodNumber;
|
|
542
723
|
is_customer_provided_item: z.ZodNumber;
|
|
543
724
|
delivered_by_supplier: z.ZodNumber;
|
|
725
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
726
|
+
fsc_percentage: z.ZodNumber;
|
|
727
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
728
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
544
729
|
sales_uom: z.ZodString;
|
|
545
730
|
is_sales_item: z.ZodNumber;
|
|
546
731
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -687,12 +872,107 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
|
|
|
687
872
|
company: string;
|
|
688
873
|
default_warehouse: string;
|
|
689
874
|
}>, "many">;
|
|
690
|
-
supplier_items: z.ZodArray<z.
|
|
875
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
876
|
+
name: z.ZodString;
|
|
877
|
+
owner: z.ZodString;
|
|
878
|
+
creation: z.ZodString;
|
|
879
|
+
modified: z.ZodString;
|
|
880
|
+
modified_by: z.ZodString;
|
|
881
|
+
parent: z.ZodString;
|
|
882
|
+
parentfield: z.ZodString;
|
|
883
|
+
parenttype: z.ZodString;
|
|
884
|
+
idx: z.ZodNumber;
|
|
885
|
+
docstatus: z.ZodNumber;
|
|
886
|
+
barcode: z.ZodString;
|
|
887
|
+
barcode_type: z.ZodString;
|
|
888
|
+
doctype: z.ZodString;
|
|
889
|
+
supplier: z.ZodString;
|
|
890
|
+
}, "strip", z.ZodTypeAny, {
|
|
891
|
+
name: string;
|
|
892
|
+
doctype: string;
|
|
893
|
+
owner: string;
|
|
894
|
+
creation: string;
|
|
895
|
+
modified: string;
|
|
896
|
+
modified_by: string;
|
|
897
|
+
parent: string;
|
|
898
|
+
parentfield: string;
|
|
899
|
+
parenttype: string;
|
|
900
|
+
idx: number;
|
|
901
|
+
docstatus: number;
|
|
902
|
+
barcode: string;
|
|
903
|
+
barcode_type: string;
|
|
904
|
+
supplier: string;
|
|
905
|
+
}, {
|
|
906
|
+
name: string;
|
|
907
|
+
doctype: string;
|
|
908
|
+
owner: string;
|
|
909
|
+
creation: string;
|
|
910
|
+
modified: string;
|
|
911
|
+
modified_by: string;
|
|
912
|
+
parent: string;
|
|
913
|
+
parentfield: string;
|
|
914
|
+
parenttype: string;
|
|
915
|
+
idx: number;
|
|
916
|
+
docstatus: number;
|
|
917
|
+
barcode: string;
|
|
918
|
+
barcode_type: string;
|
|
919
|
+
supplier: string;
|
|
920
|
+
}>, "many">;
|
|
691
921
|
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
692
922
|
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
693
923
|
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
694
924
|
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
925
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
695
926
|
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
927
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
928
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
929
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
930
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
931
|
+
name: z.ZodString;
|
|
932
|
+
owner: z.ZodString;
|
|
933
|
+
creation: z.ZodString;
|
|
934
|
+
modified: z.ZodString;
|
|
935
|
+
modified_by: z.ZodString;
|
|
936
|
+
parent: z.ZodString;
|
|
937
|
+
parentfield: z.ZodString;
|
|
938
|
+
parenttype: z.ZodString;
|
|
939
|
+
idx: z.ZodNumber;
|
|
940
|
+
docstatus: z.ZodNumber;
|
|
941
|
+
barcode: z.ZodString;
|
|
942
|
+
barcode_type: z.ZodString;
|
|
943
|
+
doctype: z.ZodString;
|
|
944
|
+
certification: z.ZodString;
|
|
945
|
+
}, "strip", z.ZodTypeAny, {
|
|
946
|
+
name: string;
|
|
947
|
+
doctype: string;
|
|
948
|
+
owner: string;
|
|
949
|
+
creation: string;
|
|
950
|
+
modified: string;
|
|
951
|
+
modified_by: string;
|
|
952
|
+
parent: string;
|
|
953
|
+
parentfield: string;
|
|
954
|
+
parenttype: string;
|
|
955
|
+
idx: number;
|
|
956
|
+
docstatus: number;
|
|
957
|
+
barcode: string;
|
|
958
|
+
barcode_type: string;
|
|
959
|
+
certification: string;
|
|
960
|
+
}, {
|
|
961
|
+
name: string;
|
|
962
|
+
doctype: string;
|
|
963
|
+
owner: string;
|
|
964
|
+
creation: string;
|
|
965
|
+
modified: string;
|
|
966
|
+
modified_by: string;
|
|
967
|
+
parent: string;
|
|
968
|
+
parentfield: string;
|
|
969
|
+
parenttype: string;
|
|
970
|
+
idx: number;
|
|
971
|
+
docstatus: number;
|
|
972
|
+
barcode: string;
|
|
973
|
+
barcode_type: string;
|
|
974
|
+
certification: string;
|
|
975
|
+
}>, "many">;
|
|
696
976
|
}, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "disabled" | "item_code" | "item_name" | "weight_per_unit" | "weight_uom" | "warehouse_category" | "ean" | "custom_is_shipping_enabled" | "shipping_template" | "shipping_width" | "shipping_length" | "shipping_height" | "shipping_dimensions_unit">, "strip", z.ZodTypeAny, {
|
|
697
977
|
disabled: number;
|
|
698
978
|
item_code: string;
|
|
@@ -779,13 +1059,18 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
|
|
|
779
1059
|
has_serial_no: z.ZodNumber;
|
|
780
1060
|
has_variants: z.ZodNumber;
|
|
781
1061
|
variant_based_on: z.ZodString;
|
|
782
|
-
is_purchase_item: z.ZodNumber;
|
|
783
1062
|
min_order_qty: z.ZodNumber;
|
|
784
1063
|
safety_stock: z.ZodNumber;
|
|
1064
|
+
is_purchase_item: z.ZodNumber;
|
|
1065
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
785
1066
|
lead_time_days: z.ZodNumber;
|
|
786
1067
|
last_purchase_rate: z.ZodNumber;
|
|
787
1068
|
is_customer_provided_item: z.ZodNumber;
|
|
788
1069
|
delivered_by_supplier: z.ZodNumber;
|
|
1070
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1071
|
+
fsc_percentage: z.ZodNumber;
|
|
1072
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1073
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
789
1074
|
sales_uom: z.ZodString;
|
|
790
1075
|
is_sales_item: z.ZodNumber;
|
|
791
1076
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -932,29 +1217,124 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
|
|
|
932
1217
|
company: string;
|
|
933
1218
|
default_warehouse: string;
|
|
934
1219
|
}>, "many">;
|
|
935
|
-
supplier_items: z.ZodArray<z.
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
1220
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
1221
|
+
name: z.ZodString;
|
|
1222
|
+
owner: z.ZodString;
|
|
1223
|
+
creation: z.ZodString;
|
|
1224
|
+
modified: z.ZodString;
|
|
1225
|
+
modified_by: z.ZodString;
|
|
1226
|
+
parent: z.ZodString;
|
|
1227
|
+
parentfield: z.ZodString;
|
|
1228
|
+
parenttype: z.ZodString;
|
|
1229
|
+
idx: z.ZodNumber;
|
|
1230
|
+
docstatus: z.ZodNumber;
|
|
1231
|
+
barcode: z.ZodString;
|
|
1232
|
+
barcode_type: z.ZodString;
|
|
1233
|
+
doctype: z.ZodString;
|
|
1234
|
+
supplier: z.ZodString;
|
|
1235
|
+
}, "strip", z.ZodTypeAny, {
|
|
1236
|
+
name: string;
|
|
1237
|
+
doctype: string;
|
|
1238
|
+
owner: string;
|
|
1239
|
+
creation: string;
|
|
1240
|
+
modified: string;
|
|
1241
|
+
modified_by: string;
|
|
1242
|
+
parent: string;
|
|
1243
|
+
parentfield: string;
|
|
1244
|
+
parenttype: string;
|
|
1245
|
+
idx: number;
|
|
1246
|
+
docstatus: number;
|
|
1247
|
+
barcode: string;
|
|
1248
|
+
barcode_type: string;
|
|
1249
|
+
supplier: string;
|
|
1250
|
+
}, {
|
|
1251
|
+
name: string;
|
|
1252
|
+
doctype: string;
|
|
1253
|
+
owner: string;
|
|
1254
|
+
creation: string;
|
|
1255
|
+
modified: string;
|
|
1256
|
+
modified_by: string;
|
|
1257
|
+
parent: string;
|
|
1258
|
+
parentfield: string;
|
|
1259
|
+
parenttype: string;
|
|
1260
|
+
idx: number;
|
|
1261
|
+
docstatus: number;
|
|
1262
|
+
barcode: string;
|
|
1263
|
+
barcode_type: string;
|
|
1264
|
+
supplier: string;
|
|
1265
|
+
}>, "many">;
|
|
1266
|
+
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
1267
|
+
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
1268
|
+
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1269
|
+
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1270
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1271
|
+
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1272
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1273
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1274
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1275
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
1276
|
+
name: z.ZodString;
|
|
1277
|
+
owner: z.ZodString;
|
|
1278
|
+
creation: z.ZodString;
|
|
1279
|
+
modified: z.ZodString;
|
|
1280
|
+
modified_by: z.ZodString;
|
|
1281
|
+
parent: z.ZodString;
|
|
1282
|
+
parentfield: z.ZodString;
|
|
1283
|
+
parenttype: z.ZodString;
|
|
1284
|
+
idx: z.ZodNumber;
|
|
1285
|
+
docstatus: z.ZodNumber;
|
|
1286
|
+
barcode: z.ZodString;
|
|
1287
|
+
barcode_type: z.ZodString;
|
|
1288
|
+
doctype: z.ZodString;
|
|
1289
|
+
certification: z.ZodString;
|
|
1290
|
+
}, "strip", z.ZodTypeAny, {
|
|
1291
|
+
name: string;
|
|
1292
|
+
doctype: string;
|
|
1293
|
+
owner: string;
|
|
1294
|
+
creation: string;
|
|
1295
|
+
modified: string;
|
|
1296
|
+
modified_by: string;
|
|
1297
|
+
parent: string;
|
|
1298
|
+
parentfield: string;
|
|
1299
|
+
parenttype: string;
|
|
1300
|
+
idx: number;
|
|
1301
|
+
docstatus: number;
|
|
1302
|
+
barcode: string;
|
|
1303
|
+
barcode_type: string;
|
|
1304
|
+
certification: string;
|
|
1305
|
+
}, {
|
|
1306
|
+
name: string;
|
|
1307
|
+
doctype: string;
|
|
1308
|
+
owner: string;
|
|
1309
|
+
creation: string;
|
|
1310
|
+
modified: string;
|
|
1311
|
+
modified_by: string;
|
|
1312
|
+
parent: string;
|
|
1313
|
+
parentfield: string;
|
|
1314
|
+
parenttype: string;
|
|
1315
|
+
idx: number;
|
|
1316
|
+
docstatus: number;
|
|
1317
|
+
barcode: string;
|
|
1318
|
+
barcode_type: string;
|
|
1319
|
+
certification: string;
|
|
1320
|
+
}>, "many">;
|
|
1321
|
+
}, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "disabled" | "item_name" | "weight_per_unit" | "weight_uom" | "warehouse_category" | "ean" | "custom_is_shipping_enabled" | "shipping_template" | "shipping_width" | "shipping_length" | "shipping_height" | "shipping_dimensions_unit">, {
|
|
1322
|
+
sku: z.ZodString;
|
|
1323
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1324
|
+
disabled: number;
|
|
1325
|
+
item_name: string;
|
|
1326
|
+
weight_per_unit: number;
|
|
1327
|
+
weight_uom: "kg" | "g" | "mg";
|
|
1328
|
+
custom_is_shipping_enabled: number;
|
|
1329
|
+
shipping_dimensions_unit: "m" | "cm" | "mm";
|
|
1330
|
+
sku: string;
|
|
1331
|
+
warehouse_category?: string | null | undefined;
|
|
1332
|
+
ean?: string | null | undefined;
|
|
1333
|
+
shipping_template?: string | null | undefined;
|
|
1334
|
+
shipping_width?: number | null | undefined;
|
|
1335
|
+
shipping_length?: number | null | undefined;
|
|
1336
|
+
shipping_height?: number | null | undefined;
|
|
1337
|
+
}, {
|
|
958
1338
|
disabled: number;
|
|
959
1339
|
item_name: string;
|
|
960
1340
|
weight_per_unit: number;
|
|
@@ -1027,13 +1407,18 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
|
|
|
1027
1407
|
has_serial_no: z.ZodNumber;
|
|
1028
1408
|
has_variants: z.ZodNumber;
|
|
1029
1409
|
variant_based_on: z.ZodString;
|
|
1030
|
-
is_purchase_item: z.ZodNumber;
|
|
1031
1410
|
min_order_qty: z.ZodNumber;
|
|
1032
1411
|
safety_stock: z.ZodNumber;
|
|
1412
|
+
is_purchase_item: z.ZodNumber;
|
|
1413
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
1033
1414
|
lead_time_days: z.ZodNumber;
|
|
1034
1415
|
last_purchase_rate: z.ZodNumber;
|
|
1035
1416
|
is_customer_provided_item: z.ZodNumber;
|
|
1036
1417
|
delivered_by_supplier: z.ZodNumber;
|
|
1418
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1419
|
+
fsc_percentage: z.ZodNumber;
|
|
1420
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1421
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1037
1422
|
sales_uom: z.ZodString;
|
|
1038
1423
|
is_sales_item: z.ZodNumber;
|
|
1039
1424
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -1180,12 +1565,107 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
|
|
|
1180
1565
|
company: string;
|
|
1181
1566
|
default_warehouse: string;
|
|
1182
1567
|
}>, "many">;
|
|
1183
|
-
supplier_items: z.ZodArray<z.
|
|
1568
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
1569
|
+
name: z.ZodString;
|
|
1570
|
+
owner: z.ZodString;
|
|
1571
|
+
creation: z.ZodString;
|
|
1572
|
+
modified: z.ZodString;
|
|
1573
|
+
modified_by: z.ZodString;
|
|
1574
|
+
parent: z.ZodString;
|
|
1575
|
+
parentfield: z.ZodString;
|
|
1576
|
+
parenttype: z.ZodString;
|
|
1577
|
+
idx: z.ZodNumber;
|
|
1578
|
+
docstatus: z.ZodNumber;
|
|
1579
|
+
barcode: z.ZodString;
|
|
1580
|
+
barcode_type: z.ZodString;
|
|
1581
|
+
doctype: z.ZodString;
|
|
1582
|
+
supplier: z.ZodString;
|
|
1583
|
+
}, "strip", z.ZodTypeAny, {
|
|
1584
|
+
name: string;
|
|
1585
|
+
doctype: string;
|
|
1586
|
+
owner: string;
|
|
1587
|
+
creation: string;
|
|
1588
|
+
modified: string;
|
|
1589
|
+
modified_by: string;
|
|
1590
|
+
parent: string;
|
|
1591
|
+
parentfield: string;
|
|
1592
|
+
parenttype: string;
|
|
1593
|
+
idx: number;
|
|
1594
|
+
docstatus: number;
|
|
1595
|
+
barcode: string;
|
|
1596
|
+
barcode_type: string;
|
|
1597
|
+
supplier: string;
|
|
1598
|
+
}, {
|
|
1599
|
+
name: string;
|
|
1600
|
+
doctype: string;
|
|
1601
|
+
owner: string;
|
|
1602
|
+
creation: string;
|
|
1603
|
+
modified: string;
|
|
1604
|
+
modified_by: string;
|
|
1605
|
+
parent: string;
|
|
1606
|
+
parentfield: string;
|
|
1607
|
+
parenttype: string;
|
|
1608
|
+
idx: number;
|
|
1609
|
+
docstatus: number;
|
|
1610
|
+
barcode: string;
|
|
1611
|
+
barcode_type: string;
|
|
1612
|
+
supplier: string;
|
|
1613
|
+
}>, "many">;
|
|
1184
1614
|
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
1185
1615
|
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
1186
1616
|
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1187
1617
|
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1618
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1188
1619
|
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1620
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1621
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1622
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1623
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
1624
|
+
name: z.ZodString;
|
|
1625
|
+
owner: z.ZodString;
|
|
1626
|
+
creation: z.ZodString;
|
|
1627
|
+
modified: z.ZodString;
|
|
1628
|
+
modified_by: z.ZodString;
|
|
1629
|
+
parent: z.ZodString;
|
|
1630
|
+
parentfield: z.ZodString;
|
|
1631
|
+
parenttype: z.ZodString;
|
|
1632
|
+
idx: z.ZodNumber;
|
|
1633
|
+
docstatus: z.ZodNumber;
|
|
1634
|
+
barcode: z.ZodString;
|
|
1635
|
+
barcode_type: z.ZodString;
|
|
1636
|
+
doctype: z.ZodString;
|
|
1637
|
+
certification: z.ZodString;
|
|
1638
|
+
}, "strip", z.ZodTypeAny, {
|
|
1639
|
+
name: string;
|
|
1640
|
+
doctype: string;
|
|
1641
|
+
owner: string;
|
|
1642
|
+
creation: string;
|
|
1643
|
+
modified: string;
|
|
1644
|
+
modified_by: string;
|
|
1645
|
+
parent: string;
|
|
1646
|
+
parentfield: string;
|
|
1647
|
+
parenttype: string;
|
|
1648
|
+
idx: number;
|
|
1649
|
+
docstatus: number;
|
|
1650
|
+
barcode: string;
|
|
1651
|
+
barcode_type: string;
|
|
1652
|
+
certification: string;
|
|
1653
|
+
}, {
|
|
1654
|
+
name: string;
|
|
1655
|
+
doctype: string;
|
|
1656
|
+
owner: string;
|
|
1657
|
+
creation: string;
|
|
1658
|
+
modified: string;
|
|
1659
|
+
modified_by: string;
|
|
1660
|
+
parent: string;
|
|
1661
|
+
parentfield: string;
|
|
1662
|
+
parenttype: string;
|
|
1663
|
+
idx: number;
|
|
1664
|
+
docstatus: number;
|
|
1665
|
+
barcode: string;
|
|
1666
|
+
barcode_type: string;
|
|
1667
|
+
certification: string;
|
|
1668
|
+
}>, "many">;
|
|
1189
1669
|
}, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "shipping_width" | "shipping_length" | "shipping_height" | "shipping_dimensions_unit">, "strip", z.ZodTypeAny, {
|
|
1190
1670
|
shipping_dimensions_unit: "m" | "cm" | "mm";
|
|
1191
1671
|
shipping_width?: number | null | undefined;
|
|
@@ -1254,13 +1734,18 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
|
|
|
1254
1734
|
has_serial_no: z.ZodNumber;
|
|
1255
1735
|
has_variants: z.ZodNumber;
|
|
1256
1736
|
variant_based_on: z.ZodString;
|
|
1257
|
-
is_purchase_item: z.ZodNumber;
|
|
1258
1737
|
min_order_qty: z.ZodNumber;
|
|
1259
1738
|
safety_stock: z.ZodNumber;
|
|
1739
|
+
is_purchase_item: z.ZodNumber;
|
|
1740
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
1260
1741
|
lead_time_days: z.ZodNumber;
|
|
1261
1742
|
last_purchase_rate: z.ZodNumber;
|
|
1262
1743
|
is_customer_provided_item: z.ZodNumber;
|
|
1263
1744
|
delivered_by_supplier: z.ZodNumber;
|
|
1745
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1746
|
+
fsc_percentage: z.ZodNumber;
|
|
1747
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1748
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1264
1749
|
sales_uom: z.ZodString;
|
|
1265
1750
|
is_sales_item: z.ZodNumber;
|
|
1266
1751
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -1407,12 +1892,107 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
|
|
|
1407
1892
|
company: string;
|
|
1408
1893
|
default_warehouse: string;
|
|
1409
1894
|
}>, "many">;
|
|
1410
|
-
supplier_items: z.ZodArray<z.
|
|
1895
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
1896
|
+
name: z.ZodString;
|
|
1897
|
+
owner: z.ZodString;
|
|
1898
|
+
creation: z.ZodString;
|
|
1899
|
+
modified: z.ZodString;
|
|
1900
|
+
modified_by: z.ZodString;
|
|
1901
|
+
parent: z.ZodString;
|
|
1902
|
+
parentfield: z.ZodString;
|
|
1903
|
+
parenttype: z.ZodString;
|
|
1904
|
+
idx: z.ZodNumber;
|
|
1905
|
+
docstatus: z.ZodNumber;
|
|
1906
|
+
barcode: z.ZodString;
|
|
1907
|
+
barcode_type: z.ZodString;
|
|
1908
|
+
doctype: z.ZodString;
|
|
1909
|
+
supplier: z.ZodString;
|
|
1910
|
+
}, "strip", z.ZodTypeAny, {
|
|
1911
|
+
name: string;
|
|
1912
|
+
doctype: string;
|
|
1913
|
+
owner: string;
|
|
1914
|
+
creation: string;
|
|
1915
|
+
modified: string;
|
|
1916
|
+
modified_by: string;
|
|
1917
|
+
parent: string;
|
|
1918
|
+
parentfield: string;
|
|
1919
|
+
parenttype: string;
|
|
1920
|
+
idx: number;
|
|
1921
|
+
docstatus: number;
|
|
1922
|
+
barcode: string;
|
|
1923
|
+
barcode_type: string;
|
|
1924
|
+
supplier: string;
|
|
1925
|
+
}, {
|
|
1926
|
+
name: string;
|
|
1927
|
+
doctype: string;
|
|
1928
|
+
owner: string;
|
|
1929
|
+
creation: string;
|
|
1930
|
+
modified: string;
|
|
1931
|
+
modified_by: string;
|
|
1932
|
+
parent: string;
|
|
1933
|
+
parentfield: string;
|
|
1934
|
+
parenttype: string;
|
|
1935
|
+
idx: number;
|
|
1936
|
+
docstatus: number;
|
|
1937
|
+
barcode: string;
|
|
1938
|
+
barcode_type: string;
|
|
1939
|
+
supplier: string;
|
|
1940
|
+
}>, "many">;
|
|
1411
1941
|
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
1412
1942
|
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
1413
1943
|
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1414
1944
|
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1945
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1415
1946
|
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1947
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1948
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1949
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1950
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
1951
|
+
name: z.ZodString;
|
|
1952
|
+
owner: z.ZodString;
|
|
1953
|
+
creation: z.ZodString;
|
|
1954
|
+
modified: z.ZodString;
|
|
1955
|
+
modified_by: z.ZodString;
|
|
1956
|
+
parent: z.ZodString;
|
|
1957
|
+
parentfield: z.ZodString;
|
|
1958
|
+
parenttype: z.ZodString;
|
|
1959
|
+
idx: z.ZodNumber;
|
|
1960
|
+
docstatus: z.ZodNumber;
|
|
1961
|
+
barcode: z.ZodString;
|
|
1962
|
+
barcode_type: z.ZodString;
|
|
1963
|
+
doctype: z.ZodString;
|
|
1964
|
+
certification: z.ZodString;
|
|
1965
|
+
}, "strip", z.ZodTypeAny, {
|
|
1966
|
+
name: string;
|
|
1967
|
+
doctype: string;
|
|
1968
|
+
owner: string;
|
|
1969
|
+
creation: string;
|
|
1970
|
+
modified: string;
|
|
1971
|
+
modified_by: string;
|
|
1972
|
+
parent: string;
|
|
1973
|
+
parentfield: string;
|
|
1974
|
+
parenttype: string;
|
|
1975
|
+
idx: number;
|
|
1976
|
+
docstatus: number;
|
|
1977
|
+
barcode: string;
|
|
1978
|
+
barcode_type: string;
|
|
1979
|
+
certification: string;
|
|
1980
|
+
}, {
|
|
1981
|
+
name: string;
|
|
1982
|
+
doctype: string;
|
|
1983
|
+
owner: string;
|
|
1984
|
+
creation: string;
|
|
1985
|
+
modified: string;
|
|
1986
|
+
modified_by: string;
|
|
1987
|
+
parent: string;
|
|
1988
|
+
parentfield: string;
|
|
1989
|
+
parenttype: string;
|
|
1990
|
+
idx: number;
|
|
1991
|
+
docstatus: number;
|
|
1992
|
+
barcode: string;
|
|
1993
|
+
barcode_type: string;
|
|
1994
|
+
certification: string;
|
|
1995
|
+
}>, "many">;
|
|
1416
1996
|
}, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "item_code">, "strip", z.ZodTypeAny, {
|
|
1417
1997
|
item_code: string;
|
|
1418
1998
|
}, {
|
|
@@ -1475,13 +2055,18 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
|
|
|
1475
2055
|
has_serial_no: z.ZodNumber;
|
|
1476
2056
|
has_variants: z.ZodNumber;
|
|
1477
2057
|
variant_based_on: z.ZodString;
|
|
1478
|
-
is_purchase_item: z.ZodNumber;
|
|
1479
2058
|
min_order_qty: z.ZodNumber;
|
|
1480
2059
|
safety_stock: z.ZodNumber;
|
|
2060
|
+
is_purchase_item: z.ZodNumber;
|
|
2061
|
+
custom_include_in_purchase_planning: z.ZodNumber;
|
|
1481
2062
|
lead_time_days: z.ZodNumber;
|
|
1482
2063
|
last_purchase_rate: z.ZodNumber;
|
|
1483
2064
|
is_customer_provided_item: z.ZodNumber;
|
|
1484
2065
|
delivered_by_supplier: z.ZodNumber;
|
|
2066
|
+
fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2067
|
+
fsc_percentage: z.ZodNumber;
|
|
2068
|
+
custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2069
|
+
custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1485
2070
|
sales_uom: z.ZodString;
|
|
1486
2071
|
is_sales_item: z.ZodNumber;
|
|
1487
2072
|
custom_is_selling_enabled: z.ZodNumber;
|
|
@@ -1628,12 +2213,107 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
|
|
|
1628
2213
|
company: string;
|
|
1629
2214
|
default_warehouse: string;
|
|
1630
2215
|
}>, "many">;
|
|
1631
|
-
supplier_items: z.ZodArray<z.
|
|
2216
|
+
supplier_items: z.ZodArray<z.ZodObject<{
|
|
2217
|
+
name: z.ZodString;
|
|
2218
|
+
owner: z.ZodString;
|
|
2219
|
+
creation: z.ZodString;
|
|
2220
|
+
modified: z.ZodString;
|
|
2221
|
+
modified_by: z.ZodString;
|
|
2222
|
+
parent: z.ZodString;
|
|
2223
|
+
parentfield: z.ZodString;
|
|
2224
|
+
parenttype: z.ZodString;
|
|
2225
|
+
idx: z.ZodNumber;
|
|
2226
|
+
docstatus: z.ZodNumber;
|
|
2227
|
+
barcode: z.ZodString;
|
|
2228
|
+
barcode_type: z.ZodString;
|
|
2229
|
+
doctype: z.ZodString;
|
|
2230
|
+
supplier: z.ZodString;
|
|
2231
|
+
}, "strip", z.ZodTypeAny, {
|
|
2232
|
+
name: string;
|
|
2233
|
+
doctype: string;
|
|
2234
|
+
owner: string;
|
|
2235
|
+
creation: string;
|
|
2236
|
+
modified: string;
|
|
2237
|
+
modified_by: string;
|
|
2238
|
+
parent: string;
|
|
2239
|
+
parentfield: string;
|
|
2240
|
+
parenttype: string;
|
|
2241
|
+
idx: number;
|
|
2242
|
+
docstatus: number;
|
|
2243
|
+
barcode: string;
|
|
2244
|
+
barcode_type: string;
|
|
2245
|
+
supplier: string;
|
|
2246
|
+
}, {
|
|
2247
|
+
name: string;
|
|
2248
|
+
doctype: string;
|
|
2249
|
+
owner: string;
|
|
2250
|
+
creation: string;
|
|
2251
|
+
modified: string;
|
|
2252
|
+
modified_by: string;
|
|
2253
|
+
parent: string;
|
|
2254
|
+
parentfield: string;
|
|
2255
|
+
parenttype: string;
|
|
2256
|
+
idx: number;
|
|
2257
|
+
docstatus: number;
|
|
2258
|
+
barcode: string;
|
|
2259
|
+
barcode_type: string;
|
|
2260
|
+
supplier: string;
|
|
2261
|
+
}>, "many">;
|
|
1632
2262
|
customer_items: z.ZodArray<z.ZodAny, "many">;
|
|
1633
2263
|
taxes: z.ZodArray<z.ZodAny, "many">;
|
|
1634
2264
|
custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1635
2265
|
custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2266
|
+
purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1636
2267
|
custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2268
|
+
custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2269
|
+
custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2270
|
+
custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2271
|
+
custom_certifications: z.ZodArray<z.ZodObject<{
|
|
2272
|
+
name: z.ZodString;
|
|
2273
|
+
owner: z.ZodString;
|
|
2274
|
+
creation: z.ZodString;
|
|
2275
|
+
modified: z.ZodString;
|
|
2276
|
+
modified_by: z.ZodString;
|
|
2277
|
+
parent: z.ZodString;
|
|
2278
|
+
parentfield: z.ZodString;
|
|
2279
|
+
parenttype: z.ZodString;
|
|
2280
|
+
idx: z.ZodNumber;
|
|
2281
|
+
docstatus: z.ZodNumber;
|
|
2282
|
+
barcode: z.ZodString;
|
|
2283
|
+
barcode_type: z.ZodString;
|
|
2284
|
+
doctype: z.ZodString;
|
|
2285
|
+
certification: z.ZodString;
|
|
2286
|
+
}, "strip", z.ZodTypeAny, {
|
|
2287
|
+
name: string;
|
|
2288
|
+
doctype: string;
|
|
2289
|
+
owner: string;
|
|
2290
|
+
creation: string;
|
|
2291
|
+
modified: string;
|
|
2292
|
+
modified_by: string;
|
|
2293
|
+
parent: string;
|
|
2294
|
+
parentfield: string;
|
|
2295
|
+
parenttype: string;
|
|
2296
|
+
idx: number;
|
|
2297
|
+
docstatus: number;
|
|
2298
|
+
barcode: string;
|
|
2299
|
+
barcode_type: string;
|
|
2300
|
+
certification: string;
|
|
2301
|
+
}, {
|
|
2302
|
+
name: string;
|
|
2303
|
+
doctype: string;
|
|
2304
|
+
owner: string;
|
|
2305
|
+
creation: string;
|
|
2306
|
+
modified: string;
|
|
2307
|
+
modified_by: string;
|
|
2308
|
+
parent: string;
|
|
2309
|
+
parentfield: string;
|
|
2310
|
+
parenttype: string;
|
|
2311
|
+
idx: number;
|
|
2312
|
+
docstatus: number;
|
|
2313
|
+
barcode: string;
|
|
2314
|
+
barcode_type: string;
|
|
2315
|
+
certification: string;
|
|
2316
|
+
}>, "many">;
|
|
1637
2317
|
}, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "item_code" | "item_name" | "weight_per_unit" | "weight_uom">, "strip", z.ZodTypeAny, {
|
|
1638
2318
|
item_code: string;
|
|
1639
2319
|
item_name: string;
|