erpnext-queue-client 1.24.0 → 1.24.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.
@@ -326,6 +326,7 @@ export declare class ERPNextServicecase {
326
326
  modified: string;
327
327
  modified_by: string;
328
328
  attachments: {
329
+ type: "image" | "video";
329
330
  url: string;
330
331
  name: string;
331
332
  owner: string;
@@ -13,7 +13,9 @@ export declare const AttachmentCollection: z.ZodObject<{
13
13
  modified_by: z.ZodString;
14
14
  idx: z.ZodNumber;
15
15
  url: z.ZodString;
16
+ type: z.ZodEnum<["image", "video"]>;
16
17
  }, "strip", z.ZodTypeAny, {
18
+ type: "image" | "video";
17
19
  url: string;
18
20
  name: string;
19
21
  owner: string;
@@ -22,6 +24,7 @@ export declare const AttachmentCollection: z.ZodObject<{
22
24
  modified_by: string;
23
25
  idx: number;
24
26
  }, {
27
+ type: "image" | "video";
25
28
  url: string;
26
29
  name: string;
27
30
  owner: string;
@@ -37,6 +40,7 @@ export declare const AttachmentCollection: z.ZodObject<{
37
40
  modified: string;
38
41
  modified_by: string;
39
42
  attachments: {
43
+ type: "image" | "video";
40
44
  url: string;
41
45
  name: string;
42
46
  owner: string;
@@ -52,6 +56,7 @@ export declare const AttachmentCollection: z.ZodObject<{
52
56
  modified: string;
53
57
  modified_by: string;
54
58
  attachments: {
59
+ type: "image" | "video";
55
60
  url: string;
56
61
  name: string;
57
62
  owner: string;
@@ -69,9 +74,12 @@ export declare const UpdateAttachmentCollectionInput: z.ZodArray<z.ZodObject<Omi
69
74
  modified_by: z.ZodString;
70
75
  idx: z.ZodNumber;
71
76
  url: z.ZodString;
77
+ type: z.ZodEnum<["image", "video"]>;
72
78
  }, "name" | "owner" | "creation" | "modified" | "modified_by" | "idx">, "strip", z.ZodTypeAny, {
79
+ type: "image" | "video";
73
80
  url: string;
74
81
  }, {
82
+ type: "image" | "video";
75
83
  url: string;
76
84
  }>, "many">;
77
85
  export declare const InternalReasonCollection: z.ZodObject<{
@@ -25,6 +25,7 @@ const AttachmentChildTableEntry = zod_1.z.object({
25
25
  modified_by: zod_1.z.string(),
26
26
  idx: zod_1.z.number(),
27
27
  url: zod_1.z.string(),
28
+ type: zod_1.z.enum(["image", "video"]),
28
29
  });
29
30
  exports.AttachmentCollection = zod_1.z
30
31
  .object({
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.24.0",
28
+ "version": "1.24.1",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",