erpnext-queue-client 1.26.3 → 1.26.4
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.
|
@@ -144,7 +144,7 @@ export declare class ERPNextServicecase {
|
|
|
144
144
|
customer_message?: string | null | undefined;
|
|
145
145
|
agreed_terms?: string | null | undefined;
|
|
146
146
|
}>;
|
|
147
|
-
updateById: (resourceId: string, servicecase: ServicecaseInputType
|
|
147
|
+
updateById: (resourceId: string, servicecase: Partial<ServicecaseInputType>, options?: {
|
|
148
148
|
priority: number;
|
|
149
149
|
}) => Promise<{
|
|
150
150
|
status: "EDITING" | "SUBMITTED" | "COMPLETED";
|
|
@@ -235,7 +235,7 @@ export declare class ERPNextServicecase {
|
|
|
235
235
|
customer_message?: string | null | undefined;
|
|
236
236
|
agreed_terms?: string | null | undefined;
|
|
237
237
|
}>;
|
|
238
|
-
updateServicecase(resourceId: string, servicecase: ServicecaseInputType
|
|
238
|
+
updateServicecase(resourceId: string, servicecase: Partial<ServicecaseInputType>, options?: {
|
|
239
239
|
priority: number;
|
|
240
240
|
}): Promise<{
|
|
241
241
|
status: "EDITING" | "SUBMITTED" | "COMPLETED";
|