@kl1/contracts 1.4.43 → 1.4.44

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.
package/dist/index.mjs CHANGED
@@ -351,7 +351,8 @@ var TagSchema = DefaultEntitySchema.extend({
351
351
  });
352
352
  var TagGroupSchema = z9.union([
353
353
  z9.literal("general"),
354
- z9.literal("contact")
354
+ z9.literal("contact"),
355
+ z9.literal("cdr")
355
356
  ]);
356
357
 
357
358
  // src/upload/schema.ts
@@ -5835,8 +5836,8 @@ var CreateTagSchema = z70.object({
5835
5836
  group: TagGroupSchema
5836
5837
  });
5837
5838
  var GetTagsSchema = z70.object({
5838
- group: TagGroupSchema.default("general"),
5839
- keyword: z70.string()
5839
+ group: TagGroupSchema.optional().default("general"),
5840
+ keyword: z70.string().nullable().optional()
5840
5841
  }).partial().optional();
5841
5842
  var UpdateTagSchema = z70.object({ name: z70.string() });
5842
5843