@algolia/client-search 5.49.2 → 5.50.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.
package/dist/worker.d.ts CHANGED
@@ -3066,7 +3066,7 @@ type AccountCopyIndexOptions = {
3066
3066
  batchSize?: number | undefined;
3067
3067
  };
3068
3068
 
3069
- declare const apiClientVersion = "5.49.2";
3069
+ declare const apiClientVersion = "5.50.1";
3070
3070
  declare function createSearchClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, ...options }: CreateClientOptions): {
3071
3071
  transporter: _algolia_client_common.Transporter;
3072
3072
  /**
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "5.49.2",
2
+ "version": "5.50.1",
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -17,6 +17,10 @@
17
17
  "description": "JavaScript client for client-search",
18
18
  "exports": {
19
19
  ".": {
20
+ "react-native": {
21
+ "types": "./dist/browser.d.ts",
22
+ "default": "./dist/builds/browser.js"
23
+ },
20
24
  "node": {
21
25
  "types": {
22
26
  "import": "./dist/node.d.ts",
@@ -38,7 +42,8 @@
38
42
  "default": "./dist/builds/browser.umd.js"
39
43
  }
40
44
  },
41
- "./dist/builds/*": "./dist/builds/*.js"
45
+ "./dist/builds/*": "./dist/builds/*.js",
46
+ "./dist/builds/*.js": "./dist/builds/*.js"
42
47
  },
43
48
  "jsdelivr": "./dist/builds/browser.umd.js",
44
49
  "unpkg": "./dist/builds/browser.umd.js",
@@ -49,21 +54,21 @@
49
54
  "index.d.ts"
50
55
  ],
51
56
  "dependencies": {
52
- "@algolia/client-common": "5.49.2",
53
- "@algolia/requester-browser-xhr": "5.49.2",
54
- "@algolia/requester-fetch": "5.49.2",
55
- "@algolia/requester-node-http": "5.49.2"
57
+ "@algolia/client-common": "5.50.1",
58
+ "@algolia/requester-browser-xhr": "5.50.1",
59
+ "@algolia/requester-fetch": "5.50.1",
60
+ "@algolia/requester-node-http": "5.50.1"
56
61
  },
57
62
  "devDependencies": {
58
63
  "@arethetypeswrong/cli": "0.18.2",
59
64
  "@types/node": "25.1.0",
60
65
  "publint": "0.3.18",
61
- "rollup": "4.58.0",
66
+ "rollup": "4.59.0",
62
67
  "tsup": "8.5.1",
63
68
  "typescript": "5.9.3"
64
69
  },
65
70
  "engines": {
66
71
  "node": ">= 14.0.0"
67
72
  },
68
- "gitHead": "da4a2e808eb46c77f73041ee730931146449003e"
73
+ "gitHead": "b757ccaa569c38f86c0e33f1d839b4352158aa49"
69
74
  }