erpnext-queue-client 2.5.10 → 2.5.11
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.
|
@@ -161,10 +161,20 @@ export declare const ServiceportalProductConfigurationMethodResponse: z.ZodObjec
|
|
|
161
161
|
doctype: z.ZodString;
|
|
162
162
|
_user_tags: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
163
163
|
}, never>, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>, "many">;
|
|
164
|
+
internal_reasons: z.ZodArray<z.ZodObject<Pick<{
|
|
165
|
+
internal_reason: z.ZodString;
|
|
166
|
+
}, "internal_reason">, "strip", z.ZodTypeAny, {
|
|
167
|
+
internal_reason: string;
|
|
168
|
+
}, {
|
|
169
|
+
internal_reason: string;
|
|
170
|
+
}>, "many">;
|
|
164
171
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
165
172
|
name: string;
|
|
166
173
|
doctype: string;
|
|
167
174
|
title: string;
|
|
175
|
+
internal_reasons: {
|
|
176
|
+
internal_reason: string;
|
|
177
|
+
}[];
|
|
168
178
|
return_fee: number;
|
|
169
179
|
return_fees: {}[];
|
|
170
180
|
is_ask_for_batch_number: number;
|
|
@@ -178,6 +188,9 @@ export declare const ServiceportalProductConfigurationMethodResponse: z.ZodObjec
|
|
|
178
188
|
name: string;
|
|
179
189
|
doctype: string;
|
|
180
190
|
title: string;
|
|
191
|
+
internal_reasons: {
|
|
192
|
+
internal_reason: string;
|
|
193
|
+
}[];
|
|
181
194
|
return_fee: number;
|
|
182
195
|
return_fees: {}[];
|
|
183
196
|
is_ask_for_batch_number: number;
|
|
@@ -41,6 +41,7 @@ exports.ServiceportalProductConfigurationMethodResponse = (0, DocTypeHelpers_1.D
|
|
|
41
41
|
batch_number_location_description: true,
|
|
42
42
|
return_conditions: true,
|
|
43
43
|
batch_numbers: true,
|
|
44
|
+
internal_reasons: true,
|
|
44
45
|
return_shipping_provider: true,
|
|
45
46
|
return_instructions: true,
|
|
46
47
|
})
|
|
@@ -58,4 +59,7 @@ exports.ServiceportalProductConfigurationMethodResponse = (0, DocTypeHelpers_1.D
|
|
|
58
59
|
parenttype: true,
|
|
59
60
|
doctype: true,
|
|
60
61
|
})),
|
|
62
|
+
internal_reasons: zod_1.z.array(exports.InternalReasonList.pick({
|
|
63
|
+
internal_reason: true,
|
|
64
|
+
})),
|
|
61
65
|
});
|