@aviaryhq/cloudglue-js 0.3.7 → 0.3.8

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.
@@ -4831,6 +4831,10 @@ export declare const CollectionsApi: import("@zodios/core").ZodiosInstance<[{
4831
4831
  name: "sort";
4832
4832
  type: "Query";
4833
4833
  schema: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
4834
+ }, {
4835
+ name: "filter";
4836
+ type: "Query";
4837
+ schema: z.ZodOptional<z.ZodString>;
4834
4838
  }];
4835
4839
  response: z.ZodType<CollectionFileList, z.ZodTypeDef, CollectionFileList>;
4836
4840
  errors: [{
@@ -10008,6 +10012,10 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
10008
10012
  name: "sort";
10009
10013
  type: "Query";
10010
10014
  schema: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
10015
+ }, {
10016
+ name: "filter";
10017
+ type: "Query";
10018
+ schema: z.ZodOptional<z.ZodString>;
10011
10019
  }];
10012
10020
  response: z.ZodType<CollectionFileList, z.ZodTypeDef, CollectionFileList>;
10013
10021
  errors: [{
@@ -13,7 +13,7 @@ const Collection = zod_1.z
13
13
  id: zod_1.z.string(),
14
14
  object: zod_1.z.literal("collection"),
15
15
  name: zod_1.z.string(),
16
- description: zod_1.z.union([zod_1.z.string(), zod_1.z.null()]).optional(),
16
+ description: zod_1.z.string().nullish(),
17
17
  collection_type: zod_1.z.enum([
18
18
  "media-descriptions",
19
19
  "entities",
@@ -67,7 +67,7 @@ const NewCollection = zod_1.z
67
67
  "rich-transcripts",
68
68
  ]),
69
69
  name: zod_1.z.string(),
70
- description: zod_1.z.union([zod_1.z.string(), zod_1.z.null()]).optional(),
70
+ description: zod_1.z.string().nullish(),
71
71
  describe_config: zod_1.z
72
72
  .object({
73
73
  enable_summary: zod_1.z.boolean().default(true),
@@ -766,6 +766,11 @@ const endpoints = (0, core_1.makeApi)([
766
766
  type: "Query",
767
767
  schema: zod_1.z.enum(["asc", "desc"]).optional().default("desc"),
768
768
  },
769
+ {
770
+ name: "filter",
771
+ type: "Query",
772
+ schema: zod_1.z.string().optional(),
773
+ },
769
774
  ],
770
775
  response: CollectionFileList,
771
776
  errors: [
@@ -41,7 +41,7 @@ const FaceMatch = zod_1.z
41
41
  file_id: zod_1.z.string().uuid().optional(),
42
42
  status: zod_1.z.enum(["pending", "processing", "completed", "failed"]),
43
43
  created_at: zod_1.z.number(),
44
- source_face_bounding_box: zod_1.z.union([common_1.FaceBoundingBox, zod_1.z.null()]).optional(),
44
+ source_face_bounding_box: common_1.FaceBoundingBox.nullish(),
45
45
  data: zod_1.z
46
46
  .object({
47
47
  object: zod_1.z.literal("list"),