@reactionary/meilisearch 0.6.9 → 0.7.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.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reactionary/meilisearch",
3
- "version": "0.6.9",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
8
  "vitest": "^4.0.9",
9
9
  "@nx/vite": "22.4.5",
10
- "@reactionary/core": "0.6.9",
10
+ "@reactionary/core": "0.7.0",
11
11
  "zod": "4.1.9",
12
12
  "meilisearch": "^0.55.0"
13
13
  },
@@ -18,6 +18,9 @@ export declare const MeilisearchProductSearchIdentifierSchema: z.ZodObject<{
18
18
  }, z.core.$loose>;
19
19
  key: z.ZodString;
20
20
  }, z.core.$strip>>;
21
+ company: z.ZodOptional<z.ZodObject<{
22
+ taxIdentifier: z.ZodString;
23
+ }, z.core.$loose>>;
21
24
  key: z.ZodString;
22
25
  index: z.ZodString;
23
26
  }, z.core.$loose>;
@@ -95,6 +98,9 @@ export declare const MeilisearchProductSearchResultSchema: z.ZodObject<{
95
98
  }, z.core.$loose>;
96
99
  key: z.ZodString;
97
100
  }, z.core.$strip>>;
101
+ company: z.ZodOptional<z.ZodObject<{
102
+ taxIdentifier: z.ZodString;
103
+ }, z.core.$loose>>;
98
104
  key: z.ZodString;
99
105
  index: z.ZodString;
100
106
  }, z.core.$loose>>;