@reactionary/provider-algolia 0.3.9 → 0.3.11

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,10 +1,10 @@
1
1
  {
2
2
  "name": "@reactionary/provider-algolia",
3
- "version": "0.3.9",
3
+ "version": "0.3.11",
4
4
  "main": "index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "dependencies": {
7
- "@reactionary/core": "0.3.9",
7
+ "@reactionary/core": "0.3.11",
8
8
  "algoliasearch": "^5.48.0",
9
9
  "zod": "4.1.9"
10
10
  },
@@ -1,4 +1,4 @@
1
- import { z } from "zod";
1
+ import * as z from "zod";
2
2
  const AlgoliaConfigurationSchema = z.looseObject({
3
3
  appId: z.string(),
4
4
  apiKey: z.string(),
@@ -1,5 +1,5 @@
1
1
  import { ProductRecommendationIdentifierSchema } from "@reactionary/core";
2
- import { z } from "zod";
2
+ import * as z from "zod";
3
3
  const AlgoliaProductSearchIdentifierSchema = ProductRecommendationIdentifierSchema.extend({
4
4
  abTestID: z.number().optional(),
5
5
  abTestVariantID: z.number().optional()
@@ -1,5 +1,5 @@
1
1
  import { ProductSearchIdentifierSchema, ProductSearchResultSchema } from "@reactionary/core";
2
- import { z } from "zod";
2
+ import * as z from "zod";
3
3
  const AlgoliaProductSearchIdentifierSchema = ProductSearchIdentifierSchema.extend({
4
4
  key: z.string(),
5
5
  index: z.string()
@@ -1,4 +1,4 @@
1
- import type { z } from 'zod';
1
+ import type * as z from 'zod';
2
2
  export declare const AlgoliaCapabilitiesSchema: z.ZodObject<{
3
3
  analytics: z.ZodOptional<z.ZodBoolean>;
4
4
  productSearch: z.ZodOptional<z.ZodBoolean>;
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import * as z from 'zod';
2
2
  export declare const AlgoliaConfigurationSchema: z.ZodObject<{
3
3
  appId: z.ZodString;
4
4
  apiKey: z.ZodString;
@@ -1,4 +1,4 @@
1
- import { z } from "zod";
1
+ import * as z from "zod";
2
2
  export declare const AlgoliaProductSearchIdentifierSchema: z.ZodObject<{
3
3
  key: z.ZodString;
4
4
  algorithm: z.ZodString;
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import * as z from 'zod';
2
2
  export declare const AlgoliaProductSearchIdentifierSchema: z.ZodObject<{
3
3
  term: z.ZodString;
4
4
  facets: z.ZodArray<z.ZodObject<{