@kohost/api-client 3.7.5 → 3.7.7
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/cjs/Client/index.js +8 -0
- package/dist/cjs/schemas/property.json +11 -0
- package/dist/cjs/utils/errorFactory.js +28 -4
- package/dist/esm/Client.js +87 -51
- package/dist/esm/Client.js.map +2 -2
- package/dist/esm/Models.js +14 -9
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/SocketIoClient.js +746 -615
- package/dist/esm/SocketIoClient.js.map +4 -4
- package/dist/esm/defs.js +87 -51
- package/dist/esm/defs.js.map +2 -2
- package/dist/esm/utils.js +42 -13
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/Client/index.d.ts +2 -0
- package/dist/types/Client/index.d.ts.map +1 -1
- package/dist/types/schemas/PropertySchema.d.ts +2 -0
- package/dist/types/utils/errorFactory.d.ts +3 -1
- package/dist/types/utils/errorFactory.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/esm/Models.js
CHANGED
|
@@ -3909,8 +3909,7 @@ var require_fast_uri = __commonJS({
|
|
|
3909
3909
|
}
|
|
3910
3910
|
}
|
|
3911
3911
|
if (options.reference !== "suffix" && components.scheme) {
|
|
3912
|
-
uriTokens.push(components.scheme);
|
|
3913
|
-
uriTokens.push(":");
|
|
3912
|
+
uriTokens.push(components.scheme, ":");
|
|
3914
3913
|
}
|
|
3915
3914
|
const authority = recomposeAuthority(components, options);
|
|
3916
3915
|
if (authority !== void 0) {
|
|
@@ -3933,12 +3932,10 @@ var require_fast_uri = __commonJS({
|
|
|
3933
3932
|
uriTokens.push(s);
|
|
3934
3933
|
}
|
|
3935
3934
|
if (components.query !== void 0) {
|
|
3936
|
-
uriTokens.push("?");
|
|
3937
|
-
uriTokens.push(components.query);
|
|
3935
|
+
uriTokens.push("?", components.query);
|
|
3938
3936
|
}
|
|
3939
3937
|
if (components.fragment !== void 0) {
|
|
3940
|
-
uriTokens.push("#");
|
|
3941
|
-
uriTokens.push(components.fragment);
|
|
3938
|
+
uriTokens.push("#", components.fragment);
|
|
3942
3939
|
}
|
|
3943
3940
|
return uriTokens.join("");
|
|
3944
3941
|
}
|
|
@@ -4019,9 +4016,6 @@ var require_fast_uri = __commonJS({
|
|
|
4019
4016
|
if (gotEncoding && parsed.scheme !== void 0) {
|
|
4020
4017
|
parsed.scheme = unescape(parsed.scheme);
|
|
4021
4018
|
}
|
|
4022
|
-
if (gotEncoding && parsed.userinfo !== void 0) {
|
|
4023
|
-
parsed.userinfo = unescape(parsed.userinfo);
|
|
4024
|
-
}
|
|
4025
4019
|
if (gotEncoding && parsed.host !== void 0) {
|
|
4026
4020
|
parsed.host = unescape(parsed.host);
|
|
4027
4021
|
}
|
|
@@ -13258,6 +13252,17 @@ var require_property = __commonJS({
|
|
|
13258
13252
|
type: "boolean",
|
|
13259
13253
|
default: false
|
|
13260
13254
|
},
|
|
13255
|
+
ratings: {
|
|
13256
|
+
type: "boolean",
|
|
13257
|
+
default: true
|
|
13258
|
+
},
|
|
13259
|
+
newTicketCCs: {
|
|
13260
|
+
type: "array",
|
|
13261
|
+
items: {
|
|
13262
|
+
type: "string"
|
|
13263
|
+
},
|
|
13264
|
+
default: []
|
|
13265
|
+
},
|
|
13261
13266
|
quickServices: {
|
|
13262
13267
|
type: "array",
|
|
13263
13268
|
items: {
|