@kohost/api-client 3.9.10 → 3.9.12
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/schemas/log.json +70 -19
- package/dist/esm/Models.js +69 -19
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +69 -19
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/LogSchema.d.ts +29 -51
- package/package.json +1 -1
package/dist/esm/utils.js
CHANGED
|
@@ -13935,11 +13935,7 @@ var require_log = __commonJS({
|
|
|
13935
13935
|
$id: "log.json",
|
|
13936
13936
|
title: "Log",
|
|
13937
13937
|
type: "object",
|
|
13938
|
-
required: ["id", "timestamp"],
|
|
13939
13938
|
properties: {
|
|
13940
|
-
id: {
|
|
13941
|
-
$ref: "definitions.json#/definitions/id"
|
|
13942
|
-
},
|
|
13943
13939
|
type: {
|
|
13944
13940
|
type: "string",
|
|
13945
13941
|
default: "log",
|
|
@@ -13949,28 +13945,82 @@ var require_log = __commonJS({
|
|
|
13949
13945
|
type: "number",
|
|
13950
13946
|
minimum: 1655907956593
|
|
13951
13947
|
},
|
|
13952
|
-
driver: {
|
|
13953
|
-
$ref: "definitions.json#/definitions/driver"
|
|
13954
|
-
},
|
|
13955
13948
|
name: {
|
|
13956
13949
|
type: "string",
|
|
13957
13950
|
description: "Event name"
|
|
13958
13951
|
},
|
|
13959
|
-
|
|
13960
|
-
"
|
|
13961
|
-
|
|
13962
|
-
|
|
13963
|
-
|
|
13964
|
-
|
|
13965
|
-
|
|
13966
|
-
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
|
|
13952
|
+
field1: {
|
|
13953
|
+
type: "object",
|
|
13954
|
+
required: ["name", "value"],
|
|
13955
|
+
properties: {
|
|
13956
|
+
name: {
|
|
13957
|
+
type: "string"
|
|
13958
|
+
},
|
|
13959
|
+
value: {
|
|
13960
|
+
type: "string"
|
|
13961
|
+
}
|
|
13962
|
+
}
|
|
13963
|
+
},
|
|
13964
|
+
field2: {
|
|
13965
|
+
type: "object",
|
|
13966
|
+
required: ["name", "value"],
|
|
13967
|
+
properties: {
|
|
13968
|
+
name: {
|
|
13969
|
+
type: "string"
|
|
13970
|
+
},
|
|
13971
|
+
value: {
|
|
13972
|
+
type: "string"
|
|
13973
|
+
}
|
|
13974
|
+
}
|
|
13975
|
+
},
|
|
13976
|
+
field3: {
|
|
13977
|
+
type: "object",
|
|
13978
|
+
required: ["name", "value"],
|
|
13979
|
+
properties: {
|
|
13980
|
+
name: {
|
|
13981
|
+
type: "string"
|
|
13982
|
+
},
|
|
13983
|
+
value: {
|
|
13984
|
+
type: "string"
|
|
13985
|
+
}
|
|
13986
|
+
}
|
|
13987
|
+
},
|
|
13988
|
+
field4: {
|
|
13989
|
+
type: "object",
|
|
13990
|
+
required: ["name", "value"],
|
|
13991
|
+
properties: {
|
|
13992
|
+
name: {
|
|
13993
|
+
type: "string"
|
|
13994
|
+
},
|
|
13995
|
+
value: {
|
|
13996
|
+
type: "string"
|
|
13997
|
+
}
|
|
13998
|
+
}
|
|
13999
|
+
},
|
|
14000
|
+
field5: {
|
|
14001
|
+
type: "object",
|
|
14002
|
+
required: ["name", "value"],
|
|
14003
|
+
properties: {
|
|
14004
|
+
name: {
|
|
14005
|
+
type: "string"
|
|
14006
|
+
},
|
|
14007
|
+
value: {
|
|
14008
|
+
type: "string"
|
|
13970
14009
|
}
|
|
13971
14010
|
}
|
|
13972
14011
|
},
|
|
13973
|
-
|
|
14012
|
+
field6: {
|
|
14013
|
+
type: "object",
|
|
14014
|
+
required: ["name", "value"],
|
|
14015
|
+
properties: {
|
|
14016
|
+
name: {
|
|
14017
|
+
type: "string"
|
|
14018
|
+
},
|
|
14019
|
+
value: {
|
|
14020
|
+
type: "string"
|
|
14021
|
+
}
|
|
14022
|
+
}
|
|
14023
|
+
}
|
|
13974
14024
|
}
|
|
13975
14025
|
};
|
|
13976
14026
|
}
|