File tree Expand file tree Collapse file tree 23 files changed +31
-47
lines changed
algoliasearch-client-javascript Expand file tree Collapse file tree 23 files changed +31
-47
lines changed Original file line number Diff line number Diff line change 1
- ## [ v0.0.6 ] ( https://github.com/algolia/algoliasearch-client-javascript/compare/v0.0.5...v0.0.6 )
1
+ ## [ v0.1.0 ] ( https://github.com/algolia/algoliasearch-client-javascript/compare/v0.0.5...v0.1.0 )
2
2
3
3
### javascript
4
4
- 09259f7f feat(javascript): expose ` requestOptions ` and cache options (#283 )
5
5
- 272ebd3b feat(javascript): use responses and requests cache (#281 )
6
6
- 2e7f208c feat(javascript): add cache layer (#274 )
7
- - 32c95708 fix(javascript): engine support node > 14 (#260 )
8
- - 1c71efdf feat(javascript): expose ` models ` (#252 )
9
- - 6d60798c feat(javascript): upgrade to bundlesize 2 (#243 )
10
- - f18d24be fix(javascript): use package version in rollup (#232 )
11
- - e2c5927f feat(javascript): use beta npm org (#226 )
12
- - fe2120b8 fix(javascript): use babel plugin for classProperties (#222 )
13
- - c06f890d feat(javascript): provide ` algoliasearch ` package (#158 )
14
- - 48571bb2 feat(javascript): remove classes usage (#156 )
15
- - acdd4831 feat(javascript): add ` addUserAgent ` method (#154 )
16
- - 4e638914 fix(javascript): utils build and cache (#147 )
17
- - c7e7577f feat(javascript): bundle CJS, ESM and UMD (#135 )
18
- - bd13ce79 fix(javascript): prevent conflict with ` version ` variable (#141 )
19
- - fb8c063f feat(javascript): monorepo (#131 )
20
- - 3c1feb68 fix(javascript): auth via query parameters (#124 )
21
- - 32fa4ccf fix(javascript): node timeouts (#123 )
22
- - e408e4e5 feat(javascript): add browser xhr requester (#115 )
23
7
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/algoliasearch" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " A fully-featured and blazing-fast JavaScript API client to interact with Algolia API." ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
18
18
"node" : " >= 14.0.0"
19
19
},
20
20
"dependencies" : {
21
- "@experimental-api-clients-automation/client-analytics" : " ^0.0.6 " ,
22
- "@experimental-api-clients-automation/client-common" : " ^0.0.6 " ,
23
- "@experimental-api-clients-automation/client-personalization" : " ^0.0.6 " ,
24
- "@experimental-api-clients-automation/client-search" : " ^0.0.6 " ,
25
- "@experimental-api-clients-automation/requester-browser-xhr" : " ^0.0.6 " ,
26
- "@experimental-api-clients-automation/requester-node-http" : " ^0.0.6 "
21
+ "@experimental-api-clients-automation/client-analytics" : " ^0.1.0 " ,
22
+ "@experimental-api-clients-automation/client-common" : " ^0.1.0 " ,
23
+ "@experimental-api-clients-automation/client-personalization" : " ^0.1.0 " ,
24
+ "@experimental-api-clients-automation/client-search" : " ^0.1.0 " ,
25
+ "@experimental-api-clients-automation/requester-browser-xhr" : " ^0.1.0 " ,
26
+ "@experimental-api-clients-automation/requester-node-http" : " ^0.1.0 "
27
27
},
28
28
"devDependencies" : {
29
29
"@types/node" : " 16.11.11" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-abtesting" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-abtesting" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import type { AddABTestsRequest } from '../model/addABTestsRequest';
18
18
import type { ListABTestsResponse } from '../model/listABTestsResponse' ;
19
19
20
20
export * from '../model/models' ;
21
- export const apiClientVersion = '0.0.6 ' ;
21
+ export const apiClientVersion = '0.1.0 ' ;
22
22
23
23
export type Region = 'de' | 'us' ;
24
24
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-analytics" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-analytics" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
31
31
import type { GetUsersCountResponse } from '../model/getUsersCountResponse' ;
32
32
33
33
export * from '../model/models' ;
34
- export const apiClientVersion = '0.0.6 ' ;
34
+ export const apiClientVersion = '0.1.0 ' ;
35
35
36
36
export type Region = 'de' | 'us' ;
37
37
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-common" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " Common package for the Algolia JavaScript API client." ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-insights" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-insights" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import type { InsightEvents } from '../model/insightEvents';
16
16
import type { PushEventsResponse } from '../model/pushEventsResponse' ;
17
17
18
18
export * from '../model/models' ;
19
- export const apiClientVersion = '0.0.6 ' ;
19
+ export const apiClientVersion = '0.1.0 ' ;
20
20
21
21
export type Region = 'de' | 'us' ;
22
22
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-personalization" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-personalization" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import type { PersonalizationStrategyParams } from '../model/personalizationStra
18
18
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse' ;
19
19
20
20
export * from '../model/models' ;
21
- export const apiClientVersion = '0.0.6 ' ;
21
+ export const apiClientVersion = '0.1.0 ' ;
22
22
23
23
export type Region = 'eu' | 'us' ;
24
24
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-predict" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-predict" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import type { FetchUserProfileResponse } from '../model/fetchUserProfileResponse
16
16
import type { Params } from '../model/params' ;
17
17
18
18
export * from '../model/models' ;
19
- export const apiClientVersion = '0.0.6 ' ;
19
+ export const apiClientVersion = '0.1.0 ' ;
20
20
21
21
function getDefaultHosts ( ) : Host [ ] {
22
22
return [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-query-suggestions" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-query-suggestions" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import type { Status } from '../model/status';
20
20
import type { SucessResponse } from '../model/sucessResponse' ;
21
21
22
22
export * from '../model/models' ;
23
- export const apiClientVersion = '0.0.6 ' ;
23
+ export const apiClientVersion = '0.1.0 ' ;
24
24
25
25
export type Region = 'eu' | 'us' ;
26
26
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-search" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-search" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
73
73
import type { UserId } from '../model/userId' ;
74
74
75
75
export * from '../model/models' ;
76
- export const apiClientVersion = '0.0.6 ' ;
76
+ export const apiClientVersion = '0.1.0 ' ;
77
77
78
78
function getDefaultHosts ( appId : string ) : Host [ ] {
79
79
return (
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/client-sources" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/client-sources" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import type { PostIngestUrlResponse } from '../model/postIngestUrlResponse';
16
16
import type { PostURLJob } from '../model/postURLJob' ;
17
17
18
18
export * from '../model/models' ;
19
- export const apiClientVersion = '0.0.6 ' ;
19
+ export const apiClientVersion = '0.1.0 ' ;
20
20
21
21
export type Region = 'de' | 'us' ;
22
22
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/recommend" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " JavaScript client for @experimental-api-clients-automation/recommend" ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import type { GetRecommendationsParams } from '../model/getRecommendationsParams
17
17
import type { GetRecommendationsResponse } from '../model/getRecommendationsResponse' ;
18
18
19
19
export * from '../model/models' ;
20
- export const apiClientVersion = '0.0.6 ' ;
20
+ export const apiClientVersion = '0.1.0 ' ;
21
21
22
22
function getDefaultHosts ( appId : string ) : Host [ ] {
23
23
return (
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/requester-browser-xhr" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " Promise-based request library for browser using xhr." ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
21
21
" index.ts"
22
22
],
23
23
"dependencies" : {
24
- "@experimental-api-clients-automation/client-common" : " ^0.0.6 "
24
+ "@experimental-api-clients-automation/client-common" : " ^0.1.0 "
25
25
},
26
26
"devDependencies" : {
27
27
"@types/node" : " 16.11.11" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @experimental-api-clients-automation/requester-node-http" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " Promise-based request library for node using the native http module." ,
5
5
"repository" : " algolia/algoliasearch-client-javascript" ,
6
6
"author" : " Algolia" ,
20
20
" index.ts"
21
21
],
22
22
"dependencies" : {
23
- "@experimental-api-clients-automation/client-common" : " ^0.0.6 "
23
+ "@experimental-api-clients-automation/client-common" : " ^0.1.0 "
24
24
},
25
25
"devDependencies" : {
26
26
"@types/node" : " 16.11.11" ,
You can’t perform that action at this time.
0 commit comments