Admin UI abtrennen + google settings in gui + UI enhancement
This commit is contained in:
24
backend/node_modules/.prisma/client/edge.js
generated
vendored
24
backend/node_modules/.prisma/client/edge.js
generated
vendored
File diff suppressed because one or more lines are too long
10
backend/node_modules/.prisma/client/index-browser.js
generated
vendored
10
backend/node_modules/.prisma/client/index-browser.js
generated
vendored
@@ -257,6 +257,13 @@ exports.Prisma.CleanupJobEventScalarFieldEnum = {
|
||||
createdAt: 'createdAt'
|
||||
};
|
||||
|
||||
exports.Prisma.AppSettingScalarFieldEnum = {
|
||||
id: 'id',
|
||||
key: 'key',
|
||||
value: 'value',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
@@ -324,7 +331,8 @@ exports.Prisma.ModelName = {
|
||||
RuleAction: 'RuleAction',
|
||||
CleanupJob: 'CleanupJob',
|
||||
UnsubscribeAttempt: 'UnsubscribeAttempt',
|
||||
CleanupJobEvent: 'CleanupJobEvent'
|
||||
CleanupJobEvent: 'CleanupJobEvent',
|
||||
AppSetting: 'AppSetting'
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
1087
backend/node_modules/.prisma/client/index.d.ts
generated
vendored
1087
backend/node_modules/.prisma/client/index.d.ts
generated
vendored
File diff suppressed because it is too large
Load Diff
24
backend/node_modules/.prisma/client/index.js
generated
vendored
24
backend/node_modules/.prisma/client/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
backend/node_modules/.prisma/client/package.json
generated
vendored
2
backend/node_modules/.prisma/client/package.json
generated
vendored
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "prisma-client-6c67176f7022092b3b8f46007c6286b76456763ea6fcd4c80a580e5070b636e6",
|
||||
"name": "prisma-client-0dfa452a25e24864bcf3f498cd8b34074b00c8171bdce93526b6a0ab38135aa4",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"browser": "index-browser.js",
|
||||
|
||||
21
backend/node_modules/.prisma/client/schema.prisma
generated
vendored
21
backend/node_modules/.prisma/client/schema.prisma
generated
vendored
@@ -41,6 +41,13 @@ enum RuleConditionType {
|
||||
LIST_ID
|
||||
}
|
||||
|
||||
enum ExportStatus {
|
||||
QUEUED
|
||||
RUNNING
|
||||
DONE
|
||||
FAILED
|
||||
}
|
||||
|
||||
model Tenant {
|
||||
id String @id @default(cuid())
|
||||
name String
|
||||
@@ -55,13 +62,6 @@ model Tenant {
|
||||
jobs CleanupJob[]
|
||||
}
|
||||
|
||||
enum ExportStatus {
|
||||
QUEUED
|
||||
RUNNING
|
||||
DONE
|
||||
FAILED
|
||||
}
|
||||
|
||||
model ExportJob {
|
||||
id String @id @default(cuid())
|
||||
tenantId String
|
||||
@@ -240,3 +240,10 @@ model CleanupJobEvent {
|
||||
|
||||
@@index([jobId])
|
||||
}
|
||||
|
||||
model AppSetting {
|
||||
id String @id @default(cuid())
|
||||
key String @unique
|
||||
value String
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
10
backend/node_modules/.prisma/client/wasm.js
generated
vendored
10
backend/node_modules/.prisma/client/wasm.js
generated
vendored
@@ -257,6 +257,13 @@ exports.Prisma.CleanupJobEventScalarFieldEnum = {
|
||||
createdAt: 'createdAt'
|
||||
};
|
||||
|
||||
exports.Prisma.AppSettingScalarFieldEnum = {
|
||||
id: 'id',
|
||||
key: 'key',
|
||||
value: 'value',
|
||||
updatedAt: 'updatedAt'
|
||||
};
|
||||
|
||||
exports.Prisma.SortOrder = {
|
||||
asc: 'asc',
|
||||
desc: 'desc'
|
||||
@@ -324,7 +331,8 @@ exports.Prisma.ModelName = {
|
||||
RuleAction: 'RuleAction',
|
||||
CleanupJob: 'CleanupJob',
|
||||
UnsubscribeAttempt: 'UnsubscribeAttempt',
|
||||
CleanupJobEvent: 'CleanupJobEvent'
|
||||
CleanupJobEvent: 'CleanupJobEvent',
|
||||
AppSetting: 'AppSetting'
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user