@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/Models.js
CHANGED
|
@@ -13875,23 +13875,23 @@ var require_log = __commonJS({
|
|
|
13875
13875
|
name: {
|
|
13876
13876
|
type: "string",
|
|
13877
13877
|
description: "Event name"
|
|
13878
|
-
}
|
|
13879
|
-
|
|
13880
|
-
|
|
13881
|
-
|
|
13882
|
-
|
|
13883
|
-
|
|
13884
|
-
|
|
13885
|
-
|
|
13886
|
-
|
|
13887
|
-
|
|
13888
|
-
|
|
13889
|
-
|
|
13878
|
+
}
|
|
13879
|
+
},
|
|
13880
|
+
patternProperties: {
|
|
13881
|
+
"^field[0-9]+$": {
|
|
13882
|
+
type: "object",
|
|
13883
|
+
required: ["name", "value"],
|
|
13884
|
+
properties: {
|
|
13885
|
+
name: {
|
|
13886
|
+
type: "string"
|
|
13887
|
+
},
|
|
13888
|
+
value: {
|
|
13889
|
+
type: "string"
|
|
13890
13890
|
}
|
|
13891
13891
|
}
|
|
13892
|
-
}
|
|
13893
|
-
|
|
13894
|
-
|
|
13892
|
+
}
|
|
13893
|
+
},
|
|
13894
|
+
additionalProperties: false
|
|
13895
13895
|
};
|
|
13896
13896
|
}
|
|
13897
13897
|
});
|