@monkvision/network 4.4.5 → 4.5.0
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/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monkvision/network",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.5",
|
|
4
4
|
"license": "BSD-3-Clause-Clear",
|
|
5
5
|
"packageManager": "yarn@3.2.4",
|
|
6
6
|
"description": "MonkJs core package used to communicate with the API",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"lint:fix": "yarn run prettier:fix && yarn run eslint:fix"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@monkvision/common": "4.4.
|
|
32
|
-
"@monkvision/sights": "4.4.
|
|
31
|
+
"@monkvision/common": "4.4.5",
|
|
32
|
+
"@monkvision/sights": "4.4.5",
|
|
33
33
|
"jsonwebtoken": "^9.0.2",
|
|
34
34
|
"jwt-decode": "^4.0.0",
|
|
35
35
|
"ky": "^1.2.0",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"react-router-dom": "^6.22.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@monkvision/eslint-config-base": "4.4.
|
|
46
|
-
"@monkvision/eslint-config-typescript": "4.4.
|
|
47
|
-
"@monkvision/jest-config": "4.4.
|
|
48
|
-
"@monkvision/prettier-config": "4.4.
|
|
49
|
-
"@monkvision/types": "4.4.
|
|
50
|
-
"@monkvision/typescript-config": "4.4.
|
|
45
|
+
"@monkvision/eslint-config-base": "4.4.5",
|
|
46
|
+
"@monkvision/eslint-config-typescript": "4.4.5",
|
|
47
|
+
"@monkvision/jest-config": "4.4.5",
|
|
48
|
+
"@monkvision/prettier-config": "4.4.5",
|
|
49
|
+
"@monkvision/types": "4.4.5",
|
|
50
|
+
"@monkvision/typescript-config": "4.4.5",
|
|
51
51
|
"@types/jest": "^29.2.2",
|
|
52
52
|
"@types/jsonwebtoken": "^9.0.5",
|
|
53
53
|
"@types/node": "^18.11.9",
|
|
@@ -4,7 +4,7 @@ import { ApiImage, ApiImagePost, ApiImages } from './image';
|
|
|
4
4
|
import { ApiParts, ApiPartSimplifiedGet } from './part';
|
|
5
5
|
import type { ApiPricingV2 } from './pricingV2';
|
|
6
6
|
import type { ApiSeverityResults } from './severityResult';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ApiTasks } from './task';
|
|
8
8
|
import { ApiTasksComponent } from './task';
|
|
9
9
|
import type { ApiVehicleComponent } from './vehicle';
|
|
10
10
|
import { ApiVehiclePostPatch } from './vehicle';
|
|
@@ -68,7 +68,7 @@ export interface ApiInspectionsCountGet {
|
|
|
68
68
|
sub_count?: Record<string, number>;
|
|
69
69
|
}
|
|
70
70
|
export interface ApiDamageSeverity {
|
|
71
|
-
output_format:
|
|
71
|
+
output_format: string;
|
|
72
72
|
}
|
|
73
73
|
export interface ApiInspectionPost {
|
|
74
74
|
additional_data?: ApiInspectioAdditionalData;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ApiPricingMethodology } from './pricingV2';
|
|
2
|
-
export type ApiBusinessClients = 'default' | 'toyota' | 'veb' | 'tesla';
|
|
3
2
|
export interface ApiImageInTask {
|
|
4
3
|
image_id: string;
|
|
5
4
|
}
|
|
@@ -73,7 +72,7 @@ export interface ApiHinlTaskPostComponent {
|
|
|
73
72
|
export interface ApiPricingTaskPostComponent {
|
|
74
73
|
status?: ApiTaskPostProgressStatus;
|
|
75
74
|
callbacks?: ApiCallbacks;
|
|
76
|
-
output_format?:
|
|
75
|
+
output_format?: string;
|
|
77
76
|
config?: string;
|
|
78
77
|
methodology?: ApiPricingMethodology;
|
|
79
78
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monkvision/network",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"license": "BSD-3-Clause-Clear",
|
|
5
5
|
"packageManager": "yarn@3.2.4",
|
|
6
6
|
"description": "MonkJs core package used to communicate with the API",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"lint:fix": "yarn run prettier:fix && yarn run eslint:fix"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@monkvision/common": "4.
|
|
32
|
-
"@monkvision/sights": "4.
|
|
31
|
+
"@monkvision/common": "4.5.0",
|
|
32
|
+
"@monkvision/sights": "4.5.0",
|
|
33
33
|
"jsonwebtoken": "^9.0.2",
|
|
34
34
|
"jwt-decode": "^4.0.0",
|
|
35
35
|
"ky": "^1.2.0",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"react-router-dom": "^6.22.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@monkvision/eslint-config-base": "4.
|
|
46
|
-
"@monkvision/eslint-config-typescript": "4.
|
|
47
|
-
"@monkvision/jest-config": "4.
|
|
48
|
-
"@monkvision/prettier-config": "4.
|
|
49
|
-
"@monkvision/types": "4.
|
|
50
|
-
"@monkvision/typescript-config": "4.
|
|
45
|
+
"@monkvision/eslint-config-base": "4.5.0",
|
|
46
|
+
"@monkvision/eslint-config-typescript": "4.5.0",
|
|
47
|
+
"@monkvision/jest-config": "4.5.0",
|
|
48
|
+
"@monkvision/prettier-config": "4.5.0",
|
|
49
|
+
"@monkvision/types": "4.5.0",
|
|
50
|
+
"@monkvision/typescript-config": "4.5.0",
|
|
51
51
|
"@types/jest": "^29.2.2",
|
|
52
52
|
"@types/jsonwebtoken": "^9.0.5",
|
|
53
53
|
"@types/node": "^18.11.9",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"url": "https://github.com/monkvision/monkjs/issues"
|
|
85
85
|
},
|
|
86
86
|
"homepage": "https://github.com/monkvision/monkjs",
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "e40cad7d6a9d675a219d9d59fd832b189026772e"
|
|
88
88
|
}
|