erpnext-queue-client 1.29.7 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -863,6 +863,7 @@ export declare class ERPNextShipment {
|
|
|
863
863
|
country?: string | null | undefined;
|
|
864
864
|
image?: string | null | undefined;
|
|
865
865
|
shipping_label?: string | null | undefined;
|
|
866
|
+
shipping_provider?: string | null | undefined;
|
|
866
867
|
}[]>;
|
|
867
868
|
addShippingLabelAndSubmit(shipmentErpNextName: string, body: ShipmentAddShippingLabelAndSubmitBodyType): Promise<{
|
|
868
869
|
status: string;
|
|
@@ -1145,6 +1145,7 @@ export declare const ShipmentInfoByOrderNumberMethodResponseData: z.ZodArray<z.Z
|
|
|
1145
1145
|
qty: z.ZodNumber;
|
|
1146
1146
|
address_title: z.ZodString;
|
|
1147
1147
|
shipping_label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1148
|
+
shipping_provider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1148
1149
|
address_line1: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1149
1150
|
address_line2: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1150
1151
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1165,6 +1166,7 @@ export declare const ShipmentInfoByOrderNumberMethodResponseData: z.ZodArray<z.Z
|
|
|
1165
1166
|
country?: string | null | undefined;
|
|
1166
1167
|
image?: string | null | undefined;
|
|
1167
1168
|
shipping_label?: string | null | undefined;
|
|
1169
|
+
shipping_provider?: string | null | undefined;
|
|
1168
1170
|
}, {
|
|
1169
1171
|
name: string;
|
|
1170
1172
|
address_title: string;
|
|
@@ -1179,5 +1181,6 @@ export declare const ShipmentInfoByOrderNumberMethodResponseData: z.ZodArray<z.Z
|
|
|
1179
1181
|
country?: string | null | undefined;
|
|
1180
1182
|
image?: string | null | undefined;
|
|
1181
1183
|
shipping_label?: string | null | undefined;
|
|
1184
|
+
shipping_provider?: string | null | undefined;
|
|
1182
1185
|
}>, "many">;
|
|
1183
1186
|
export type ShipmentInfoByOrderNumberMethodResponseDataType = z.infer<typeof ShipmentInfoByOrderNumberMethodResponseData>;
|
|
@@ -198,6 +198,7 @@ exports.ShipmentInfoByOrderNumberMethodResponseData = zod_1.z
|
|
|
198
198
|
qty: zod_1.z.number(),
|
|
199
199
|
address_title: zod_1.z.string(),
|
|
200
200
|
shipping_label: zod_1.z.string().optional().nullable(),
|
|
201
|
+
shipping_provider: zod_1.z.string().optional().nullable(),
|
|
201
202
|
address_line1: zod_1.z.string().optional().nullable(),
|
|
202
203
|
address_line2: zod_1.z.string().optional().nullable(),
|
|
203
204
|
city: zod_1.z.string().optional().nullable(),
|