erpnext-queue-client 1.25.2 → 1.25.3

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.
@@ -47,10 +47,10 @@ export declare const ServiceportalProductConfiguration: z.ZodObject<{
47
47
  modified_by: z.ZodString;
48
48
  title: z.ZodString;
49
49
  return_fee: z.ZodNumber;
50
- return_fee_explanation: z.ZodString;
50
+ return_fee_explanation: z.ZodNullable<z.ZodOptional<z.ZodString>>;
51
51
  is_ask_for_batch_number: z.ZodNumber;
52
52
  batch_number_location_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
53
- return_conditions: z.ZodString;
53
+ return_conditions: z.ZodNullable<z.ZodOptional<z.ZodString>>;
54
54
  doctype: z.ZodLiteral<"Serviceportal Product Configuration">;
55
55
  batch_numbers: z.ZodArray<z.ZodObject<{
56
56
  name: z.ZodString;
@@ -158,9 +158,7 @@ export declare const ServiceportalProductConfiguration: z.ZodObject<{
158
158
  internal_reason: string;
159
159
  }[];
160
160
  return_fee: number;
161
- return_fee_explanation: string;
162
161
  is_ask_for_batch_number: number;
163
- return_conditions: string;
164
162
  batch_numbers: {
165
163
  name: string;
166
164
  doctype: "Batch Number List";
@@ -175,7 +173,9 @@ export declare const ServiceportalProductConfiguration: z.ZodObject<{
175
173
  docstatus: number;
176
174
  batch_number: string;
177
175
  }[];
176
+ return_fee_explanation?: string | null | undefined;
178
177
  batch_number_location_description?: string | null | undefined;
178
+ return_conditions?: string | null | undefined;
179
179
  return_shipping_provider?: string | null | undefined;
180
180
  return_instructions?: string | null | undefined;
181
181
  internal_reasons_section?: string | null | undefined;
@@ -202,9 +202,7 @@ export declare const ServiceportalProductConfiguration: z.ZodObject<{
202
202
  internal_reason: string;
203
203
  }[];
204
204
  return_fee: number;
205
- return_fee_explanation: string;
206
205
  is_ask_for_batch_number: number;
207
- return_conditions: string;
208
206
  batch_numbers: {
209
207
  name: string;
210
208
  doctype: "Batch Number List";
@@ -219,7 +217,9 @@ export declare const ServiceportalProductConfiguration: z.ZodObject<{
219
217
  docstatus: number;
220
218
  batch_number: string;
221
219
  }[];
220
+ return_fee_explanation?: string | null | undefined;
222
221
  batch_number_location_description?: string | null | undefined;
222
+ return_conditions?: string | null | undefined;
223
223
  return_shipping_provider?: string | null | undefined;
224
224
  return_instructions?: string | null | undefined;
225
225
  internal_reasons_section?: string | null | undefined;
@@ -233,10 +233,10 @@ export declare const ServiceportalProductConfigurationInput: z.ZodObject<Omit<{
233
233
  modified_by: z.ZodString;
234
234
  title: z.ZodString;
235
235
  return_fee: z.ZodNumber;
236
- return_fee_explanation: z.ZodString;
236
+ return_fee_explanation: z.ZodNullable<z.ZodOptional<z.ZodString>>;
237
237
  is_ask_for_batch_number: z.ZodNumber;
238
238
  batch_number_location_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
239
- return_conditions: z.ZodString;
239
+ return_conditions: z.ZodNullable<z.ZodOptional<z.ZodString>>;
240
240
  doctype: z.ZodLiteral<"Serviceportal Product Configuration">;
241
241
  batch_numbers: z.ZodArray<z.ZodObject<{
242
242
  name: z.ZodString;
@@ -365,13 +365,13 @@ export declare const ServiceportalProductConfigurationInput: z.ZodObject<Omit<{
365
365
  internal_reason: string;
366
366
  }[];
367
367
  return_fee: number;
368
- return_fee_explanation: string;
369
368
  is_ask_for_batch_number: number;
370
- return_conditions: string;
371
369
  batch_numbers: {
372
370
  batch_number: string;
373
371
  }[];
372
+ return_fee_explanation?: string | null | undefined;
374
373
  batch_number_location_description?: string | null | undefined;
374
+ return_conditions?: string | null | undefined;
375
375
  return_shipping_provider?: string | null | undefined;
376
376
  return_instructions?: string | null | undefined;
377
377
  internal_reasons_section?: string | null | undefined;
@@ -382,13 +382,13 @@ export declare const ServiceportalProductConfigurationInput: z.ZodObject<Omit<{
382
382
  internal_reason: string;
383
383
  }[];
384
384
  return_fee: number;
385
- return_fee_explanation: string;
386
385
  is_ask_for_batch_number: number;
387
- return_conditions: string;
388
386
  batch_numbers: {
389
387
  batch_number: string;
390
388
  }[];
389
+ return_fee_explanation?: string | null | undefined;
391
390
  batch_number_location_description?: string | null | undefined;
391
+ return_conditions?: string | null | undefined;
392
392
  return_shipping_provider?: string | null | undefined;
393
393
  return_instructions?: string | null | undefined;
394
394
  internal_reasons_section?: string | null | undefined;
@@ -41,10 +41,10 @@ exports.ServiceportalProductConfiguration = zod_1.z
41
41
  modified_by: zod_1.z.string(),
42
42
  title: zod_1.z.string(),
43
43
  return_fee: zod_1.z.number(),
44
- return_fee_explanation: zod_1.z.string(),
44
+ return_fee_explanation: zod_1.z.string().optional().nullable(),
45
45
  is_ask_for_batch_number: zod_1.z.number(),
46
46
  batch_number_location_description: zod_1.z.string().optional().nullable(),
47
- return_conditions: zod_1.z.string(),
47
+ return_conditions: zod_1.z.string().optional().nullable(),
48
48
  doctype: zod_1.z.literal("Serviceportal Product Configuration"),
49
49
  batch_numbers: zod_1.z.array(BatchNumberList),
50
50
  internal_reasons: zod_1.z.array(exports.InternalReasonList),
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "winston": "^3.15.0",
26
26
  "zod": "^3.24.1"
27
27
  },
28
- "version": "1.25.2",
28
+ "version": "1.25.3",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",