erpnext-queue-client 1.39.2 → 2.0.0-beta.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.
Files changed (138) hide show
  1. package/dist/client.js +3 -6
  2. package/dist/constants.d.ts +1 -1
  3. package/dist/constants.js +16 -2
  4. package/dist/erpnext/doctypeResourceRequest.d.ts +12 -11
  5. package/dist/erpnext/doctypeResourceRequest.js +3 -2
  6. package/dist/erpnext/doctypeSubmittableResourceRequest.d.ts +161 -4
  7. package/dist/erpnext/doctypeSubmittableResourceRequest.js +16 -1
  8. package/dist/erpnext/doctypes/address.d.ts +160 -225
  9. package/dist/erpnext/doctypes/address.js +0 -2
  10. package/dist/erpnext/doctypes/contact.d.ts +157 -314
  11. package/dist/erpnext/doctypes/contact.js +1 -1
  12. package/dist/erpnext/doctypes/deliveryNote.d.ts +705 -505
  13. package/dist/erpnext/doctypes/deliveryNote.js +4 -10
  14. package/dist/erpnext/doctypes/item.d.ts +231 -324
  15. package/dist/erpnext/doctypes/paymentEntry.d.ts +820 -0
  16. package/dist/erpnext/doctypes/paymentEntry.js +72 -0
  17. package/dist/erpnext/doctypes/productBundle.d.ts +48 -58
  18. package/dist/erpnext/doctypes/purchaseInvoice.d.ts +717 -745
  19. package/dist/erpnext/doctypes/purchaseReceipt.d.ts +282 -332
  20. package/dist/erpnext/doctypes/salesInvoice.d.ts +3334 -0
  21. package/dist/erpnext/doctypes/salesInvoice.js +72 -0
  22. package/dist/erpnext/doctypes/servicecase.d.ts +191 -134
  23. package/dist/erpnext/doctypes/servicecase.js +4 -6
  24. package/dist/erpnext/doctypes/shipment.d.ts +193 -251
  25. package/dist/erpnext/doctypes/tags.d.ts +10 -0
  26. package/dist/erpnext/doctypes/tags.js +102 -0
  27. package/dist/erpnext/model/Account.d.ts +0 -33
  28. package/dist/erpnext/model/Account.js +0 -11
  29. package/dist/erpnext/model/Address.d.ts +112 -233
  30. package/dist/erpnext/model/Address.js +11 -49
  31. package/dist/erpnext/model/Attachment.d.ts +0 -3
  32. package/dist/erpnext/model/Attachment.js +0 -1
  33. package/dist/erpnext/model/Boolean.d.ts +4 -0
  34. package/dist/erpnext/model/Boolean.js +9 -0
  35. package/dist/erpnext/model/Compliance.d.ts +0 -112
  36. package/dist/erpnext/model/Compliance.js +0 -19
  37. package/dist/erpnext/model/ConsolidatedCustomsInvoice.d.ts +26 -138
  38. package/dist/erpnext/model/ConsolidatedCustomsInvoice.js +0 -19
  39. package/dist/erpnext/model/Contact.d.ts +166 -416
  40. package/dist/erpnext/model/Contact.js +16 -69
  41. package/dist/erpnext/model/Country.d.ts +0 -64
  42. package/dist/erpnext/model/Country.js +0 -10
  43. package/dist/erpnext/model/Customer.d.ts +39 -64
  44. package/dist/erpnext/model/Customer.js +11 -25
  45. package/dist/erpnext/model/DeliveryNote.d.ts +125 -1168
  46. package/dist/erpnext/model/DeliveryNote.js +5 -51
  47. package/dist/erpnext/model/DispatchRun.d.ts +4 -110
  48. package/dist/erpnext/model/DispatchRun.js +1 -30
  49. package/dist/erpnext/model/DispatcherPreset.d.ts +0 -119
  50. package/dist/erpnext/model/DispatcherPreset.js +1 -27
  51. package/dist/erpnext/model/DocInfo.d.ts +41 -339
  52. package/dist/erpnext/model/DocInfo.js +5 -6
  53. package/dist/erpnext/model/DocTypeHelpers.d.ts +160 -2
  54. package/dist/erpnext/model/DocTypeHelpers.js +124 -1
  55. package/dist/erpnext/model/ERPNextDocTypeMeta.d.ts +137 -0
  56. package/dist/erpnext/model/ERPNextDocTypeMeta.js +42 -0
  57. package/dist/erpnext/model/ERPNextRequest.d.ts +5 -5
  58. package/dist/erpnext/model/File.d.ts +0 -48
  59. package/dist/erpnext/model/File.js +0 -8
  60. package/dist/erpnext/model/Fulfiller.d.ts +0 -121
  61. package/dist/erpnext/model/Fulfiller.js +1 -56
  62. package/dist/erpnext/model/FulfillerSettings.d.ts +0 -39
  63. package/dist/erpnext/model/FulfillerSettings.js +0 -6
  64. package/dist/erpnext/model/InternalReasons.d.ts +0 -3
  65. package/dist/erpnext/model/InternalReasons.js +0 -1
  66. package/dist/erpnext/model/Item.d.ts +488 -1847
  67. package/dist/erpnext/model/Item.js +18 -142
  68. package/dist/erpnext/model/ItemTaxTemplate.d.ts +57 -0
  69. package/dist/erpnext/model/ItemTaxTemplate.js +25 -0
  70. package/dist/erpnext/model/Logs.d.ts +0 -9
  71. package/dist/erpnext/model/Logs.js +0 -3
  72. package/dist/erpnext/model/PartList.d.ts +0 -15
  73. package/dist/erpnext/model/PartList.js +0 -5
  74. package/dist/erpnext/model/PaymentEntry.d.ts +302 -122
  75. package/dist/erpnext/model/PaymentEntry.js +52 -48
  76. package/dist/erpnext/model/Permissions.d.ts +3 -3
  77. package/dist/erpnext/model/Permissions.js +1 -1
  78. package/dist/erpnext/model/ProductBundle.d.ts +6 -107
  79. package/dist/erpnext/model/ProductBundle.js +0 -17
  80. package/dist/erpnext/model/PurchaseInvoice.d.ts +319 -389
  81. package/dist/erpnext/model/PurchaseInvoice.js +5 -24
  82. package/dist/erpnext/model/PurchaseOrder.d.ts +38 -184
  83. package/dist/erpnext/model/PurchaseOrder.js +0 -34
  84. package/dist/erpnext/model/Receipt.d.ts +32 -123
  85. package/dist/erpnext/model/Receipt.js +2 -25
  86. package/dist/erpnext/model/ReceiptDraft.d.ts +28 -70
  87. package/dist/erpnext/model/ReceiptDraft.js +2 -12
  88. package/dist/erpnext/model/Report.d.ts +0 -40
  89. package/dist/erpnext/model/Report.js +0 -8
  90. package/dist/erpnext/model/SalesInvoice.d.ts +2445 -0
  91. package/dist/erpnext/model/SalesInvoice.js +330 -0
  92. package/dist/erpnext/model/SalesOrder.d.ts +1061 -0
  93. package/dist/erpnext/model/SalesOrder.js +272 -0
  94. package/dist/erpnext/model/SalesTaxesAndCharges.d.ts +47 -0
  95. package/dist/erpnext/model/SalesTaxesAndCharges.js +30 -0
  96. package/dist/erpnext/model/Servicecase.d.ts +283 -728
  97. package/dist/erpnext/model/Servicecase.js +30 -108
  98. package/dist/erpnext/model/ServicecaseReason.d.ts +0 -8
  99. package/dist/erpnext/model/ServicecaseReason.js +0 -2
  100. package/dist/erpnext/model/ServicecaseSolution.d.ts +0 -3
  101. package/dist/erpnext/model/ServicecaseSolution.js +0 -1
  102. package/dist/erpnext/model/ServiceportalProductConfiguration.d.ts +27 -452
  103. package/dist/erpnext/model/ServiceportalProductConfiguration.js +16 -47
  104. package/dist/erpnext/model/Shipment.d.ts +18 -715
  105. package/dist/erpnext/model/Shipment.js +1 -69
  106. package/dist/erpnext/model/ShippingFees.d.ts +2 -2
  107. package/dist/erpnext/model/ShippingLabel.d.ts +0 -32
  108. package/dist/erpnext/model/ShippingLabel.js +0 -8
  109. package/dist/erpnext/model/ShippingProvider.d.ts +6 -87
  110. package/dist/erpnext/model/ShippingProvider.js +3 -6
  111. package/dist/erpnext/model/Stock.d.ts +0 -40
  112. package/dist/erpnext/model/Stock.js +0 -8
  113. package/dist/erpnext/model/StockEntry.d.ts +14 -47
  114. package/dist/erpnext/model/StockEntry.js +0 -11
  115. package/dist/erpnext/model/StockReconciliation.d.ts +5 -32
  116. package/dist/erpnext/model/StockReconciliation.js +0 -10
  117. package/dist/erpnext/model/Supplier.d.ts +0 -79
  118. package/dist/erpnext/model/Supplier.js +0 -8
  119. package/dist/erpnext/model/TaxCategory.d.ts +20 -0
  120. package/dist/erpnext/model/TaxCategory.js +16 -0
  121. package/dist/erpnext/model/Version.d.ts +0 -9
  122. package/dist/erpnext/model/Version.js +0 -3
  123. package/dist/erpnext/model/Waitlist.d.ts +0 -3
  124. package/dist/erpnext/model/Waitlist.js +0 -1
  125. package/dist/erpnext/model/WarehouseCategory.d.ts +0 -11
  126. package/dist/erpnext/model/WarehouseCategory.js +1 -7
  127. package/dist/erpnext/reports.js +3 -7
  128. package/dist/erpnext/resourceRequest.d.ts +13 -11
  129. package/dist/erpnext/resourceRequest.js +34 -23
  130. package/dist/index.d.ts +23 -11
  131. package/dist/index.js +31 -12
  132. package/dist/index.test.d.ts +1 -0
  133. package/dist/index.test.js +261 -0
  134. package/dist/utils/utils.d.ts +3 -0
  135. package/dist/utils/zodContextOptionals.d.ts +14 -0
  136. package/dist/utils/zodContextOptionals.js +45 -0
  137. package/dist/utils/zodUtils.js +16 -3
  138. package/package.json +6 -1
@@ -1,14 +1,244 @@
1
1
  import { z } from "zod";
2
- export declare const Item: z.ZodObject<{
2
+ declare const ItemdefaultDoc: z.ZodObject<{
3
+ company: z.ZodString;
4
+ default_warehouse: z.ZodString;
5
+ } & {
6
+ name: z.ZodString;
7
+ owner: z.ZodString;
8
+ creation: z.ZodString;
9
+ modified: z.ZodString;
10
+ modified_by: z.ZodString;
11
+ idx: z.ZodNumber;
12
+ docstatus: z.ZodDefault<z.ZodNumber> & {
13
+ __optionalForInput: true;
14
+ };
15
+ doctype: z.ZodString;
16
+ _user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
17
+ } & {
18
+ parenttype: z.ZodString;
19
+ parentfield: z.ZodString;
20
+ }, "strip", z.ZodTypeAny, {
21
+ docstatus: number;
22
+ name: string;
23
+ owner: string;
24
+ creation: string;
25
+ modified: string;
26
+ modified_by: string;
27
+ idx: number;
28
+ doctype: string;
29
+ parenttype: string;
30
+ parentfield: string;
31
+ company: string;
32
+ default_warehouse: string;
33
+ _user_tags?: string | null | undefined;
34
+ }, {
35
+ name: string;
36
+ owner: string;
37
+ creation: string;
38
+ modified: string;
39
+ modified_by: string;
40
+ idx: number;
41
+ doctype: string;
42
+ parenttype: string;
43
+ parentfield: string;
44
+ company: string;
45
+ default_warehouse: string;
46
+ docstatus?: number | undefined;
47
+ _user_tags?: string | null | undefined;
48
+ }>;
49
+ export type ItemdefaultDocType = z.infer<typeof ItemdefaultDoc>;
50
+ declare const UomDoc: z.ZodObject<{
51
+ uom: z.ZodString;
52
+ conversion_factor: z.ZodNumber;
53
+ } & {
54
+ name: z.ZodString;
55
+ owner: z.ZodString;
56
+ creation: z.ZodString;
57
+ modified: z.ZodString;
58
+ modified_by: z.ZodString;
59
+ idx: z.ZodNumber;
60
+ docstatus: z.ZodDefault<z.ZodNumber> & {
61
+ __optionalForInput: true;
62
+ };
63
+ doctype: z.ZodString;
64
+ _user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
65
+ } & {
66
+ parenttype: z.ZodString;
67
+ parentfield: z.ZodString;
68
+ }, "strip", z.ZodTypeAny, {
69
+ docstatus: number;
70
+ name: string;
71
+ owner: string;
72
+ creation: string;
73
+ modified: string;
74
+ modified_by: string;
75
+ idx: number;
76
+ doctype: string;
77
+ parenttype: string;
78
+ parentfield: string;
79
+ uom: string;
80
+ conversion_factor: number;
81
+ _user_tags?: string | null | undefined;
82
+ }, {
83
+ name: string;
84
+ owner: string;
85
+ creation: string;
86
+ modified: string;
87
+ modified_by: string;
88
+ idx: number;
89
+ doctype: string;
90
+ parenttype: string;
91
+ parentfield: string;
92
+ uom: string;
93
+ conversion_factor: number;
94
+ docstatus?: number | undefined;
95
+ _user_tags?: string | null | undefined;
96
+ }>;
97
+ export type UomDocType = z.infer<typeof UomDoc>;
98
+ declare const BarcodeDoc: z.ZodObject<{
99
+ barcode: z.ZodString;
100
+ barcode_type: z.ZodString;
101
+ } & {
102
+ name: z.ZodString;
103
+ owner: z.ZodString;
104
+ creation: z.ZodString;
105
+ modified: z.ZodString;
106
+ modified_by: z.ZodString;
107
+ idx: z.ZodNumber;
108
+ docstatus: z.ZodDefault<z.ZodNumber> & {
109
+ __optionalForInput: true;
110
+ };
111
+ doctype: z.ZodString;
112
+ _user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
113
+ } & {
114
+ parenttype: z.ZodString;
115
+ parentfield: z.ZodString;
116
+ }, "strip", z.ZodTypeAny, {
117
+ docstatus: number;
118
+ name: string;
119
+ owner: string;
120
+ creation: string;
121
+ modified: string;
122
+ modified_by: string;
123
+ idx: number;
124
+ doctype: string;
125
+ parenttype: string;
126
+ parentfield: string;
127
+ barcode: string;
128
+ barcode_type: string;
129
+ _user_tags?: string | null | undefined;
130
+ }, {
131
+ name: string;
132
+ owner: string;
133
+ creation: string;
134
+ modified: string;
135
+ modified_by: string;
136
+ idx: number;
137
+ doctype: string;
138
+ parenttype: string;
139
+ parentfield: string;
140
+ barcode: string;
141
+ barcode_type: string;
142
+ docstatus?: number | undefined;
143
+ _user_tags?: string | null | undefined;
144
+ }>;
145
+ export type BarcodeDocType = z.infer<typeof BarcodeDoc>;
146
+ declare const ItemCertificationDoc: z.ZodObject<{
147
+ certification: z.ZodString;
148
+ } & {
149
+ name: z.ZodString;
150
+ owner: z.ZodString;
151
+ creation: z.ZodString;
152
+ modified: z.ZodString;
153
+ modified_by: z.ZodString;
154
+ idx: z.ZodNumber;
155
+ docstatus: z.ZodDefault<z.ZodNumber> & {
156
+ __optionalForInput: true;
157
+ };
158
+ doctype: z.ZodString;
159
+ _user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
160
+ } & {
161
+ parenttype: z.ZodString;
162
+ parentfield: z.ZodString;
163
+ }, "strip", z.ZodTypeAny, {
164
+ docstatus: number;
165
+ name: string;
166
+ owner: string;
167
+ creation: string;
168
+ modified: string;
169
+ modified_by: string;
170
+ idx: number;
171
+ doctype: string;
172
+ parenttype: string;
173
+ parentfield: string;
174
+ certification: string;
175
+ _user_tags?: string | null | undefined;
176
+ }, {
177
+ name: string;
178
+ owner: string;
179
+ creation: string;
180
+ modified: string;
181
+ modified_by: string;
182
+ idx: number;
183
+ doctype: string;
184
+ parenttype: string;
185
+ parentfield: string;
186
+ certification: string;
187
+ docstatus?: number | undefined;
188
+ _user_tags?: string | null | undefined;
189
+ }>;
190
+ export type ItemCertificationDocType = z.infer<typeof ItemCertificationDoc>;
191
+ declare const SupplierItemsDoc: z.ZodObject<{
192
+ supplier: z.ZodString;
193
+ supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
194
+ } & {
3
195
  name: z.ZodString;
4
- image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5
- warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6
196
  owner: z.ZodString;
7
197
  creation: z.ZodString;
8
198
  modified: z.ZodString;
9
199
  modified_by: z.ZodString;
10
200
  idx: z.ZodNumber;
11
- docstatus: z.ZodNumber;
201
+ docstatus: z.ZodDefault<z.ZodNumber> & {
202
+ __optionalForInput: true;
203
+ };
204
+ doctype: z.ZodString;
205
+ _user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
206
+ } & {
207
+ parenttype: z.ZodString;
208
+ parentfield: z.ZodString;
209
+ }, "strip", z.ZodTypeAny, {
210
+ docstatus: number;
211
+ name: string;
212
+ owner: string;
213
+ creation: string;
214
+ modified: string;
215
+ modified_by: string;
216
+ idx: number;
217
+ doctype: string;
218
+ parenttype: string;
219
+ parentfield: string;
220
+ supplier: string;
221
+ _user_tags?: string | null | undefined;
222
+ supplier_part_no?: string | null | undefined;
223
+ }, {
224
+ name: string;
225
+ owner: string;
226
+ creation: string;
227
+ modified: string;
228
+ modified_by: string;
229
+ idx: number;
230
+ doctype: string;
231
+ parenttype: string;
232
+ parentfield: string;
233
+ supplier: string;
234
+ docstatus?: number | undefined;
235
+ _user_tags?: string | null | undefined;
236
+ supplier_part_no?: string | null | undefined;
237
+ }>;
238
+ export type SupplierItemsDocType = z.infer<typeof SupplierItemsDoc>;
239
+ export declare const Item: z.ZodObject<{
240
+ image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
241
+ warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12
242
  naming_series: z.ZodString;
13
243
  ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
244
  item_code: z.ZodString;
@@ -17,9 +247,18 @@ export declare const Item: z.ZodObject<{
17
247
  item_group: z.ZodString;
18
248
  stock_uom: z.ZodString;
19
249
  sync_from_warehouse: z.ZodNumber;
20
- disabled: z.ZodNumber;
21
- allow_alternative_item: z.ZodNumber;
22
- is_stock_item: z.ZodNumber;
250
+ disabled: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
251
+ __optionalForInput: true;
252
+ };
253
+ allow_alternative_item: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
254
+ __optionalForInput: true;
255
+ };
256
+ is_stock_item: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
257
+ __optionalForInput: true;
258
+ };
259
+ custom_is_digital: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
260
+ __optionalForInput: true;
261
+ };
23
262
  include_item_in_manufacturing: z.ZodNumber;
24
263
  opening_stock: z.ZodNumber;
25
264
  valuation_rate: z.ZodNumber;
@@ -48,9 +287,9 @@ export declare const Item: z.ZodObject<{
48
287
  end_of_life: z.ZodString;
49
288
  default_material_request_type: z.ZodString;
50
289
  valuation_method: z.ZodString;
51
- product_weight: z.ZodNumber;
290
+ product_weight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
52
291
  product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
53
- weight_per_unit: z.ZodNumber;
292
+ weight_per_unit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
54
293
  weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
55
294
  has_batch_no: z.ZodNumber;
56
295
  create_new_batch: z.ZodNumber;
@@ -86,178 +325,45 @@ export declare const Item: z.ZodObject<{
86
325
  is_sub_contracted_item: z.ZodNumber;
87
326
  customer_code: z.ZodString;
88
327
  total_projected_qty: z.ZodNumber;
89
- doctype: z.ZodString;
90
328
  barcodes: z.ZodArray<z.ZodObject<{
91
- name: z.ZodString;
92
- owner: z.ZodString;
93
- creation: z.ZodString;
94
- modified: z.ZodString;
95
- modified_by: z.ZodString;
96
- parent: z.ZodString;
97
- parentfield: z.ZodString;
98
- parenttype: z.ZodString;
99
- idx: z.ZodNumber;
100
- docstatus: z.ZodNumber;
101
329
  barcode: z.ZodString;
102
330
  barcode_type: z.ZodString;
103
- doctype: z.ZodString;
104
331
  }, "strip", z.ZodTypeAny, {
105
- name: string;
106
- doctype: string;
107
- owner: string;
108
- creation: string;
109
- modified: string;
110
- modified_by: string;
111
- parent: string;
112
- parentfield: string;
113
- parenttype: string;
114
- idx: number;
115
- docstatus: number;
116
332
  barcode: string;
117
333
  barcode_type: string;
118
334
  }, {
119
- name: string;
120
- doctype: string;
121
- owner: string;
122
- creation: string;
123
- modified: string;
124
- modified_by: string;
125
- parent: string;
126
- parentfield: string;
127
- parenttype: string;
128
- idx: number;
129
- docstatus: number;
130
335
  barcode: string;
131
336
  barcode_type: string;
132
337
  }>, "many">;
133
338
  reorder_levels: z.ZodArray<z.ZodAny, "many">;
134
339
  uoms: z.ZodArray<z.ZodObject<{
135
- name: z.ZodString;
136
- owner: z.ZodString;
137
- creation: z.ZodString;
138
- modified: z.ZodString;
139
- modified_by: z.ZodString;
140
- parent: z.ZodString;
141
- parentfield: z.ZodString;
142
- parenttype: z.ZodString;
143
- idx: z.ZodNumber;
144
- docstatus: z.ZodNumber;
145
340
  uom: z.ZodString;
146
341
  conversion_factor: z.ZodNumber;
147
- doctype: z.ZodString;
148
342
  }, "strip", z.ZodTypeAny, {
149
- name: string;
150
- doctype: string;
151
- owner: string;
152
- creation: string;
153
- modified: string;
154
- modified_by: string;
155
- parent: string;
156
- parentfield: string;
157
- parenttype: string;
158
- idx: number;
159
- docstatus: number;
160
343
  uom: string;
161
344
  conversion_factor: number;
162
345
  }, {
163
- name: string;
164
- doctype: string;
165
- owner: string;
166
- creation: string;
167
- modified: string;
168
- modified_by: string;
169
- parent: string;
170
- parentfield: string;
171
- parenttype: string;
172
- idx: number;
173
- docstatus: number;
174
346
  uom: string;
175
347
  conversion_factor: number;
176
348
  }>, "many">;
177
349
  attributes: z.ZodArray<z.ZodAny, "many">;
178
350
  item_defaults: z.ZodArray<z.ZodObject<{
179
- name: z.ZodString;
180
- owner: z.ZodString;
181
- creation: z.ZodString;
182
- modified: z.ZodString;
183
- modified_by: z.ZodString;
184
- parent: z.ZodString;
185
- parentfield: z.ZodString;
186
- parenttype: z.ZodString;
187
- idx: z.ZodNumber;
188
- docstatus: z.ZodNumber;
189
351
  company: z.ZodString;
190
352
  default_warehouse: z.ZodString;
191
- doctype: z.ZodString;
192
353
  }, "strip", z.ZodTypeAny, {
193
- name: string;
194
- doctype: string;
195
- owner: string;
196
- creation: string;
197
- modified: string;
198
- modified_by: string;
199
- parent: string;
200
- parentfield: string;
201
- parenttype: string;
202
- idx: number;
203
- docstatus: number;
204
354
  company: string;
205
355
  default_warehouse: string;
206
356
  }, {
207
- name: string;
208
- doctype: string;
209
- owner: string;
210
- creation: string;
211
- modified: string;
212
- modified_by: string;
213
- parent: string;
214
- parentfield: string;
215
- parenttype: string;
216
- idx: number;
217
- docstatus: number;
218
357
  company: string;
219
358
  default_warehouse: string;
220
359
  }>, "many">;
221
360
  supplier_items: z.ZodArray<z.ZodObject<{
222
- name: z.ZodString;
223
- owner: z.ZodString;
224
- creation: z.ZodString;
225
- modified: z.ZodString;
226
- modified_by: z.ZodString;
227
- parent: z.ZodString;
228
- parentfield: z.ZodString;
229
- parenttype: z.ZodString;
230
- idx: z.ZodNumber;
231
- docstatus: z.ZodNumber;
232
- doctype: z.ZodString;
233
361
  supplier: z.ZodString;
234
362
  supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
235
363
  }, "strip", z.ZodTypeAny, {
236
- name: string;
237
- doctype: string;
238
- owner: string;
239
- creation: string;
240
- modified: string;
241
- modified_by: string;
242
- parent: string;
243
- parentfield: string;
244
- parenttype: string;
245
- idx: number;
246
- docstatus: number;
247
364
  supplier: string;
248
365
  supplier_part_no?: string | null | undefined;
249
366
  }, {
250
- name: string;
251
- doctype: string;
252
- owner: string;
253
- creation: string;
254
- modified: string;
255
- modified_by: string;
256
- parent: string;
257
- parentfield: string;
258
- parenttype: string;
259
- idx: number;
260
- docstatus: number;
261
367
  supplier: string;
262
368
  supplier_part_no?: string | null | undefined;
263
369
  }>, "many">;
@@ -273,71 +379,30 @@ export declare const Item: z.ZodObject<{
273
379
  custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
274
380
  custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
275
381
  custom_certifications: z.ZodArray<z.ZodObject<{
276
- name: z.ZodString;
277
- owner: z.ZodString;
278
- creation: z.ZodString;
279
- modified: z.ZodString;
280
- modified_by: z.ZodString;
281
- parent: z.ZodString;
282
- parentfield: z.ZodString;
283
- parenttype: z.ZodString;
284
- idx: z.ZodNumber;
285
- docstatus: z.ZodNumber;
286
- doctype: z.ZodString;
287
382
  certification: z.ZodString;
288
383
  }, "strip", z.ZodTypeAny, {
289
- name: string;
290
- doctype: string;
291
- owner: string;
292
- creation: string;
293
- modified: string;
294
- modified_by: string;
295
- parent: string;
296
- parentfield: string;
297
- parenttype: string;
298
- idx: number;
299
- docstatus: number;
300
384
  certification: string;
301
385
  }, {
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
386
  certification: string;
314
387
  }>, "many">;
315
388
  custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
316
389
  custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
317
390
  }, "strip", z.ZodTypeAny, {
318
391
  description: string;
319
- name: string;
320
- doctype: string;
321
- owner: string;
322
- creation: string;
323
- modified: string;
324
- modified_by: string;
325
- idx: number;
326
- docstatus: number;
327
- disabled: number;
392
+ disabled: 0 | 1;
328
393
  naming_series: string;
329
394
  item_code: string;
330
395
  item_name: string;
331
396
  item_group: string;
332
397
  stock_uom: string;
333
398
  grant_commission: number;
334
- weight_per_unit: number;
335
399
  weight_uom: "kg" | "g" | "mg";
336
400
  taxes: any[];
337
401
  override_base_name: number;
338
402
  sync_from_warehouse: number;
339
- allow_alternative_item: number;
340
- is_stock_item: number;
403
+ allow_alternative_item: 0 | 1;
404
+ is_stock_item: 0 | 1;
405
+ custom_is_digital: 0 | 1;
341
406
  include_item_in_manufacturing: number;
342
407
  opening_stock: number;
343
408
  valuation_rate: number;
@@ -356,7 +421,6 @@ export declare const Item: z.ZodObject<{
356
421
  end_of_life: string;
357
422
  default_material_request_type: string;
358
423
  valuation_method: string;
359
- product_weight: number;
360
424
  product_weight_unit: "kg" | "g" | "mg";
361
425
  has_batch_no: number;
362
426
  create_new_batch: number;
@@ -389,85 +453,31 @@ export declare const Item: z.ZodObject<{
389
453
  customer_code: string;
390
454
  total_projected_qty: number;
391
455
  barcodes: {
392
- name: string;
393
- doctype: string;
394
- owner: string;
395
- creation: string;
396
- modified: string;
397
- modified_by: string;
398
- parent: string;
399
- parentfield: string;
400
- parenttype: string;
401
- idx: number;
402
- docstatus: number;
403
456
  barcode: string;
404
457
  barcode_type: string;
405
458
  }[];
406
459
  reorder_levels: any[];
407
460
  uoms: {
408
- name: string;
409
- doctype: string;
410
- owner: string;
411
- creation: string;
412
- modified: string;
413
- modified_by: string;
414
- parent: string;
415
- parentfield: string;
416
- parenttype: string;
417
- idx: number;
418
- docstatus: number;
419
461
  uom: string;
420
462
  conversion_factor: number;
421
463
  }[];
422
464
  attributes: any[];
423
465
  item_defaults: {
424
- name: string;
425
- doctype: string;
426
- owner: string;
427
- creation: string;
428
- modified: string;
429
- modified_by: string;
430
- parent: string;
431
- parentfield: string;
432
- parenttype: string;
433
- idx: number;
434
- docstatus: number;
435
466
  company: string;
436
467
  default_warehouse: string;
437
468
  }[];
438
469
  supplier_items: {
439
- name: string;
440
- doctype: string;
441
- owner: string;
442
- creation: string;
443
- modified: string;
444
- modified_by: string;
445
- parent: string;
446
- parentfield: string;
447
- parenttype: string;
448
- idx: number;
449
- docstatus: number;
450
470
  supplier: string;
451
471
  supplier_part_no?: string | null | undefined;
452
472
  }[];
453
473
  customer_items: any[];
454
474
  custom_certifications: {
455
- name: string;
456
- doctype: string;
457
- owner: string;
458
- creation: string;
459
- modified: string;
460
- modified_by: string;
461
- parent: string;
462
- parentfield: string;
463
- parenttype: string;
464
- idx: number;
465
- docstatus: number;
466
475
  certification: string;
467
476
  }[];
468
477
  custom_oversell_amount: number | null;
469
478
  length?: number | null | undefined;
470
479
  image?: string | null | undefined;
480
+ weight_per_unit?: number | null | undefined;
471
481
  warehouse_category?: string | null | undefined;
472
482
  ean?: string | null | undefined;
473
483
  shipping_template?: string | null | undefined;
@@ -478,6 +488,7 @@ export declare const Item: z.ZodObject<{
478
488
  shipping_height?: number | null | undefined;
479
489
  packaging_weight_cardboard?: number | null | undefined;
480
490
  packaging_weight_plastic?: number | null | undefined;
491
+ product_weight?: number | null | undefined;
481
492
  fsc_status?: string | null | undefined;
482
493
  custom_fsc_type_of_wood?: string | null | undefined;
483
494
  custom_fsc_product_group?: string | null | undefined;
@@ -493,28 +504,16 @@ export declare const Item: z.ZodObject<{
493
504
  custom_serviceportal_configuration?: string | null | undefined;
494
505
  }, {
495
506
  description: string;
496
- name: string;
497
- doctype: string;
498
- owner: string;
499
- creation: string;
500
- modified: string;
501
- modified_by: string;
502
- idx: number;
503
- docstatus: number;
504
- disabled: number;
505
507
  naming_series: string;
506
508
  item_code: string;
507
509
  item_name: string;
508
510
  item_group: string;
509
511
  stock_uom: string;
510
512
  grant_commission: number;
511
- weight_per_unit: number;
512
513
  weight_uom: "kg" | "g" | "mg";
513
514
  taxes: any[];
514
515
  override_base_name: number;
515
516
  sync_from_warehouse: number;
516
- allow_alternative_item: number;
517
- is_stock_item: number;
518
517
  include_item_in_manufacturing: number;
519
518
  opening_stock: number;
520
519
  valuation_rate: number;
@@ -532,7 +531,6 @@ export declare const Item: z.ZodObject<{
532
531
  end_of_life: string;
533
532
  default_material_request_type: string;
534
533
  valuation_method: string;
535
- product_weight: number;
536
534
  product_weight_unit: "kg" | "g" | "mg";
537
535
  has_batch_no: number;
538
536
  create_new_batch: number;
@@ -565,86 +563,36 @@ export declare const Item: z.ZodObject<{
565
563
  customer_code: string;
566
564
  total_projected_qty: number;
567
565
  barcodes: {
568
- name: string;
569
- doctype: string;
570
- owner: string;
571
- creation: string;
572
- modified: string;
573
- modified_by: string;
574
- parent: string;
575
- parentfield: string;
576
- parenttype: string;
577
- idx: number;
578
- docstatus: number;
579
566
  barcode: string;
580
567
  barcode_type: string;
581
568
  }[];
582
569
  reorder_levels: any[];
583
570
  uoms: {
584
- name: string;
585
- doctype: string;
586
- owner: string;
587
- creation: string;
588
- modified: string;
589
- modified_by: string;
590
- parent: string;
591
- parentfield: string;
592
- parenttype: string;
593
- idx: number;
594
- docstatus: number;
595
571
  uom: string;
596
572
  conversion_factor: number;
597
573
  }[];
598
574
  attributes: any[];
599
575
  item_defaults: {
600
- name: string;
601
- doctype: string;
602
- owner: string;
603
- creation: string;
604
- modified: string;
605
- modified_by: string;
606
- parent: string;
607
- parentfield: string;
608
- parenttype: string;
609
- idx: number;
610
- docstatus: number;
611
576
  company: string;
612
577
  default_warehouse: string;
613
578
  }[];
614
579
  supplier_items: {
615
- name: string;
616
- doctype: string;
617
- owner: string;
618
- creation: string;
619
- modified: string;
620
- modified_by: string;
621
- parent: string;
622
- parentfield: string;
623
- parenttype: string;
624
- idx: number;
625
- docstatus: number;
626
580
  supplier: string;
627
581
  supplier_part_no?: string | null | undefined;
628
582
  }[];
629
583
  customer_items: any[];
630
584
  custom_certifications: {
631
- name: string;
632
- doctype: string;
633
- owner: string;
634
- creation: string;
635
- modified: string;
636
- modified_by: string;
637
- parent: string;
638
- parentfield: string;
639
- parenttype: string;
640
- idx: number;
641
- docstatus: number;
642
585
  certification: string;
643
586
  }[];
644
587
  length?: number | null | undefined;
588
+ disabled?: unknown;
645
589
  image?: string | null | undefined;
590
+ weight_per_unit?: number | null | undefined;
646
591
  warehouse_category?: string | null | undefined;
647
592
  ean?: string | null | undefined;
593
+ allow_alternative_item?: unknown;
594
+ is_stock_item?: unknown;
595
+ custom_is_digital?: unknown;
648
596
  shipping_template?: string | null | undefined;
649
597
  width?: number | null | undefined;
650
598
  height?: number | null | undefined;
@@ -654,6 +602,7 @@ export declare const Item: z.ZodObject<{
654
602
  shipping_height?: number | null | undefined;
655
603
  packaging_weight_cardboard?: number | null | undefined;
656
604
  packaging_weight_plastic?: number | null | undefined;
605
+ product_weight?: number | null | undefined;
657
606
  fsc_status?: string | null | undefined;
658
607
  custom_fsc_type_of_wood?: string | null | undefined;
659
608
  custom_fsc_product_group?: string | null | undefined;
@@ -670,16 +619,9 @@ export declare const Item: z.ZodObject<{
670
619
  custom_serviceportal_configuration?: string | null | undefined;
671
620
  }>;
672
621
  export type ItemType = z.infer<typeof Item>;
673
- export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<Omit<{
674
- name: z.ZodString;
622
+ export declare const ItemDoc: import("./DocTypeHelpers").DocModelType<z.ZodObject<{
675
623
  image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
676
624
  warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
677
- owner: z.ZodString;
678
- creation: z.ZodString;
679
- modified: z.ZodString;
680
- modified_by: z.ZodString;
681
- idx: z.ZodNumber;
682
- docstatus: z.ZodNumber;
683
625
  naming_series: z.ZodString;
684
626
  ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
685
627
  item_code: z.ZodString;
@@ -688,9 +630,18 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
688
630
  item_group: z.ZodString;
689
631
  stock_uom: z.ZodString;
690
632
  sync_from_warehouse: z.ZodNumber;
691
- disabled: z.ZodNumber;
692
- allow_alternative_item: z.ZodNumber;
693
- is_stock_item: z.ZodNumber;
633
+ disabled: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
634
+ __optionalForInput: true;
635
+ };
636
+ allow_alternative_item: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
637
+ __optionalForInput: true;
638
+ };
639
+ is_stock_item: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
640
+ __optionalForInput: true;
641
+ };
642
+ custom_is_digital: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
643
+ __optionalForInput: true;
644
+ };
694
645
  include_item_in_manufacturing: z.ZodNumber;
695
646
  opening_stock: z.ZodNumber;
696
647
  valuation_rate: z.ZodNumber;
@@ -719,9 +670,9 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
719
670
  end_of_life: z.ZodString;
720
671
  default_material_request_type: z.ZodString;
721
672
  valuation_method: z.ZodString;
722
- product_weight: z.ZodNumber;
673
+ product_weight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
723
674
  product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
724
- weight_per_unit: z.ZodNumber;
675
+ weight_per_unit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
725
676
  weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
726
677
  has_batch_no: z.ZodNumber;
727
678
  create_new_batch: z.ZodNumber;
@@ -757,178 +708,45 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
757
708
  is_sub_contracted_item: z.ZodNumber;
758
709
  customer_code: z.ZodString;
759
710
  total_projected_qty: z.ZodNumber;
760
- doctype: z.ZodString;
761
711
  barcodes: z.ZodArray<z.ZodObject<{
762
- name: z.ZodString;
763
- owner: z.ZodString;
764
- creation: z.ZodString;
765
- modified: z.ZodString;
766
- modified_by: z.ZodString;
767
- parent: z.ZodString;
768
- parentfield: z.ZodString;
769
- parenttype: z.ZodString;
770
- idx: z.ZodNumber;
771
- docstatus: z.ZodNumber;
772
712
  barcode: z.ZodString;
773
713
  barcode_type: z.ZodString;
774
- doctype: z.ZodString;
775
714
  }, "strip", z.ZodTypeAny, {
776
- name: string;
777
- doctype: string;
778
- owner: string;
779
- creation: string;
780
- modified: string;
781
- modified_by: string;
782
- parent: string;
783
- parentfield: string;
784
- parenttype: string;
785
- idx: number;
786
- docstatus: number;
787
715
  barcode: string;
788
716
  barcode_type: string;
789
717
  }, {
790
- name: string;
791
- doctype: string;
792
- owner: string;
793
- creation: string;
794
- modified: string;
795
- modified_by: string;
796
- parent: string;
797
- parentfield: string;
798
- parenttype: string;
799
- idx: number;
800
- docstatus: number;
801
718
  barcode: string;
802
719
  barcode_type: string;
803
720
  }>, "many">;
804
721
  reorder_levels: z.ZodArray<z.ZodAny, "many">;
805
722
  uoms: z.ZodArray<z.ZodObject<{
806
- name: z.ZodString;
807
- owner: z.ZodString;
808
- creation: z.ZodString;
809
- modified: z.ZodString;
810
- modified_by: z.ZodString;
811
- parent: z.ZodString;
812
- parentfield: z.ZodString;
813
- parenttype: z.ZodString;
814
- idx: z.ZodNumber;
815
- docstatus: z.ZodNumber;
816
723
  uom: z.ZodString;
817
724
  conversion_factor: z.ZodNumber;
818
- doctype: z.ZodString;
819
725
  }, "strip", z.ZodTypeAny, {
820
- name: string;
821
- doctype: string;
822
- owner: string;
823
- creation: string;
824
- modified: string;
825
- modified_by: string;
826
- parent: string;
827
- parentfield: string;
828
- parenttype: string;
829
- idx: number;
830
- docstatus: number;
831
726
  uom: string;
832
727
  conversion_factor: number;
833
728
  }, {
834
- name: string;
835
- doctype: string;
836
- owner: string;
837
- creation: string;
838
- modified: string;
839
- modified_by: string;
840
- parent: string;
841
- parentfield: string;
842
- parenttype: string;
843
- idx: number;
844
- docstatus: number;
845
729
  uom: string;
846
730
  conversion_factor: number;
847
731
  }>, "many">;
848
732
  attributes: z.ZodArray<z.ZodAny, "many">;
849
733
  item_defaults: z.ZodArray<z.ZodObject<{
850
- name: z.ZodString;
851
- owner: z.ZodString;
852
- creation: z.ZodString;
853
- modified: z.ZodString;
854
- modified_by: z.ZodString;
855
- parent: z.ZodString;
856
- parentfield: z.ZodString;
857
- parenttype: z.ZodString;
858
- idx: z.ZodNumber;
859
- docstatus: z.ZodNumber;
860
734
  company: z.ZodString;
861
735
  default_warehouse: z.ZodString;
862
- doctype: z.ZodString;
863
736
  }, "strip", z.ZodTypeAny, {
864
- name: string;
865
- doctype: string;
866
- owner: string;
867
- creation: string;
868
- modified: string;
869
- modified_by: string;
870
- parent: string;
871
- parentfield: string;
872
- parenttype: string;
873
- idx: number;
874
- docstatus: number;
875
737
  company: string;
876
738
  default_warehouse: string;
877
739
  }, {
878
- name: string;
879
- doctype: string;
880
- owner: string;
881
- creation: string;
882
- modified: string;
883
- modified_by: string;
884
- parent: string;
885
- parentfield: string;
886
- parenttype: string;
887
- idx: number;
888
- docstatus: number;
889
740
  company: string;
890
741
  default_warehouse: string;
891
742
  }>, "many">;
892
743
  supplier_items: z.ZodArray<z.ZodObject<{
893
- name: z.ZodString;
894
- owner: z.ZodString;
895
- creation: z.ZodString;
896
- modified: z.ZodString;
897
- modified_by: z.ZodString;
898
- parent: z.ZodString;
899
- parentfield: z.ZodString;
900
- parenttype: z.ZodString;
901
- idx: z.ZodNumber;
902
- docstatus: z.ZodNumber;
903
- doctype: z.ZodString;
904
744
  supplier: z.ZodString;
905
745
  supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
906
746
  }, "strip", z.ZodTypeAny, {
907
- name: string;
908
- doctype: string;
909
- owner: string;
910
- creation: string;
911
- modified: string;
912
- modified_by: string;
913
- parent: string;
914
- parentfield: string;
915
- parenttype: string;
916
- idx: number;
917
- docstatus: number;
918
747
  supplier: string;
919
748
  supplier_part_no?: string | null | undefined;
920
749
  }, {
921
- name: string;
922
- doctype: string;
923
- owner: string;
924
- creation: string;
925
- modified: string;
926
- modified_by: string;
927
- parent: string;
928
- parentfield: string;
929
- parenttype: string;
930
- idx: number;
931
- docstatus: number;
932
750
  supplier: string;
933
751
  supplier_part_no?: string | null | undefined;
934
752
  }>, "many">;
@@ -944,1440 +762,263 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
944
762
  custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
945
763
  custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
946
764
  custom_certifications: z.ZodArray<z.ZodObject<{
947
- name: z.ZodString;
948
- owner: z.ZodString;
949
- creation: z.ZodString;
950
- modified: z.ZodString;
951
- modified_by: z.ZodString;
952
- parent: z.ZodString;
953
- parentfield: z.ZodString;
954
- parenttype: z.ZodString;
955
- idx: z.ZodNumber;
956
- docstatus: z.ZodNumber;
957
- doctype: z.ZodString;
958
765
  certification: z.ZodString;
959
766
  }, "strip", z.ZodTypeAny, {
960
- name: string;
961
- doctype: string;
962
- owner: string;
963
- creation: string;
964
- modified: string;
965
- modified_by: string;
966
- parent: string;
967
- parentfield: string;
968
- parenttype: string;
969
- idx: number;
970
- docstatus: number;
971
767
  certification: string;
972
768
  }, {
973
- name: string;
974
- doctype: string;
975
- owner: string;
976
- creation: string;
977
- modified: string;
978
- modified_by: string;
979
- parent: string;
980
- parentfield: string;
981
- parenttype: string;
982
- idx: number;
983
- docstatus: number;
984
769
  certification: string;
985
770
  }>, "many">;
986
771
  custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
987
772
  custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
988
- }, "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_length" | "shipping_width" | "shipping_height" | "shipping_dimensions_unit">, "strip", z.ZodTypeAny, {
989
- disabled: number;
773
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
774
+ description: string;
775
+ disabled: 0 | 1;
776
+ naming_series: string;
990
777
  item_code: string;
991
778
  item_name: string;
992
- weight_per_unit: number;
779
+ item_group: string;
780
+ stock_uom: string;
781
+ grant_commission: number;
993
782
  weight_uom: "kg" | "g" | "mg";
783
+ taxes: any[];
784
+ override_base_name: number;
785
+ sync_from_warehouse: number;
786
+ allow_alternative_item: 0 | 1;
787
+ is_stock_item: 0 | 1;
788
+ custom_is_digital: 0 | 1;
789
+ include_item_in_manufacturing: number;
790
+ opening_stock: number;
791
+ valuation_rate: number;
792
+ standard_rate: number;
793
+ is_fixed_asset: number;
794
+ auto_create_assets: number;
795
+ over_delivery_receipt_allowance: number;
796
+ over_billing_allowance: number;
994
797
  custom_is_shipping_enabled: number;
798
+ dimensions_unit: "m" | "cm" | "mm";
799
+ custom_dimension_format: "Length / Width / Height" | "Width / Depth / Height";
995
800
  shipping_dimensions_unit: "m" | "cm" | "mm";
801
+ packaging_weight_unit_cardboard: "kg" | "g" | "mg";
802
+ packaging_weight_unit_plastic: "kg" | "g" | "mg";
803
+ shelf_life_in_days: number;
804
+ end_of_life: string;
805
+ default_material_request_type: string;
806
+ valuation_method: string;
807
+ product_weight_unit: "kg" | "g" | "mg";
808
+ has_batch_no: number;
809
+ create_new_batch: number;
810
+ has_expiry_date: number;
811
+ retain_sample: number;
812
+ sample_quantity: number;
813
+ has_serial_no: number;
814
+ has_variants: number;
815
+ variant_based_on: string;
816
+ min_order_qty: number;
817
+ safety_stock: number;
818
+ is_purchase_item: number;
819
+ custom_include_in_purchase_planning: number;
820
+ lead_time_days: number;
821
+ last_purchase_rate: number;
822
+ is_customer_provided_item: number;
823
+ delivered_by_supplier: number;
824
+ fsc_percentage: number;
825
+ sales_uom: string;
826
+ is_sales_item: number;
827
+ custom_is_selling_enabled: number;
828
+ max_discount: number;
829
+ enable_deferred_revenue: number;
830
+ no_of_months: number;
831
+ enable_deferred_expense: number;
832
+ no_of_months_exp: number;
833
+ inspection_required_before_purchase: number;
834
+ inspection_required_before_delivery: number;
835
+ is_sub_contracted_item: number;
836
+ customer_code: string;
837
+ total_projected_qty: number;
838
+ barcodes: {
839
+ barcode: string;
840
+ barcode_type: string;
841
+ }[];
842
+ reorder_levels: any[];
843
+ uoms: {
844
+ uom: string;
845
+ conversion_factor: number;
846
+ }[];
847
+ attributes: any[];
848
+ item_defaults: {
849
+ company: string;
850
+ default_warehouse: string;
851
+ }[];
852
+ supplier_items: {
853
+ supplier: string;
854
+ supplier_part_no?: string | null | undefined;
855
+ }[];
856
+ customer_items: any[];
857
+ custom_certifications: {
858
+ certification: string;
859
+ }[];
860
+ custom_oversell_amount: number | null;
861
+ length?: number | null | undefined;
862
+ image?: string | null | undefined;
863
+ weight_per_unit?: number | null | undefined;
996
864
  warehouse_category?: string | null | undefined;
997
865
  ean?: string | null | undefined;
998
866
  shipping_template?: string | null | undefined;
867
+ width?: number | null | undefined;
868
+ height?: number | null | undefined;
999
869
  shipping_length?: number | null | undefined;
1000
870
  shipping_width?: number | null | undefined;
1001
871
  shipping_height?: number | null | undefined;
872
+ packaging_weight_cardboard?: number | null | undefined;
873
+ packaging_weight_plastic?: number | null | undefined;
874
+ product_weight?: number | null | undefined;
875
+ fsc_status?: string | null | undefined;
876
+ custom_fsc_type_of_wood?: string | null | undefined;
877
+ custom_fsc_product_group?: string | null | undefined;
878
+ customs_tariff_number?: string | null | undefined;
879
+ country_of_origin?: string | null | undefined;
880
+ custom_product_version?: string | null | undefined;
881
+ custom_supplier?: string | null | undefined;
882
+ purchase_description?: string | null | undefined;
883
+ custom_stock_reserve?: number | null | undefined;
884
+ custom_sales_category?: string | null | undefined;
885
+ custom_shopify_content_configuration?: string | null | undefined;
886
+ custom_compliance?: string | null | undefined;
887
+ custom_serviceportal_configuration?: string | null | undefined;
1002
888
  }, {
1003
- disabled: number;
889
+ description: string;
890
+ naming_series: string;
1004
891
  item_code: string;
1005
892
  item_name: string;
1006
- weight_per_unit: number;
1007
- weight_uom: "kg" | "g" | "mg";
1008
- custom_is_shipping_enabled: number;
1009
- shipping_dimensions_unit: "m" | "cm" | "mm";
1010
- warehouse_category?: string | null | undefined;
1011
- ean?: string | null | undefined;
1012
- shipping_template?: string | null | undefined;
1013
- shipping_length?: number | null | undefined;
1014
- shipping_width?: number | null | undefined;
1015
- shipping_height?: number | null | undefined;
1016
- }>, "many">;
1017
- export type ItemListWithShippingTemplateType = z.infer<typeof ItemListWithShippingTemplate>;
1018
- export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<Pick<Omit<{
1019
- name: z.ZodString;
1020
- image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1021
- warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1022
- owner: z.ZodString;
1023
- creation: z.ZodString;
1024
- modified: z.ZodString;
1025
- modified_by: z.ZodString;
1026
- idx: z.ZodNumber;
1027
- docstatus: z.ZodNumber;
1028
- naming_series: z.ZodString;
1029
- ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1030
- item_code: z.ZodString;
1031
- item_name: z.ZodString;
1032
- override_base_name: z.ZodNumber;
1033
- item_group: z.ZodString;
1034
- stock_uom: z.ZodString;
1035
- sync_from_warehouse: z.ZodNumber;
1036
- disabled: z.ZodNumber;
1037
- allow_alternative_item: z.ZodNumber;
1038
- is_stock_item: z.ZodNumber;
1039
- include_item_in_manufacturing: z.ZodNumber;
1040
- opening_stock: z.ZodNumber;
1041
- valuation_rate: z.ZodNumber;
1042
- standard_rate: z.ZodNumber;
1043
- is_fixed_asset: z.ZodNumber;
1044
- auto_create_assets: z.ZodNumber;
1045
- over_delivery_receipt_allowance: z.ZodNumber;
1046
- over_billing_allowance: z.ZodNumber;
1047
- custom_is_shipping_enabled: z.ZodNumber;
1048
- shipping_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1049
- length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1050
- width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1051
- height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1052
- dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1053
- custom_dimension_format: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"Length / Width / Height">, z.ZodLiteral<"Width / Depth / Height">]>>;
1054
- shipping_length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1055
- shipping_width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1056
- shipping_height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1057
- shipping_dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1058
- packaging_weight_cardboard: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1059
- packaging_weight_unit_cardboard: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1060
- packaging_weight_plastic: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1061
- packaging_weight_unit_plastic: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1062
- description: z.ZodString;
1063
- shelf_life_in_days: z.ZodNumber;
1064
- end_of_life: z.ZodString;
1065
- default_material_request_type: z.ZodString;
1066
- valuation_method: z.ZodString;
1067
- product_weight: z.ZodNumber;
1068
- product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1069
- weight_per_unit: z.ZodNumber;
1070
- weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1071
- has_batch_no: z.ZodNumber;
1072
- create_new_batch: z.ZodNumber;
1073
- has_expiry_date: z.ZodNumber;
1074
- retain_sample: z.ZodNumber;
1075
- sample_quantity: z.ZodNumber;
1076
- has_serial_no: z.ZodNumber;
1077
- has_variants: z.ZodNumber;
1078
- variant_based_on: z.ZodString;
1079
- min_order_qty: z.ZodNumber;
1080
- safety_stock: z.ZodNumber;
1081
- is_purchase_item: z.ZodNumber;
1082
- custom_include_in_purchase_planning: z.ZodNumber;
1083
- lead_time_days: z.ZodNumber;
1084
- last_purchase_rate: z.ZodNumber;
1085
- is_customer_provided_item: z.ZodNumber;
1086
- delivered_by_supplier: z.ZodNumber;
1087
- fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1088
- fsc_percentage: z.ZodNumber;
1089
- custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1090
- custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1091
- sales_uom: z.ZodString;
1092
- is_sales_item: z.ZodNumber;
1093
- custom_is_selling_enabled: z.ZodNumber;
1094
- grant_commission: z.ZodNumber;
1095
- max_discount: z.ZodNumber;
1096
- enable_deferred_revenue: z.ZodNumber;
1097
- no_of_months: z.ZodNumber;
1098
- enable_deferred_expense: z.ZodNumber;
1099
- no_of_months_exp: z.ZodNumber;
1100
- inspection_required_before_purchase: z.ZodNumber;
1101
- inspection_required_before_delivery: z.ZodNumber;
1102
- is_sub_contracted_item: z.ZodNumber;
1103
- customer_code: z.ZodString;
1104
- total_projected_qty: z.ZodNumber;
1105
- doctype: z.ZodString;
1106
- barcodes: z.ZodArray<z.ZodObject<{
1107
- name: z.ZodString;
1108
- owner: z.ZodString;
1109
- creation: z.ZodString;
1110
- modified: z.ZodString;
1111
- modified_by: z.ZodString;
1112
- parent: z.ZodString;
1113
- parentfield: z.ZodString;
1114
- parenttype: z.ZodString;
1115
- idx: z.ZodNumber;
1116
- docstatus: z.ZodNumber;
1117
- barcode: z.ZodString;
1118
- barcode_type: z.ZodString;
1119
- doctype: z.ZodString;
1120
- }, "strip", z.ZodTypeAny, {
1121
- name: string;
1122
- doctype: string;
1123
- owner: string;
1124
- creation: string;
1125
- modified: string;
1126
- modified_by: string;
1127
- parent: string;
1128
- parentfield: string;
1129
- parenttype: string;
1130
- idx: number;
1131
- docstatus: number;
1132
- barcode: string;
1133
- barcode_type: string;
1134
- }, {
1135
- name: string;
1136
- doctype: string;
1137
- owner: string;
1138
- creation: string;
1139
- modified: string;
1140
- modified_by: string;
1141
- parent: string;
1142
- parentfield: string;
1143
- parenttype: string;
1144
- idx: number;
1145
- docstatus: number;
1146
- barcode: string;
1147
- barcode_type: string;
1148
- }>, "many">;
1149
- reorder_levels: z.ZodArray<z.ZodAny, "many">;
1150
- uoms: z.ZodArray<z.ZodObject<{
1151
- name: z.ZodString;
1152
- owner: z.ZodString;
1153
- creation: z.ZodString;
1154
- modified: z.ZodString;
1155
- modified_by: z.ZodString;
1156
- parent: z.ZodString;
1157
- parentfield: z.ZodString;
1158
- parenttype: z.ZodString;
1159
- idx: z.ZodNumber;
1160
- docstatus: z.ZodNumber;
1161
- uom: z.ZodString;
1162
- conversion_factor: z.ZodNumber;
1163
- doctype: z.ZodString;
1164
- }, "strip", z.ZodTypeAny, {
1165
- name: string;
1166
- doctype: string;
1167
- owner: string;
1168
- creation: string;
1169
- modified: string;
1170
- modified_by: string;
1171
- parent: string;
1172
- parentfield: string;
1173
- parenttype: string;
1174
- idx: number;
1175
- docstatus: number;
1176
- uom: string;
1177
- conversion_factor: number;
1178
- }, {
1179
- name: string;
1180
- doctype: string;
1181
- owner: string;
1182
- creation: string;
1183
- modified: string;
1184
- modified_by: string;
1185
- parent: string;
1186
- parentfield: string;
1187
- parenttype: string;
1188
- idx: number;
1189
- docstatus: number;
1190
- uom: string;
1191
- conversion_factor: number;
1192
- }>, "many">;
1193
- attributes: z.ZodArray<z.ZodAny, "many">;
1194
- item_defaults: z.ZodArray<z.ZodObject<{
1195
- name: z.ZodString;
1196
- owner: z.ZodString;
1197
- creation: z.ZodString;
1198
- modified: z.ZodString;
1199
- modified_by: z.ZodString;
1200
- parent: z.ZodString;
1201
- parentfield: z.ZodString;
1202
- parenttype: z.ZodString;
1203
- idx: z.ZodNumber;
1204
- docstatus: z.ZodNumber;
1205
- company: z.ZodString;
1206
- default_warehouse: z.ZodString;
1207
- doctype: z.ZodString;
1208
- }, "strip", z.ZodTypeAny, {
1209
- name: string;
1210
- doctype: string;
1211
- owner: string;
1212
- creation: string;
1213
- modified: string;
1214
- modified_by: string;
1215
- parent: string;
1216
- parentfield: string;
1217
- parenttype: string;
1218
- idx: number;
1219
- docstatus: number;
1220
- company: string;
1221
- default_warehouse: string;
1222
- }, {
1223
- name: string;
1224
- doctype: string;
1225
- owner: string;
1226
- creation: string;
1227
- modified: string;
1228
- modified_by: string;
1229
- parent: string;
1230
- parentfield: string;
1231
- parenttype: string;
1232
- idx: number;
1233
- docstatus: number;
1234
- company: string;
1235
- default_warehouse: string;
1236
- }>, "many">;
1237
- supplier_items: z.ZodArray<z.ZodObject<{
1238
- name: z.ZodString;
1239
- owner: z.ZodString;
1240
- creation: z.ZodString;
1241
- modified: z.ZodString;
1242
- modified_by: z.ZodString;
1243
- parent: z.ZodString;
1244
- parentfield: z.ZodString;
1245
- parenttype: z.ZodString;
1246
- idx: z.ZodNumber;
1247
- docstatus: z.ZodNumber;
1248
- doctype: z.ZodString;
1249
- supplier: z.ZodString;
1250
- supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1251
- }, "strip", z.ZodTypeAny, {
1252
- name: string;
1253
- doctype: string;
1254
- owner: string;
1255
- creation: string;
1256
- modified: string;
1257
- modified_by: string;
1258
- parent: string;
1259
- parentfield: string;
1260
- parenttype: string;
1261
- idx: number;
1262
- docstatus: number;
1263
- supplier: string;
1264
- supplier_part_no?: string | null | undefined;
1265
- }, {
1266
- name: string;
1267
- doctype: string;
1268
- owner: string;
1269
- creation: string;
1270
- modified: string;
1271
- modified_by: string;
1272
- parent: string;
1273
- parentfield: string;
1274
- parenttype: string;
1275
- idx: number;
1276
- docstatus: number;
1277
- supplier: string;
1278
- supplier_part_no?: string | null | undefined;
1279
- }>, "many">;
1280
- customer_items: z.ZodArray<z.ZodAny, "many">;
1281
- taxes: z.ZodArray<z.ZodAny, "many">;
1282
- customs_tariff_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1283
- country_of_origin: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1284
- custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1285
- custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1286
- purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1287
- custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1288
- custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1289
- custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1290
- custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1291
- custom_certifications: z.ZodArray<z.ZodObject<{
1292
- name: z.ZodString;
1293
- owner: z.ZodString;
1294
- creation: z.ZodString;
1295
- modified: z.ZodString;
1296
- modified_by: z.ZodString;
1297
- parent: z.ZodString;
1298
- parentfield: z.ZodString;
1299
- parenttype: z.ZodString;
1300
- idx: z.ZodNumber;
1301
- docstatus: z.ZodNumber;
1302
- doctype: z.ZodString;
1303
- certification: z.ZodString;
1304
- }, "strip", z.ZodTypeAny, {
1305
- name: string;
1306
- doctype: string;
1307
- owner: string;
1308
- creation: string;
1309
- modified: string;
1310
- modified_by: string;
1311
- parent: string;
1312
- parentfield: string;
1313
- parenttype: string;
1314
- idx: number;
1315
- docstatus: number;
1316
- certification: string;
1317
- }, {
1318
- name: string;
1319
- doctype: string;
1320
- owner: string;
1321
- creation: string;
1322
- modified: string;
1323
- modified_by: string;
1324
- parent: string;
1325
- parentfield: string;
1326
- parenttype: string;
1327
- idx: number;
1328
- docstatus: number;
1329
- certification: string;
1330
- }>, "many">;
1331
- custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
1332
- custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1333
- }, "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_length" | "shipping_width" | "shipping_height" | "shipping_dimensions_unit"> & {
1334
- sku: z.ZodString;
1335
- }, "strip", z.ZodTypeAny, {
1336
- disabled: number;
1337
- item_name: string;
1338
- weight_per_unit: number;
1339
- weight_uom: "kg" | "g" | "mg";
1340
- custom_is_shipping_enabled: number;
1341
- shipping_dimensions_unit: "m" | "cm" | "mm";
1342
- sku: string;
1343
- warehouse_category?: string | null | undefined;
1344
- ean?: string | null | undefined;
1345
- shipping_template?: string | null | undefined;
1346
- shipping_length?: number | null | undefined;
1347
- shipping_width?: number | null | undefined;
1348
- shipping_height?: number | null | undefined;
1349
- }, {
1350
- disabled: number;
1351
- item_name: string;
1352
- weight_per_unit: number;
1353
- weight_uom: "kg" | "g" | "mg";
1354
- custom_is_shipping_enabled: number;
1355
- shipping_dimensions_unit: "m" | "cm" | "mm";
1356
- sku: string;
1357
- warehouse_category?: string | null | undefined;
1358
- ean?: string | null | undefined;
1359
- shipping_template?: string | null | undefined;
1360
- shipping_length?: number | null | undefined;
1361
- shipping_width?: number | null | undefined;
1362
- shipping_height?: number | null | undefined;
1363
- }>, "many">;
1364
- export type ItemListWithShippingTemplateSkuType = z.infer<typeof ItemListWithShippingTemplateSku>;
1365
- export declare const ERPNextItemResponseNoneStockItemsDictFalse: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
1366
- declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1367
- name: z.ZodString;
1368
- image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1369
- warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1370
- owner: z.ZodString;
1371
- creation: z.ZodString;
1372
- modified: z.ZodString;
1373
- modified_by: z.ZodString;
1374
- idx: z.ZodNumber;
1375
- docstatus: z.ZodNumber;
1376
- naming_series: z.ZodString;
1377
- ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1378
- item_code: z.ZodString;
1379
- item_name: z.ZodString;
1380
- override_base_name: z.ZodNumber;
1381
- item_group: z.ZodString;
1382
- stock_uom: z.ZodString;
1383
- sync_from_warehouse: z.ZodNumber;
1384
- disabled: z.ZodNumber;
1385
- allow_alternative_item: z.ZodNumber;
1386
- is_stock_item: z.ZodNumber;
1387
- include_item_in_manufacturing: z.ZodNumber;
1388
- opening_stock: z.ZodNumber;
1389
- valuation_rate: z.ZodNumber;
1390
- standard_rate: z.ZodNumber;
1391
- is_fixed_asset: z.ZodNumber;
1392
- auto_create_assets: z.ZodNumber;
1393
- over_delivery_receipt_allowance: z.ZodNumber;
1394
- over_billing_allowance: z.ZodNumber;
1395
- custom_is_shipping_enabled: z.ZodNumber;
1396
- shipping_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1397
- length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1398
- width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1399
- height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1400
- dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1401
- custom_dimension_format: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"Length / Width / Height">, z.ZodLiteral<"Width / Depth / Height">]>>;
1402
- shipping_length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1403
- shipping_width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1404
- shipping_height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1405
- shipping_dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1406
- packaging_weight_cardboard: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1407
- packaging_weight_unit_cardboard: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1408
- packaging_weight_plastic: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1409
- packaging_weight_unit_plastic: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1410
- description: z.ZodString;
1411
- shelf_life_in_days: z.ZodNumber;
1412
- end_of_life: z.ZodString;
1413
- default_material_request_type: z.ZodString;
1414
- valuation_method: z.ZodString;
1415
- product_weight: z.ZodNumber;
1416
- product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1417
- weight_per_unit: z.ZodNumber;
1418
- weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1419
- has_batch_no: z.ZodNumber;
1420
- create_new_batch: z.ZodNumber;
1421
- has_expiry_date: z.ZodNumber;
1422
- retain_sample: z.ZodNumber;
1423
- sample_quantity: z.ZodNumber;
1424
- has_serial_no: z.ZodNumber;
1425
- has_variants: z.ZodNumber;
1426
- variant_based_on: z.ZodString;
1427
- min_order_qty: z.ZodNumber;
1428
- safety_stock: z.ZodNumber;
1429
- is_purchase_item: z.ZodNumber;
1430
- custom_include_in_purchase_planning: z.ZodNumber;
1431
- lead_time_days: z.ZodNumber;
1432
- last_purchase_rate: z.ZodNumber;
1433
- is_customer_provided_item: z.ZodNumber;
1434
- delivered_by_supplier: z.ZodNumber;
1435
- fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1436
- fsc_percentage: z.ZodNumber;
1437
- custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1438
- custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1439
- sales_uom: z.ZodString;
1440
- is_sales_item: z.ZodNumber;
1441
- custom_is_selling_enabled: z.ZodNumber;
1442
- grant_commission: z.ZodNumber;
1443
- max_discount: z.ZodNumber;
1444
- enable_deferred_revenue: z.ZodNumber;
1445
- no_of_months: z.ZodNumber;
1446
- enable_deferred_expense: z.ZodNumber;
1447
- no_of_months_exp: z.ZodNumber;
1448
- inspection_required_before_purchase: z.ZodNumber;
1449
- inspection_required_before_delivery: z.ZodNumber;
1450
- is_sub_contracted_item: z.ZodNumber;
1451
- customer_code: z.ZodString;
1452
- total_projected_qty: z.ZodNumber;
1453
- doctype: z.ZodString;
1454
- barcodes: z.ZodArray<z.ZodObject<{
1455
- name: z.ZodString;
1456
- owner: z.ZodString;
1457
- creation: z.ZodString;
1458
- modified: z.ZodString;
1459
- modified_by: z.ZodString;
1460
- parent: z.ZodString;
1461
- parentfield: z.ZodString;
1462
- parenttype: z.ZodString;
1463
- idx: z.ZodNumber;
1464
- docstatus: z.ZodNumber;
1465
- barcode: z.ZodString;
1466
- barcode_type: z.ZodString;
1467
- doctype: z.ZodString;
1468
- }, "strip", z.ZodTypeAny, {
1469
- name: string;
1470
- doctype: string;
1471
- owner: string;
1472
- creation: string;
1473
- modified: string;
1474
- modified_by: string;
1475
- parent: string;
1476
- parentfield: string;
1477
- parenttype: string;
1478
- idx: number;
1479
- docstatus: number;
1480
- barcode: string;
1481
- barcode_type: string;
1482
- }, {
1483
- name: string;
1484
- doctype: string;
1485
- owner: string;
1486
- creation: string;
1487
- modified: string;
1488
- modified_by: string;
1489
- parent: string;
1490
- parentfield: string;
1491
- parenttype: string;
1492
- idx: number;
1493
- docstatus: number;
1494
- barcode: string;
1495
- barcode_type: string;
1496
- }>, "many">;
1497
- reorder_levels: z.ZodArray<z.ZodAny, "many">;
1498
- uoms: z.ZodArray<z.ZodObject<{
1499
- name: z.ZodString;
1500
- owner: z.ZodString;
1501
- creation: z.ZodString;
1502
- modified: z.ZodString;
1503
- modified_by: z.ZodString;
1504
- parent: z.ZodString;
1505
- parentfield: z.ZodString;
1506
- parenttype: z.ZodString;
1507
- idx: z.ZodNumber;
1508
- docstatus: z.ZodNumber;
1509
- uom: z.ZodString;
1510
- conversion_factor: z.ZodNumber;
1511
- doctype: z.ZodString;
1512
- }, "strip", z.ZodTypeAny, {
1513
- name: string;
1514
- doctype: string;
1515
- owner: string;
1516
- creation: string;
1517
- modified: string;
1518
- modified_by: string;
1519
- parent: string;
1520
- parentfield: string;
1521
- parenttype: string;
1522
- idx: number;
1523
- docstatus: number;
1524
- uom: string;
1525
- conversion_factor: number;
1526
- }, {
1527
- name: string;
1528
- doctype: string;
1529
- owner: string;
1530
- creation: string;
1531
- modified: string;
1532
- modified_by: string;
1533
- parent: string;
1534
- parentfield: string;
1535
- parenttype: string;
1536
- idx: number;
1537
- docstatus: number;
1538
- uom: string;
1539
- conversion_factor: number;
1540
- }>, "many">;
1541
- attributes: z.ZodArray<z.ZodAny, "many">;
1542
- item_defaults: z.ZodArray<z.ZodObject<{
1543
- name: z.ZodString;
1544
- owner: z.ZodString;
1545
- creation: z.ZodString;
1546
- modified: z.ZodString;
1547
- modified_by: z.ZodString;
1548
- parent: z.ZodString;
1549
- parentfield: z.ZodString;
1550
- parenttype: z.ZodString;
1551
- idx: z.ZodNumber;
1552
- docstatus: z.ZodNumber;
1553
- company: z.ZodString;
1554
- default_warehouse: z.ZodString;
1555
- doctype: z.ZodString;
1556
- }, "strip", z.ZodTypeAny, {
1557
- name: string;
1558
- doctype: string;
1559
- owner: string;
1560
- creation: string;
1561
- modified: string;
1562
- modified_by: string;
1563
- parent: string;
1564
- parentfield: string;
1565
- parenttype: string;
1566
- idx: number;
1567
- docstatus: number;
1568
- company: string;
1569
- default_warehouse: string;
1570
- }, {
1571
- name: string;
1572
- doctype: string;
1573
- owner: string;
1574
- creation: string;
1575
- modified: string;
1576
- modified_by: string;
1577
- parent: string;
1578
- parentfield: string;
1579
- parenttype: string;
1580
- idx: number;
1581
- docstatus: number;
1582
- company: string;
1583
- default_warehouse: string;
1584
- }>, "many">;
1585
- supplier_items: z.ZodArray<z.ZodObject<{
1586
- name: z.ZodString;
1587
- owner: z.ZodString;
1588
- creation: z.ZodString;
1589
- modified: z.ZodString;
1590
- modified_by: z.ZodString;
1591
- parent: z.ZodString;
1592
- parentfield: z.ZodString;
1593
- parenttype: z.ZodString;
1594
- idx: z.ZodNumber;
1595
- docstatus: z.ZodNumber;
1596
- doctype: z.ZodString;
1597
- supplier: z.ZodString;
1598
- supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1599
- }, "strip", z.ZodTypeAny, {
1600
- name: string;
1601
- doctype: string;
1602
- owner: string;
1603
- creation: string;
1604
- modified: string;
1605
- modified_by: string;
1606
- parent: string;
1607
- parentfield: string;
1608
- parenttype: string;
1609
- idx: number;
1610
- docstatus: number;
1611
- supplier: string;
1612
- supplier_part_no?: string | null | undefined;
1613
- }, {
1614
- name: string;
1615
- doctype: string;
1616
- owner: string;
1617
- creation: string;
1618
- modified: string;
1619
- modified_by: string;
1620
- parent: string;
1621
- parentfield: string;
1622
- parenttype: string;
1623
- idx: number;
1624
- docstatus: number;
1625
- supplier: string;
1626
- supplier_part_no?: string | null | undefined;
1627
- }>, "many">;
1628
- customer_items: z.ZodArray<z.ZodAny, "many">;
1629
- taxes: z.ZodArray<z.ZodAny, "many">;
1630
- customs_tariff_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1631
- country_of_origin: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1632
- custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1633
- custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1634
- purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1635
- custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1636
- custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1637
- custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1638
- custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1639
- custom_certifications: z.ZodArray<z.ZodObject<{
1640
- name: z.ZodString;
1641
- owner: z.ZodString;
1642
- creation: z.ZodString;
1643
- modified: z.ZodString;
1644
- modified_by: z.ZodString;
1645
- parent: z.ZodString;
1646
- parentfield: z.ZodString;
1647
- parenttype: z.ZodString;
1648
- idx: z.ZodNumber;
1649
- docstatus: z.ZodNumber;
1650
- doctype: z.ZodString;
1651
- certification: z.ZodString;
1652
- }, "strip", z.ZodTypeAny, {
1653
- name: string;
1654
- doctype: string;
1655
- owner: string;
1656
- creation: string;
1657
- modified: string;
1658
- modified_by: string;
1659
- parent: string;
1660
- parentfield: string;
1661
- parenttype: string;
1662
- idx: number;
1663
- docstatus: number;
1664
- certification: string;
1665
- }, {
1666
- name: string;
1667
- doctype: string;
1668
- owner: string;
1669
- creation: string;
1670
- modified: string;
1671
- modified_by: string;
1672
- parent: string;
1673
- parentfield: string;
1674
- parenttype: string;
1675
- idx: number;
1676
- docstatus: number;
1677
- certification: string;
1678
- }>, "many">;
1679
- custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
1680
- custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1681
- }, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "shipping_length" | "shipping_width" | "shipping_height" | "shipping_dimensions_unit">, "strip", z.ZodTypeAny, {
1682
- shipping_dimensions_unit: "m" | "cm" | "mm";
1683
- shipping_length?: number | null | undefined;
1684
- shipping_width?: number | null | undefined;
1685
- shipping_height?: number | null | undefined;
1686
- }, {
1687
- shipping_dimensions_unit: "m" | "cm" | "mm";
1688
- shipping_length?: number | null | undefined;
1689
- shipping_width?: number | null | undefined;
1690
- shipping_height?: number | null | undefined;
1691
- }>;
1692
- export type ItemDimensionsInfoType = z.infer<typeof ItemDimensionsInfo>;
1693
- export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1694
- name: z.ZodString;
1695
- image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1696
- warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1697
- owner: z.ZodString;
1698
- creation: z.ZodString;
1699
- modified: z.ZodString;
1700
- modified_by: z.ZodString;
1701
- idx: z.ZodNumber;
1702
- docstatus: z.ZodNumber;
1703
- naming_series: z.ZodString;
1704
- ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1705
- item_code: z.ZodString;
1706
- item_name: z.ZodString;
1707
- override_base_name: z.ZodNumber;
1708
- item_group: z.ZodString;
1709
- stock_uom: z.ZodString;
1710
- sync_from_warehouse: z.ZodNumber;
1711
- disabled: z.ZodNumber;
1712
- allow_alternative_item: z.ZodNumber;
1713
- is_stock_item: z.ZodNumber;
1714
- include_item_in_manufacturing: z.ZodNumber;
1715
- opening_stock: z.ZodNumber;
1716
- valuation_rate: z.ZodNumber;
1717
- standard_rate: z.ZodNumber;
1718
- is_fixed_asset: z.ZodNumber;
1719
- auto_create_assets: z.ZodNumber;
1720
- over_delivery_receipt_allowance: z.ZodNumber;
1721
- over_billing_allowance: z.ZodNumber;
1722
- custom_is_shipping_enabled: z.ZodNumber;
1723
- shipping_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1724
- length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1725
- width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1726
- height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1727
- dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1728
- custom_dimension_format: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"Length / Width / Height">, z.ZodLiteral<"Width / Depth / Height">]>>;
1729
- shipping_length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1730
- shipping_width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1731
- shipping_height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1732
- shipping_dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
1733
- packaging_weight_cardboard: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1734
- packaging_weight_unit_cardboard: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1735
- packaging_weight_plastic: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1736
- packaging_weight_unit_plastic: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1737
- description: z.ZodString;
1738
- shelf_life_in_days: z.ZodNumber;
1739
- end_of_life: z.ZodString;
1740
- default_material_request_type: z.ZodString;
1741
- valuation_method: z.ZodString;
1742
- product_weight: z.ZodNumber;
1743
- product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1744
- weight_per_unit: z.ZodNumber;
1745
- weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
1746
- has_batch_no: z.ZodNumber;
1747
- create_new_batch: z.ZodNumber;
1748
- has_expiry_date: z.ZodNumber;
1749
- retain_sample: z.ZodNumber;
1750
- sample_quantity: z.ZodNumber;
1751
- has_serial_no: z.ZodNumber;
1752
- has_variants: z.ZodNumber;
1753
- variant_based_on: z.ZodString;
1754
- min_order_qty: z.ZodNumber;
1755
- safety_stock: z.ZodNumber;
1756
- is_purchase_item: z.ZodNumber;
1757
- custom_include_in_purchase_planning: z.ZodNumber;
1758
- lead_time_days: z.ZodNumber;
1759
- last_purchase_rate: z.ZodNumber;
1760
- is_customer_provided_item: z.ZodNumber;
1761
- delivered_by_supplier: z.ZodNumber;
1762
- fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1763
- fsc_percentage: z.ZodNumber;
1764
- custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1765
- custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1766
- sales_uom: z.ZodString;
1767
- is_sales_item: z.ZodNumber;
1768
- custom_is_selling_enabled: z.ZodNumber;
1769
- grant_commission: z.ZodNumber;
1770
- max_discount: z.ZodNumber;
1771
- enable_deferred_revenue: z.ZodNumber;
1772
- no_of_months: z.ZodNumber;
1773
- enable_deferred_expense: z.ZodNumber;
1774
- no_of_months_exp: z.ZodNumber;
1775
- inspection_required_before_purchase: z.ZodNumber;
1776
- inspection_required_before_delivery: z.ZodNumber;
1777
- is_sub_contracted_item: z.ZodNumber;
1778
- customer_code: z.ZodString;
1779
- total_projected_qty: z.ZodNumber;
1780
- doctype: z.ZodString;
1781
- barcodes: z.ZodArray<z.ZodObject<{
1782
- name: z.ZodString;
1783
- owner: z.ZodString;
1784
- creation: z.ZodString;
1785
- modified: z.ZodString;
1786
- modified_by: z.ZodString;
1787
- parent: z.ZodString;
1788
- parentfield: z.ZodString;
1789
- parenttype: z.ZodString;
1790
- idx: z.ZodNumber;
1791
- docstatus: z.ZodNumber;
1792
- barcode: z.ZodString;
1793
- barcode_type: z.ZodString;
1794
- doctype: z.ZodString;
1795
- }, "strip", z.ZodTypeAny, {
1796
- name: string;
1797
- doctype: string;
1798
- owner: string;
1799
- creation: string;
1800
- modified: string;
1801
- modified_by: string;
1802
- parent: string;
1803
- parentfield: string;
1804
- parenttype: string;
1805
- idx: number;
1806
- docstatus: number;
1807
- barcode: string;
1808
- barcode_type: string;
1809
- }, {
1810
- name: string;
1811
- doctype: string;
1812
- owner: string;
1813
- creation: string;
1814
- modified: string;
1815
- modified_by: string;
1816
- parent: string;
1817
- parentfield: string;
1818
- parenttype: string;
1819
- idx: number;
1820
- docstatus: number;
1821
- barcode: string;
1822
- barcode_type: string;
1823
- }>, "many">;
1824
- reorder_levels: z.ZodArray<z.ZodAny, "many">;
1825
- uoms: z.ZodArray<z.ZodObject<{
1826
- name: z.ZodString;
1827
- owner: z.ZodString;
1828
- creation: z.ZodString;
1829
- modified: z.ZodString;
1830
- modified_by: z.ZodString;
1831
- parent: z.ZodString;
1832
- parentfield: z.ZodString;
1833
- parenttype: z.ZodString;
1834
- idx: z.ZodNumber;
1835
- docstatus: z.ZodNumber;
1836
- uom: z.ZodString;
1837
- conversion_factor: z.ZodNumber;
1838
- doctype: z.ZodString;
1839
- }, "strip", z.ZodTypeAny, {
1840
- name: string;
1841
- doctype: string;
1842
- owner: string;
1843
- creation: string;
1844
- modified: string;
1845
- modified_by: string;
1846
- parent: string;
1847
- parentfield: string;
1848
- parenttype: string;
1849
- idx: number;
1850
- docstatus: number;
1851
- uom: string;
1852
- conversion_factor: number;
1853
- }, {
1854
- name: string;
1855
- doctype: string;
1856
- owner: string;
1857
- creation: string;
1858
- modified: string;
1859
- modified_by: string;
1860
- parent: string;
1861
- parentfield: string;
1862
- parenttype: string;
1863
- idx: number;
1864
- docstatus: number;
1865
- uom: string;
1866
- conversion_factor: number;
1867
- }>, "many">;
1868
- attributes: z.ZodArray<z.ZodAny, "many">;
1869
- item_defaults: z.ZodArray<z.ZodObject<{
1870
- name: z.ZodString;
1871
- owner: z.ZodString;
1872
- creation: z.ZodString;
1873
- modified: z.ZodString;
1874
- modified_by: z.ZodString;
1875
- parent: z.ZodString;
1876
- parentfield: z.ZodString;
1877
- parenttype: z.ZodString;
1878
- idx: z.ZodNumber;
1879
- docstatus: z.ZodNumber;
1880
- company: z.ZodString;
1881
- default_warehouse: z.ZodString;
1882
- doctype: z.ZodString;
1883
- }, "strip", z.ZodTypeAny, {
1884
- name: string;
1885
- doctype: string;
1886
- owner: string;
1887
- creation: string;
1888
- modified: string;
1889
- modified_by: string;
1890
- parent: string;
1891
- parentfield: string;
1892
- parenttype: string;
1893
- idx: number;
1894
- docstatus: number;
1895
- company: string;
1896
- default_warehouse: string;
1897
- }, {
1898
- name: string;
1899
- doctype: string;
1900
- owner: string;
1901
- creation: string;
1902
- modified: string;
1903
- modified_by: string;
1904
- parent: string;
1905
- parentfield: string;
1906
- parenttype: string;
1907
- idx: number;
1908
- docstatus: number;
1909
- company: string;
1910
- default_warehouse: string;
1911
- }>, "many">;
1912
- supplier_items: z.ZodArray<z.ZodObject<{
1913
- name: z.ZodString;
1914
- owner: z.ZodString;
1915
- creation: z.ZodString;
1916
- modified: z.ZodString;
1917
- modified_by: z.ZodString;
1918
- parent: z.ZodString;
1919
- parentfield: z.ZodString;
1920
- parenttype: z.ZodString;
1921
- idx: z.ZodNumber;
1922
- docstatus: z.ZodNumber;
1923
- doctype: z.ZodString;
1924
- supplier: z.ZodString;
1925
- supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1926
- }, "strip", z.ZodTypeAny, {
1927
- name: string;
1928
- doctype: string;
1929
- owner: string;
1930
- creation: string;
1931
- modified: string;
1932
- modified_by: string;
1933
- parent: string;
1934
- parentfield: string;
1935
- parenttype: string;
1936
- idx: number;
1937
- docstatus: number;
1938
- supplier: string;
1939
- supplier_part_no?: string | null | undefined;
1940
- }, {
1941
- name: string;
1942
- doctype: string;
1943
- owner: string;
1944
- creation: string;
1945
- modified: string;
1946
- modified_by: string;
1947
- parent: string;
1948
- parentfield: string;
1949
- parenttype: string;
1950
- idx: number;
1951
- docstatus: number;
1952
- supplier: string;
1953
- supplier_part_no?: string | null | undefined;
1954
- }>, "many">;
1955
- customer_items: z.ZodArray<z.ZodAny, "many">;
1956
- taxes: z.ZodArray<z.ZodAny, "many">;
1957
- customs_tariff_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1958
- country_of_origin: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1959
- custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1960
- custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1961
- purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1962
- custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1963
- custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1964
- custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1965
- custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1966
- custom_certifications: z.ZodArray<z.ZodObject<{
1967
- name: z.ZodString;
1968
- owner: z.ZodString;
1969
- creation: z.ZodString;
1970
- modified: z.ZodString;
1971
- modified_by: z.ZodString;
1972
- parent: z.ZodString;
1973
- parentfield: z.ZodString;
1974
- parenttype: z.ZodString;
1975
- idx: z.ZodNumber;
1976
- docstatus: z.ZodNumber;
1977
- doctype: z.ZodString;
1978
- certification: z.ZodString;
1979
- }, "strip", z.ZodTypeAny, {
1980
- name: string;
1981
- doctype: string;
1982
- owner: string;
1983
- creation: string;
1984
- modified: string;
1985
- modified_by: string;
1986
- parent: string;
1987
- parentfield: string;
1988
- parenttype: string;
1989
- idx: number;
1990
- docstatus: number;
1991
- certification: string;
1992
- }, {
1993
- name: string;
1994
- doctype: string;
1995
- owner: string;
1996
- creation: string;
1997
- modified: string;
1998
- modified_by: string;
1999
- parent: string;
2000
- parentfield: string;
2001
- parenttype: string;
2002
- idx: number;
2003
- docstatus: number;
2004
- certification: string;
2005
- }>, "many">;
2006
- custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
2007
- custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2008
- }, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "item_code">, "strip", z.ZodTypeAny, {
2009
- item_code: string;
2010
- }, {
2011
- item_code: string;
2012
- }>, "many">;
2013
- export type ItemListNameType = z.infer<typeof ItemListName>;
2014
- export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
2015
- name: z.ZodString;
2016
- image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2017
- warehouse_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2018
- owner: z.ZodString;
2019
- creation: z.ZodString;
2020
- modified: z.ZodString;
2021
- modified_by: z.ZodString;
2022
- idx: z.ZodNumber;
2023
- docstatus: z.ZodNumber;
2024
- naming_series: z.ZodString;
2025
- ean: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2026
- item_code: z.ZodString;
2027
- item_name: z.ZodString;
2028
- override_base_name: z.ZodNumber;
2029
- item_group: z.ZodString;
2030
- stock_uom: z.ZodString;
2031
- sync_from_warehouse: z.ZodNumber;
2032
- disabled: z.ZodNumber;
2033
- allow_alternative_item: z.ZodNumber;
2034
- is_stock_item: z.ZodNumber;
2035
- include_item_in_manufacturing: z.ZodNumber;
2036
- opening_stock: z.ZodNumber;
2037
- valuation_rate: z.ZodNumber;
2038
- standard_rate: z.ZodNumber;
2039
- is_fixed_asset: z.ZodNumber;
2040
- auto_create_assets: z.ZodNumber;
2041
- over_delivery_receipt_allowance: z.ZodNumber;
2042
- over_billing_allowance: z.ZodNumber;
2043
- custom_is_shipping_enabled: z.ZodNumber;
2044
- shipping_template: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2045
- length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2046
- width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2047
- height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2048
- dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
2049
- custom_dimension_format: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"Length / Width / Height">, z.ZodLiteral<"Width / Depth / Height">]>>;
2050
- shipping_length: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2051
- shipping_width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2052
- shipping_height: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2053
- shipping_dimensions_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"m">, z.ZodLiteral<"cm">]>, z.ZodLiteral<"mm">]>;
2054
- packaging_weight_cardboard: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2055
- packaging_weight_unit_cardboard: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
2056
- packaging_weight_plastic: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2057
- packaging_weight_unit_plastic: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
2058
- description: z.ZodString;
2059
- shelf_life_in_days: z.ZodNumber;
2060
- end_of_life: z.ZodString;
2061
- default_material_request_type: z.ZodString;
2062
- valuation_method: z.ZodString;
2063
- product_weight: z.ZodNumber;
2064
- product_weight_unit: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
2065
- weight_per_unit: z.ZodNumber;
2066
- weight_uom: z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"kg">, z.ZodLiteral<"g">]>, z.ZodLiteral<"mg">]>;
2067
- has_batch_no: z.ZodNumber;
2068
- create_new_batch: z.ZodNumber;
2069
- has_expiry_date: z.ZodNumber;
2070
- retain_sample: z.ZodNumber;
2071
- sample_quantity: z.ZodNumber;
2072
- has_serial_no: z.ZodNumber;
2073
- has_variants: z.ZodNumber;
2074
- variant_based_on: z.ZodString;
2075
- min_order_qty: z.ZodNumber;
2076
- safety_stock: z.ZodNumber;
2077
- is_purchase_item: z.ZodNumber;
2078
- custom_include_in_purchase_planning: z.ZodNumber;
2079
- lead_time_days: z.ZodNumber;
2080
- last_purchase_rate: z.ZodNumber;
2081
- is_customer_provided_item: z.ZodNumber;
2082
- delivered_by_supplier: z.ZodNumber;
2083
- fsc_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2084
- fsc_percentage: z.ZodNumber;
2085
- custom_fsc_type_of_wood: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2086
- custom_fsc_product_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2087
- sales_uom: z.ZodString;
2088
- is_sales_item: z.ZodNumber;
2089
- custom_is_selling_enabled: z.ZodNumber;
2090
- grant_commission: z.ZodNumber;
2091
- max_discount: z.ZodNumber;
2092
- enable_deferred_revenue: z.ZodNumber;
2093
- no_of_months: z.ZodNumber;
2094
- enable_deferred_expense: z.ZodNumber;
2095
- no_of_months_exp: z.ZodNumber;
2096
- inspection_required_before_purchase: z.ZodNumber;
2097
- inspection_required_before_delivery: z.ZodNumber;
2098
- is_sub_contracted_item: z.ZodNumber;
2099
- customer_code: z.ZodString;
2100
- total_projected_qty: z.ZodNumber;
2101
- doctype: z.ZodString;
2102
- barcodes: z.ZodArray<z.ZodObject<{
2103
- name: z.ZodString;
2104
- owner: z.ZodString;
2105
- creation: z.ZodString;
2106
- modified: z.ZodString;
2107
- modified_by: z.ZodString;
2108
- parent: z.ZodString;
2109
- parentfield: z.ZodString;
2110
- parenttype: z.ZodString;
2111
- idx: z.ZodNumber;
2112
- docstatus: z.ZodNumber;
2113
- barcode: z.ZodString;
2114
- barcode_type: z.ZodString;
2115
- doctype: z.ZodString;
2116
- }, "strip", z.ZodTypeAny, {
2117
- name: string;
2118
- doctype: string;
2119
- owner: string;
2120
- creation: string;
2121
- modified: string;
2122
- modified_by: string;
2123
- parent: string;
2124
- parentfield: string;
2125
- parenttype: string;
2126
- idx: number;
2127
- docstatus: number;
2128
- barcode: string;
2129
- barcode_type: string;
2130
- }, {
2131
- name: string;
2132
- doctype: string;
2133
- owner: string;
2134
- creation: string;
2135
- modified: string;
2136
- modified_by: string;
2137
- parent: string;
2138
- parentfield: string;
2139
- parenttype: string;
2140
- idx: number;
2141
- docstatus: number;
893
+ item_group: string;
894
+ stock_uom: string;
895
+ grant_commission: number;
896
+ weight_uom: "kg" | "g" | "mg";
897
+ taxes: any[];
898
+ override_base_name: number;
899
+ sync_from_warehouse: number;
900
+ include_item_in_manufacturing: number;
901
+ opening_stock: number;
902
+ valuation_rate: number;
903
+ standard_rate: number;
904
+ is_fixed_asset: number;
905
+ auto_create_assets: number;
906
+ over_delivery_receipt_allowance: number;
907
+ over_billing_allowance: number;
908
+ custom_is_shipping_enabled: number;
909
+ dimensions_unit: "m" | "cm" | "mm";
910
+ shipping_dimensions_unit: "m" | "cm" | "mm";
911
+ packaging_weight_unit_cardboard: "kg" | "g" | "mg";
912
+ packaging_weight_unit_plastic: "kg" | "g" | "mg";
913
+ shelf_life_in_days: number;
914
+ end_of_life: string;
915
+ default_material_request_type: string;
916
+ valuation_method: string;
917
+ product_weight_unit: "kg" | "g" | "mg";
918
+ has_batch_no: number;
919
+ create_new_batch: number;
920
+ has_expiry_date: number;
921
+ retain_sample: number;
922
+ sample_quantity: number;
923
+ has_serial_no: number;
924
+ has_variants: number;
925
+ variant_based_on: string;
926
+ min_order_qty: number;
927
+ safety_stock: number;
928
+ is_purchase_item: number;
929
+ custom_include_in_purchase_planning: number;
930
+ lead_time_days: number;
931
+ last_purchase_rate: number;
932
+ is_customer_provided_item: number;
933
+ delivered_by_supplier: number;
934
+ fsc_percentage: number;
935
+ sales_uom: string;
936
+ is_sales_item: number;
937
+ custom_is_selling_enabled: number;
938
+ max_discount: number;
939
+ enable_deferred_revenue: number;
940
+ no_of_months: number;
941
+ enable_deferred_expense: number;
942
+ no_of_months_exp: number;
943
+ inspection_required_before_purchase: number;
944
+ inspection_required_before_delivery: number;
945
+ is_sub_contracted_item: number;
946
+ customer_code: string;
947
+ total_projected_qty: number;
948
+ barcodes: {
2142
949
  barcode: string;
2143
950
  barcode_type: string;
2144
- }>, "many">;
2145
- reorder_levels: z.ZodArray<z.ZodAny, "many">;
2146
- uoms: z.ZodArray<z.ZodObject<{
2147
- name: z.ZodString;
2148
- owner: z.ZodString;
2149
- creation: z.ZodString;
2150
- modified: z.ZodString;
2151
- modified_by: z.ZodString;
2152
- parent: z.ZodString;
2153
- parentfield: z.ZodString;
2154
- parenttype: z.ZodString;
2155
- idx: z.ZodNumber;
2156
- docstatus: z.ZodNumber;
2157
- uom: z.ZodString;
2158
- conversion_factor: z.ZodNumber;
2159
- doctype: z.ZodString;
2160
- }, "strip", z.ZodTypeAny, {
2161
- name: string;
2162
- doctype: string;
2163
- owner: string;
2164
- creation: string;
2165
- modified: string;
2166
- modified_by: string;
2167
- parent: string;
2168
- parentfield: string;
2169
- parenttype: string;
2170
- idx: number;
2171
- docstatus: number;
2172
- uom: string;
2173
- conversion_factor: number;
2174
- }, {
2175
- name: string;
2176
- doctype: string;
2177
- owner: string;
2178
- creation: string;
2179
- modified: string;
2180
- modified_by: string;
2181
- parent: string;
2182
- parentfield: string;
2183
- parenttype: string;
2184
- idx: number;
2185
- docstatus: number;
951
+ }[];
952
+ reorder_levels: any[];
953
+ uoms: {
2186
954
  uom: string;
2187
955
  conversion_factor: number;
2188
- }>, "many">;
2189
- attributes: z.ZodArray<z.ZodAny, "many">;
2190
- item_defaults: z.ZodArray<z.ZodObject<{
2191
- name: z.ZodString;
2192
- owner: z.ZodString;
2193
- creation: z.ZodString;
2194
- modified: z.ZodString;
2195
- modified_by: z.ZodString;
2196
- parent: z.ZodString;
2197
- parentfield: z.ZodString;
2198
- parenttype: z.ZodString;
2199
- idx: z.ZodNumber;
2200
- docstatus: z.ZodNumber;
2201
- company: z.ZodString;
2202
- default_warehouse: z.ZodString;
2203
- doctype: z.ZodString;
2204
- }, "strip", z.ZodTypeAny, {
2205
- name: string;
2206
- doctype: string;
2207
- owner: string;
2208
- creation: string;
2209
- modified: string;
2210
- modified_by: string;
2211
- parent: string;
2212
- parentfield: string;
2213
- parenttype: string;
2214
- idx: number;
2215
- docstatus: number;
2216
- company: string;
2217
- default_warehouse: string;
2218
- }, {
2219
- name: string;
2220
- doctype: string;
2221
- owner: string;
2222
- creation: string;
2223
- modified: string;
2224
- modified_by: string;
2225
- parent: string;
2226
- parentfield: string;
2227
- parenttype: string;
2228
- idx: number;
2229
- docstatus: number;
956
+ }[];
957
+ attributes: any[];
958
+ item_defaults: {
2230
959
  company: string;
2231
960
  default_warehouse: string;
2232
- }>, "many">;
2233
- supplier_items: z.ZodArray<z.ZodObject<{
2234
- name: z.ZodString;
2235
- owner: z.ZodString;
2236
- creation: z.ZodString;
2237
- modified: z.ZodString;
2238
- modified_by: z.ZodString;
2239
- parent: z.ZodString;
2240
- parentfield: z.ZodString;
2241
- parenttype: z.ZodString;
2242
- idx: z.ZodNumber;
2243
- docstatus: z.ZodNumber;
2244
- doctype: z.ZodString;
2245
- supplier: z.ZodString;
2246
- supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2247
- }, "strip", z.ZodTypeAny, {
2248
- name: string;
2249
- doctype: string;
2250
- owner: string;
2251
- creation: string;
2252
- modified: string;
2253
- modified_by: string;
2254
- parent: string;
2255
- parentfield: string;
2256
- parenttype: string;
2257
- idx: number;
2258
- docstatus: number;
2259
- supplier: string;
2260
- supplier_part_no?: string | null | undefined;
2261
- }, {
2262
- name: string;
2263
- doctype: string;
2264
- owner: string;
2265
- creation: string;
2266
- modified: string;
2267
- modified_by: string;
2268
- parent: string;
2269
- parentfield: string;
2270
- parenttype: string;
2271
- idx: number;
2272
- docstatus: number;
961
+ }[];
962
+ supplier_items: {
2273
963
  supplier: string;
2274
964
  supplier_part_no?: string | null | undefined;
2275
- }>, "many">;
2276
- customer_items: z.ZodArray<z.ZodAny, "many">;
2277
- taxes: z.ZodArray<z.ZodAny, "many">;
2278
- customs_tariff_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2279
- country_of_origin: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2280
- custom_product_version: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2281
- custom_supplier: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2282
- purchase_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2283
- custom_stock_reserve: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2284
- custom_sales_category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2285
- custom_shopify_content_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2286
- custom_compliance: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2287
- custom_certifications: z.ZodArray<z.ZodObject<{
2288
- name: z.ZodString;
2289
- owner: z.ZodString;
2290
- creation: z.ZodString;
2291
- modified: z.ZodString;
2292
- modified_by: z.ZodString;
2293
- parent: z.ZodString;
2294
- parentfield: z.ZodString;
2295
- parenttype: z.ZodString;
2296
- idx: z.ZodNumber;
2297
- docstatus: z.ZodNumber;
2298
- doctype: z.ZodString;
2299
- certification: z.ZodString;
2300
- }, "strip", z.ZodTypeAny, {
2301
- name: string;
2302
- doctype: string;
2303
- owner: string;
2304
- creation: string;
2305
- modified: string;
2306
- modified_by: string;
2307
- parent: string;
2308
- parentfield: string;
2309
- parenttype: string;
2310
- idx: number;
2311
- docstatus: number;
2312
- certification: string;
2313
- }, {
2314
- name: string;
2315
- doctype: string;
2316
- owner: string;
2317
- creation: string;
2318
- modified: string;
2319
- modified_by: string;
2320
- parent: string;
2321
- parentfield: string;
2322
- parenttype: string;
2323
- idx: number;
2324
- docstatus: number;
965
+ }[];
966
+ customer_items: any[];
967
+ custom_certifications: {
2325
968
  certification: string;
2326
- }>, "many">;
2327
- custom_oversell_amount: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
2328
- custom_serviceportal_configuration: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2329
- }, "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items">, "item_code" | "item_name" | "weight_per_unit" | "weight_uom">, "strip", z.ZodTypeAny, {
2330
- item_code: string;
2331
- item_name: string;
2332
- weight_per_unit: number;
2333
- weight_uom: "kg" | "g" | "mg";
2334
- }, {
2335
- item_code: string;
2336
- item_name: string;
2337
- weight_per_unit: number;
2338
- weight_uom: "kg" | "g" | "mg";
2339
- }>, "many">;
2340
- export type ItemListType = z.infer<typeof ItemList>;
969
+ }[];
970
+ length?: number | null | undefined;
971
+ disabled?: unknown;
972
+ image?: string | null | undefined;
973
+ weight_per_unit?: number | null | undefined;
974
+ warehouse_category?: string | null | undefined;
975
+ ean?: string | null | undefined;
976
+ allow_alternative_item?: unknown;
977
+ is_stock_item?: unknown;
978
+ custom_is_digital?: unknown;
979
+ shipping_template?: string | null | undefined;
980
+ width?: number | null | undefined;
981
+ height?: number | null | undefined;
982
+ custom_dimension_format?: "Length / Width / Height" | "Width / Depth / Height" | undefined;
983
+ shipping_length?: number | null | undefined;
984
+ shipping_width?: number | null | undefined;
985
+ shipping_height?: number | null | undefined;
986
+ packaging_weight_cardboard?: number | null | undefined;
987
+ packaging_weight_plastic?: number | null | undefined;
988
+ product_weight?: number | null | undefined;
989
+ fsc_status?: string | null | undefined;
990
+ custom_fsc_type_of_wood?: string | null | undefined;
991
+ custom_fsc_product_group?: string | null | undefined;
992
+ customs_tariff_number?: string | null | undefined;
993
+ country_of_origin?: string | null | undefined;
994
+ custom_product_version?: string | null | undefined;
995
+ custom_supplier?: string | null | undefined;
996
+ purchase_description?: string | null | undefined;
997
+ custom_stock_reserve?: number | null | undefined;
998
+ custom_sales_category?: string | null | undefined;
999
+ custom_shopify_content_configuration?: string | null | undefined;
1000
+ custom_compliance?: string | null | undefined;
1001
+ custom_oversell_amount?: number | null | undefined;
1002
+ custom_serviceportal_configuration?: string | null | undefined;
1003
+ }>>;
1004
+ export type ItemDocType = z.infer<typeof ItemDoc>;
1005
+ export declare const ERPNextItemResponseNoneStockItemsDictFalse: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
2341
1006
  declare const ItemSupplier: z.ZodObject<{
2342
- name: z.ZodString;
2343
1007
  supplier: z.ZodString;
2344
- parent: z.ZodString;
2345
1008
  supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2346
1009
  }, "strip", z.ZodTypeAny, {
2347
- name: string;
2348
- parent: string;
2349
1010
  supplier: string;
2350
1011
  supplier_part_no?: string | null | undefined;
2351
1012
  }, {
2352
- name: string;
2353
- parent: string;
2354
1013
  supplier: string;
2355
1014
  supplier_part_no?: string | null | undefined;
2356
1015
  }>;
2357
1016
  export type ItemSupplierType = z.infer<typeof ItemSupplier>;
2358
- export declare const ItemSupplierResponse: z.ZodArray<z.ZodObject<{
2359
- name: z.ZodString;
1017
+ declare const GetSupplierPartNumbersMethodData: z.ZodObject<{
2360
1018
  supplier: z.ZodString;
2361
- parent: z.ZodString;
2362
1019
  supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2363
- }, "strip", z.ZodTypeAny, {
2364
- name: string;
2365
- parent: string;
2366
- supplier: string;
2367
- supplier_part_no?: string | null | undefined;
2368
- }, {
2369
- name: string;
2370
- parent: string;
2371
- supplier: string;
2372
- supplier_part_no?: string | null | undefined;
2373
- }>, "many">;
2374
- export type ItemSupplierResponseType = z.infer<typeof ItemSupplierResponse>;
2375
- declare const ItemSupplierValidated: z.ZodObject<Omit<{
1020
+ } & {
2376
1021
  name: z.ZodString;
2377
- supplier: z.ZodString;
2378
- parent: z.ZodString;
2379
- supplier_part_no: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2380
- }, "parent"> & {
2381
1022
  item_code: z.ZodString;
2382
1023
  }, "strip", z.ZodTypeAny, {
2383
1024
  name: string;
@@ -2390,5 +1031,5 @@ declare const ItemSupplierValidated: z.ZodObject<Omit<{
2390
1031
  supplier: string;
2391
1032
  supplier_part_no?: string | null | undefined;
2392
1033
  }>;
2393
- export type ItemSupplierValidatedType = z.infer<typeof ItemSupplierValidated>;
1034
+ export type GetSupplierPartNumbersMethodDataType = z.infer<typeof GetSupplierPartNumbersMethodData>;
2394
1035
  export {};