@algolia/client-insights 5.0.0-alpha.53 → 5.0.0-alpha.55
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/builds/browser.d.ts +5 -5
- package/dist/builds/node.d.ts +5 -5
- package/dist/client-insights.cjs.js +214 -214
- package/dist/client-insights.esm.browser.js +338 -338
- package/dist/client-insights.esm.node.js +214 -214
- package/dist/client-insights.umd.js +2 -2
- package/dist/model/clientMethodProps.d.ts +60 -60
- package/dist/model/errorBase.d.ts +6 -6
- package/dist/model/eventType.d.ts +1 -1
- package/dist/model/index.d.ts +6 -6
- package/dist/model/insightEvent.d.ts +39 -39
- package/dist/model/insightEvents.d.ts +10 -10
- package/dist/model/pushEventsResponse.d.ts +6 -6
- package/dist/src/insightsClient.d.ts +85 -85
- package/model/clientMethodProps.ts +1 -1
- package/model/errorBase.ts +1 -1
- package/model/eventType.ts +1 -1
- package/model/index.ts +1 -1
- package/model/insightEvent.ts +1 -1
- package/model/insightEvents.ts +1 -1
- package/model/pushEventsResponse.ts +1 -1
- package/package.json +6 -6
package/dist/model/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './errorBase';
|
|
2
|
-
export * from './eventType';
|
|
3
|
-
export * from './insightEvent';
|
|
4
|
-
export * from './insightEvents';
|
|
5
|
-
export * from './pushEventsResponse';
|
|
6
|
-
export * from './clientMethodProps';
|
|
1
|
+
export * from './errorBase';
|
|
2
|
+
export * from './eventType';
|
|
3
|
+
export * from './insightEvent';
|
|
4
|
+
export * from './insightEvents';
|
|
5
|
+
export * from './pushEventsResponse';
|
|
6
|
+
export * from './clientMethodProps';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import type { EventType } from './eventType';
|
|
2
|
-
/**
|
|
3
|
-
* Insights event.
|
|
4
|
-
*/
|
|
5
|
-
export type InsightEvent = {
|
|
6
|
-
eventType: EventType;
|
|
7
|
-
/**
|
|
8
|
-
* A user-defined string used to categorize events.
|
|
9
|
-
*/
|
|
10
|
-
eventName: string;
|
|
11
|
-
/**
|
|
12
|
-
* Name of the targeted index.
|
|
13
|
-
*/
|
|
14
|
-
index: string;
|
|
15
|
-
/**
|
|
16
|
-
* A user identifier. Depending if the user is logged-in or not, several strategies can be used from a sessionId to a technical identifier. You should always send pseudonymous or anonymous userTokens.
|
|
17
|
-
*/
|
|
18
|
-
userToken: string;
|
|
19
|
-
/**
|
|
20
|
-
* Time of the event expressed in milliseconds since the Unix epoch.
|
|
21
|
-
*/
|
|
22
|
-
timestamp?: number;
|
|
23
|
-
/**
|
|
24
|
-
* Algolia queryID. This is required when an event is tied to a search.
|
|
25
|
-
*/
|
|
26
|
-
queryID?: string;
|
|
27
|
-
/**
|
|
28
|
-
* An array of index objectID. Limited to 20 objects. An event can’t have both objectIDs and filters at the same time.
|
|
29
|
-
*/
|
|
30
|
-
objectIDs?: string[];
|
|
31
|
-
/**
|
|
32
|
-
* An array of filters. Limited to 10 filters. An event can’t have both objectIDs and filters at the same time.
|
|
33
|
-
*/
|
|
34
|
-
filters?: string[];
|
|
35
|
-
/**
|
|
36
|
-
* Position of the click in the list of Algolia search results. This field is required if a queryID is provided. One position must be provided for each objectID.
|
|
37
|
-
*/
|
|
38
|
-
positions?: number[];
|
|
39
|
-
};
|
|
1
|
+
import type { EventType } from './eventType';
|
|
2
|
+
/**
|
|
3
|
+
* Insights event.
|
|
4
|
+
*/
|
|
5
|
+
export type InsightEvent = {
|
|
6
|
+
eventType: EventType;
|
|
7
|
+
/**
|
|
8
|
+
* A user-defined string used to categorize events.
|
|
9
|
+
*/
|
|
10
|
+
eventName: string;
|
|
11
|
+
/**
|
|
12
|
+
* Name of the targeted index.
|
|
13
|
+
*/
|
|
14
|
+
index: string;
|
|
15
|
+
/**
|
|
16
|
+
* A user identifier. Depending if the user is logged-in or not, several strategies can be used from a sessionId to a technical identifier. You should always send pseudonymous or anonymous userTokens.
|
|
17
|
+
*/
|
|
18
|
+
userToken: string;
|
|
19
|
+
/**
|
|
20
|
+
* Time of the event expressed in milliseconds since the Unix epoch.
|
|
21
|
+
*/
|
|
22
|
+
timestamp?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Algolia queryID. This is required when an event is tied to a search.
|
|
25
|
+
*/
|
|
26
|
+
queryID?: string;
|
|
27
|
+
/**
|
|
28
|
+
* An array of index objectID. Limited to 20 objects. An event can’t have both objectIDs and filters at the same time.
|
|
29
|
+
*/
|
|
30
|
+
objectIDs?: string[];
|
|
31
|
+
/**
|
|
32
|
+
* An array of filters. Limited to 10 filters. An event can’t have both objectIDs and filters at the same time.
|
|
33
|
+
*/
|
|
34
|
+
filters?: string[];
|
|
35
|
+
/**
|
|
36
|
+
* Position of the click in the list of Algolia search results. This field is required if a queryID is provided. One position must be provided for each objectID.
|
|
37
|
+
*/
|
|
38
|
+
positions?: number[];
|
|
39
|
+
};
|
|
40
40
|
//# sourceMappingURL=insightEvent.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import type { InsightEvent } from './insightEvent';
|
|
2
|
-
/**
|
|
3
|
-
* Object containing the events sent.
|
|
4
|
-
*/
|
|
5
|
-
export type InsightEvents = {
|
|
6
|
-
/**
|
|
7
|
-
* Array of events sent.
|
|
8
|
-
*/
|
|
9
|
-
events: InsightEvent[];
|
|
10
|
-
};
|
|
1
|
+
import type { InsightEvent } from './insightEvent';
|
|
2
|
+
/**
|
|
3
|
+
* Object containing the events sent.
|
|
4
|
+
*/
|
|
5
|
+
export type InsightEvents = {
|
|
6
|
+
/**
|
|
7
|
+
* Array of events sent.
|
|
8
|
+
*/
|
|
9
|
+
events: InsightEvent[];
|
|
10
|
+
};
|
|
11
11
|
//# sourceMappingURL=insightEvents.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type PushEventsResponse = {
|
|
2
|
-
/**
|
|
3
|
-
* A message confirming the event push.
|
|
4
|
-
*/
|
|
5
|
-
message: string;
|
|
6
|
-
};
|
|
1
|
+
export type PushEventsResponse = {
|
|
2
|
+
/**
|
|
3
|
+
* A message confirming the event push.
|
|
4
|
+
*/
|
|
5
|
+
message: string;
|
|
6
|
+
};
|
|
7
7
|
//# sourceMappingURL=pushEventsResponse.d.ts.map
|
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
import type { CreateClientOptions, RequestOptions } from '@algolia/client-common';
|
|
2
|
-
import type { DelProps, GetProps, PostProps, PutProps } from '../model/clientMethodProps';
|
|
3
|
-
import type { InsightEvents } from '../model/insightEvents';
|
|
4
|
-
import type { PushEventsResponse } from '../model/pushEventsResponse';
|
|
5
|
-
export declare const apiClientVersion = "5.0.0-alpha.
|
|
6
|
-
export declare const REGIONS: readonly ["de", "us"];
|
|
7
|
-
export type Region = (typeof REGIONS)[number];
|
|
8
|
-
export declare function createInsightsClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, region: regionOption, ...options }: CreateClientOptions & {
|
|
9
|
-
region?: Region;
|
|
10
|
-
}): {
|
|
11
|
-
transporter: import("@algolia/client-common").Transporter;
|
|
12
|
-
/**
|
|
13
|
-
* The `appId` currently in use.
|
|
14
|
-
*/
|
|
15
|
-
appId: string;
|
|
16
|
-
/**
|
|
17
|
-
* Clears the cache of the transporter for the `requestsCache` and `responsesCache` properties.
|
|
18
|
-
*/
|
|
19
|
-
clearCache(): Promise<void>;
|
|
20
|
-
/**
|
|
21
|
-
* Get the value of the `algoliaAgent`, used by our libraries internally and telemetry system.
|
|
22
|
-
*/
|
|
23
|
-
readonly _ua: string;
|
|
24
|
-
/**
|
|
25
|
-
* Adds a `segment` to the `x-algolia-agent` sent with every requests.
|
|
26
|
-
*
|
|
27
|
-
* @param segment - The algolia agent (user-agent) segment to add.
|
|
28
|
-
* @param version - The version of the agent.
|
|
29
|
-
*/
|
|
30
|
-
addAlgoliaAgent(segment: string, version?: string): void;
|
|
31
|
-
/**
|
|
32
|
-
* This method allow you to send requests to the Algolia REST API.
|
|
33
|
-
*
|
|
34
|
-
* @summary Send requests to the Algolia REST API.
|
|
35
|
-
* @param del - The del object.
|
|
36
|
-
* @param del.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
37
|
-
* @param del.parameters - Query parameters to be applied to the current query.
|
|
38
|
-
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
39
|
-
*/
|
|
40
|
-
del({ path, parameters }: DelProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
41
|
-
/**
|
|
42
|
-
* This method allow you to send requests to the Algolia REST API.
|
|
43
|
-
*
|
|
44
|
-
* @summary Send requests to the Algolia REST API.
|
|
45
|
-
* @param get - The get object.
|
|
46
|
-
* @param get.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
47
|
-
* @param get.parameters - Query parameters to be applied to the current query.
|
|
48
|
-
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
49
|
-
*/
|
|
50
|
-
get({ path, parameters }: GetProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
51
|
-
/**
|
|
52
|
-
* This method allow you to send requests to the Algolia REST API.
|
|
53
|
-
*
|
|
54
|
-
* @summary Send requests to the Algolia REST API.
|
|
55
|
-
* @param post - The post object.
|
|
56
|
-
* @param post.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
57
|
-
* @param post.parameters - Query parameters to be applied to the current query.
|
|
58
|
-
* @param post.body - The parameters to send with the custom request.
|
|
59
|
-
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
60
|
-
*/
|
|
61
|
-
post({ path, parameters, body }: PostProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
62
|
-
/**
|
|
63
|
-
* This command pushes an array of events. An event is - an action: `eventName` - performed in a context: `eventType` - at some point in time provided: `timestamp` - by an end user: `userToken` - on something: `index` Notes: - To be accepted, all events sent must be valid. - The size of the body must be *less than 2 MB*. - When an event is tied to an Algolia search, it must also provide a `queryID`. If that event is a `click`, their absolute `positions` should also be passed. - We consider that an `index` provides access to 2 resources: objects and filters. An event can only interact with a single resource type, but not necessarily on a single item. As such an event will accept an array of `objectIDs` or `filters`.
|
|
64
|
-
*
|
|
65
|
-
* @summary Push events.
|
|
66
|
-
* @param insightEvents - The insightEvents object.
|
|
67
|
-
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
68
|
-
*/
|
|
69
|
-
pushEvents(insightEvents: InsightEvents, requestOptions?: RequestOptions): Promise<PushEventsResponse>;
|
|
70
|
-
/**
|
|
71
|
-
* This method allow you to send requests to the Algolia REST API.
|
|
72
|
-
*
|
|
73
|
-
* @summary Send requests to the Algolia REST API.
|
|
74
|
-
* @param put - The put object.
|
|
75
|
-
* @param put.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
76
|
-
* @param put.parameters - Query parameters to be applied to the current query.
|
|
77
|
-
* @param put.body - The parameters to send with the custom request.
|
|
78
|
-
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
79
|
-
*/
|
|
80
|
-
put({ path, parameters, body }: PutProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
81
|
-
};
|
|
82
|
-
/**
|
|
83
|
-
* The client type.
|
|
84
|
-
*/
|
|
85
|
-
export type InsightsClient = ReturnType<typeof createInsightsClient>;
|
|
1
|
+
import type { CreateClientOptions, RequestOptions } from '@algolia/client-common';
|
|
2
|
+
import type { DelProps, GetProps, PostProps, PutProps } from '../model/clientMethodProps';
|
|
3
|
+
import type { InsightEvents } from '../model/insightEvents';
|
|
4
|
+
import type { PushEventsResponse } from '../model/pushEventsResponse';
|
|
5
|
+
export declare const apiClientVersion = "5.0.0-alpha.55";
|
|
6
|
+
export declare const REGIONS: readonly ["de", "us"];
|
|
7
|
+
export type Region = (typeof REGIONS)[number];
|
|
8
|
+
export declare function createInsightsClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, region: regionOption, ...options }: CreateClientOptions & {
|
|
9
|
+
region?: Region;
|
|
10
|
+
}): {
|
|
11
|
+
transporter: import("@algolia/client-common").Transporter;
|
|
12
|
+
/**
|
|
13
|
+
* The `appId` currently in use.
|
|
14
|
+
*/
|
|
15
|
+
appId: string;
|
|
16
|
+
/**
|
|
17
|
+
* Clears the cache of the transporter for the `requestsCache` and `responsesCache` properties.
|
|
18
|
+
*/
|
|
19
|
+
clearCache(): Promise<void>;
|
|
20
|
+
/**
|
|
21
|
+
* Get the value of the `algoliaAgent`, used by our libraries internally and telemetry system.
|
|
22
|
+
*/
|
|
23
|
+
readonly _ua: string;
|
|
24
|
+
/**
|
|
25
|
+
* Adds a `segment` to the `x-algolia-agent` sent with every requests.
|
|
26
|
+
*
|
|
27
|
+
* @param segment - The algolia agent (user-agent) segment to add.
|
|
28
|
+
* @param version - The version of the agent.
|
|
29
|
+
*/
|
|
30
|
+
addAlgoliaAgent(segment: string, version?: string): void;
|
|
31
|
+
/**
|
|
32
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
33
|
+
*
|
|
34
|
+
* @summary Send requests to the Algolia REST API.
|
|
35
|
+
* @param del - The del object.
|
|
36
|
+
* @param del.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
37
|
+
* @param del.parameters - Query parameters to be applied to the current query.
|
|
38
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
39
|
+
*/
|
|
40
|
+
del({ path, parameters }: DelProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
41
|
+
/**
|
|
42
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
43
|
+
*
|
|
44
|
+
* @summary Send requests to the Algolia REST API.
|
|
45
|
+
* @param get - The get object.
|
|
46
|
+
* @param get.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
47
|
+
* @param get.parameters - Query parameters to be applied to the current query.
|
|
48
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
49
|
+
*/
|
|
50
|
+
get({ path, parameters }: GetProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
51
|
+
/**
|
|
52
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
53
|
+
*
|
|
54
|
+
* @summary Send requests to the Algolia REST API.
|
|
55
|
+
* @param post - The post object.
|
|
56
|
+
* @param post.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
57
|
+
* @param post.parameters - Query parameters to be applied to the current query.
|
|
58
|
+
* @param post.body - The parameters to send with the custom request.
|
|
59
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
60
|
+
*/
|
|
61
|
+
post({ path, parameters, body }: PostProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
62
|
+
/**
|
|
63
|
+
* This command pushes an array of events. An event is - an action: `eventName` - performed in a context: `eventType` - at some point in time provided: `timestamp` - by an end user: `userToken` - on something: `index` Notes: - To be accepted, all events sent must be valid. - The size of the body must be *less than 2 MB*. - When an event is tied to an Algolia search, it must also provide a `queryID`. If that event is a `click`, their absolute `positions` should also be passed. - We consider that an `index` provides access to 2 resources: objects and filters. An event can only interact with a single resource type, but not necessarily on a single item. As such an event will accept an array of `objectIDs` or `filters`.
|
|
64
|
+
*
|
|
65
|
+
* @summary Push events.
|
|
66
|
+
* @param insightEvents - The insightEvents object.
|
|
67
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
68
|
+
*/
|
|
69
|
+
pushEvents(insightEvents: InsightEvents, requestOptions?: RequestOptions): Promise<PushEventsResponse>;
|
|
70
|
+
/**
|
|
71
|
+
* This method allow you to send requests to the Algolia REST API.
|
|
72
|
+
*
|
|
73
|
+
* @summary Send requests to the Algolia REST API.
|
|
74
|
+
* @param put - The put object.
|
|
75
|
+
* @param put.path - The path of the API endpoint to target, anything after the /1 needs to be specified.
|
|
76
|
+
* @param put.parameters - Query parameters to be applied to the current query.
|
|
77
|
+
* @param put.body - The parameters to send with the custom request.
|
|
78
|
+
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
|
|
79
|
+
*/
|
|
80
|
+
put({ path, parameters, body }: PutProps, requestOptions?: RequestOptions): Promise<Record<string, any>>;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* The client type.
|
|
84
|
+
*/
|
|
85
|
+
export type InsightsClient = ReturnType<typeof createInsightsClient>;
|
|
86
86
|
//# sourceMappingURL=insightsClient.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Properties for the `del` method.
|
package/model/errorBase.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Error.
|
package/model/eventType.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
export type EventType = 'click' | 'conversion' | 'view';
|
package/model/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
export * from './errorBase';
|
|
4
4
|
export * from './eventType';
|
package/model/insightEvent.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
import type { EventType } from './eventType';
|
|
4
4
|
|
package/model/insightEvents.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
import type { InsightEvent } from './insightEvent';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
export type PushEventsResponse = {
|
|
4
4
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algolia/client-insights",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.55",
|
|
4
4
|
"description": "JavaScript client for client-insights",
|
|
5
5
|
"repository": "algolia/algoliasearch-client-javascript",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"clean": "rm -rf ./dist || true"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@algolia/client-common": "5.0.0-alpha.
|
|
42
|
-
"@algolia/requester-browser-xhr": "5.0.0-alpha.
|
|
43
|
-
"@algolia/requester-node-http": "5.0.0-alpha.
|
|
41
|
+
"@algolia/client-common": "5.0.0-alpha.55",
|
|
42
|
+
"@algolia/requester-browser-xhr": "5.0.0-alpha.55",
|
|
43
|
+
"@algolia/requester-node-http": "5.0.0-alpha.55"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@types/node": "18.
|
|
46
|
+
"@types/node": "18.15.11",
|
|
47
47
|
"rollup": "2.79.1",
|
|
48
|
-
"typescript": "
|
|
48
|
+
"typescript": "5.0.3"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">= 14.0.0"
|