@allurereport/service 3.12.0 → 3.13.1
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/utils/http.d.ts +4 -4
- package/package.json +4 -4
package/dist/utils/http.d.ts
CHANGED
|
@@ -21,19 +21,19 @@ export declare const createServiceHttpClient: (serviceUrl: string, params?: {
|
|
|
21
21
|
accessToken?: string;
|
|
22
22
|
apiToken?: string;
|
|
23
23
|
}) => {
|
|
24
|
-
get: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
24
|
+
readonly get: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
25
25
|
params?: Record<string, any>;
|
|
26
26
|
body?: any;
|
|
27
27
|
}) => Promise<T>;
|
|
28
|
-
post: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
28
|
+
readonly post: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
29
29
|
params?: Record<string, any>;
|
|
30
30
|
body?: any;
|
|
31
31
|
}) => Promise<T>;
|
|
32
|
-
put: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
32
|
+
readonly put: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
33
33
|
params?: Record<string, any>;
|
|
34
34
|
body?: any;
|
|
35
35
|
}) => Promise<T>;
|
|
36
|
-
delete: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
36
|
+
readonly delete: <T>(endpoint: string, payload?: AxiosRequestConfig & {
|
|
37
37
|
params?: Record<string, any>;
|
|
38
38
|
body?: any;
|
|
39
39
|
}) => Promise<T>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/service",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"description": "Allure Service API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"lint:fix": "oxlint --import-plugin --fix src test features stories"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core-api": "3.
|
|
34
|
-
"@allurereport/plugin-api": "3.
|
|
33
|
+
"@allurereport/core-api": "3.13.1",
|
|
34
|
+
"@allurereport/plugin-api": "3.13.1",
|
|
35
35
|
"axios": "^1.15.2",
|
|
36
|
-
"open": "^
|
|
36
|
+
"open": "^11.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^20",
|