@kohost/api-client 3.9.10 → 3.9.11
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 +2 -2
- package/dist/esm/Models.js +15 -15
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +15 -15
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/LogSchema.d.ts +7 -3
- package/package.json +1 -1
package/dist/esm/utils.js
CHANGED
|
@@ -13955,23 +13955,23 @@ var require_log = __commonJS({
|
|
|
13955
13955
|
name: {
|
|
13956
13956
|
type: "string",
|
|
13957
13957
|
description: "Event name"
|
|
13958
|
-
}
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
|
|
13963
|
-
|
|
13964
|
-
|
|
13965
|
-
|
|
13966
|
-
|
|
13967
|
-
|
|
13968
|
-
|
|
13969
|
-
|
|
13958
|
+
}
|
|
13959
|
+
},
|
|
13960
|
+
patternProperties: {
|
|
13961
|
+
"^field[0-9]+$": {
|
|
13962
|
+
type: "object",
|
|
13963
|
+
required: ["name", "value"],
|
|
13964
|
+
properties: {
|
|
13965
|
+
name: {
|
|
13966
|
+
type: "string"
|
|
13967
|
+
},
|
|
13968
|
+
value: {
|
|
13969
|
+
type: "string"
|
|
13970
13970
|
}
|
|
13971
13971
|
}
|
|
13972
|
-
}
|
|
13973
|
-
|
|
13974
|
-
|
|
13972
|
+
}
|
|
13973
|
+
},
|
|
13974
|
+
additionalProperties: false
|
|
13975
13975
|
};
|
|
13976
13976
|
}
|
|
13977
13977
|
});
|