@extrahorizon/exh-cli 1.13.2-dev-195-27b2b4b → 1.13.2-dev-197-674338d
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Extra Horizon CLI changelog
|
|
2
2
|
|
|
3
3
|
### v1.13.2
|
|
4
|
+
* Updated the ExH SDK to `8.6.0`
|
|
5
|
+
* The following vulnerabilities were resolved, but not applicable:
|
|
6
|
+
* Bumped Axios version to resolve `CVE-2026-40175` and `CVE-2025-62718`
|
|
7
|
+
* Bumped lodash version to resolve `CVE-2026-4800` and `CVE-2026-2950`
|
|
4
8
|
|
|
5
9
|
### v1.13.1
|
|
6
10
|
* Bumped version of `braces-expansion` for vulnerability warning (vulnerable code was not used though)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"extendsTemplate": { "type": "string" },
|
|
12
12
|
"inputs": {
|
|
13
13
|
"type": "object",
|
|
14
|
-
"additionalProperties": { "$ref": "#/definitions/
|
|
14
|
+
"additionalProperties": { "$ref": "#/definitions/TypeConfiguration" }
|
|
15
15
|
},
|
|
16
16
|
"outputs": {
|
|
17
17
|
"type": "object",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"definitions": {
|
|
29
|
-
"
|
|
29
|
+
"TypeConfiguration": {
|
|
30
30
|
"type": "object",
|
|
31
31
|
"required": ["type"],
|
|
32
32
|
"properties": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"type": { "const": "object" }
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"then": { "$ref": "#/definitions/
|
|
45
|
+
"then": { "$ref": "#/definitions/ObjectConfiguration" }
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"if": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"type": { "const": "array" }
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"then": { "$ref": "#/definitions/
|
|
54
|
+
"then": { "$ref": "#/definitions/ArrayConfiguration" }
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"if": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"type": { "const": "string" }
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
|
-
"then": { "$ref": "#/definitions/
|
|
63
|
+
"then": { "$ref": "#/definitions/StringConfiguration" }
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"if": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"type": { "const": "number" }
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
|
-
"then": { "$ref": "#/definitions/
|
|
72
|
+
"then": { "$ref": "#/definitions/NumberConfiguration" }
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
75
|
"if": {
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"type": { "const": "boolean" }
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"then": { "$ref": "#/definitions/
|
|
81
|
+
"then": { "$ref": "#/definitions/BooleanConfiguration" }
|
|
82
82
|
}
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
|
-
"
|
|
85
|
+
"ObjectConfiguration": {
|
|
86
86
|
"type": "object",
|
|
87
87
|
"additionalProperties": false,
|
|
88
88
|
"required": ["type", "properties"],
|
|
@@ -90,20 +90,20 @@
|
|
|
90
90
|
"type": { "const": "object" },
|
|
91
91
|
"properties": {
|
|
92
92
|
"type": "object",
|
|
93
|
-
"additionalProperties": { "$ref": "#/definitions/
|
|
93
|
+
"additionalProperties": { "$ref": "#/definitions/TypeConfiguration" }
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"
|
|
97
|
+
"ArrayConfiguration": {
|
|
98
98
|
"type": "object",
|
|
99
99
|
"additionalProperties": false,
|
|
100
100
|
"required": ["type", "items"],
|
|
101
101
|
"properties": {
|
|
102
102
|
"type": { "const": "array" },
|
|
103
|
-
"items": { "$ref": "#/definitions/
|
|
103
|
+
"items": { "$ref": "#/definitions/TypeConfiguration" }
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
-
"
|
|
106
|
+
"StringConfiguration": {
|
|
107
107
|
"type": "object",
|
|
108
108
|
"additionalProperties": false,
|
|
109
109
|
"required": ["type"],
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"type": { "const": "string" }
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
-
"
|
|
114
|
+
"NumberConfiguration": {
|
|
115
115
|
"type": "object",
|
|
116
116
|
"additionalProperties": false,
|
|
117
117
|
"required": ["type"],
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"type": { "const": "number" }
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
|
-
"
|
|
122
|
+
"BooleanConfiguration": {
|
|
123
123
|
"type": "object",
|
|
124
124
|
"additionalProperties": false,
|
|
125
125
|
"required": ["type"],
|
|
@@ -8,5 +8,5 @@ export declare function addPermissionsToGlobalRole(name: string, permissions: st
|
|
|
8
8
|
export declare function removePermissionsFromGlobalRole(name: string, permissions: string[]): Promise<import("@extrahorizon/javascript-sdk").AffectedRecords>;
|
|
9
9
|
export declare function addGlobalRoleToUser(userId: string, roleId: string): Promise<import("@extrahorizon/javascript-sdk").AffectedRecords>;
|
|
10
10
|
export declare function updateVerificationSettings(settings: Partial<VerificationSettings>): Promise<VerificationSettings>;
|
|
11
|
-
export declare function updateEmailTemplates(emailTemplates: Partial<EmailTemplates>): Promise<EmailTemplates
|
|
11
|
+
export declare function updateEmailTemplates(emailTemplates: Partial<EmailTemplates>): Promise<Partial<EmailTemplates>>;
|
|
12
12
|
export declare function updatePasswordPolicy(passwordPolicy: Partial<PasswordPolicy>): Promise<import("@extrahorizon/javascript-sdk").PasswordPolicyUpdate>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/exh-cli",
|
|
3
|
-
"version": "1.13.2-dev-
|
|
3
|
+
"version": "1.13.2-dev-197-674338d",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"exports": "./build/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"typescript": "4.5.5"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@extrahorizon/javascript-sdk": "8.
|
|
44
|
+
"@extrahorizon/javascript-sdk": "8.10.0-dev-161-c1dd6ca",
|
|
45
45
|
"ajv": "8.18.0",
|
|
46
46
|
"archiver": "^7.0.1",
|
|
47
47
|
"chalk": "^4.0.0",
|
|
48
|
-
"lodash": "^4.
|
|
48
|
+
"lodash": "^4.18.1",
|
|
49
49
|
"yargs": "^17.5.1"
|
|
50
50
|
}
|
|
51
51
|
}
|