@rlvt/statistics-openapi-client 1.0.8 → 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 +83 -75
- 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_Record, 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,42 +29,49 @@ export declare type SuccessResponse = {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
export declare type
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
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
|
+
}[];
|
|
51
63
|
};
|
|
52
|
-
export declare type
|
|
53
|
-
|
|
54
|
-
dimensions: string[];
|
|
55
|
-
filters: BinaryFilter[];
|
|
56
|
-
timeDimensions: ((TimeDimensionBase & TimeDimensionComparisonFields) | (TimeDimensionBase & TimeDimensionRangedFields))[];
|
|
57
|
-
limit?: number;
|
|
58
|
-
order?: TQueryOrderObject | (string | ("asc" | "desc"))[][];
|
|
64
|
+
export declare type QueryResult = {
|
|
65
|
+
series: Serie[];
|
|
59
66
|
};
|
|
60
|
-
export declare type
|
|
61
|
-
status: "success";
|
|
67
|
+
export declare type InternalResponse_Union_string_QueryResult_Array_Record = {
|
|
62
68
|
program: string;
|
|
63
69
|
version: string;
|
|
64
70
|
datetime: string;
|
|
71
|
+
status: string;
|
|
65
72
|
code?: number;
|
|
66
73
|
message: string;
|
|
67
|
-
data: {
|
|
74
|
+
data: string | QueryResult | {
|
|
68
75
|
[key: string]: {
|
|
69
76
|
value: string | number | (false) | (true);
|
|
70
77
|
metadata: {
|
|
@@ -86,11 +93,41 @@ export declare type SuccessResponse_Record = {
|
|
|
86
93
|
};
|
|
87
94
|
}[];
|
|
88
95
|
};
|
|
96
|
+
export declare type BinaryFilter = {
|
|
97
|
+
dimension?: string;
|
|
98
|
+
member?: string;
|
|
99
|
+
operator: "equals" | "notEquals" | "contains" | "notContains" | "startsWith" | "notStartsWith" | "endsWith" | "notEndsWith" | "gt" | "gte" | "lt" | "lte" | "inDateRange" | "notInDateRange" | "beforeDate" | "beforeOrOnDate" | "afterDate" | "afterOrOnDate";
|
|
100
|
+
values: string[];
|
|
101
|
+
};
|
|
102
|
+
export declare type TimeDimensionBase = {
|
|
103
|
+
dimension: string;
|
|
104
|
+
granularity?: string;
|
|
105
|
+
};
|
|
106
|
+
export declare type TimeDimensionComparisonFields = {
|
|
107
|
+
compareDateRange: (string | (string | string)[])[];
|
|
108
|
+
};
|
|
109
|
+
export declare type TimeDimensionRangedFields = {
|
|
110
|
+
dateRange?: string | (string | string)[];
|
|
111
|
+
};
|
|
112
|
+
export declare type TQueryOrderObject = {
|
|
113
|
+
[key: string]: "asc" | "desc";
|
|
114
|
+
};
|
|
115
|
+
export declare type Query = {
|
|
116
|
+
measures: string[];
|
|
117
|
+
dimensions: string[];
|
|
118
|
+
filters: BinaryFilter[];
|
|
119
|
+
timeDimensions: ((TimeDimensionBase & TimeDimensionComparisonFields) | (TimeDimensionBase & TimeDimensionRangedFields))[];
|
|
120
|
+
limit?: number;
|
|
121
|
+
order?: TQueryOrderObject | (string | ("asc" | "desc"))[][];
|
|
122
|
+
};
|
|
89
123
|
export declare type StatisticsQuerySchedule = {
|
|
90
124
|
cron: string;
|
|
91
125
|
destination: {
|
|
92
126
|
type: "email";
|
|
93
127
|
emails: string[];
|
|
128
|
+
} | {
|
|
129
|
+
type: "slack";
|
|
130
|
+
webhookUrl: string;
|
|
94
131
|
};
|
|
95
132
|
};
|
|
96
133
|
export declare type StatisticsQuery_Without_CompanyId_HasScheduleEnabled_ToJSON = {
|
|
@@ -104,71 +141,42 @@ export declare type StatisticsQuery = StatisticsQuery_Without_CompanyId_HasSched
|
|
|
104
141
|
createdAt: string;
|
|
105
142
|
updatedAt: string;
|
|
106
143
|
};
|
|
107
|
-
export declare type
|
|
108
|
-
status: "success";
|
|
144
|
+
export declare type InternalResponse_StatisticsQuery = {
|
|
109
145
|
program: string;
|
|
110
146
|
version: string;
|
|
111
147
|
datetime: string;
|
|
148
|
+
status: string;
|
|
112
149
|
code?: number;
|
|
113
150
|
message: string;
|
|
114
151
|
data: StatisticsQuery;
|
|
115
152
|
};
|
|
116
|
-
export declare type
|
|
117
|
-
paginationCount: number;
|
|
118
|
-
paginationPage: number;
|
|
119
|
-
paginationLimit: number;
|
|
120
|
-
status: "success";
|
|
153
|
+
export declare type InternalResponse_Array_StatisticsQuery = {
|
|
121
154
|
program: string;
|
|
122
155
|
version: string;
|
|
123
156
|
datetime: string;
|
|
157
|
+
status: string;
|
|
124
158
|
code?: number;
|
|
125
159
|
message: string;
|
|
126
160
|
data: StatisticsQuery[];
|
|
127
161
|
};
|
|
128
|
-
export declare type
|
|
129
|
-
dimensions: {
|
|
130
|
-
[key: string]: {
|
|
131
|
-
id: string;
|
|
132
|
-
value: string | number | (false) | (true);
|
|
133
|
-
metadata: {
|
|
134
|
-
link?: string;
|
|
135
|
-
formattedValue?: string;
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
};
|
|
139
|
-
measures: {
|
|
140
|
-
id: string;
|
|
141
|
-
values: {
|
|
142
|
-
date: string;
|
|
143
|
-
value: number;
|
|
144
|
-
metadata: {
|
|
145
|
-
calculation?: ({
|
|
146
|
-
type: "number";
|
|
147
|
-
value: number;
|
|
148
|
-
unit?: "currency" | "percent";
|
|
149
|
-
} | {
|
|
150
|
-
type: "scope";
|
|
151
|
-
value: "(" | ")";
|
|
152
|
-
} | {
|
|
153
|
-
type: "operator";
|
|
154
|
-
value: "/" | "\u00D7" | "-" | "+";
|
|
155
|
-
})[];
|
|
156
|
-
};
|
|
157
|
-
}[];
|
|
158
|
-
}[];
|
|
159
|
-
};
|
|
160
|
-
export declare type QueryResult = {
|
|
161
|
-
series: Serie[];
|
|
162
|
-
};
|
|
163
|
-
export declare type SuccessResponse_QueryResult = {
|
|
164
|
-
status: "success";
|
|
162
|
+
export declare type InternalResponse_Array_QueryResult = {
|
|
165
163
|
program: string;
|
|
166
164
|
version: string;
|
|
167
165
|
datetime: string;
|
|
166
|
+
status: string;
|
|
168
167
|
code?: number;
|
|
169
168
|
message: string;
|
|
170
169
|
data: QueryResult[];
|
|
171
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
|
+
};
|
|
172
180
|
export declare type QueryFormatterTableResult = {
|
|
173
181
|
[key: string]: {
|
|
174
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
|
}
|