@algolia/client-abtesting 5.20.2 → 5.20.4
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/README.md +4 -4
- package/dist/browser.d.ts +5 -5
- package/dist/builds/browser.js +5 -5
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +1 -1
- package/dist/builds/fetch.js +5 -5
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +5 -5
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +5 -5
- package/dist/builds/node.js.map +1 -1
- package/dist/builds/worker.js +5 -5
- package/dist/builds/worker.js.map +1 -1
- package/dist/fetch.d.ts +5 -5
- package/dist/node.d.cts +5 -5
- package/dist/node.d.ts +5 -5
- package/dist/src/abtestingClient.cjs +5 -5
- package/dist/src/abtestingClient.cjs.map +1 -1
- package/dist/src/abtestingClient.js +5 -5
- package/dist/src/abtestingClient.js.map +1 -1
- package/dist/worker.d.ts +5 -5
- package/package.json +10 -10
package/dist/worker.d.ts
CHANGED
|
@@ -466,7 +466,7 @@ type StopABTestProps = {
|
|
|
466
466
|
id: number;
|
|
467
467
|
};
|
|
468
468
|
|
|
469
|
-
declare const apiClientVersion = "5.20.
|
|
469
|
+
declare const apiClientVersion = "5.20.4";
|
|
470
470
|
declare const REGIONS: readonly ["de", "us"];
|
|
471
471
|
type Region = (typeof REGIONS)[number];
|
|
472
472
|
type RegionOptions = {
|
|
@@ -516,7 +516,7 @@ declare function createAbtestingClient({ appId: appIdOption, apiKey: apiKeyOptio
|
|
|
516
516
|
*/
|
|
517
517
|
addABTests(addABTestsRequest: AddABTestsRequest, requestOptions?: RequestOptions): Promise<ABTestResponse>;
|
|
518
518
|
/**
|
|
519
|
-
* This method
|
|
519
|
+
* This method lets you send requests to the Algolia REST API.
|
|
520
520
|
* @param customDelete - The customDelete object.
|
|
521
521
|
* @param customDelete.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
522
522
|
* @param customDelete.parameters - Query parameters to apply to the current query.
|
|
@@ -524,7 +524,7 @@ declare function createAbtestingClient({ appId: appIdOption, apiKey: apiKeyOptio
|
|
|
524
524
|
*/
|
|
525
525
|
customDelete({ path, parameters }: CustomDeleteProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
526
526
|
/**
|
|
527
|
-
* This method
|
|
527
|
+
* This method lets you send requests to the Algolia REST API.
|
|
528
528
|
* @param customGet - The customGet object.
|
|
529
529
|
* @param customGet.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
530
530
|
* @param customGet.parameters - Query parameters to apply to the current query.
|
|
@@ -532,7 +532,7 @@ declare function createAbtestingClient({ appId: appIdOption, apiKey: apiKeyOptio
|
|
|
532
532
|
*/
|
|
533
533
|
customGet({ path, parameters }: CustomGetProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
534
534
|
/**
|
|
535
|
-
* This method
|
|
535
|
+
* This method lets you send requests to the Algolia REST API.
|
|
536
536
|
* @param customPost - The customPost object.
|
|
537
537
|
* @param customPost.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
538
538
|
* @param customPost.parameters - Query parameters to apply to the current query.
|
|
@@ -541,7 +541,7 @@ declare function createAbtestingClient({ appId: appIdOption, apiKey: apiKeyOptio
|
|
|
541
541
|
*/
|
|
542
542
|
customPost({ path, parameters, body }: CustomPostProps, requestOptions?: RequestOptions): Promise<Record<string, unknown>>;
|
|
543
543
|
/**
|
|
544
|
-
* This method
|
|
544
|
+
* This method lets you send requests to the Algolia REST API.
|
|
545
545
|
* @param customPut - The customPut object.
|
|
546
546
|
* @param customPut.path - Path of the endpoint, anything after \"/1\" must be specified.
|
|
547
547
|
* @param customPut.parameters - Query parameters to apply to the current query.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.20.
|
|
2
|
+
"version": "5.20.4",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -49,17 +49,17 @@
|
|
|
49
49
|
"index.d.ts"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@algolia/client-common": "5.20.
|
|
53
|
-
"@algolia/requester-browser-xhr": "5.20.
|
|
54
|
-
"@algolia/requester-fetch": "5.20.
|
|
55
|
-
"@algolia/requester-node-http": "5.20.
|
|
52
|
+
"@algolia/client-common": "5.20.4",
|
|
53
|
+
"@algolia/requester-browser-xhr": "5.20.4",
|
|
54
|
+
"@algolia/requester-fetch": "5.20.4",
|
|
55
|
+
"@algolia/requester-node-http": "5.20.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@arethetypeswrong/cli": "0.17.
|
|
59
|
-
"@types/node": "22.13.
|
|
60
|
-
"publint": "0.3.
|
|
61
|
-
"rollup": "4.34.
|
|
62
|
-
"tsup": "8.
|
|
58
|
+
"@arethetypeswrong/cli": "0.17.4",
|
|
59
|
+
"@types/node": "22.13.8",
|
|
60
|
+
"publint": "0.3.7",
|
|
61
|
+
"rollup": "4.34.9",
|
|
62
|
+
"tsup": "8.4.0",
|
|
63
63
|
"typescript": "5.7.3"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|