Files
automatisch/packages/backend/src/models/__snapshots__/config.test.js.snap
2024-10-14 11:19:29 +00:00

53 lines
869 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`Config model > jsonSchema should have correct validations 1`] = `
{
"properties": {
"createdAt": {
"type": "string",
},
"id": {
"format": "uuid",
"type": "string",
},
"installationCompleted": {
"type": "boolean",
},
"logoSvgData": {
"type": [
"string",
"null",
],
},
"palettePrimaryDark": {
"type": [
"string",
"null",
],
},
"palettePrimaryLight": {
"type": [
"string",
"null",
],
},
"palettePrimaryMain": {
"type": [
"string",
"null",
],
},
"title": {
"type": [
"string",
"null",
],
},
"updatedAt": {
"type": "string",
},
},
"type": "object",
}
`;