@rlvt/statistics-openapi-client 1.0.9 → 1.0.10
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/build/api.d.ts +26 -13
- package/build/api.js +1 -5
- package/build/definitions.d.ts +84 -56
- package/package.json +3 -3
package/build/api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from "axios";
|
|
2
|
-
import type {
|
|
2
|
+
import type { InternalResponse_measures_Measures_dimensions_Dimensions, InternalResponse_Array_StatisticsQuery, Query, InternalResponse_Union_string_QueryResult_Array_Record, StatisticsQuerySchedule, InternalResponse_StatisticsQuery, InternalResponse_Array_QueryResult, InternalResponse } from "./definitions";
|
|
3
3
|
export * from "./definitions";
|
|
4
4
|
export default class {
|
|
5
5
|
axios: AxiosInstance;
|
|
@@ -7,43 +7,56 @@ export default class {
|
|
|
7
7
|
private meta;
|
|
8
8
|
private listSavedQueries;
|
|
9
9
|
private query;
|
|
10
|
-
private aiAnalysis;
|
|
11
10
|
private saveQuery;
|
|
12
11
|
private runSavedQuery;
|
|
13
12
|
private updateSavedQuery;
|
|
14
13
|
private deleteSavedQuery;
|
|
15
14
|
get Default(): {
|
|
16
|
-
meta: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
15
|
+
meta: (params: Record<string, never>, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
16
|
+
status: "success";
|
|
17
|
+
} & InternalResponse_measures_Measures_dimensions_Dimensions, any, {}>>;
|
|
17
18
|
listSavedQueries: (params: {
|
|
18
19
|
name?: string | undefined;
|
|
19
20
|
page?: number | undefined;
|
|
20
21
|
perPage?: number | undefined;
|
|
21
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
22
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
23
|
+
paginationCount: number;
|
|
24
|
+
paginationPage: number;
|
|
25
|
+
paginationLimit: number;
|
|
26
|
+
} & {
|
|
27
|
+
status: "success";
|
|
28
|
+
} & InternalResponse_Array_StatisticsQuery, any, {}>>;
|
|
22
29
|
query: (params: {
|
|
23
30
|
format?: "csv" | "raw" | "table" | undefined;
|
|
24
|
-
}, data: Query, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
model?: string | undefined;
|
|
28
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<SuccessResponse_Query, any>>;
|
|
31
|
+
}, data: Query, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
32
|
+
status: "success";
|
|
33
|
+
} & InternalResponse_Union_string_QueryResult_Array_Record, any, {}>>;
|
|
29
34
|
saveQuery: (params: Record<string, never>, data: {
|
|
30
35
|
name: string;
|
|
31
36
|
queries: Query[];
|
|
32
37
|
} & {
|
|
33
38
|
schedule?: {} | StatisticsQuerySchedule | undefined;
|
|
34
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
39
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
40
|
+
status: "success";
|
|
41
|
+
} & InternalResponse_StatisticsQuery, any, {}>>;
|
|
35
42
|
runSavedQuery: (params: {
|
|
36
43
|
id: string;
|
|
37
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
44
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
45
|
+
status: "success";
|
|
46
|
+
} & InternalResponse_Array_QueryResult, any, {}>>;
|
|
38
47
|
updateSavedQuery: (params: {
|
|
39
48
|
id: string;
|
|
40
49
|
}, data: {
|
|
41
50
|
name?: string | undefined;
|
|
42
51
|
queries?: Query[] | undefined;
|
|
43
52
|
schedule?: {} | StatisticsQuerySchedule | undefined;
|
|
44
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
53
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
54
|
+
status: "success";
|
|
55
|
+
} & InternalResponse_StatisticsQuery, any, {}>>;
|
|
45
56
|
deleteSavedQuery: (params: {
|
|
46
57
|
id: string;
|
|
47
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<
|
|
58
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
59
|
+
status: "success";
|
|
60
|
+
} & InternalResponse, any, {}>>;
|
|
48
61
|
};
|
|
49
62
|
}
|
package/build/api.js
CHANGED
|
@@ -40,9 +40,6 @@ class default_1 {
|
|
|
40
40
|
params: pick(params, "format"),
|
|
41
41
|
}, options));
|
|
42
42
|
}
|
|
43
|
-
aiAnalysis(params, data, options) {
|
|
44
|
-
return this.axios.post("/ai-analysis", data, options);
|
|
45
|
-
}
|
|
46
43
|
saveQuery(params, data, options) {
|
|
47
44
|
return this.axios.post("/query/save", data, options);
|
|
48
45
|
}
|
|
@@ -60,7 +57,6 @@ class default_1 {
|
|
|
60
57
|
meta: this.meta.bind(this),
|
|
61
58
|
listSavedQueries: this.listSavedQueries.bind(this),
|
|
62
59
|
query: this.query.bind(this),
|
|
63
|
-
aiAnalysis: this.aiAnalysis.bind(this),
|
|
64
60
|
saveQuery: this.saveQuery.bind(this),
|
|
65
61
|
runSavedQuery: this.runSavedQuery.bind(this),
|
|
66
62
|
updateSavedQuery: this.updateSavedQuery.bind(this),
|
|
@@ -77,4 +73,4 @@ function pick(obj, ...keys) {
|
|
|
77
73
|
});
|
|
78
74
|
return ret;
|
|
79
75
|
}
|
|
80
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXBCLGtEQUFpRTtBQUdqRSxnREFBOEI7QUFFOUI7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyxJQUFJLENBQUMsTUFBNkIsRUFBRSxPQUE0QjtRQUNwRSxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUdqQixPQUFPLEVBQUUsT0FBTyxDQUNuQixDQUFDO0lBQ04sQ0FBQztJQUVPLGdCQUFnQixDQUFDLE1BSXhCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FPakIsUUFBUSxFQUNSLE1BQU0sQ0FBQyxNQUFNLENBQ1QsRUFBRSxFQUNGO1lBQ0ksTUFBTSxFQUFFLElBQUksQ0FBQyxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxTQUFTLENBQUM7U0FDbEQsRUFDRCxPQUFPLENBQ1YsQ0FDSixDQUFDO0lBQ04sQ0FBQztJQUVPLEtBQUssQ0FBQyxNQUViLEVBQUUsSUFBVyxFQUFFLE9BQTRCO1FBQ3hDLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBR2xCLFFBQVEsRUFBRSxJQUFJLEVBQ2QsTUFBTSxDQUFDLE1BQU0sQ0FDVCxFQUFFLEVBQ0Y7WUFDSSxNQUFNLEVBQUUsSUFBSSxDQUFDLE1BQU0sRUFBRSxRQUFRLENBQUM7U0FDakMsRUFDRCxPQUFPLENBQ1YsQ0FDSixDQUFDO0lBQ04sQ0FBQztJQUVPLFNBQVMsQ0FBQyxNQUE2QixFQUFFLElBS2hELEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FHbEIsYUFBYSxFQUFFLElBQUksRUFBRSxPQUFPLENBQy9CLENBQUM7SUFDTixDQUFDO0lBRU8sYUFBYSxDQUFDLE1BRXJCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FHbEIsYUFBYSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUUsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxFQUFFLE9BQU8sQ0FDbkUsQ0FBQztJQUNOLENBQUM7SUFFTyxnQkFBZ0IsQ0FBQyxNQUV4QixFQUFFLElBSUYsRUFBRSxPQUE0QjtRQUMzQixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUduQixhQUFhLENBQUMsT0FBTyxDQUFDLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxJQUFJLEVBQUUsT0FBTyxDQUNyRSxDQUFDO0lBQ04sQ0FBQztJQUVPLGdCQUFnQixDQUFDLE1BRXhCLEVBQUUsT0FBNEI7UUFDM0IsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FHcEIsYUFBYSxDQUFDLE9BQU8sQ0FBQyxNQUFNLEVBQUUsTUFBTSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsT0FBTyxDQUMvRCxDQUFDO0lBQ04sQ0FBQztJQUVELElBQUksT0FBTztRQUNQLE9BQU87WUFDSCxJQUFJLEVBQUUsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQzFCLGdCQUFnQixFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQ2xELEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDNUIsU0FBUyxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQztZQUNwQyxhQUFhLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQzVDLGdCQUFnQixFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQ2xELGdCQUFnQixFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1NBQ3JELENBQUM7SUFDTixDQUFDO0NBQ0o7QUFuSEQsNEJBbUhDO0FBRUQsU0FBUyxJQUFJLENBQXVCLEdBQU0sRUFBRSxHQUFHLElBQVM7SUFDcEQsTUFBTSxHQUFHLEdBQWUsRUFBZ0IsQ0FBQztJQUN6QyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1FBQ2YsSUFBSSxHQUFHLElBQUksTUFBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxRQUFRLENBQUMsR0FBYSxDQUFDO1lBQy9DLEdBQUcsQ0FBQyxHQUFHLENBQUMsR0FBRyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDNUIsQ0FBQyxDQUFDLENBQUM7SUFDSCxPQUFPLEdBQUcsQ0FBQztBQUNmLENBQUMifQ==
|
package/build/definitions.d.ts
CHANGED
|
@@ -13,11 +13,11 @@ export declare type Dimension = {
|
|
|
13
13
|
unit?: string;
|
|
14
14
|
isVisible: boolean;
|
|
15
15
|
};
|
|
16
|
-
export declare type
|
|
17
|
-
status: "success";
|
|
16
|
+
export declare type InternalResponse_measures_Measures_dimensions_Dimensions = {
|
|
18
17
|
program: string;
|
|
19
18
|
version: string;
|
|
20
19
|
datetime: string;
|
|
20
|
+
status: string;
|
|
21
21
|
code?: number;
|
|
22
22
|
message: string;
|
|
23
23
|
data: {
|
|
@@ -29,6 +29,70 @@ export declare type SuccessResponse = {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
+
export declare type Serie = {
|
|
33
|
+
dimensions: {
|
|
34
|
+
[key: string]: {
|
|
35
|
+
id: string;
|
|
36
|
+
value: string | number | (false) | (true);
|
|
37
|
+
metadata: {
|
|
38
|
+
link?: string;
|
|
39
|
+
formattedValue?: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
measures: {
|
|
44
|
+
id: string;
|
|
45
|
+
values: {
|
|
46
|
+
date: string;
|
|
47
|
+
value: number;
|
|
48
|
+
metadata: {
|
|
49
|
+
calculation?: ({
|
|
50
|
+
type: "number";
|
|
51
|
+
value: number;
|
|
52
|
+
unit?: "currency" | "percent";
|
|
53
|
+
} | {
|
|
54
|
+
type: "scope";
|
|
55
|
+
value: "(" | ")";
|
|
56
|
+
} | {
|
|
57
|
+
type: "operator";
|
|
58
|
+
value: "/" | "\u00D7" | "-" | "+";
|
|
59
|
+
})[];
|
|
60
|
+
};
|
|
61
|
+
}[];
|
|
62
|
+
}[];
|
|
63
|
+
};
|
|
64
|
+
export declare type QueryResult = {
|
|
65
|
+
series: Serie[];
|
|
66
|
+
};
|
|
67
|
+
export declare type InternalResponse_Union_string_QueryResult_Array_Record = {
|
|
68
|
+
program: string;
|
|
69
|
+
version: string;
|
|
70
|
+
datetime: string;
|
|
71
|
+
status: string;
|
|
72
|
+
code?: number;
|
|
73
|
+
message: string;
|
|
74
|
+
data: string | QueryResult | {
|
|
75
|
+
[key: string]: {
|
|
76
|
+
value: string | number | (false) | (true);
|
|
77
|
+
metadata: {
|
|
78
|
+
link?: string;
|
|
79
|
+
formattedValue?: string;
|
|
80
|
+
} | {
|
|
81
|
+
calculation?: ({
|
|
82
|
+
type: "number";
|
|
83
|
+
value: number;
|
|
84
|
+
unit?: "currency" | "percent";
|
|
85
|
+
} | {
|
|
86
|
+
type: "scope";
|
|
87
|
+
value: "(" | ")";
|
|
88
|
+
} | {
|
|
89
|
+
type: "operator";
|
|
90
|
+
value: "/" | "\u00D7" | "-" | "+";
|
|
91
|
+
})[];
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}[];
|
|
95
|
+
};
|
|
32
96
|
export declare type BinaryFilter = {
|
|
33
97
|
dimension?: string;
|
|
34
98
|
member?: string;
|
|
@@ -41,7 +105,6 @@ export declare type TimeDimensionBase = {
|
|
|
41
105
|
};
|
|
42
106
|
export declare type TimeDimensionComparisonFields = {
|
|
43
107
|
compareDateRange: (string | (string | string)[])[];
|
|
44
|
-
dateRange?: unknown;
|
|
45
108
|
};
|
|
46
109
|
export declare type TimeDimensionRangedFields = {
|
|
47
110
|
dateRange?: string | (string | string)[];
|
|
@@ -57,20 +120,14 @@ export declare type Query = {
|
|
|
57
120
|
limit?: number;
|
|
58
121
|
order?: TQueryOrderObject | (string | ("asc" | "desc"))[][];
|
|
59
122
|
};
|
|
60
|
-
export declare type SuccessResponse_Query = {
|
|
61
|
-
status: "success";
|
|
62
|
-
program: string;
|
|
63
|
-
version: string;
|
|
64
|
-
datetime: string;
|
|
65
|
-
code?: number;
|
|
66
|
-
message: string;
|
|
67
|
-
data: Query;
|
|
68
|
-
};
|
|
69
123
|
export declare type StatisticsQuerySchedule = {
|
|
70
124
|
cron: string;
|
|
71
125
|
destination: {
|
|
72
126
|
type: "email";
|
|
73
127
|
emails: string[];
|
|
128
|
+
} | {
|
|
129
|
+
type: "slack";
|
|
130
|
+
webhookUrl: string;
|
|
74
131
|
};
|
|
75
132
|
};
|
|
76
133
|
export declare type StatisticsQuery_Without_CompanyId_HasScheduleEnabled_ToJSON = {
|
|
@@ -84,71 +141,42 @@ export declare type StatisticsQuery = StatisticsQuery_Without_CompanyId_HasSched
|
|
|
84
141
|
createdAt: string;
|
|
85
142
|
updatedAt: string;
|
|
86
143
|
};
|
|
87
|
-
export declare type
|
|
88
|
-
status: "success";
|
|
144
|
+
export declare type InternalResponse_StatisticsQuery = {
|
|
89
145
|
program: string;
|
|
90
146
|
version: string;
|
|
91
147
|
datetime: string;
|
|
148
|
+
status: string;
|
|
92
149
|
code?: number;
|
|
93
150
|
message: string;
|
|
94
151
|
data: StatisticsQuery;
|
|
95
152
|
};
|
|
96
|
-
export declare type
|
|
97
|
-
paginationCount: number;
|
|
98
|
-
paginationPage: number;
|
|
99
|
-
paginationLimit: number;
|
|
100
|
-
status: "success";
|
|
153
|
+
export declare type InternalResponse_Array_StatisticsQuery = {
|
|
101
154
|
program: string;
|
|
102
155
|
version: string;
|
|
103
156
|
datetime: string;
|
|
157
|
+
status: string;
|
|
104
158
|
code?: number;
|
|
105
159
|
message: string;
|
|
106
160
|
data: StatisticsQuery[];
|
|
107
161
|
};
|
|
108
|
-
export declare type
|
|
109
|
-
dimensions: {
|
|
110
|
-
[key: string]: {
|
|
111
|
-
id: string;
|
|
112
|
-
value: string | number | (false) | (true);
|
|
113
|
-
metadata: {
|
|
114
|
-
link?: string;
|
|
115
|
-
formattedValue?: string;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
};
|
|
119
|
-
measures: {
|
|
120
|
-
id: string;
|
|
121
|
-
values: {
|
|
122
|
-
date: string;
|
|
123
|
-
value: number;
|
|
124
|
-
metadata: {
|
|
125
|
-
calculation?: ({
|
|
126
|
-
type: "number";
|
|
127
|
-
value: number;
|
|
128
|
-
unit?: "currency" | "percent";
|
|
129
|
-
} | {
|
|
130
|
-
type: "scope";
|
|
131
|
-
value: "(" | ")";
|
|
132
|
-
} | {
|
|
133
|
-
type: "operator";
|
|
134
|
-
value: "/" | "\u00D7" | "-" | "+";
|
|
135
|
-
})[];
|
|
136
|
-
};
|
|
137
|
-
}[];
|
|
138
|
-
}[];
|
|
139
|
-
};
|
|
140
|
-
export declare type QueryResult = {
|
|
141
|
-
series: Serie[];
|
|
142
|
-
};
|
|
143
|
-
export declare type SuccessResponse_QueryResult = {
|
|
144
|
-
status: "success";
|
|
162
|
+
export declare type InternalResponse_Array_QueryResult = {
|
|
145
163
|
program: string;
|
|
146
164
|
version: string;
|
|
147
165
|
datetime: string;
|
|
166
|
+
status: string;
|
|
148
167
|
code?: number;
|
|
149
168
|
message: string;
|
|
150
169
|
data: QueryResult[];
|
|
151
170
|
};
|
|
171
|
+
export declare type InternalResponse = {
|
|
172
|
+
program: string;
|
|
173
|
+
version: string;
|
|
174
|
+
datetime: string;
|
|
175
|
+
status: string;
|
|
176
|
+
code?: number;
|
|
177
|
+
message: string;
|
|
178
|
+
data: {};
|
|
179
|
+
};
|
|
152
180
|
export declare type QueryFormatterTableResult = {
|
|
153
181
|
[key: string]: {
|
|
154
182
|
value: string | number | (false) | (true);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rlvt/statistics-openapi-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10+170701d",
|
|
4
4
|
"description": "Openapi client for reelevant service",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"repository": "https://github.com/reelevant-tech/openapi-clients",
|
|
7
7
|
"author": "Reelevant",
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"
|
|
9
|
+
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "^18.8.5",
|
|
21
21
|
"typescript": "^4.8.4",
|
|
22
|
-
"axios": "^1.
|
|
22
|
+
"axios": "^1.12.2"
|
|
23
23
|
}
|
|
24
24
|
}
|