diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index b9d16b8..0000000 --- a/docs/index.html +++ /dev/null @@ -1,29346 +0,0 @@ - - - - - - - - Prisma Generated Docs - - - - -
-
-
- - - - - - - - -
- -
-
Models
- -
Types
- -
- -
-
- -
-

Models

- -
-

alerts

- - -
-

Fields

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesRequiredComment
- id - - Int - -
    -
  • @id
  • @default(autoincrement())
  • -
-
- Yes - - - -
- type - - alertType - -
    -
  • -
  • -
-
- Yes - - - -
- state - - alertState - -
    -
  • -
  • -
-
- Yes - - - -
- description - - String? - -
    -
  • -
  • -
-
- No - - - -
- date - - DateTime - -
    -
  • -
  • -
-
- Yes - - - -
- actionplan - - actionPlan? - -
    -
  • -
  • -
-
- No - - - -
- actionplanId - - Int? - -
    -
  • -
  • -
-
- No - - - -
- acknowledged_by - - alertContacts[] - -
    -
  • -
  • -
-
- Yes - - - -
- acknowledged_at - - DateTime? - -
    -
  • -
  • -
-
- No - - - -
-
-
-
-
-

Operations

-
- -
-

findUnique

-

Find zero or one Alerts

-
-
// Get one Alerts
-const alerts = await prisma.alerts.findUnique({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereUniqueInput - - Yes -
-

Output

-
Type: alerts
-
Required: - No
-
List: - No
-
-
-
-

findFirst

-

Find first Alerts

-
-
// Get one Alerts
-const alerts = await prisma.alerts.findFirst({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereInput - - No -
- orderBy - - alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput - - No -
- cursor - - alertsWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - AlertsScalarFieldEnum | AlertsScalarFieldEnum[] - - No -
-

Output

-
Type: alerts
-
Required: - No
-
List: - No
-
-
-
-

findMany

-

Find zero or more Alerts

-
-
// Get all Alerts
-const Alerts = await prisma.alerts.findMany()
-// Get first 10 Alerts
-const Alerts = await prisma.alerts.findMany({ take: 10 })
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereInput - - No -
- orderBy - - alertsOrderByWithRelationInput[] | alertsOrderByWithRelationInput - - No -
- cursor - - alertsWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - AlertsScalarFieldEnum | AlertsScalarFieldEnum[] - - No -
-

Output

-
Type: alerts
-
Required: - Yes
-
List: - Yes
-
-
-
-

create

-

Create one Alerts

-
-
// Create one Alerts
-const Alerts = await prisma.alerts.create({
-  data: {
-    // ... data to create a Alerts
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertsCreateInput | alertsUncheckedCreateInput - - Yes -
-

Output

-
Type: alerts
-
Required: - Yes
-
List: - No
-
-
-
-

delete

-

Delete one Alerts

-
-
// Delete one Alerts
-const Alerts = await prisma.alerts.delete({
-  where: {
-    // ... filter to delete one Alerts
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereUniqueInput - - Yes -
-

Output

-
Type: alerts
-
Required: - No
-
List: - No
-
-
-
-

update

-

Update one Alerts

-
-
// Update one Alerts
-const alerts = await prisma.alerts.update({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertsUpdateInput | alertsUncheckedUpdateInput - - Yes -
- where - - alertsWhereUniqueInput - - Yes -
-

Output

-
Type: alerts
-
Required: - No
-
List: - No
-
-
-
-

deleteMany

-

Delete zero or more Alerts

-
-
// Delete a few Alerts
-const { count } = await prisma.alerts.deleteMany({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

updateMany

-

Update zero or one Alerts

-
-
const { count } = await prisma.alerts.updateMany({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertsUpdateManyMutationInput | alertsUncheckedUpdateManyInput - - Yes -
- where - - alertsWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

upsert

-

Create or update one Alerts

-
-
// Update or create a Alerts
-const alerts = await prisma.alerts.upsert({
-  create: {
-    // ... data to create a Alerts
-  },
-  update: {
-    // ... in case it already exists, update
-  },
-  where: {
-    // ... the filter for the Alerts we want to update
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertsWhereUniqueInput - - Yes -
- create - - alertsCreateInput | alertsUncheckedCreateInput - - Yes -
- update - - alertsUpdateInput | alertsUncheckedUpdateInput - - Yes -
-

Output

-
Type: alerts
-
Required: - Yes
-
List: - No
-
- -
-
-
-
-
-

alertContacts

- - -
-

Fields

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesRequiredComment
- id - - Int - -
    -
  • @id
  • @default(autoincrement())
  • -
-
- Yes - - - -
- name - - String - -
    -
  • -
  • -
-
- Yes - - - -
- phone - - String - -
    -
  • @unique
  • -
-
- Yes - - - -
- comment - - String? - -
    -
  • -
  • -
-
- No - - - -
- prios - - priorities[] - -
    -
  • -
  • -
-
- Yes - - - -
- alerts - - alerts[] - -
    -
  • -
  • -
-
- Yes - - - -
-
-
-
-
-

Operations

-
- -
-

findUnique

-

Find zero or one AlertContacts

-
-
// Get one AlertContacts
-const alertContacts = await prisma.alertContacts.findUnique({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findFirst

-

Find first AlertContacts

-
-
// Get one AlertContacts
-const alertContacts = await prisma.alertContacts.findFirst({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereInput - - No -
- orderBy - - alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput - - No -
- cursor - - alertContactsWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] - - No -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findMany

-

Find zero or more AlertContacts

-
-
// Get all AlertContacts
-const AlertContacts = await prisma.alertContacts.findMany()
-// Get first 10 AlertContacts
-const AlertContacts = await prisma.alertContacts.findMany({ take: 10 })
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereInput - - No -
- orderBy - - alertContactsOrderByWithRelationInput[] | alertContactsOrderByWithRelationInput - - No -
- cursor - - alertContactsWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - AlertContactsScalarFieldEnum | AlertContactsScalarFieldEnum[] - - No -
-

Output

- -
Required: - Yes
-
List: - Yes
-
-
-
-

create

-

Create one AlertContacts

-
-
// Create one AlertContacts
-const AlertContacts = await prisma.alertContacts.create({
-  data: {
-    // ... data to create a AlertContacts
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertContactsCreateInput | alertContactsUncheckedCreateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

delete

-

Delete one AlertContacts

-
-
// Delete one AlertContacts
-const AlertContacts = await prisma.alertContacts.delete({
-  where: {
-    // ... filter to delete one AlertContacts
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

update

-

Update one AlertContacts

-
-
// Update one AlertContacts
-const alertContacts = await prisma.alertContacts.update({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertContactsUpdateInput | alertContactsUncheckedUpdateInput - - Yes -
- where - - alertContactsWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

deleteMany

-

Delete zero or more AlertContacts

-
-
// Delete a few AlertContacts
-const { count } = await prisma.alertContacts.deleteMany({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

updateMany

-

Update zero or one AlertContacts

-
-
const { count } = await prisma.alertContacts.updateMany({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyInput - - Yes -
- where - - alertContactsWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

upsert

-

Create or update one AlertContacts

-
-
// Update or create a AlertContacts
-const alertContacts = await prisma.alertContacts.upsert({
-  create: {
-    // ... data to create a AlertContacts
-  },
-  update: {
-    // ... in case it already exists, update
-  },
-  where: {
-    // ... the filter for the AlertContacts we want to update
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - alertContactsWhereUniqueInput - - Yes -
- create - - alertContactsCreateInput | alertContactsUncheckedCreateInput - - Yes -
- update - - alertContactsUpdateInput | alertContactsUncheckedUpdateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
- -
-
-
-
-
-

actionPlan

- - -
-

Fields

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesRequiredComment
- id - - Int - -
    -
  • @id
  • @default(autoincrement())
  • -
-
- Yes - - - -
- name - - String - -
    -
  • @unique
  • -
-
- Yes - - - -
- comment - - String? - -
    -
  • -
  • -
-
- No - - - -
- alerthook - - String - -
    -
  • @unique
  • -
-
- Yes - - - -
- prio - - priorities[] - -
    -
  • -
  • -
-
- Yes - - - -
- content - - content[] - -
    -
  • -
  • -
-
- Yes - - - -
- alerts - - alerts[] - -
    -
  • -
  • -
-
- Yes - - - -
-
-
-
-
-

Operations

-
- -
-

findUnique

-

Find zero or one ActionPlan

-
-
// Get one ActionPlan
-const actionPlan = await prisma.actionPlan.findUnique({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findFirst

-

Find first ActionPlan

-
-
// Get one ActionPlan
-const actionPlan = await prisma.actionPlan.findFirst({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereInput - - No -
- orderBy - - actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput - - No -
- cursor - - actionPlanWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] - - No -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findMany

-

Find zero or more ActionPlan

-
-
// Get all ActionPlan
-const ActionPlan = await prisma.actionPlan.findMany()
-// Get first 10 ActionPlan
-const ActionPlan = await prisma.actionPlan.findMany({ take: 10 })
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereInput - - No -
- orderBy - - actionPlanOrderByWithRelationInput[] | actionPlanOrderByWithRelationInput - - No -
- cursor - - actionPlanWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - ActionPlanScalarFieldEnum | ActionPlanScalarFieldEnum[] - - No -
-

Output

- -
Required: - Yes
-
List: - Yes
-
-
-
-

create

-

Create one ActionPlan

-
-
// Create one ActionPlan
-const ActionPlan = await prisma.actionPlan.create({
-  data: {
-    // ... data to create a ActionPlan
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - actionPlanCreateInput | actionPlanUncheckedCreateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

delete

-

Delete one ActionPlan

-
-
// Delete one ActionPlan
-const ActionPlan = await prisma.actionPlan.delete({
-  where: {
-    // ... filter to delete one ActionPlan
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

update

-

Update one ActionPlan

-
-
// Update one ActionPlan
-const actionPlan = await prisma.actionPlan.update({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - actionPlanUpdateInput | actionPlanUncheckedUpdateInput - - Yes -
- where - - actionPlanWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

deleteMany

-

Delete zero or more ActionPlan

-
-
// Delete a few ActionPlan
-const { count } = await prisma.actionPlan.deleteMany({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

updateMany

-

Update zero or one ActionPlan

-
-
const { count } = await prisma.actionPlan.updateMany({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyInput - - Yes -
- where - - actionPlanWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

upsert

-

Create or update one ActionPlan

-
-
// Update or create a ActionPlan
-const actionPlan = await prisma.actionPlan.upsert({
-  create: {
-    // ... data to create a ActionPlan
-  },
-  update: {
-    // ... in case it already exists, update
-  },
-  where: {
-    // ... the filter for the ActionPlan we want to update
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - actionPlanWhereUniqueInput - - Yes -
- create - - actionPlanCreateInput | actionPlanUncheckedCreateInput - - Yes -
- update - - actionPlanUpdateInput | actionPlanUncheckedUpdateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
- -
-
-
-
-
-

priorities

- - - - - - - - - - - - - - - - - - - - - - - - -
NameValue
- @@unique -
    -
  • priority
  • actionplanId
  • -
-
- @@index -
    -
  • priority
  • actionplanId
  • -
-
- -
-

Fields

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesRequiredComment
- id - - Int - -
    -
  • @id
  • @default(autoincrement())
  • -
-
- Yes - - - -
- Contact - - alertContacts - -
    -
  • -
  • -
-
- Yes - - - -
- contactId - - Int - -
    -
  • -
  • -
-
- Yes - - - -
- priority - - Int - -
    -
  • -
  • -
-
- Yes - - - -
- actionplan - - actionPlan - -
    -
  • -
  • -
-
- Yes - - - -
- actionplanId - - Int - -
    -
  • -
  • -
-
- Yes - - - -
-
-
-
-
-

Operations

-
- -
-

findUnique

-

Find zero or one Priorities

-
-
// Get one Priorities
-const priorities = await prisma.priorities.findUnique({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findFirst

-

Find first Priorities

-
-
// Get one Priorities
-const priorities = await prisma.priorities.findFirst({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereInput - - No -
- orderBy - - prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput - - No -
- cursor - - prioritiesWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] - - No -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

findMany

-

Find zero or more Priorities

-
-
// Get all Priorities
-const Priorities = await prisma.priorities.findMany()
-// Get first 10 Priorities
-const Priorities = await prisma.priorities.findMany({ take: 10 })
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereInput - - No -
- orderBy - - prioritiesOrderByWithRelationInput[] | prioritiesOrderByWithRelationInput - - No -
- cursor - - prioritiesWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - PrioritiesScalarFieldEnum | PrioritiesScalarFieldEnum[] - - No -
-

Output

- -
Required: - Yes
-
List: - Yes
-
-
-
-

create

-

Create one Priorities

-
-
// Create one Priorities
-const Priorities = await prisma.priorities.create({
-  data: {
-    // ... data to create a Priorities
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - prioritiesCreateInput | prioritiesUncheckedCreateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

delete

-

Delete one Priorities

-
-
// Delete one Priorities
-const Priorities = await prisma.priorities.delete({
-  where: {
-    // ... filter to delete one Priorities
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

update

-

Update one Priorities

-
-
// Update one Priorities
-const priorities = await prisma.priorities.update({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - prioritiesUpdateInput | prioritiesUncheckedUpdateInput - - Yes -
- where - - prioritiesWhereUniqueInput - - Yes -
-

Output

- -
Required: - No
-
List: - No
-
-
-
-

deleteMany

-

Delete zero or more Priorities

-
-
// Delete a few Priorities
-const { count } = await prisma.priorities.deleteMany({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

updateMany

-

Update zero or one Priorities

-
-
const { count } = await prisma.priorities.updateMany({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyInput - - Yes -
- where - - prioritiesWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

upsert

-

Create or update one Priorities

-
-
// Update or create a Priorities
-const priorities = await prisma.priorities.upsert({
-  create: {
-    // ... data to create a Priorities
-  },
-  update: {
-    // ... in case it already exists, update
-  },
-  where: {
-    // ... the filter for the Priorities we want to update
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - prioritiesWhereUniqueInput - - Yes -
- create - - prioritiesCreateInput | prioritiesUncheckedCreateInput - - Yes -
- update - - prioritiesUpdateInput | prioritiesUncheckedUpdateInput - - Yes -
-

Output

- -
Required: - Yes
-
List: - No
-
- -
-
-
-
-
-

content

- - -
-

Fields

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeAttributesRequiredComment
- id - - Int - -
    -
  • @id
  • @default(autoincrement())
  • -
-
- Yes - - - -
- type - - contentType - -
    -
  • -
  • -
-
- Yes - - - -
- name - - String - -
    -
  • -
  • -
-
- Yes - - - -
- filename - - String - -
    -
  • -
  • -
-
- Yes - - - -
- actionplan - - actionPlan[] - -
    -
  • -
  • -
-
- Yes - - - -
-
-
-
-
-

Operations

-
- -
-

findUnique

-

Find zero or one Content

-
-
// Get one Content
-const content = await prisma.content.findUnique({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereUniqueInput - - Yes -
-

Output

-
Type: content
-
Required: - No
-
List: - No
-
-
-
-

findFirst

-

Find first Content

-
-
// Get one Content
-const content = await prisma.content.findFirst({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereInput - - No -
- orderBy - - contentOrderByWithRelationInput[] | contentOrderByWithRelationInput - - No -
- cursor - - contentWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - ContentScalarFieldEnum | ContentScalarFieldEnum[] - - No -
-

Output

-
Type: content
-
Required: - No
-
List: - No
-
-
-
-

findMany

-

Find zero or more Content

-
-
// Get all Content
-const Content = await prisma.content.findMany()
-// Get first 10 Content
-const Content = await prisma.content.findMany({ take: 10 })
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereInput - - No -
- orderBy - - contentOrderByWithRelationInput[] | contentOrderByWithRelationInput - - No -
- cursor - - contentWhereUniqueInput - - No -
- take - - Int - - No -
- skip - - Int - - No -
- distinct - - ContentScalarFieldEnum | ContentScalarFieldEnum[] - - No -
-

Output

-
Type: content
-
Required: - Yes
-
List: - Yes
-
-
-
-

create

-

Create one Content

-
-
// Create one Content
-const Content = await prisma.content.create({
-  data: {
-    // ... data to create a Content
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - contentCreateInput | contentUncheckedCreateInput - - Yes -
-

Output

-
Type: content
-
Required: - Yes
-
List: - No
-
-
-
-

delete

-

Delete one Content

-
-
// Delete one Content
-const Content = await prisma.content.delete({
-  where: {
-    // ... filter to delete one Content
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereUniqueInput - - Yes -
-

Output

-
Type: content
-
Required: - No
-
List: - No
-
-
-
-

update

-

Update one Content

-
-
// Update one Content
-const content = await prisma.content.update({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - contentUpdateInput | contentUncheckedUpdateInput - - Yes -
- where - - contentWhereUniqueInput - - Yes -
-

Output

-
Type: content
-
Required: - No
-
List: - No
-
-
-
-

deleteMany

-

Delete zero or more Content

-
-
// Delete a few Content
-const { count } = await prisma.content.deleteMany({
-  where: {
-    // ... provide filter here
-  }
-})
-
-
-

Input

- - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

updateMany

-

Update zero or one Content

-
-
const { count } = await prisma.content.updateMany({
-  where: {
-    // ... provide filter here
-  },
-  data: {
-    // ... provide data here
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- data - - contentUpdateManyMutationInput | contentUncheckedUpdateManyInput - - Yes -
- where - - contentWhereInput - - No -
-

Output

- -
Required: - Yes
-
List: - No
-
-
-
-

upsert

-

Create or update one Content

-
-
// Update or create a Content
-const content = await prisma.content.upsert({
-  create: {
-    // ... data to create a Content
-  },
-  update: {
-    // ... in case it already exists, update
-  },
-  where: {
-    // ... the filter for the Content we want to update
-  }
-})
-
-

Input

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequired
- where - - contentWhereUniqueInput - - Yes -
- create - - contentCreateInput | contentUncheckedCreateInput - - Yes -
- update - - contentUpdateInput | contentUncheckedUpdateInput - - Yes -
-

Output

-
Type: content
-
Required: - Yes
-
List: - No
-
- -
-
-
- -
- -
-

Types

-
-
-

Input Types

-
- -
-

alertsWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertsWhereInput | alertsWhereInput[] - - No -
- OR - alertsWhereInput[] - - No -
- NOT - alertsWhereInput | alertsWhereInput[] - - No -
- id - IntFilter | Int - - No -
- type - EnumalertTypeFilter | alertType - - No -
- state - EnumalertStateFilter | alertState - - No -
- description - StringNullableFilter | String | Null - - Yes -
- date - DateTimeFilter | DateTime - - No -
- actionplanId - IntNullableFilter | Int | Null - - Yes -
- acknowledged_at - DateTimeNullableFilter | DateTime | Null - - Yes -
- actionplan - ActionPlanNullableScalarRelationFilter | actionPlanWhereInput | Null - - Yes -
- acknowledged_by - AlertContactsListRelationFilter - - No -
-
-
-
-

alertsOrderByWithRelationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- state - SortOrder - - No -
- description - SortOrder | SortOrderInput - - No -
- date - SortOrder - - No -
- actionplanId - SortOrder | SortOrderInput - - No -
- acknowledged_at - SortOrder | SortOrderInput - - No -
- actionplan - actionPlanOrderByWithRelationInput - - No -
- acknowledged_by - alertContactsOrderByRelationAggregateInput - - No -
- _relevance - alertsOrderByRelevanceInput - - No -
-
-
-
-

alertsWhereUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- AND - alertsWhereInput | alertsWhereInput[] - - No -
- OR - alertsWhereInput[] - - No -
- NOT - alertsWhereInput | alertsWhereInput[] - - No -
- type - EnumalertTypeFilter | alertType - - No -
- state - EnumalertStateFilter | alertState - - No -
- description - StringNullableFilter | String | Null - - Yes -
- date - DateTimeFilter | DateTime - - No -
- actionplanId - IntNullableFilter | Int | Null - - Yes -
- acknowledged_at - DateTimeNullableFilter | DateTime | Null - - Yes -
- actionplan - ActionPlanNullableScalarRelationFilter | actionPlanWhereInput | Null - - Yes -
- acknowledged_by - AlertContactsListRelationFilter - - No -
-
-
-
-

alertsOrderByWithAggregationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- state - SortOrder - - No -
- description - SortOrder | SortOrderInput - - No -
- date - SortOrder - - No -
- actionplanId - SortOrder | SortOrderInput - - No -
- acknowledged_at - SortOrder | SortOrderInput - - No -
- _count - alertsCountOrderByAggregateInput - - No -
- _avg - alertsAvgOrderByAggregateInput - - No -
- _max - alertsMaxOrderByAggregateInput - - No -
- _min - alertsMinOrderByAggregateInput - - No -
- _sum - alertsSumOrderByAggregateInput - - No -
-
-
-
-

alertsScalarWhereWithAggregatesInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertsScalarWhereWithAggregatesInput | alertsScalarWhereWithAggregatesInput[] - - No -
- OR - alertsScalarWhereWithAggregatesInput[] - - No -
- NOT - alertsScalarWhereWithAggregatesInput | alertsScalarWhereWithAggregatesInput[] - - No -
- id - IntWithAggregatesFilter | Int - - No -
- type - EnumalertTypeWithAggregatesFilter | alertType - - No -
- state - EnumalertStateWithAggregatesFilter | alertState - - No -
- description - StringNullableWithAggregatesFilter | String | Null - - Yes -
- date - DateTimeWithAggregatesFilter | DateTime - - No -
- actionplanId - IntNullableWithAggregatesFilter | Int | Null - - Yes -
- acknowledged_at - DateTimeNullableWithAggregatesFilter | DateTime | Null - - Yes -
-
-
-
-

alertContactsWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertContactsWhereInput | alertContactsWhereInput[] - - No -
- OR - alertContactsWhereInput[] - - No -
- NOT - alertContactsWhereInput | alertContactsWhereInput[] - - No -
- id - IntFilter | Int - - No -
- name - StringFilter | String - - No -
- phone - StringFilter | String - - No -
- comment - StringNullableFilter | String | Null - - Yes -
- prios - PrioritiesListRelationFilter - - No -
- alerts - AlertsListRelationFilter - - No -
-
-
-
-

alertContactsOrderByWithRelationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- phone - SortOrder - - No -
- comment - SortOrder | SortOrderInput - - No -
- prios - prioritiesOrderByRelationAggregateInput - - No -
- alerts - alertsOrderByRelationAggregateInput - - No -
- _relevance - alertContactsOrderByRelevanceInput - - No -
-
-
-
-

alertContactsWhereUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- phone - String - - No -
- AND - alertContactsWhereInput | alertContactsWhereInput[] - - No -
- OR - alertContactsWhereInput[] - - No -
- NOT - alertContactsWhereInput | alertContactsWhereInput[] - - No -
- name - StringFilter | String - - No -
- comment - StringNullableFilter | String | Null - - Yes -
- prios - PrioritiesListRelationFilter - - No -
- alerts - AlertsListRelationFilter - - No -
-
-
-
-

alertContactsOrderByWithAggregationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- phone - SortOrder - - No -
- comment - SortOrder | SortOrderInput - - No -
- _count - alertContactsCountOrderByAggregateInput - - No -
- _avg - alertContactsAvgOrderByAggregateInput - - No -
- _max - alertContactsMaxOrderByAggregateInput - - No -
- _min - alertContactsMinOrderByAggregateInput - - No -
- _sum - alertContactsSumOrderByAggregateInput - - No -
-
-
-
-

alertContactsScalarWhereWithAggregatesInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertContactsScalarWhereWithAggregatesInput | alertContactsScalarWhereWithAggregatesInput[] - - No -
- OR - alertContactsScalarWhereWithAggregatesInput[] - - No -
- NOT - alertContactsScalarWhereWithAggregatesInput | alertContactsScalarWhereWithAggregatesInput[] - - No -
- id - IntWithAggregatesFilter | Int - - No -
- name - StringWithAggregatesFilter | String - - No -
- phone - StringWithAggregatesFilter | String - - No -
- comment - StringNullableWithAggregatesFilter | String | Null - - Yes -
-
-
-
-

actionPlanWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - actionPlanWhereInput | actionPlanWhereInput[] - - No -
- OR - actionPlanWhereInput[] - - No -
- NOT - actionPlanWhereInput | actionPlanWhereInput[] - - No -
- id - IntFilter | Int - - No -
- name - StringFilter | String - - No -
- comment - StringNullableFilter | String | Null - - Yes -
- alerthook - StringFilter | String - - No -
- prio - PrioritiesListRelationFilter - - No -
- content - ContentListRelationFilter - - No -
- alerts - AlertsListRelationFilter - - No -
-
-
-
-

actionPlanOrderByWithRelationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- comment - SortOrder | SortOrderInput - - No -
- alerthook - SortOrder - - No -
- prio - prioritiesOrderByRelationAggregateInput - - No -
- content - contentOrderByRelationAggregateInput - - No -
- alerts - alertsOrderByRelationAggregateInput - - No -
- _relevance - actionPlanOrderByRelevanceInput - - No -
-
-
-
-

actionPlanWhereUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- alerthook - String - - No -
- AND - actionPlanWhereInput | actionPlanWhereInput[] - - No -
- OR - actionPlanWhereInput[] - - No -
- NOT - actionPlanWhereInput | actionPlanWhereInput[] - - No -
- comment - StringNullableFilter | String | Null - - Yes -
- prio - PrioritiesListRelationFilter - - No -
- content - ContentListRelationFilter - - No -
- alerts - AlertsListRelationFilter - - No -
-
-
-
-

actionPlanOrderByWithAggregationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- comment - SortOrder | SortOrderInput - - No -
- alerthook - SortOrder - - No -
- _count - actionPlanCountOrderByAggregateInput - - No -
- _avg - actionPlanAvgOrderByAggregateInput - - No -
- _max - actionPlanMaxOrderByAggregateInput - - No -
- _min - actionPlanMinOrderByAggregateInput - - No -
- _sum - actionPlanSumOrderByAggregateInput - - No -
-
-
-
-

actionPlanScalarWhereWithAggregatesInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - actionPlanScalarWhereWithAggregatesInput | actionPlanScalarWhereWithAggregatesInput[] - - No -
- OR - actionPlanScalarWhereWithAggregatesInput[] - - No -
- NOT - actionPlanScalarWhereWithAggregatesInput | actionPlanScalarWhereWithAggregatesInput[] - - No -
- id - IntWithAggregatesFilter | Int - - No -
- name - StringWithAggregatesFilter | String - - No -
- comment - StringNullableWithAggregatesFilter | String | Null - - Yes -
- alerthook - StringWithAggregatesFilter | String - - No -
-
-
-
-

prioritiesWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - prioritiesWhereInput | prioritiesWhereInput[] - - No -
- OR - prioritiesWhereInput[] - - No -
- NOT - prioritiesWhereInput | prioritiesWhereInput[] - - No -
- id - IntFilter | Int - - No -
- contactId - IntFilter | Int - - No -
- priority - IntFilter | Int - - No -
- actionplanId - IntFilter | Int - - No -
- Contact - AlertContactsScalarRelationFilter | alertContactsWhereInput - - No -
- actionplan - ActionPlanScalarRelationFilter | actionPlanWhereInput - - No -
-
-
-
-

prioritiesOrderByWithRelationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
- Contact - alertContactsOrderByWithRelationInput - - No -
- actionplan - actionPlanOrderByWithRelationInput - - No -
-
-
-
-

prioritiesWhereUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- priority_actionplanId - prioritiesPriorityActionplanIdCompoundUniqueInput - - No -
- AND - prioritiesWhereInput | prioritiesWhereInput[] - - No -
- OR - prioritiesWhereInput[] - - No -
- NOT - prioritiesWhereInput | prioritiesWhereInput[] - - No -
- contactId - IntFilter | Int - - No -
- priority - IntFilter | Int - - No -
- actionplanId - IntFilter | Int - - No -
- Contact - AlertContactsScalarRelationFilter | alertContactsWhereInput - - No -
- actionplan - ActionPlanScalarRelationFilter | actionPlanWhereInput - - No -
-
-
-
-

prioritiesOrderByWithAggregationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
- _count - prioritiesCountOrderByAggregateInput - - No -
- _avg - prioritiesAvgOrderByAggregateInput - - No -
- _max - prioritiesMaxOrderByAggregateInput - - No -
- _min - prioritiesMinOrderByAggregateInput - - No -
- _sum - prioritiesSumOrderByAggregateInput - - No -
-
-
-
-

prioritiesScalarWhereWithAggregatesInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - prioritiesScalarWhereWithAggregatesInput | prioritiesScalarWhereWithAggregatesInput[] - - No -
- OR - prioritiesScalarWhereWithAggregatesInput[] - - No -
- NOT - prioritiesScalarWhereWithAggregatesInput | prioritiesScalarWhereWithAggregatesInput[] - - No -
- id - IntWithAggregatesFilter | Int - - No -
- contactId - IntWithAggregatesFilter | Int - - No -
- priority - IntWithAggregatesFilter | Int - - No -
- actionplanId - IntWithAggregatesFilter | Int - - No -
-
-
-
-

contentWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - contentWhereInput | contentWhereInput[] - - No -
- OR - contentWhereInput[] - - No -
- NOT - contentWhereInput | contentWhereInput[] - - No -
- id - IntFilter | Int - - No -
- type - EnumcontentTypeFilter | contentType - - No -
- name - StringFilter | String - - No -
- filename - StringFilter | String - - No -
- actionplan - ActionPlanListRelationFilter - - No -
-
-
-
-

contentOrderByWithRelationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- name - SortOrder - - No -
- filename - SortOrder - - No -
- actionplan - actionPlanOrderByRelationAggregateInput - - No -
- _relevance - contentOrderByRelevanceInput - - No -
-
-
-
-

contentWhereUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- AND - contentWhereInput | contentWhereInput[] - - No -
- OR - contentWhereInput[] - - No -
- NOT - contentWhereInput | contentWhereInput[] - - No -
- type - EnumcontentTypeFilter | contentType - - No -
- name - StringFilter | String - - No -
- filename - StringFilter | String - - No -
- actionplan - ActionPlanListRelationFilter - - No -
-
-
-
-

contentOrderByWithAggregationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- name - SortOrder - - No -
- filename - SortOrder - - No -
- _count - contentCountOrderByAggregateInput - - No -
- _avg - contentAvgOrderByAggregateInput - - No -
- _max - contentMaxOrderByAggregateInput - - No -
- _min - contentMinOrderByAggregateInput - - No -
- _sum - contentSumOrderByAggregateInput - - No -
-
-
-
-

contentScalarWhereWithAggregatesInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - contentScalarWhereWithAggregatesInput | contentScalarWhereWithAggregatesInput[] - - No -
- OR - contentScalarWhereWithAggregatesInput[] - - No -
- NOT - contentScalarWhereWithAggregatesInput | contentScalarWhereWithAggregatesInput[] - - No -
- id - IntWithAggregatesFilter | Int - - No -
- type - EnumcontentTypeWithAggregatesFilter | contentType - - No -
- name - StringWithAggregatesFilter | String - - No -
- filename - StringWithAggregatesFilter | String - - No -
-
-
-
-

alertsCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- acknowledged_at - DateTime | Null - - Yes -
- actionplan - actionPlanCreateNestedOneWithoutAlertsInput - - No -
- acknowledged_by - alertContactsCreateNestedManyWithoutAlertsInput - - No -
-
-
-
-

alertsUncheckedCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- actionplanId - Int | Null - - Yes -
- acknowledged_at - DateTime | Null - - Yes -
- acknowledged_by - alertContactsUncheckedCreateNestedManyWithoutAlertsInput - - No -
-
-
-
-

alertsUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
- actionplan - actionPlanUpdateOneWithoutAlertsNestedInput - - No -
- acknowledged_by - alertContactsUpdateManyWithoutAlertsNestedInput - - No -
-
-
-
-

alertsUncheckedUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- actionplanId - Int | NullableIntFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_by - alertContactsUncheckedUpdateManyWithoutAlertsNestedInput - - No -
-
-
-
-

alertsCreateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- actionplanId - Int | Null - - Yes -
- acknowledged_at - DateTime | Null - - Yes -
-
-
-
-

alertsUpdateManyMutationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

alertsUncheckedUpdateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- actionplanId - Int | NullableIntFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

alertContactsCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- prios - prioritiesCreateNestedManyWithoutContactInput - - No -
- alerts - alertsCreateNestedManyWithoutAcknowledged_byInput - - No -
-
-
-
-

alertContactsUncheckedCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- prios - prioritiesUncheckedCreateNestedManyWithoutContactInput - - No -
- alerts - alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput - - No -
-
-
-
-

alertContactsUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- prios - prioritiesUpdateManyWithoutContactNestedInput - - No -
- alerts - alertsUpdateManyWithoutAcknowledged_byNestedInput - - No -
-
-
-
-

alertContactsUncheckedUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- prios - prioritiesUncheckedUpdateManyWithoutContactNestedInput - - No -
- alerts - alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput - - No -
-
-
-
-

alertContactsCreateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
-
-
-
-

alertContactsUpdateManyMutationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

alertContactsUncheckedUpdateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

actionPlanCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesCreateNestedManyWithoutActionplanInput - - No -
- content - contentCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanUncheckedCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesUncheckedCreateNestedManyWithoutActionplanInput - - No -
- content - contentUncheckedCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsUncheckedCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUpdateManyWithoutActionplanNestedInput - - No -
- content - contentUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanUncheckedUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUncheckedUpdateManyWithoutActionplanNestedInput - - No -
- content - contentUncheckedUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUncheckedUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanCreateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
-
-
-
-

actionPlanUpdateManyMutationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

actionPlanUncheckedUpdateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

prioritiesCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int - - No -
- Contact - alertContactsCreateNestedOneWithoutPriosInput - - No -
- actionplan - actionPlanCreateNestedOneWithoutPrioInput - - No -
-
-
-
-

prioritiesUncheckedCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

prioritiesUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int | IntFieldUpdateOperationsInput - - No -
- Contact - alertContactsUpdateOneRequiredWithoutPriosNestedInput - - No -
- actionplan - actionPlanUpdateOneRequiredWithoutPrioNestedInput - - No -
-
-
-
-

prioritiesUncheckedUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- contactId - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
- actionplanId - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

prioritiesCreateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

prioritiesUpdateManyMutationInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

prioritiesUncheckedUpdateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- contactId - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
- actionplanId - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

contentCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
- actionplan - actionPlanCreateNestedManyWithoutContentInput - - No -
-
-
-
-

contentUncheckedCreateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
- actionplan - actionPlanUncheckedCreateNestedManyWithoutContentInput - - No -
-
-
-
-

contentUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
- actionplan - actionPlanUpdateManyWithoutContentNestedInput - - No -
-
-
-
-

contentUncheckedUpdateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
- actionplan - actionPlanUncheckedUpdateManyWithoutContentNestedInput - - No -
-
-
-
-

contentCreateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
-
-
-
-

contentUpdateManyMutationInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

contentUncheckedUpdateManyInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

IntFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput - - No -
- in - Int - - No -
- notIn - Int - - No -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntFilter - - No -
-
-
-
-

EnumalertTypeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertType | EnumalertTypeFieldRefInput - - No -
- in - alertType[] - - No -
- notIn - alertType[] - - No -
- not - alertType | NestedEnumalertTypeFilter - - No -
-
-
-
-

EnumalertStateFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertState | EnumalertStateFieldRefInput - - No -
- in - alertState[] - - No -
- notIn - alertState[] - - No -
- not - alertState | NestedEnumalertStateFilter - - No -
-
-
-
-

StringNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput | Null - - Yes -
- in - String | Null - - Yes -
- notIn - String | Null - - Yes -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringNullableFilter | Null - - Yes -
-
-
-
-

DateTimeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput - - No -
- in - DateTime - - No -
- notIn - DateTime - - No -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeFilter - - No -
-
-
-
-

IntNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput | Null - - Yes -
- in - Int | Null - - Yes -
- notIn - Int | Null - - Yes -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntNullableFilter | Null - - Yes -
-
-
-
-

DateTimeNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput | Null - - Yes -
- in - DateTime | Null - - Yes -
- notIn - DateTime | Null - - Yes -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeNullableFilter | Null - - Yes -
-
-
-
-

ActionPlanNullableScalarRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- is - actionPlanWhereInput | Null - - Yes -
- isNot - actionPlanWhereInput | Null - - Yes -
-
-
-
-

AlertContactsListRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- every - alertContactsWhereInput - - No -
- some - alertContactsWhereInput - - No -
- none - alertContactsWhereInput - - No -
-
-
-
-

SortOrderInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- sort - SortOrder - - No -
- nulls - NullsOrder - - No -
-
-
-
-

alertContactsOrderByRelationAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - SortOrder - - No -
-
-
-
-

alertsOrderByRelevanceInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- fields - alertsOrderByRelevanceFieldEnum | alertsOrderByRelevanceFieldEnum[] - - No -
- sort - SortOrder - - No -
- search - String - - No -
-
-
-
-

alertsCountOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- state - SortOrder - - No -
- description - SortOrder - - No -
- date - SortOrder - - No -
- actionplanId - SortOrder - - No -
- acknowledged_at - SortOrder - - No -
-
-
-
-

alertsAvgOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

alertsMaxOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- state - SortOrder - - No -
- description - SortOrder - - No -
- date - SortOrder - - No -
- actionplanId - SortOrder - - No -
- acknowledged_at - SortOrder - - No -
-
-
-
-

alertsMinOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- state - SortOrder - - No -
- description - SortOrder - - No -
- date - SortOrder - - No -
- actionplanId - SortOrder - - No -
- acknowledged_at - SortOrder - - No -
-
-
-
-

alertsSumOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

IntWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput - - No -
- in - Int - - No -
- notIn - Int - - No -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _avg - NestedFloatFilter - - No -
- _sum - NestedIntFilter - - No -
- _min - NestedIntFilter - - No -
- _max - NestedIntFilter - - No -
-
-
-
-

EnumalertTypeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertType | EnumalertTypeFieldRefInput - - No -
- in - alertType[] - - No -
- notIn - alertType[] - - No -
- not - alertType | NestedEnumalertTypeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumalertTypeFilter - - No -
- _max - NestedEnumalertTypeFilter - - No -
-
-
-
-

EnumalertStateWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertState | EnumalertStateFieldRefInput - - No -
- in - alertState[] - - No -
- notIn - alertState[] - - No -
- not - alertState | NestedEnumalertStateWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumalertStateFilter - - No -
- _max - NestedEnumalertStateFilter - - No -
-
-
-
-

StringNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput | Null - - Yes -
- in - String | Null - - Yes -
- notIn - String | Null - - Yes -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _min - NestedStringNullableFilter - - No -
- _max - NestedStringNullableFilter - - No -
-
-
-
-

DateTimeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput - - No -
- in - DateTime - - No -
- notIn - DateTime - - No -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedDateTimeFilter - - No -
- _max - NestedDateTimeFilter - - No -
-
-
-
-

IntNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput | Null - - Yes -
- in - Int | Null - - Yes -
- notIn - Int | Null - - Yes -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _avg - NestedFloatNullableFilter - - No -
- _sum - NestedIntNullableFilter - - No -
- _min - NestedIntNullableFilter - - No -
- _max - NestedIntNullableFilter - - No -
-
-
-
-

DateTimeNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput | Null - - Yes -
- in - DateTime | Null - - Yes -
- notIn - DateTime | Null - - Yes -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _min - NestedDateTimeNullableFilter - - No -
- _max - NestedDateTimeNullableFilter - - No -
-
-
-
-

StringFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput - - No -
- in - String - - No -
- notIn - String - - No -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringFilter - - No -
-
-
-
-

PrioritiesListRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- every - prioritiesWhereInput - - No -
- some - prioritiesWhereInput - - No -
- none - prioritiesWhereInput - - No -
-
-
-
-

AlertsListRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- every - alertsWhereInput - - No -
- some - alertsWhereInput - - No -
- none - alertsWhereInput - - No -
-
-
-
-

prioritiesOrderByRelationAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - SortOrder - - No -
-
-
-
-

alertsOrderByRelationAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - SortOrder - - No -
-
-
-
-

alertContactsOrderByRelevanceInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- fields - alertContactsOrderByRelevanceFieldEnum | alertContactsOrderByRelevanceFieldEnum[] - - No -
- sort - SortOrder - - No -
- search - String - - No -
-
-
-
-

alertContactsCountOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- phone - SortOrder - - No -
- comment - SortOrder - - No -
-
-
-
-

alertContactsAvgOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

alertContactsMaxOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- phone - SortOrder - - No -
- comment - SortOrder - - No -
-
-
-
-

alertContactsMinOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- phone - SortOrder - - No -
- comment - SortOrder - - No -
-
-
-
-

alertContactsSumOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

StringWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput - - No -
- in - String - - No -
- notIn - String - - No -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedStringFilter - - No -
- _max - NestedStringFilter - - No -
-
-
-
-

ContentListRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- every - contentWhereInput - - No -
- some - contentWhereInput - - No -
- none - contentWhereInput - - No -
-
-
-
-

contentOrderByRelationAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - SortOrder - - No -
-
-
-
-

actionPlanOrderByRelevanceInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- fields - actionPlanOrderByRelevanceFieldEnum | actionPlanOrderByRelevanceFieldEnum[] - - No -
- sort - SortOrder - - No -
- search - String - - No -
-
-
-
-

actionPlanCountOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- comment - SortOrder - - No -
- alerthook - SortOrder - - No -
-
-
-
-

actionPlanAvgOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

actionPlanMaxOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- comment - SortOrder - - No -
- alerthook - SortOrder - - No -
-
-
-
-

actionPlanMinOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- name - SortOrder - - No -
- comment - SortOrder - - No -
- alerthook - SortOrder - - No -
-
-
-
-

actionPlanSumOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

AlertContactsScalarRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- is - alertContactsWhereInput - - No -
- isNot - alertContactsWhereInput - - No -
-
-
-
-

ActionPlanScalarRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- is - actionPlanWhereInput - - No -
- isNot - actionPlanWhereInput - - No -
-
-
-
-

prioritiesPriorityActionplanIdCompoundUniqueInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

prioritiesCountOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

prioritiesAvgOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

prioritiesMaxOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

prioritiesMinOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

prioritiesSumOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- contactId - SortOrder - - No -
- priority - SortOrder - - No -
- actionplanId - SortOrder - - No -
-
-
-
-

EnumcontentTypeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - contentType | EnumcontentTypeFieldRefInput - - No -
- in - contentType[] - - No -
- notIn - contentType[] - - No -
- not - contentType | NestedEnumcontentTypeFilter - - No -
-
-
-
-

ActionPlanListRelationFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- every - actionPlanWhereInput - - No -
- some - actionPlanWhereInput - - No -
- none - actionPlanWhereInput - - No -
-
-
-
-

actionPlanOrderByRelationAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - SortOrder - - No -
-
-
-
-

contentOrderByRelevanceInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- fields - contentOrderByRelevanceFieldEnum | contentOrderByRelevanceFieldEnum[] - - No -
- sort - SortOrder - - No -
- search - String - - No -
-
-
-
-

contentCountOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- name - SortOrder - - No -
- filename - SortOrder - - No -
-
-
-
-

contentAvgOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

contentMaxOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- name - SortOrder - - No -
- filename - SortOrder - - No -
-
-
-
-

contentMinOrderByAggregateInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
- type - SortOrder - - No -
- name - SortOrder - - No -
- filename - SortOrder - - No -
-
-
-
-

contentSumOrderByAggregateInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - SortOrder - - No -
-
-
-
-

EnumcontentTypeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - contentType | EnumcontentTypeFieldRefInput - - No -
- in - contentType[] - - No -
- notIn - contentType[] - - No -
- not - contentType | NestedEnumcontentTypeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumcontentTypeFilter - - No -
- _max - NestedEnumcontentTypeFilter - - No -
-
-
-
-

actionPlanCreateNestedOneWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutAlertsInput - - No -
- connect - actionPlanWhereUniqueInput - - No -
-
-
-
-

alertContactsCreateNestedManyWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] - - No -
- connect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
-
-
-
-

alertContactsUncheckedCreateNestedManyWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] - - No -
- connect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
-
-
-
-

EnumalertTypeFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - alertType - - No -
-
-
-
-

EnumalertStateFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - alertState - - No -
-
-
-
-

NullableStringFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - String | Null - - Yes -
-
-
-
-

DateTimeFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - DateTime - - No -
-
-
-
-

NullableDateTimeFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - DateTime | Null - - Yes -
-
-
-
-

actionPlanUpdateOneWithoutAlertsNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutAlertsInput - - No -
- upsert - actionPlanUpsertWithoutAlertsInput - - No -
- disconnect - Boolean | actionPlanWhereInput - - No -
- delete - Boolean | actionPlanWhereInput - - No -
- connect - actionPlanWhereUniqueInput - - No -
- update - actionPlanUpdateToOneWithWhereWithoutAlertsInput | actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput - - No -
-
-
-
-

alertContactsUpdateManyWithoutAlertsNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] - - No -
- upsert - alertContactsUpsertWithWhereUniqueWithoutAlertsInput | alertContactsUpsertWithWhereUniqueWithoutAlertsInput[] - - No -
- set - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- disconnect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- delete - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- connect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- update - alertContactsUpdateWithWhereUniqueWithoutAlertsInput | alertContactsUpdateWithWhereUniqueWithoutAlertsInput[] - - No -
- updateMany - alertContactsUpdateManyWithWhereWithoutAlertsInput | alertContactsUpdateManyWithWhereWithoutAlertsInput[] - - No -
- deleteMany - alertContactsScalarWhereInput | alertContactsScalarWhereInput[] - - No -
-
-
-
-

IntFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - Int - - No -
- increment - Int - - No -
- decrement - Int - - No -
- multiply - Int - - No -
- divide - Int - - No -
-
-
-
-

NullableIntFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - Int | Null - - Yes -
- increment - Int - - No -
- decrement - Int - - No -
- multiply - Int - - No -
- divide - Int - - No -
-
-
-
-

alertContactsUncheckedUpdateManyWithoutAlertsNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutAlertsInput | alertContactsCreateWithoutAlertsInput[] | alertContactsUncheckedCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput[] - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutAlertsInput | alertContactsCreateOrConnectWithoutAlertsInput[] - - No -
- upsert - alertContactsUpsertWithWhereUniqueWithoutAlertsInput | alertContactsUpsertWithWhereUniqueWithoutAlertsInput[] - - No -
- set - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- disconnect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- delete - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- connect - alertContactsWhereUniqueInput | alertContactsWhereUniqueInput[] - - No -
- update - alertContactsUpdateWithWhereUniqueWithoutAlertsInput | alertContactsUpdateWithWhereUniqueWithoutAlertsInput[] - - No -
- updateMany - alertContactsUpdateManyWithWhereWithoutAlertsInput | alertContactsUpdateManyWithWhereWithoutAlertsInput[] - - No -
- deleteMany - alertContactsScalarWhereInput | alertContactsScalarWhereInput[] - - No -
-
-
-
-

prioritiesCreateNestedManyWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] - - No -
- createMany - prioritiesCreateManyContactInputEnvelope - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
-
-
-
-

alertsCreateNestedManyWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
-
-
-
-

prioritiesUncheckedCreateNestedManyWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] - - No -
- createMany - prioritiesCreateManyContactInputEnvelope - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
-
-
-
-

alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
-
-
-
-

StringFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - String - - No -
-
-
-
-

prioritiesUpdateManyWithoutContactNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] - - No -
- upsert - prioritiesUpsertWithWhereUniqueWithoutContactInput | prioritiesUpsertWithWhereUniqueWithoutContactInput[] - - No -
- createMany - prioritiesCreateManyContactInputEnvelope - - No -
- set - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- disconnect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- delete - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- update - prioritiesUpdateWithWhereUniqueWithoutContactInput | prioritiesUpdateWithWhereUniqueWithoutContactInput[] - - No -
- updateMany - prioritiesUpdateManyWithWhereWithoutContactInput | prioritiesUpdateManyWithWhereWithoutContactInput[] - - No -
- deleteMany - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
-
-
-
-

alertsUpdateManyWithoutAcknowledged_byNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] - - No -
- upsert - alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput | alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput[] - - No -
- set - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- disconnect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- delete - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- update - alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput | alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput[] - - No -
- updateMany - alertsUpdateManyWithWhereWithoutAcknowledged_byInput | alertsUpdateManyWithWhereWithoutAcknowledged_byInput[] - - No -
- deleteMany - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
-
-
-
-

prioritiesUncheckedUpdateManyWithoutContactNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutContactInput | prioritiesCreateWithoutContactInput[] | prioritiesUncheckedCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutContactInput | prioritiesCreateOrConnectWithoutContactInput[] - - No -
- upsert - prioritiesUpsertWithWhereUniqueWithoutContactInput | prioritiesUpsertWithWhereUniqueWithoutContactInput[] - - No -
- createMany - prioritiesCreateManyContactInputEnvelope - - No -
- set - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- disconnect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- delete - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- update - prioritiesUpdateWithWhereUniqueWithoutContactInput | prioritiesUpdateWithWhereUniqueWithoutContactInput[] - - No -
- updateMany - prioritiesUpdateManyWithWhereWithoutContactInput | prioritiesUpdateManyWithWhereWithoutContactInput[] - - No -
- deleteMany - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
-
-
-
-

alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutAcknowledged_byInput | alertsCreateWithoutAcknowledged_byInput[] | alertsUncheckedCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutAcknowledged_byInput | alertsCreateOrConnectWithoutAcknowledged_byInput[] - - No -
- upsert - alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput | alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput[] - - No -
- set - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- disconnect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- delete - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- update - alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput | alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput[] - - No -
- updateMany - alertsUpdateManyWithWhereWithoutAcknowledged_byInput | alertsUpdateManyWithWhereWithoutAcknowledged_byInput[] - - No -
- deleteMany - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
-
-
-
-

prioritiesCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] - - No -
- createMany - prioritiesCreateManyActionplanInputEnvelope - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
-
-
-
-

contentCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] - - No -
- connect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
-
-
-
-

alertsCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] - - No -
- createMany - alertsCreateManyActionplanInputEnvelope - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
-
-
-
-

prioritiesUncheckedCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] - - No -
- createMany - prioritiesCreateManyActionplanInputEnvelope - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
-
-
-
-

contentUncheckedCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] - - No -
- connect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
-
-
-
-

alertsUncheckedCreateNestedManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] - - No -
- createMany - alertsCreateManyActionplanInputEnvelope - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
-
-
-
-

prioritiesUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - prioritiesUpsertWithWhereUniqueWithoutActionplanInput | prioritiesUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- createMany - prioritiesCreateManyActionplanInputEnvelope - - No -
- set - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- disconnect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- delete - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- update - prioritiesUpdateWithWhereUniqueWithoutActionplanInput | prioritiesUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - prioritiesUpdateManyWithWhereWithoutActionplanInput | prioritiesUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
-
-
-
-

contentUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - contentUpsertWithWhereUniqueWithoutActionplanInput | contentUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- set - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- disconnect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- delete - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- connect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- update - contentUpdateWithWhereUniqueWithoutActionplanInput | contentUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - contentUpdateManyWithWhereWithoutActionplanInput | contentUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - contentScalarWhereInput | contentScalarWhereInput[] - - No -
-
-
-
-

alertsUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - alertsUpsertWithWhereUniqueWithoutActionplanInput | alertsUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- createMany - alertsCreateManyActionplanInputEnvelope - - No -
- set - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- disconnect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- delete - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- update - alertsUpdateWithWhereUniqueWithoutActionplanInput | alertsUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - alertsUpdateManyWithWhereWithoutActionplanInput | alertsUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
-
-
-
-

prioritiesUncheckedUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - prioritiesCreateWithoutActionplanInput | prioritiesCreateWithoutActionplanInput[] | prioritiesUncheckedCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - prioritiesCreateOrConnectWithoutActionplanInput | prioritiesCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - prioritiesUpsertWithWhereUniqueWithoutActionplanInput | prioritiesUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- createMany - prioritiesCreateManyActionplanInputEnvelope - - No -
- set - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- disconnect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- delete - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- connect - prioritiesWhereUniqueInput | prioritiesWhereUniqueInput[] - - No -
- update - prioritiesUpdateWithWhereUniqueWithoutActionplanInput | prioritiesUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - prioritiesUpdateManyWithWhereWithoutActionplanInput | prioritiesUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
-
-
-
-

contentUncheckedUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - contentCreateWithoutActionplanInput | contentCreateWithoutActionplanInput[] | contentUncheckedCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - contentCreateOrConnectWithoutActionplanInput | contentCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - contentUpsertWithWhereUniqueWithoutActionplanInput | contentUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- set - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- disconnect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- delete - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- connect - contentWhereUniqueInput | contentWhereUniqueInput[] - - No -
- update - contentUpdateWithWhereUniqueWithoutActionplanInput | contentUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - contentUpdateManyWithWhereWithoutActionplanInput | contentUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - contentScalarWhereInput | contentScalarWhereInput[] - - No -
-
-
-
-

alertsUncheckedUpdateManyWithoutActionplanNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertsCreateWithoutActionplanInput | alertsCreateWithoutActionplanInput[] | alertsUncheckedCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput[] - - No -
- connectOrCreate - alertsCreateOrConnectWithoutActionplanInput | alertsCreateOrConnectWithoutActionplanInput[] - - No -
- upsert - alertsUpsertWithWhereUniqueWithoutActionplanInput | alertsUpsertWithWhereUniqueWithoutActionplanInput[] - - No -
- createMany - alertsCreateManyActionplanInputEnvelope - - No -
- set - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- disconnect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- delete - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- connect - alertsWhereUniqueInput | alertsWhereUniqueInput[] - - No -
- update - alertsUpdateWithWhereUniqueWithoutActionplanInput | alertsUpdateWithWhereUniqueWithoutActionplanInput[] - - No -
- updateMany - alertsUpdateManyWithWhereWithoutActionplanInput | alertsUpdateManyWithWhereWithoutActionplanInput[] - - No -
- deleteMany - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
-
-
-
-

alertContactsCreateNestedOneWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutPriosInput - - No -
- connect - alertContactsWhereUniqueInput - - No -
-
-
-
-

actionPlanCreateNestedOneWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutPrioInput - - No -
- connect - actionPlanWhereUniqueInput - - No -
-
-
-
-

alertContactsUpdateOneRequiredWithoutPriosNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput - - No -
- connectOrCreate - alertContactsCreateOrConnectWithoutPriosInput - - No -
- upsert - alertContactsUpsertWithoutPriosInput - - No -
- connect - alertContactsWhereUniqueInput - - No -
- update - alertContactsUpdateToOneWithWhereWithoutPriosInput | alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput - - No -
-
-
-
-

actionPlanUpdateOneRequiredWithoutPrioNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutPrioInput - - No -
- upsert - actionPlanUpsertWithoutPrioInput - - No -
- connect - actionPlanWhereUniqueInput - - No -
- update - actionPlanUpdateToOneWithWhereWithoutPrioInput | actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput - - No -
-
-
-
-

actionPlanCreateNestedManyWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] - - No -
- connect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
-
-
-
-

actionPlanUncheckedCreateNestedManyWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] - - No -
- connect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
-
-
-
-

EnumcontentTypeFieldUpdateOperationsInput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- set - contentType - - No -
-
-
-
-

actionPlanUpdateManyWithoutContentNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] - - No -
- upsert - actionPlanUpsertWithWhereUniqueWithoutContentInput | actionPlanUpsertWithWhereUniqueWithoutContentInput[] - - No -
- set - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- disconnect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- delete - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- connect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- update - actionPlanUpdateWithWhereUniqueWithoutContentInput | actionPlanUpdateWithWhereUniqueWithoutContentInput[] - - No -
- updateMany - actionPlanUpdateManyWithWhereWithoutContentInput | actionPlanUpdateManyWithWhereWithoutContentInput[] - - No -
- deleteMany - actionPlanScalarWhereInput | actionPlanScalarWhereInput[] - - No -
-
-
-
-

actionPlanUncheckedUpdateManyWithoutContentNestedInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- create - actionPlanCreateWithoutContentInput | actionPlanCreateWithoutContentInput[] | actionPlanUncheckedCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput[] - - No -
- connectOrCreate - actionPlanCreateOrConnectWithoutContentInput | actionPlanCreateOrConnectWithoutContentInput[] - - No -
- upsert - actionPlanUpsertWithWhereUniqueWithoutContentInput | actionPlanUpsertWithWhereUniqueWithoutContentInput[] - - No -
- set - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- disconnect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- delete - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- connect - actionPlanWhereUniqueInput | actionPlanWhereUniqueInput[] - - No -
- update - actionPlanUpdateWithWhereUniqueWithoutContentInput | actionPlanUpdateWithWhereUniqueWithoutContentInput[] - - No -
- updateMany - actionPlanUpdateManyWithWhereWithoutContentInput | actionPlanUpdateManyWithWhereWithoutContentInput[] - - No -
- deleteMany - actionPlanScalarWhereInput | actionPlanScalarWhereInput[] - - No -
-
-
-
-

NestedIntFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput - - No -
- in - Int - - No -
- notIn - Int - - No -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntFilter - - No -
-
-
-
-

NestedEnumalertTypeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertType | EnumalertTypeFieldRefInput - - No -
- in - alertType[] - - No -
- notIn - alertType[] - - No -
- not - alertType | NestedEnumalertTypeFilter - - No -
-
-
-
-

NestedEnumalertStateFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertState | EnumalertStateFieldRefInput - - No -
- in - alertState[] - - No -
- notIn - alertState[] - - No -
- not - alertState | NestedEnumalertStateFilter - - No -
-
-
-
-

NestedStringNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput | Null - - Yes -
- in - String | Null - - Yes -
- notIn - String | Null - - Yes -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringNullableFilter | Null - - Yes -
-
-
-
-

NestedDateTimeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput - - No -
- in - DateTime - - No -
- notIn - DateTime - - No -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeFilter - - No -
-
-
-
-

NestedIntNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput | Null - - Yes -
- in - Int | Null - - Yes -
- notIn - Int | Null - - Yes -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntNullableFilter | Null - - Yes -
-
-
-
-

NestedDateTimeNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput | Null - - Yes -
- in - DateTime | Null - - Yes -
- notIn - DateTime | Null - - Yes -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeNullableFilter | Null - - Yes -
-
-
-
-

NestedIntWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput - - No -
- in - Int - - No -
- notIn - Int - - No -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _avg - NestedFloatFilter - - No -
- _sum - NestedIntFilter - - No -
- _min - NestedIntFilter - - No -
- _max - NestedIntFilter - - No -
-
-
-
-

NestedFloatFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Float | FloatFieldRefInput - - No -
- in - Float - - No -
- notIn - Float - - No -
- lt - Float | FloatFieldRefInput - - No -
- lte - Float | FloatFieldRefInput - - No -
- gt - Float | FloatFieldRefInput - - No -
- gte - Float | FloatFieldRefInput - - No -
- not - Float | NestedFloatFilter - - No -
-
-
-
-

NestedEnumalertTypeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertType | EnumalertTypeFieldRefInput - - No -
- in - alertType[] - - No -
- notIn - alertType[] - - No -
- not - alertType | NestedEnumalertTypeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumalertTypeFilter - - No -
- _max - NestedEnumalertTypeFilter - - No -
-
-
-
-

NestedEnumalertStateWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - alertState | EnumalertStateFieldRefInput - - No -
- in - alertState[] - - No -
- notIn - alertState[] - - No -
- not - alertState | NestedEnumalertStateWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumalertStateFilter - - No -
- _max - NestedEnumalertStateFilter - - No -
-
-
-
-

NestedStringNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput | Null - - Yes -
- in - String | Null - - Yes -
- notIn - String | Null - - Yes -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _min - NestedStringNullableFilter - - No -
- _max - NestedStringNullableFilter - - No -
-
-
-
-

NestedDateTimeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput - - No -
- in - DateTime - - No -
- notIn - DateTime - - No -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedDateTimeFilter - - No -
- _max - NestedDateTimeFilter - - No -
-
-
-
-

NestedIntNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Int | IntFieldRefInput | Null - - Yes -
- in - Int | Null - - Yes -
- notIn - Int | Null - - Yes -
- lt - Int | IntFieldRefInput - - No -
- lte - Int | IntFieldRefInput - - No -
- gt - Int | IntFieldRefInput - - No -
- gte - Int | IntFieldRefInput - - No -
- not - Int | NestedIntNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _avg - NestedFloatNullableFilter - - No -
- _sum - NestedIntNullableFilter - - No -
- _min - NestedIntNullableFilter - - No -
- _max - NestedIntNullableFilter - - No -
-
-
-
-

NestedFloatNullableFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - Float | FloatFieldRefInput | Null - - Yes -
- in - Float | Null - - Yes -
- notIn - Float | Null - - Yes -
- lt - Float | FloatFieldRefInput - - No -
- lte - Float | FloatFieldRefInput - - No -
- gt - Float | FloatFieldRefInput - - No -
- gte - Float | FloatFieldRefInput - - No -
- not - Float | NestedFloatNullableFilter | Null - - Yes -
-
-
-
-

NestedDateTimeNullableWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - DateTime | DateTimeFieldRefInput | Null - - Yes -
- in - DateTime | Null - - Yes -
- notIn - DateTime | Null - - Yes -
- lt - DateTime | DateTimeFieldRefInput - - No -
- lte - DateTime | DateTimeFieldRefInput - - No -
- gt - DateTime | DateTimeFieldRefInput - - No -
- gte - DateTime | DateTimeFieldRefInput - - No -
- not - DateTime | NestedDateTimeNullableWithAggregatesFilter | Null - - Yes -
- _count - NestedIntNullableFilter - - No -
- _min - NestedDateTimeNullableFilter - - No -
- _max - NestedDateTimeNullableFilter - - No -
-
-
-
-

NestedStringFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput - - No -
- in - String - - No -
- notIn - String - - No -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringFilter - - No -
-
-
-
-

NestedStringWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - String | StringFieldRefInput - - No -
- in - String - - No -
- notIn - String - - No -
- lt - String | StringFieldRefInput - - No -
- lte - String | StringFieldRefInput - - No -
- gt - String | StringFieldRefInput - - No -
- gte - String | StringFieldRefInput - - No -
- contains - String | StringFieldRefInput - - No -
- startsWith - String | StringFieldRefInput - - No -
- endsWith - String | StringFieldRefInput - - No -
- search - String - - No -
- not - String | NestedStringWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedStringFilter - - No -
- _max - NestedStringFilter - - No -
-
-
-
-

NestedEnumcontentTypeFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - contentType | EnumcontentTypeFieldRefInput - - No -
- in - contentType[] - - No -
- notIn - contentType[] - - No -
- not - contentType | NestedEnumcontentTypeFilter - - No -
-
-
-
-

NestedEnumcontentTypeWithAggregatesFilter

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- equals - contentType | EnumcontentTypeFieldRefInput - - No -
- in - contentType[] - - No -
- notIn - contentType[] - - No -
- not - contentType | NestedEnumcontentTypeWithAggregatesFilter - - No -
- _count - NestedIntFilter - - No -
- _min - NestedEnumcontentTypeFilter - - No -
- _max - NestedEnumcontentTypeFilter - - No -
-
-
-
-

actionPlanCreateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesCreateNestedManyWithoutActionplanInput - - No -
- content - contentCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanUncheckedCreateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesUncheckedCreateNestedManyWithoutActionplanInput - - No -
- content - contentUncheckedCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanCreateOrConnectWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereUniqueInput - - No -
- create - actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput - - No -
-
-
-
-

alertContactsCreateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- prios - prioritiesCreateNestedManyWithoutContactInput - - No -
-
-
-
-

alertContactsUncheckedCreateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- prios - prioritiesUncheckedCreateNestedManyWithoutContactInput - - No -
-
-
-
-

alertContactsCreateOrConnectWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsWhereUniqueInput - - No -
- create - alertContactsCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput - - No -
-
-
-
-

actionPlanUpsertWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- update - actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput - - No -
- create - actionPlanCreateWithoutAlertsInput | actionPlanUncheckedCreateWithoutAlertsInput - - No -
- where - actionPlanWhereInput - - No -
-
-
-
-

actionPlanUpdateToOneWithWhereWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereInput - - No -
- data - actionPlanUpdateWithoutAlertsInput | actionPlanUncheckedUpdateWithoutAlertsInput - - No -
-
-
-
-

actionPlanUpdateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUpdateManyWithoutActionplanNestedInput - - No -
- content - contentUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanUncheckedUpdateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUncheckedUpdateManyWithoutActionplanNestedInput - - No -
- content - contentUncheckedUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

alertContactsUpsertWithWhereUniqueWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsWhereUniqueInput - - No -
- update - alertContactsUpdateWithoutAlertsInput | alertContactsUncheckedUpdateWithoutAlertsInput - - No -
- create - alertContactsCreateWithoutAlertsInput | alertContactsUncheckedCreateWithoutAlertsInput - - No -
-
-
-
-

alertContactsUpdateWithWhereUniqueWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsWhereUniqueInput - - No -
- data - alertContactsUpdateWithoutAlertsInput | alertContactsUncheckedUpdateWithoutAlertsInput - - No -
-
-
-
-

alertContactsUpdateManyWithWhereWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsScalarWhereInput - - No -
- data - alertContactsUpdateManyMutationInput | alertContactsUncheckedUpdateManyWithoutAlertsInput - - No -
-
-
-
-

alertContactsScalarWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertContactsScalarWhereInput | alertContactsScalarWhereInput[] - - No -
- OR - alertContactsScalarWhereInput[] - - No -
- NOT - alertContactsScalarWhereInput | alertContactsScalarWhereInput[] - - No -
- id - IntFilter | Int - - No -
- name - StringFilter | String - - No -
- phone - StringFilter | String - - No -
- comment - StringNullableFilter | String | Null - - Yes -
-
-
-
-

prioritiesCreateWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int - - No -
- actionplan - actionPlanCreateNestedOneWithoutPrioInput - - No -
-
-
-
-

prioritiesUncheckedCreateWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

prioritiesCreateOrConnectWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- create - prioritiesCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput - - No -
-
-
-
-

prioritiesCreateManyContactInputEnvelope

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- data - prioritiesCreateManyContactInput | prioritiesCreateManyContactInput[] - - No -
- skipDuplicates - Boolean - - No -
-
-
-
-

alertsCreateWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- acknowledged_at - DateTime | Null - - Yes -
- actionplan - actionPlanCreateNestedOneWithoutAlertsInput - - No -
-
-
-
-

alertsUncheckedCreateWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- actionplanId - Int | Null - - Yes -
- acknowledged_at - DateTime | Null - - Yes -
-
-
-
-

alertsCreateOrConnectWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- create - alertsCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput - - No -
-
-
-
-

prioritiesUpsertWithWhereUniqueWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- update - prioritiesUpdateWithoutContactInput | prioritiesUncheckedUpdateWithoutContactInput - - No -
- create - prioritiesCreateWithoutContactInput | prioritiesUncheckedCreateWithoutContactInput - - No -
-
-
-
-

prioritiesUpdateWithWhereUniqueWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- data - prioritiesUpdateWithoutContactInput | prioritiesUncheckedUpdateWithoutContactInput - - No -
-
-
-
-

prioritiesUpdateManyWithWhereWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesScalarWhereInput - - No -
- data - prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutContactInput - - No -
-
-
-
-

prioritiesScalarWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
- OR - prioritiesScalarWhereInput[] - - No -
- NOT - prioritiesScalarWhereInput | prioritiesScalarWhereInput[] - - No -
- id - IntFilter | Int - - No -
- contactId - IntFilter | Int - - No -
- priority - IntFilter | Int - - No -
- actionplanId - IntFilter | Int - - No -
-
-
-
-

alertsUpsertWithWhereUniqueWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- update - alertsUpdateWithoutAcknowledged_byInput | alertsUncheckedUpdateWithoutAcknowledged_byInput - - No -
- create - alertsCreateWithoutAcknowledged_byInput | alertsUncheckedCreateWithoutAcknowledged_byInput - - No -
-
-
-
-

alertsUpdateWithWhereUniqueWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- data - alertsUpdateWithoutAcknowledged_byInput | alertsUncheckedUpdateWithoutAcknowledged_byInput - - No -
-
-
-
-

alertsUpdateManyWithWhereWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsScalarWhereInput - - No -
- data - alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutAcknowledged_byInput - - No -
-
-
-
-

alertsScalarWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
- OR - alertsScalarWhereInput[] - - No -
- NOT - alertsScalarWhereInput | alertsScalarWhereInput[] - - No -
- id - IntFilter | Int - - No -
- type - EnumalertTypeFilter | alertType - - No -
- state - EnumalertStateFilter | alertState - - No -
- description - StringNullableFilter | String | Null - - Yes -
- date - DateTimeFilter | DateTime - - No -
- actionplanId - IntNullableFilter | Int | Null - - Yes -
- acknowledged_at - DateTimeNullableFilter | DateTime | Null - - Yes -
-
-
-
-

prioritiesCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int - - No -
- Contact - alertContactsCreateNestedOneWithoutPriosInput - - No -
-
-
-
-

prioritiesUncheckedCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
-
-
-
-

prioritiesCreateOrConnectWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- create - prioritiesCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

prioritiesCreateManyActionplanInputEnvelope

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- data - prioritiesCreateManyActionplanInput | prioritiesCreateManyActionplanInput[] - - No -
- skipDuplicates - Boolean - - No -
-
-
-
-

contentCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
-
-
-
-

contentUncheckedCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
-
-
-
-

contentCreateOrConnectWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - contentWhereUniqueInput - - No -
- create - contentCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

alertsCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- acknowledged_at - DateTime | Null - - Yes -
- acknowledged_by - alertContactsCreateNestedManyWithoutAlertsInput - - No -
-
-
-
-

alertsUncheckedCreateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- acknowledged_at - DateTime | Null - - Yes -
- acknowledged_by - alertContactsUncheckedCreateNestedManyWithoutAlertsInput - - No -
-
-
-
-

alertsCreateOrConnectWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- create - alertsCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

alertsCreateManyActionplanInputEnvelope

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- data - alertsCreateManyActionplanInput | alertsCreateManyActionplanInput[] - - No -
- skipDuplicates - Boolean - - No -
-
-
-
-

prioritiesUpsertWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- update - prioritiesUpdateWithoutActionplanInput | prioritiesUncheckedUpdateWithoutActionplanInput - - No -
- create - prioritiesCreateWithoutActionplanInput | prioritiesUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

prioritiesUpdateWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesWhereUniqueInput - - No -
- data - prioritiesUpdateWithoutActionplanInput | prioritiesUncheckedUpdateWithoutActionplanInput - - No -
-
-
-
-

prioritiesUpdateManyWithWhereWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - prioritiesScalarWhereInput - - No -
- data - prioritiesUpdateManyMutationInput | prioritiesUncheckedUpdateManyWithoutActionplanInput - - No -
-
-
-
-

contentUpsertWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - contentWhereUniqueInput - - No -
- update - contentUpdateWithoutActionplanInput | contentUncheckedUpdateWithoutActionplanInput - - No -
- create - contentCreateWithoutActionplanInput | contentUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

contentUpdateWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - contentWhereUniqueInput - - No -
- data - contentUpdateWithoutActionplanInput | contentUncheckedUpdateWithoutActionplanInput - - No -
-
-
-
-

contentUpdateManyWithWhereWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - contentScalarWhereInput - - No -
- data - contentUpdateManyMutationInput | contentUncheckedUpdateManyWithoutActionplanInput - - No -
-
-
-
-

contentScalarWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - contentScalarWhereInput | contentScalarWhereInput[] - - No -
- OR - contentScalarWhereInput[] - - No -
- NOT - contentScalarWhereInput | contentScalarWhereInput[] - - No -
- id - IntFilter | Int - - No -
- type - EnumcontentTypeFilter | contentType - - No -
- name - StringFilter | String - - No -
- filename - StringFilter | String - - No -
-
-
-
-

alertsUpsertWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- update - alertsUpdateWithoutActionplanInput | alertsUncheckedUpdateWithoutActionplanInput - - No -
- create - alertsCreateWithoutActionplanInput | alertsUncheckedCreateWithoutActionplanInput - - No -
-
-
-
-

alertsUpdateWithWhereUniqueWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsWhereUniqueInput - - No -
- data - alertsUpdateWithoutActionplanInput | alertsUncheckedUpdateWithoutActionplanInput - - No -
-
-
-
-

alertsUpdateManyWithWhereWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertsScalarWhereInput - - No -
- data - alertsUpdateManyMutationInput | alertsUncheckedUpdateManyWithoutActionplanInput - - No -
-
-
-
-

alertContactsCreateWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- alerts - alertsCreateNestedManyWithoutAcknowledged_byInput - - No -
-
-
-
-

alertContactsUncheckedCreateWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String | Null - - Yes -
- alerts - alertsUncheckedCreateNestedManyWithoutAcknowledged_byInput - - No -
-
-
-
-

alertContactsCreateOrConnectWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsWhereUniqueInput - - No -
- create - alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput - - No -
-
-
-
-

actionPlanCreateWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- content - contentCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanUncheckedCreateWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- content - contentUncheckedCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsUncheckedCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanCreateOrConnectWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereUniqueInput - - No -
- create - actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput - - No -
-
-
-
-

alertContactsUpsertWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- update - alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput - - No -
- create - alertContactsCreateWithoutPriosInput | alertContactsUncheckedCreateWithoutPriosInput - - No -
- where - alertContactsWhereInput - - No -
-
-
-
-

alertContactsUpdateToOneWithWhereWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - alertContactsWhereInput - - No -
- data - alertContactsUpdateWithoutPriosInput | alertContactsUncheckedUpdateWithoutPriosInput - - No -
-
-
-
-

alertContactsUpdateWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerts - alertsUpdateManyWithoutAcknowledged_byNestedInput - - No -
-
-
-
-

alertContactsUncheckedUpdateWithoutPriosInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerts - alertsUncheckedUpdateManyWithoutAcknowledged_byNestedInput - - No -
-
-
-
-

actionPlanUpsertWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- update - actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput - - No -
- create - actionPlanCreateWithoutPrioInput | actionPlanUncheckedCreateWithoutPrioInput - - No -
- where - actionPlanWhereInput - - No -
-
-
-
-

actionPlanUpdateToOneWithWhereWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereInput - - No -
- data - actionPlanUpdateWithoutPrioInput | actionPlanUncheckedUpdateWithoutPrioInput - - No -
-
-
-
-

actionPlanUpdateWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- content - contentUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanUncheckedUpdateWithoutPrioInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- content - contentUncheckedUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUncheckedUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanCreateWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanUncheckedCreateWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String | Null - - Yes -
- alerthook - String - - No -
- prio - prioritiesUncheckedCreateNestedManyWithoutActionplanInput - - No -
- alerts - alertsUncheckedCreateNestedManyWithoutActionplanInput - - No -
-
-
-
-

actionPlanCreateOrConnectWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereUniqueInput - - No -
- create - actionPlanCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput - - No -
-
-
-
-

actionPlanUpsertWithWhereUniqueWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereUniqueInput - - No -
- update - actionPlanUpdateWithoutContentInput | actionPlanUncheckedUpdateWithoutContentInput - - No -
- create - actionPlanCreateWithoutContentInput | actionPlanUncheckedCreateWithoutContentInput - - No -
-
-
-
-

actionPlanUpdateWithWhereUniqueWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanWhereUniqueInput - - No -
- data - actionPlanUpdateWithoutContentInput | actionPlanUncheckedUpdateWithoutContentInput - - No -
-
-
-
-

actionPlanUpdateManyWithWhereWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- where - actionPlanScalarWhereInput - - No -
- data - actionPlanUpdateManyMutationInput | actionPlanUncheckedUpdateManyWithoutContentInput - - No -
-
-
-
-

actionPlanScalarWhereInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- AND - actionPlanScalarWhereInput | actionPlanScalarWhereInput[] - - No -
- OR - actionPlanScalarWhereInput[] - - No -
- NOT - actionPlanScalarWhereInput | actionPlanScalarWhereInput[] - - No -
- id - IntFilter | Int - - No -
- name - StringFilter | String - - No -
- comment - StringNullableFilter | String | Null - - Yes -
- alerthook - StringFilter | String - - No -
-
-
-
-

alertContactsUpdateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- prios - prioritiesUpdateManyWithoutContactNestedInput - - No -
-
-
-
-

alertContactsUncheckedUpdateWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- prios - prioritiesUncheckedUpdateManyWithoutContactNestedInput - - No -
-
-
-
-

alertContactsUncheckedUpdateManyWithoutAlertsInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- phone - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

prioritiesCreateManyContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

prioritiesUpdateWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int | IntFieldUpdateOperationsInput - - No -
- actionplan - actionPlanUpdateOneRequiredWithoutPrioNestedInput - - No -
-
-
-
-

prioritiesUncheckedUpdateWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
- actionplanId - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

prioritiesUncheckedUpdateManyWithoutContactInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
- actionplanId - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

alertsUpdateWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
- actionplan - actionPlanUpdateOneWithoutAlertsNestedInput - - No -
-
-
-
-

alertsUncheckedUpdateWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- actionplanId - Int | NullableIntFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

alertsUncheckedUpdateManyWithoutAcknowledged_byInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- actionplanId - Int | NullableIntFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

prioritiesCreateManyActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
-
-
-
-

alertsCreateManyActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String | Null - - Yes -
- date - DateTime - - No -
- acknowledged_at - DateTime | Null - - Yes -
-
-
-
-

prioritiesUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- priority - Int | IntFieldUpdateOperationsInput - - No -
- Contact - alertContactsUpdateOneRequiredWithoutPriosNestedInput - - No -
-
-
-
-

prioritiesUncheckedUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- contactId - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

prioritiesUncheckedUpdateManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- contactId - Int | IntFieldUpdateOperationsInput - - No -
- priority - Int | IntFieldUpdateOperationsInput - - No -
-
-
-
-

contentUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

contentUncheckedUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

contentUncheckedUpdateManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - contentType | EnumcontentTypeFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- filename - String | StringFieldUpdateOperationsInput - - No -
-
-
-
-

alertsUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_by - alertContactsUpdateManyWithoutAlertsNestedInput - - No -
-
-
-
-

alertsUncheckedUpdateWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
- acknowledged_by - alertContactsUncheckedUpdateManyWithoutAlertsNestedInput - - No -
-
-
-
-

alertsUncheckedUpdateManyWithoutActionplanInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- type - alertType | EnumalertTypeFieldUpdateOperationsInput - - No -
- state - alertState | EnumalertStateFieldUpdateOperationsInput - - No -
- description - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- date - DateTime | DateTimeFieldUpdateOperationsInput - - No -
- acknowledged_at - DateTime | NullableDateTimeFieldUpdateOperationsInput | Null - - Yes -
-
-
-
-

actionPlanUpdateWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanUncheckedUpdateWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
- prio - prioritiesUncheckedUpdateManyWithoutActionplanNestedInput - - No -
- alerts - alertsUncheckedUpdateManyWithoutActionplanNestedInput - - No -
-
-
-
-

actionPlanUncheckedUpdateManyWithoutContentInput

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int | IntFieldUpdateOperationsInput - - No -
- name - String | StringFieldUpdateOperationsInput - - No -
- comment - String | NullableStringFieldUpdateOperationsInput | Null - - Yes -
- alerthook - String | StringFieldUpdateOperationsInput - - No -
-
- -
-
-
-

Output Types

-
- -
-

alerts

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - alertType - - Yes -
- state - alertState - - Yes -
- description - String - - No -
- date - DateTime - - Yes -
- actionplanId - Int - - No -
- acknowledged_at - DateTime - - No -
- actionplan - actionPlan - - No -
- acknowledged_by - alertContacts[] - - No -
- _count - AlertsCountOutputType - - Yes -
-
-
-
-

alertContacts

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - String - - Yes -
- phone - String - - Yes -
- comment - String - - No -
- prios - priorities[] - - No -
- alerts - alerts[] - - No -
- _count - AlertContactsCountOutputType - - Yes -
-
-
-
-

actionPlan

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - String - - Yes -
- comment - String - - No -
- alerthook - String - - Yes -
- prio - priorities[] - - No -
- content - content[] - - No -
- alerts - alerts[] - - No -
- _count - ActionPlanCountOutputType - - Yes -
-
-
-
-

priorities

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- contactId - Int - - Yes -
- priority - Int - - Yes -
- actionplanId - Int - - Yes -
- Contact - alertContacts - - Yes -
- actionplan - actionPlan - - Yes -
-
-
-
-

content

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - contentType - - Yes -
- name - String - - Yes -
- filename - String - - Yes -
- actionplan - actionPlan[] - - No -
- _count - ContentCountOutputType - - Yes -
-
-
-
-

AggregateAlerts

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - AlertsCountAggregateOutputType - - No -
- _avg - AlertsAvgAggregateOutputType - - No -
- _sum - AlertsSumAggregateOutputType - - No -
- _min - AlertsMinAggregateOutputType - - No -
- _max - AlertsMaxAggregateOutputType - - No -
-
-
-
-

AlertsGroupByOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - alertType - - Yes -
- state - alertState - - Yes -
- description - String - - No -
- date - DateTime - - Yes -
- actionplanId - Int - - No -
- acknowledged_at - DateTime - - No -
- _count - AlertsCountAggregateOutputType - - No -
- _avg - AlertsAvgAggregateOutputType - - No -
- _sum - AlertsSumAggregateOutputType - - No -
- _min - AlertsMinAggregateOutputType - - No -
- _max - AlertsMaxAggregateOutputType - - No -
-
-
-
-

AggregateAlertContacts

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - AlertContactsCountAggregateOutputType - - No -
- _avg - AlertContactsAvgAggregateOutputType - - No -
- _sum - AlertContactsSumAggregateOutputType - - No -
- _min - AlertContactsMinAggregateOutputType - - No -
- _max - AlertContactsMaxAggregateOutputType - - No -
-
-
-
-

AlertContactsGroupByOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - String - - Yes -
- phone - String - - Yes -
- comment - String - - No -
- _count - AlertContactsCountAggregateOutputType - - No -
- _avg - AlertContactsAvgAggregateOutputType - - No -
- _sum - AlertContactsSumAggregateOutputType - - No -
- _min - AlertContactsMinAggregateOutputType - - No -
- _max - AlertContactsMaxAggregateOutputType - - No -
-
-
-
-

AggregateActionPlan

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - ActionPlanCountAggregateOutputType - - No -
- _avg - ActionPlanAvgAggregateOutputType - - No -
- _sum - ActionPlanSumAggregateOutputType - - No -
- _min - ActionPlanMinAggregateOutputType - - No -
- _max - ActionPlanMaxAggregateOutputType - - No -
-
-
-
-

ActionPlanGroupByOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - String - - Yes -
- comment - String - - No -
- alerthook - String - - Yes -
- _count - ActionPlanCountAggregateOutputType - - No -
- _avg - ActionPlanAvgAggregateOutputType - - No -
- _sum - ActionPlanSumAggregateOutputType - - No -
- _min - ActionPlanMinAggregateOutputType - - No -
- _max - ActionPlanMaxAggregateOutputType - - No -
-
-
-
-

AggregatePriorities

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - PrioritiesCountAggregateOutputType - - No -
- _avg - PrioritiesAvgAggregateOutputType - - No -
- _sum - PrioritiesSumAggregateOutputType - - No -
- _min - PrioritiesMinAggregateOutputType - - No -
- _max - PrioritiesMaxAggregateOutputType - - No -
-
-
-
-

PrioritiesGroupByOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- contactId - Int - - Yes -
- priority - Int - - Yes -
- actionplanId - Int - - Yes -
- _count - PrioritiesCountAggregateOutputType - - No -
- _avg - PrioritiesAvgAggregateOutputType - - No -
- _sum - PrioritiesSumAggregateOutputType - - No -
- _min - PrioritiesMinAggregateOutputType - - No -
- _max - PrioritiesMaxAggregateOutputType - - No -
-
-
-
-

AggregateContent

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- _count - ContentCountAggregateOutputType - - No -
- _avg - ContentAvgAggregateOutputType - - No -
- _sum - ContentSumAggregateOutputType - - No -
- _min - ContentMinAggregateOutputType - - No -
- _max - ContentMaxAggregateOutputType - - No -
-
-
-
-

ContentGroupByOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - contentType - - Yes -
- name - String - - Yes -
- filename - String - - Yes -
- _count - ContentCountAggregateOutputType - - No -
- _avg - ContentAvgAggregateOutputType - - No -
- _sum - ContentSumAggregateOutputType - - No -
- _min - ContentMinAggregateOutputType - - No -
- _max - ContentMaxAggregateOutputType - - No -
-
-
-
-

AffectedRowsOutput

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- count - Int - - Yes -
-
-
-
-

AlertsCountOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- acknowledged_by - Int - - Yes -
-
-
-
-

AlertsCountAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - Int - - Yes -
- state - Int - - Yes -
- description - Int - - Yes -
- date - Int - - Yes -
- actionplanId - Int - - Yes -
- acknowledged_at - Int - - Yes -
- _all - Int - - Yes -
-
-
-
-

AlertsAvgAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Float - - No -
- actionplanId - Float - - No -
-
-
-
-

AlertsSumAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

AlertsMinAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String - - No -
- date - DateTime - - No -
- actionplanId - Int - - No -
- acknowledged_at - DateTime - - No -
-
-
-
-

AlertsMaxAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - alertType - - No -
- state - alertState - - No -
- description - String - - No -
- date - DateTime - - No -
- actionplanId - Int - - No -
- acknowledged_at - DateTime - - No -
-
-
-
-

AlertContactsCountOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- prios - Int - - Yes -
- alerts - Int - - Yes -
-
-
-
-

AlertContactsCountAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - Int - - Yes -
- phone - Int - - Yes -
- comment - Int - - Yes -
- _all - Int - - Yes -
-
-
-
-

AlertContactsAvgAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Float - - No -
-
-
-
-

AlertContactsSumAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
-
-
-
-

AlertContactsMinAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String - - No -
-
-
-
-

AlertContactsMaxAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- phone - String - - No -
- comment - String - - No -
-
-
-
-

ActionPlanCountOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- prio - Int - - Yes -
- content - Int - - Yes -
- alerts - Int - - Yes -
-
-
-
-

ActionPlanCountAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- name - Int - - Yes -
- comment - Int - - Yes -
- alerthook - Int - - Yes -
- _all - Int - - Yes -
-
-
-
-

ActionPlanAvgAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Float - - No -
-
-
-
-

ActionPlanSumAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
-
-
-
-

ActionPlanMinAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String - - No -
- alerthook - String - - No -
-
-
-
-

ActionPlanMaxAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- name - String - - No -
- comment - String - - No -
- alerthook - String - - No -
-
-
-
-

PrioritiesCountAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- contactId - Int - - Yes -
- priority - Int - - Yes -
- actionplanId - Int - - Yes -
- _all - Int - - Yes -
-
-
-
-

PrioritiesAvgAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Float - - No -
- contactId - Float - - No -
- priority - Float - - No -
- actionplanId - Float - - No -
-
-
-
-

PrioritiesSumAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

PrioritiesMinAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

PrioritiesMaxAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- contactId - Int - - No -
- priority - Int - - No -
- actionplanId - Int - - No -
-
-
-
-

ContentCountOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- actionplan - Int - - Yes -
-
-
-
-

ContentCountAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - Yes -
- type - Int - - Yes -
- name - Int - - Yes -
- filename - Int - - Yes -
- _all - Int - - Yes -
-
-
-
-

ContentAvgAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Float - - No -
-
-
-
-

ContentSumAggregateOutputType

- - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
-
-
-
-

ContentMinAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
-
-
-
-

ContentMaxAggregateOutputType

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeNullable
- id - Int - - No -
- type - contentType - - No -
- name - String - - No -
- filename - String - - No -
-
- -
-
-
-
- -
-
-
-
- - diff --git a/docs/schema.dbml b/docs/schema.dbml deleted file mode 100644 index 721abfa..0000000 --- a/docs/schema.dbml +++ /dev/null @@ -1,98 +0,0 @@ -//// ------------------------------------------------------ -//// THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) -//// ------------------------------------------------------ - -Project "ATAS" { - database_type: '' - Note: '' -} - -Table alerts { - id Int [pk, increment] - type alertType [not null] - state alertState [not null] - description String - date DateTime [not null] - actionplan actionPlan - actionplanId Int - acknowledged_by alertContacts [not null] - acknowledged_at DateTime -} - -Table alertContacts { - id Int [pk, increment] - name String [not null] - phone String [unique, not null] - comment String - prios priorities [not null] - alerts alerts [not null] -} - -Table actionPlan { - id Int [pk, increment] - name String [unique, not null] - comment String - alerthook String [unique, not null] - prio priorities [not null] - content content [not null] - alerts alerts [not null] -} - -Table priorities { - id Int [pk, increment] - Contact alertContacts [not null] - contactId Int [not null] - priority Int [not null] - actionplan actionPlan [not null] - actionplanId Int [not null] - - indexes { - (priority, actionplanId) [unique] - } -} - -Table content { - id Int [pk, increment] - type contentType [not null] - name String [not null] - filename String [not null] - actionplan actionPlan [not null] -} - -Table alertContactsToalerts { - acknowledged_byId Int [ref: > alertContacts.id] - alertsId Int [ref: > alerts.id] -} - -Table actionPlanTocontent { - contentId Int [ref: > content.id] - actionplanId Int [ref: > actionPlan.id] -} - -Enum contentType { - voice_alarm - voice_explainer - voice_acknowledgement - voice_ending -} - -Enum alertType { - generic - fire - fault - intrusion - clear -} - -Enum alertState { - incoming - running - failed - acknowledged -} - -Ref: alerts.actionplanId > actionPlan.id - -Ref: priorities.contactId > alertContacts.id - -Ref: priorities.actionplanId > actionPlan.id \ No newline at end of file diff --git a/docs/styles/main.css b/docs/styles/main.css deleted file mode 100644 index 78f97c8..0000000 --- a/docs/styles/main.css +++ /dev/null @@ -1 +0,0 @@ -/*! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.sticky{position:sticky}.top-0{top:0}.my-16{margin-bottom:4rem;margin-top:4rem}.my-4{margin-bottom:1rem;margin-top:1rem}.my-8{margin-bottom:2rem;margin-top:2rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-12{margin-top:3rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.flex{display:flex}.table{display:table}.h-screen{height:100vh}.min-h-screen{min-height:100vh}.w-1\/5{width:20%}.w-full{width:100%}.flex-shrink-0{flex-shrink:0}.table-auto{table-layout:auto}.overflow-auto{overflow:auto}.overflow-x-hidden{overflow-x:hidden}.border{border-width:1px}.border-l-2{border-left-width:2px}.border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.pl-3{padding-left:.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-lg{font-size:1.125rem}.text-lg,.text-xl{line-height:1.75rem}.text-xl{font-size:1.25rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}body{--code-inner-color:#718096;--code-token1-color:#d5408c;--code-token2-color:#805ad5;--code-token3-color:#319795;--code-token4-color:#dd6b21;--code-token5-color:#690;--code-token6-color:#9a6e3a;--code-token7-color:#e90;--code-linenum-color:#cbd5e0;--code-added-color:#47bb78;--code-added-bg-color:#d9f4e6;--code-deleted-color:#e53e3e;--code-deleted-bg-color:#f5e4e7;--code-highlight-color:#a0aec0;--code-highlight-bg-color:#e2e8f0;--code-result-bg-color:#e7edf3;--main-font-color:#1a202c;--border-color:#e2e8f0;--code-bgd-color:#f6f8fa}code[class*=language-],pre[class*=language-],pre[class*=language-] code{word-wrap:normal;border-radius:8px;color:var(--main-font-color)!important;display:block;font-family:Roboto Mono,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:14px;font-variant:no-common-ligatures no-discretionary-ligatures no-historical-ligatures no-contextual;grid-template-rows:max-content;-webkit-hyphens:none;hyphens:none;line-height:1.5;overflow:auto;-moz-tab-size:4;-o-tab-size:4;tab-size:4;text-align:left;white-space:pre;width:100%;word-break:normal;word-spacing:normal}pre[class*=language-]{border-radius:1em;margin:0;overflow:auto;padding:1em}:not(pre)>code[class*=language-],pre[class*=language-]{background:var(--code-bgd-color)!important}:not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em;white-space:normal}.inline-code,code.inline-code{font-feature-settings:"clig" 0,"calt" 0;background:var(--code-inline-bgd-color);border-radius:5px;color:var(--main-font-color);display:inline;font-family:Roboto Mono;font-size:14px;font-style:normal;font-variant:no-common-ligatures no-discretionary-ligatures no-historical-ligatures no-contextual;font-weight:500;line-height:24px;padding:.05em .3em .2em;vertical-align:baseline}.inline-code{background-color:var(--border-color)}.top-section h1 inlinecode{font-size:2rem}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:var(--code-inner-color)!important;font-style:normal!important}.token.namespace{opacity:.7}.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag,.token.type-args{color:var(--code-token4-color)!important}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:var(--code-token5-color)!important}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:var(--code-token6-color)!important}.token.atrule,.token.attr-value,.token.keyword{color:var(--code-token1-color)!important}.token.boolean,.token.class-name,.token.function,.token[class*=class-name]{color:var(--code-token2-color)!important}.token.important,.token.regex,.token.variable{color:var(--code-token7-color)!important}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.annotation{color:var(--code-token3-color)!important} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5441893..e7addff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,7 @@ "express": "^4.21.2", "express-fileupload": "^1.5.1", "express-session": "^1.18.1", + "helmet": "^8.0.0", "joi": "^17.13.3", "jquery": "^3.7.1", "lodash": "^4.17.21", @@ -38,53 +39,10 @@ "eslint": "^9.18.0", "eslint-config-prettier": "^9.1.0", "prisma": "^6.2.1", - "prisma-dbml-generator": "^0.12.0", - "prisma-docs-generator": "^0.8.0", "tsx": "^4.19.2", "typescript": "^5.7.3" } }, - "node_modules/@antfu/ni": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/@antfu/ni/-/ni-0.21.4.tgz", - "integrity": "sha512-O0Uv9LbLDSoEg26fnMDdDRiPwFJnQSoD4WnrflDwKCJm8Cx/0mV4cGxwBLXan5mGIrpK4Dd7vizf4rQm0QCEAA==", - "dev": true, - "license": "MIT", - "bin": { - "na": "bin/na.mjs", - "nci": "bin/nci.mjs", - "ni": "bin/ni.mjs", - "nlx": "bin/nlx.mjs", - "nr": "bin/nr.mjs", - "nu": "bin/nu.mjs", - "nun": "bin/nun.mjs" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@esbuild/aix-ppc64": { "version": "0.23.1", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", @@ -536,13 +494,13 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", - "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.5", + "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -551,9 +509,9 @@ } }, "node_modules/@eslint/core": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", - "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz", + "integrity": "sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -588,9 +546,9 @@ } }, "node_modules/@eslint/js": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.18.0.tgz", - "integrity": "sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==", + "version": "9.20.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz", + "integrity": "sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==", "dev": true, "license": "MIT", "engines": { @@ -598,9 +556,9 @@ } }, "node_modules/@eslint/object-schema": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", - "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -621,6 +579,19 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", + "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@hapi/hoek": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", @@ -702,353 +673,78 @@ "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@opentelemetry/api": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz", - "integrity": "sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/@prisma/client": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.2.1.tgz", - "integrity": "sha512-msKY2iRLISN8t5X0Tj7hU0UWet1u0KuxSPHWuf3IRkB4J95mCvGpyQBfQ6ufcmvKNOMQSq90O2iUmJEN2e5fiA==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-6.3.1.tgz", + "integrity": "sha512-ARAJaPs+eBkemdky/XU3cvGRl+mIPHCN2lCXsl5Vlb0E2gV+R6IN7aCI8CisRGszEZondwIsW9Iz8EJkTdykyA==", "hasInstallScript": true, "license": "Apache-2.0", "engines": { "node": ">=18.18" }, "peerDependencies": { - "prisma": "*" + "prisma": "*", + "typescript": ">=5.1.0" }, "peerDependenciesMeta": { "prisma": { "optional": true + }, + "typescript": { + "optional": true } } }, "node_modules/@prisma/debug": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.2.1.tgz", - "integrity": "sha512-0KItvt39CmQxWkEw6oW+RQMD6RZ43SJWgEUnzxN8VC9ixMysa7MzZCZf22LCK5DSooiLNf8vM3LHZm/I/Ni7bQ==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-6.3.1.tgz", + "integrity": "sha512-RrEBkd+HLZx+ydfmYT0jUj7wjLiS95wfTOSQ+8FQbvb6vHh5AeKfEPt/XUQ5+Buljj8hltEfOslEW57/wQIVeA==", "devOptional": true, "license": "Apache-2.0" }, "node_modules/@prisma/engines": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.2.1.tgz", - "integrity": "sha512-lTBNLJBCxVT9iP5I7Mn6GlwqAxTpS5qMERrhebkUhtXpGVkBNd/jHnNJBZQW4kGDCKaQg/r2vlJYkzOHnAb7ZQ==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-6.3.1.tgz", + "integrity": "sha512-sXdqEVLyGAJ5/iUoG/Ea5AdHMN71m6PzMBWRQnLmhhOejzqAaEr8rUd623ql6OJpED4s/U4vIn4dg1qkF7vGag==", "devOptional": true, "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.2.1", - "@prisma/engines-version": "6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69", - "@prisma/fetch-engine": "6.2.1", - "@prisma/get-platform": "6.2.1" + "@prisma/debug": "6.3.1", + "@prisma/engines-version": "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0", + "@prisma/fetch-engine": "6.3.1", + "@prisma/get-platform": "6.3.1" } }, "node_modules/@prisma/engines-version": { - "version": "6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69.tgz", - "integrity": "sha512-7tw1qs/9GWSX6qbZs4He09TOTg1ff3gYsB3ubaVNN0Pp1zLm9NC5C5MZShtkz7TyQjx7blhpknB7HwEhlG+PrQ==", + "version": "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0.tgz", + "integrity": "sha512-R/ZcMuaWZT2UBmgX3Ko6PAV3f8//ZzsjRIG1eKqp3f2rqEqVtCv+mtzuH2rBPUC9ujJ5kCb9wwpxeyCkLcHVyA==", "devOptional": true, "license": "Apache-2.0" }, "node_modules/@prisma/fetch-engine": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.2.1.tgz", - "integrity": "sha512-OO7O9d6Mrx2F9i+Gu1LW+DGXXyUFkP7OE5aj9iBfA/2jjDXEJjqa9X0ZmM9NZNo8Uo7ql6zKm6yjDcbAcRrw1A==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-6.3.1.tgz", + "integrity": "sha512-HOf/0umOgt+/S2xtZze+FHKoxpVg4YpVxROr6g2YG09VsI3Ipyb+rGvD6QGbCqkq5NTWAAZoOGNL+oy7t+IhaQ==", "devOptional": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.2.1", - "@prisma/engines-version": "6.2.0-14.4123509d24aa4dede1e864b46351bf2790323b69", - "@prisma/get-platform": "6.2.1" + "@prisma/debug": "6.3.1", + "@prisma/engines-version": "6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0", + "@prisma/get-platform": "6.3.1" } }, - "node_modules/@prisma/generator-helper": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-4.16.2.tgz", - "integrity": "sha512-bMOH7y73Ui7gpQrioFeavMQA+Tf8ksaVf8Nhs9rQNzuSg8SSV6E9baczob0L5KGZTSgYoqnrRxuo03kVJYrnIg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "4.16.2", - "@types/cross-spawn": "6.0.2", - "cross-spawn": "7.0.3", - "kleur": "4.1.5" - } - }, - "node_modules/@prisma/generator-helper/node_modules/@prisma/debug": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-4.16.2.tgz", - "integrity": "sha512-7L7WbG0qNNZYgLpsVB8rCHCXEyHFyIycRlRDNwkVfjQmACC2OW6AWCYCbfdjQhkF/t7+S3njj8wAWAocSs+Brw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/debug": "4.1.8", - "debug": "4.3.4", - "strip-ansi": "6.0.1" - } - }, - "node_modules/@prisma/generator-helper/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@prisma/generator-helper/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@prisma/generator-helper/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" - }, "node_modules/@prisma/get-platform": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.2.1.tgz", - "integrity": "sha512-zp53yvroPl5m5/gXYLz7tGCNG33bhG+JYCm74ohxOq1pPnrL47VQYFfF3RbTZ7TzGWCrR3EtoiYMywUBw7UK6Q==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-6.3.1.tgz", + "integrity": "sha512-AYLq6Hk9xG73JdLWJ3Ip9Wg/vlP7xPvftGBalsPzKDOHr/ImhwJ09eS8xC2vNT12DlzGxhfk8BkL0ve2OriNhQ==", "devOptional": true, "license": "Apache-2.0", "dependencies": { - "@prisma/debug": "6.2.1" + "@prisma/debug": "6.3.1" } }, - "node_modules/@prisma/internals": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/internals/-/internals-4.16.2.tgz", - "integrity": "sha512-/3OiSADA3RRgsaeEE+MDsBgL6oAMwddSheXn6wtYGUnjERAV/BmF5bMMLnTykesQqwZ1s8HrISrJ0Vf6cjOxMg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@antfu/ni": "0.21.4", - "@opentelemetry/api": "1.4.1", - "@prisma/debug": "4.16.2", - "@prisma/engines": "4.16.2", - "@prisma/fetch-engine": "4.16.2", - "@prisma/generator-helper": "4.16.2", - "@prisma/get-platform": "4.16.2", - "@prisma/prisma-fmt-wasm": "4.16.1-1.4bc8b6e1b66cb932731fb1bdbbc550d1e010de81", - "archiver": "5.3.1", - "arg": "5.0.2", - "checkpoint-client": "1.1.24", - "cli-truncate": "2.1.0", - "dotenv": "16.0.3", - "escape-string-regexp": "4.0.0", - "execa": "5.1.1", - "find-up": "5.0.0", - "fp-ts": "2.16.0", - "fs-extra": "11.1.1", - "fs-jetpack": "5.1.0", - "global-dirs": "3.0.1", - "globby": "11.1.0", - "indent-string": "4.0.0", - "is-windows": "1.0.2", - "is-wsl": "2.2.0", - "kleur": "4.1.5", - "new-github-issue-url": "0.2.1", - "node-fetch": "2.6.11", - "npm-packlist": "5.1.3", - "open": "7.4.2", - "p-map": "4.0.0", - "prompts": "2.4.2", - "read-pkg-up": "7.0.1", - "replace-string": "3.1.0", - "resolve": "1.22.2", - "string-width": "4.2.3", - "strip-ansi": "6.0.1", - "strip-indent": "3.0.0", - "temp-dir": "2.0.0", - "temp-write": "4.0.0", - "tempy": "1.0.1", - "terminal-link": "2.1.1", - "tmp": "0.2.1", - "ts-pattern": "4.3.0" - } - }, - "node_modules/@prisma/internals/node_modules/@prisma/debug": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-4.16.2.tgz", - "integrity": "sha512-7L7WbG0qNNZYgLpsVB8rCHCXEyHFyIycRlRDNwkVfjQmACC2OW6AWCYCbfdjQhkF/t7+S3njj8wAWAocSs+Brw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/debug": "4.1.8", - "debug": "4.3.4", - "strip-ansi": "6.0.1" - } - }, - "node_modules/@prisma/internals/node_modules/@prisma/engines": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-4.16.2.tgz", - "integrity": "sha512-vx1nxVvN4QeT/cepQce68deh/Turxy5Mr+4L4zClFuK1GlxN3+ivxfuv+ej/gvidWn1cE1uAhW7ALLNlYbRUAw==", - "dev": true, - "hasInstallScript": true, - "license": "Apache-2.0" - }, - "node_modules/@prisma/internals/node_modules/@prisma/fetch-engine": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-4.16.2.tgz", - "integrity": "sha512-lnCnHcOaNn0kw8qTJbVcNhyfIf5Lus2GFXbj3qpkdKEIB9xLgqkkuTP+35q1xFaqwQ0vy4HFpdRUpFP7njE15g==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "4.16.2", - "@prisma/get-platform": "4.16.2", - "execa": "5.1.1", - "find-cache-dir": "3.3.2", - "fs-extra": "11.1.1", - "hasha": "5.2.2", - "http-proxy-agent": "7.0.0", - "https-proxy-agent": "7.0.0", - "kleur": "4.1.5", - "node-fetch": "2.6.11", - "p-filter": "2.1.0", - "p-map": "4.0.0", - "p-retry": "4.6.2", - "progress": "2.0.3", - "rimraf": "3.0.2", - "temp-dir": "2.0.0", - "tempy": "1.0.1" - } - }, - "node_modules/@prisma/internals/node_modules/@prisma/get-platform": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-4.16.2.tgz", - "integrity": "sha512-fnDey1/iSefHJRMB+w243BhWENf+paRouPMdCqIVqu8dYkR1NqhldblsSUC4Zr2sKS7Ta2sK4OLdt9IH+PZTfw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "4.16.2", - "escape-string-regexp": "4.0.0", - "execa": "5.1.1", - "fs-jetpack": "5.1.0", - "kleur": "4.1.5", - "replace-string": "3.1.0", - "strip-ansi": "6.0.1", - "tempy": "1.0.1", - "terminal-link": "2.1.1", - "ts-pattern": "4.3.0" - } - }, - "node_modules/@prisma/internals/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@prisma/internals/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@prisma/internals/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@prisma/prisma-fmt-wasm": { - "version": "4.16.1-1.4bc8b6e1b66cb932731fb1bdbbc550d1e010de81", - "resolved": "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.16.1-1.4bc8b6e1b66cb932731fb1bdbbc550d1e010de81.tgz", - "integrity": "sha512-g090+dEH7wrdCw359+8J9+TGH84qK28V/dxwINjhhNCtju9lej99z9w/AVsJP9UhhcCPS4psYz4iu8d53uxVpA==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/@prisma/prisma-schema-wasm": { - "version": "4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584", - "resolved": "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584.tgz", - "integrity": "sha512-JFdsnSgBPN8reDTLOI9Vh/6ccCb2aD1LbY/LWQnkcIgNo6IdpzvuM+qRVbBuA6IZP2SdqQI8Lu6RL2P8EFBQUA==", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -1111,26 +807,6 @@ "@types/node": "*" } }, - "node_modules/@types/cross-spawn": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.2.tgz", - "integrity": "sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/debug": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz", - "integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/ms": "*" - } - }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", @@ -1163,9 +839,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.4.tgz", - "integrity": "sha512-5kz9ScmzBdzTgB/3susoCgfqNDzBjvLL4taparufgSvlwjdLy6UyUy9T/tCpYd2GIdIilCatC4iSQS0QSYHt0w==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz", + "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==", "dev": true, "license": "MIT", "dependencies": { @@ -1210,9 +886,9 @@ "license": "MIT" }, "node_modules/@types/lodash": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.14.tgz", - "integrity": "sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==", + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw==", "dev": true, "license": "MIT" }, @@ -1223,37 +899,16 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/ms": { - "version": "0.7.34", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", - "dev": true, - "license": "MIT" - }, "node_modules/@types/node": { - "version": "22.10.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.5.tgz", - "integrity": "sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==", + "version": "22.13.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.1.tgz", + "integrity": "sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==", "dev": true, "license": "MIT", "dependencies": { "undici-types": "~6.20.0" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true, - "license": "MIT" - }, "node_modules/@types/passport": { "version": "1.0.17", "resolved": "https://registry.npmjs.org/@types/passport/-/passport-1.0.17.tgz", @@ -1288,9 +943,9 @@ } }, "node_modules/@types/qs": { - "version": "6.9.17", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", - "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", + "version": "6.9.18", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz", + "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==", "dev": true, "license": "MIT" }, @@ -1301,13 +956,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true, - "license": "MIT" - }, "node_modules/@types/send": { "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", @@ -1377,40 +1025,6 @@ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/agent-base": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", - "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/aggregate-error/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -1428,45 +1042,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -1483,87 +1058,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/archiver": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz", - "integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==", - "dev": true, - "license": "MIT", - "dependencies": { - "archiver-utils": "^2.1.0", - "async": "^3.2.3", - "buffer-crc32": "^0.2.1", - "readable-stream": "^3.6.0", - "readdir-glob": "^1.0.0", - "tar-stream": "^2.2.0", - "zip-stream": "^4.1.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/archiver-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", - "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "^7.1.4", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/archiver-utils/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/archiver-utils/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/archiver-utils/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true, - "license": "MIT" - }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -1577,43 +1071,6 @@ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "license": "MIT" }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/async": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", - "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", - "dev": true, - "license": "MIT" - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -1621,39 +1078,6 @@ "dev": true, "license": "MIT" }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, "node_modules/body-parser": { "version": "1.20.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", @@ -1720,54 +1144,6 @@ "concat-map": "0.0.1" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, "node_modules/bulma": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.3.tgz", @@ -1833,34 +1209,6 @@ "node": ">=6" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -1878,65 +1226,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/checkpoint-client": { - "version": "1.1.24", - "resolved": "https://registry.npmjs.org/checkpoint-client/-/checkpoint-client-1.1.24.tgz", - "integrity": "sha512-nIOlLhDS7MKs4tUzS3LCm+sE1NgTCVnVrXlD0RRxaoEkkLu8LIWSUNiNWai6a+LK5unLzTyZeTCYX1Smqy0YoA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ci-info": "3.8.0", - "env-paths": "2.2.1", - "fast-write-atomic": "0.2.1", - "make-dir": "3.1.0", - "ms": "2.1.3", - "node-fetch": "2.6.11", - "uuid": "9.0.0" - } - }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "license": "MIT", - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -1957,29 +1246,6 @@ "dev": true, "license": "MIT" }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true, - "license": "MIT" - }, - "node_modules/compress-commons": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", - "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-crc32": "^0.2.13", - "crc32-stream": "^4.0.2", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } - }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -2023,40 +1289,6 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "license": "MIT" }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "crc32": "bin/crc32.njs" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/crc32-stream": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz", - "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "crc-32": "^1.2.0", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">= 10" - } - }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", @@ -2072,16 +1304,6 @@ "node": ">= 8" } }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/debug": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", @@ -2100,43 +1322,6 @@ } } }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "license": "MIT", - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -2144,29 +1329,6 @@ "dev": true, "license": "MIT" }, - "node_modules/del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", - "dev": true, - "license": "MIT", - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -2186,29 +1348,6 @@ "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=12" - } - }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", @@ -2229,13 +1368,6 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "license": "MIT" }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, "node_modules/encodeurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", @@ -2245,26 +1377,6 @@ "node": ">= 0.8" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2293,9 +1405,9 @@ } }, "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -2364,18 +1476,18 @@ } }, "node_modules/eslint": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.18.0.tgz", - "integrity": "sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==", + "version": "9.20.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.20.0.tgz", + "integrity": "sha512-aL4F8167Hg4IvsW89ejnpTwx+B/UQRzJPGgbIOl+4XqffWsahVVsLEWoZvnrVuwpWmnRd7XeXmQI1zlKcFDteA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.19.0", - "@eslint/core": "^0.10.0", + "@eslint/core": "^0.11.0", "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.18.0", + "@eslint/js": "9.20.0", "@eslint/plugin-kit": "^0.2.5", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", @@ -2551,30 +1663,6 @@ "node": ">= 0.6" } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, "node_modules/express": { "version": "4.21.2", "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", @@ -2704,36 +1792,6 @@ "dev": true, "license": "MIT" }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -2748,23 +1806,6 @@ "dev": true, "license": "MIT" }, - "node_modules/fast-write-atomic": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fast-write-atomic/-/fast-write-atomic-0.2.1.tgz", - "integrity": "sha512-WvJe06IfNYlr+6cO3uQkdKdy3Cb1LlCJSF8zRs2eT8yuhdbSlR9nIt+TgQ92RUxiRrQm+/S7RARnMfCs5iuAjw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", - "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, "node_modules/figures": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", @@ -2799,19 +1840,6 @@ "node": ">=16.0.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/finalhandler": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", @@ -2845,24 +1873,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -2910,13 +1920,6 @@ "node": ">= 0.6" } }, - "node_modules/fp-ts": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.0.tgz", - "integrity": "sha512-bLq+KgbiXdTEoT1zcARrWEpa5z6A/8b7PcDW7Gef3NSisQ+VS7ll2Xbf1E+xsgik0rWub/8u0qP/iTTjj+PhxQ==", - "dev": true, - "license": "MIT" - }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", @@ -2926,68 +1929,6 @@ "node": ">= 0.6" } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true, - "license": "MIT" - }, - "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-jetpack": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/fs-jetpack/-/fs-jetpack-5.1.0.tgz", - "integrity": "sha512-Xn4fDhLydXkuzepZVsr02jakLlmoARPy+YWIclo4kh0GyNGUHnTqeH/w/qIsVn50dFxtp8otPL2t/HcPJBbxUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimatch": "^5.1.0" - } - }, - "node_modules/fs-jetpack/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/fs-jetpack/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true, - "license": "ISC" - }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", @@ -3049,23 +1990,10 @@ "node": ">= 0.4" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/get-tsconfig": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", - "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", + "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", "dev": true, "license": "MIT", "dependencies": { @@ -3075,28 +2003,6 @@ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -3110,22 +2016,6 @@ "node": ">=10.13.0" } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/globals": { "version": "14.0.0", "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", @@ -3139,27 +2029,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", @@ -3178,16 +2047,6 @@ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "license": "ISC" }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -3210,33 +2069,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasha": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", - "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-stream": "^2.0.0", - "type-fest": "^0.8.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hasha/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", @@ -3249,17 +2081,13 @@ "node": ">= 0.4" } }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, + "node_modules/helmet": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.0.0.tgz", + "integrity": "sha512-VyusHLEIIO5mjQPUI1wpOAEu+wl6Q0998jzTxqUYGE45xCIcAxy3MsbEK/yyJUJ3ADeMoB6MornPH6GMWAf+Pw==", + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=18.0.0" } }, "node_modules/http-errors": { @@ -3278,44 +2106,6 @@ "node": ">= 0.8" } }, - "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.0.tgz", - "integrity": "sha512-0euwPCRyAPSgGdzD1IVN9nJYHtBhJwb6XPfbpQcYbPCwrBidX6GzxmchnaF4sfF/jPb74Ojx5g4yTg3sixlyPw==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -3328,27 +2118,6 @@ "node": ">=0.10.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", @@ -3359,46 +2128,10 @@ "node": ">= 4" } }, - "node_modules/ignore-walk": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", - "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", - "dev": true, - "license": "ISC", - "dependencies": { - "minimatch": "^5.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3422,47 +2155,12 @@ "node": ">=0.8.19" } }, - "node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "license": "ISC" }, - "node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", @@ -3478,38 +2176,6 @@ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "license": "MIT" }, - "node_modules/is-core-module": { - "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -3520,16 +2186,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -3543,89 +2199,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true, - "license": "MIT" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -3652,13 +2225,6 @@ "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==", "license": "MIT" }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, - "license": "MIT" - }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -3685,13 +2251,6 @@ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "license": "MIT" }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -3706,19 +2265,6 @@ "dev": true, "license": "MIT" }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", @@ -3729,72 +2275,6 @@ "json-buffer": "3.0.1" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lazystream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/lazystream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/lazystream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", @@ -3809,13 +2289,6 @@ "node": ">= 0.8.0" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, "node_modules/load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", @@ -3831,6 +2304,19 @@ "node": ">=4" } }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -3853,34 +2339,6 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "license": "MIT" - }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", @@ -3888,55 +2346,6 @@ "dev": true, "license": "MIT" }, - "node_modules/lodash.union": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", - "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/math-intrinsics": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", @@ -3955,33 +2364,6 @@ "node": ">= 0.6" } }, - "node_modules/meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/merge-descriptors": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", @@ -3991,23 +2373,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", @@ -4017,20 +2382,6 @@ "node": ">= 0.6" } }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", @@ -4064,26 +2415,6 @@ "node": ">= 0.6" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -4097,21 +2428,6 @@ "node": "*" } }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "license": "MIT", - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -4134,179 +2450,10 @@ "node": ">= 0.6" } }, - "node_modules/new-github-issue-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/new-github-issue-url/-/new-github-issue-url-0.2.1.tgz", - "integrity": "sha512-md4cGoxuT4T4d/HDOXbrUHkTKrp/vp+m3aOA7XXVYwNsUNMK49g3SQicTSeV5GIz/5QVGAeYRAOlyp9OvlgsYA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm-bundled": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", - "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", - "dev": true, - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm-normalize-package-bin": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", - "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", - "dev": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm-packlist": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", - "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^8.0.1", - "ignore-walk": "^5.0.1", - "npm-bundled": "^2.0.0", - "npm-normalize-package-bin": "^2.0.0" - }, - "bin": { - "npm-packlist": "bin/index.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm-packlist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/npm-packlist/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm-packlist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/object-inspect": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", - "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -4336,49 +2483,6 @@ "node": ">= 0.8" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/optionator": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", @@ -4397,29 +2501,6 @@ "node": ">= 0.8.0" } }, - "node_modules/p-filter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", - "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-map": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-filter/node_modules/p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -4452,36 +2533,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/p-try": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", @@ -4504,19 +2555,6 @@ "node": ">=6" } }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "license": "MIT", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -4573,16 +2611,6 @@ "node": ">=8" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -4593,54 +2621,17 @@ "node": ">=8" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, "node_modules/path-to-regexp": { "version": "0.1.12", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", "license": "MIT" }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/pause": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true, - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", @@ -4721,95 +2712,6 @@ "node": ">=4" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -4821,14 +2723,14 @@ } }, "node_modules/prisma": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/prisma/-/prisma-6.2.1.tgz", - "integrity": "sha512-hhyM0H13pQleQ+br4CkzGizS5I0oInoeTw3JfLw1BRZduBSQxPILlJLwi+46wZzj9Je7ndyQEMGw/n5cN2fknA==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/prisma/-/prisma-6.3.1.tgz", + "integrity": "sha512-JKCZWvBC3enxk51tY4TWzS4b5iRt4sSU1uHn2I183giZTvonXaQonzVtjLzpOHE7qu9MxY510kAtFGJwryKe3Q==", "devOptional": true, "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@prisma/engines": "6.2.1" + "@prisma/engines": "6.3.1" }, "bin": { "prisma": "build/index.js" @@ -4838,295 +2740,16 @@ }, "optionalDependencies": { "fsevents": "2.3.3" - } - }, - "node_modules/prisma-dbml-generator": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/prisma-dbml-generator/-/prisma-dbml-generator-0.12.0.tgz", - "integrity": "sha512-b5CqA9cCY5jmNJGjx8oUbPw3KSgVd+mu8711MSZIRY9dIF0Vlcs/Au6LR3S5guncydM7Zkh8iz8vC+c2CDj3Xw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@prisma/generator-helper": "5.0.0", - "@prisma/internals": "5.0.0" - }, - "bin": { - "prisma-dbml-generator": "dist/generator.js" - } - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/debug": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-5.0.0.tgz", - "integrity": "sha512-3q/M/KqlQ01/HJXifU/zCNOHkoTWu24kGelMF/IBrRxm7njPqTTbwfnT1dh4JK+nuWM5/Dg1Lv00u2c0l7AHxg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/debug": "4.1.8", - "debug": "4.3.4", - "strip-ansi": "6.0.1" - } - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/engines": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-5.0.0.tgz", - "integrity": "sha512-kyT/8fd0OpWmhAU5YnY7eP31brW1q1YrTGoblWrhQJDiN/1K+Z8S1kylcmtjqx5wsUGcP1HBWutayA/jtyt+sg==", - "dev": true, - "hasInstallScript": true, - "license": "Apache-2.0" - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/fetch-engine": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.0.0.tgz", - "integrity": "sha512-eSzHTE0KcMvM5+O1++eaMuVf4D1zwWHdqjWr6D70skCg37q7RYsuty4GFnlWBuqC4aXwVf06EvIxiJ0SQIIeRw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "5.0.0", - "@prisma/get-platform": "5.0.0", - "execa": "5.1.1", - "find-cache-dir": "3.3.2", - "fs-extra": "11.1.1", - "hasha": "5.2.2", - "http-proxy-agent": "7.0.0", - "https-proxy-agent": "7.0.0", - "kleur": "4.1.5", - "node-fetch": "2.6.12", - "p-filter": "2.1.0", - "p-map": "4.0.0", - "p-retry": "4.6.2", - "progress": "2.0.3", - "rimraf": "3.0.2", - "temp-dir": "2.0.0", - "tempy": "1.0.1" - } - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/generator-helper": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-5.0.0.tgz", - "integrity": "sha512-pufQ1mhoH6WzKNtzL79HZDoW4Ql3Lf8QEKVmBoW8e3Tdb50bxpYBYue5LBqp9vNW1xd1pgZO53cNiRfLX2d4Zg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "5.0.0", - "@types/cross-spawn": "6.0.2", - "cross-spawn": "7.0.3", - "kleur": "4.1.5" - } - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/get-platform": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.0.0.tgz", - "integrity": "sha512-JT/rz/jaMTggDkd9OIma50si9rPLzSFe7XSrV3mKXwtv9t+rdwx5ZhmKJd+Rz6S1vhn/291k21JLfaxOW6u8KQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@prisma/debug": "5.0.0", - "escape-string-regexp": "4.0.0", - "execa": "5.1.1", - "fs-jetpack": "5.1.0", - "kleur": "4.1.5", - "replace-string": "3.1.0", - "strip-ansi": "6.0.1", - "tempy": "1.0.1", - "terminal-link": "2.1.1", - "ts-pattern": "4.3.0" - } - }, - "node_modules/prisma-dbml-generator/node_modules/@prisma/internals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@prisma/internals/-/internals-5.0.0.tgz", - "integrity": "sha512-VGWyFk6QlSBXT8z65Alq5F3o9E8IiTtaBoa3rmKkGpZjUk85kJy3jZz4xkRv53TaeghGE5rWfwkfak26KtY5yQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@antfu/ni": "0.21.4", - "@opentelemetry/api": "1.4.1", - "@prisma/debug": "5.0.0", - "@prisma/engines": "5.0.0", - "@prisma/fetch-engine": "5.0.0", - "@prisma/generator-helper": "5.0.0", - "@prisma/get-platform": "5.0.0", - "@prisma/prisma-schema-wasm": "4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584", - "archiver": "5.3.1", - "arg": "5.0.2", - "checkpoint-client": "1.1.24", - "cli-truncate": "2.1.0", - "dotenv": "16.0.3", - "escape-string-regexp": "4.0.0", - "execa": "5.1.1", - "find-up": "5.0.0", - "fp-ts": "2.16.0", - "fs-extra": "11.1.1", - "fs-jetpack": "5.1.0", - "global-dirs": "3.0.1", - "globby": "11.1.0", - "indent-string": "4.0.0", - "is-windows": "1.0.2", - "is-wsl": "2.2.0", - "kleur": "4.1.5", - "new-github-issue-url": "0.2.1", - "node-fetch": "2.6.12", - "npm-packlist": "5.1.3", - "open": "7.4.2", - "p-map": "4.0.0", - "prompts": "2.4.2", - "read-pkg-up": "7.0.1", - "replace-string": "3.1.0", - "resolve": "1.22.2", - "string-width": "4.2.3", - "strip-ansi": "6.0.1", - "strip-indent": "3.0.0", - "temp-dir": "2.0.0", - "temp-write": "4.0.0", - "tempy": "1.0.1", - "terminal-link": "2.1.1", - "tmp": "0.2.1", - "ts-pattern": "4.3.0" - } - }, - "node_modules/prisma-dbml-generator/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/prisma-dbml-generator/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/prisma-dbml-generator/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/prisma-dbml-generator/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/prisma-dbml-generator/node_modules/node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" }, "peerDependencies": { - "encoding": "^0.1.0" + "typescript": ">=5.1.0" }, "peerDependenciesMeta": { - "encoding": { + "typescript": { "optional": true } } }, - "node_modules/prisma-docs-generator": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/prisma-docs-generator/-/prisma-docs-generator-0.8.0.tgz", - "integrity": "sha512-w+lwFsslDtsCilWauQlKyEIPTtT4wXbG1sRnSb1NldEVF572DtcHTbcp54UGz7i1WaOuLK2M1YCp1UFRf62Nxw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@prisma/generator-helper": "^4.14.0", - "@prisma/internals": "^4.14.0", - "express": "^4.18.2", - "indent-string": "^5.0.0", - "kleur": "^4.1.5", - "meow": "9", - "pluralize": "^8.0.0", - "prismjs": "^1.29.0", - "ts-toolbelt": "^9.6.0" - }, - "bin": { - "prisma-docs-generator": "dist/cli.js" - } - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true, - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prompts/node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -5165,37 +2788,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", @@ -5229,278 +2821,6 @@ "node": ">= 0.8" } }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true, - "license": "ISC" - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdir-glob": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", - "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "minimatch": "^5.1.0" - } - }, - "node_modules/readdir-glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/readdir-glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "license": "MIT", - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/redent/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/replace-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/replace-string/-/replace-string-3.1.0.tgz", - "integrity": "sha512-yPpxc4ZR2makceA9hy/jHNqc7QVkd4Je/N0WRHm6bs3PtivPuPynxE5ejU/mp5EhnCv8+uZL7vhz8rkluSlx+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -5521,68 +2841,6 @@ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" } }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -5609,16 +2867,6 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "license": "MIT" }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/send": { "version": "0.19.0", "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", @@ -5783,13 +3031,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true, - "license": "ISC" - }, "node_modules/signale": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", @@ -5875,74 +3116,6 @@ "node": ">=4" } }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true, - "license": "MIT" - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", - "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", - "dev": true, - "license": "CC0-1.0" - }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -5960,44 +3133,6 @@ "node": ">=10.0.0" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -6007,29 +3142,6 @@ "node": ">=4" } }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -6056,174 +3168,6 @@ "node": ">=8" } }, - "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/temp-write": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/temp-write/-/temp-write-4.0.0.tgz", - "integrity": "sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.15", - "is-stream": "^2.0.0", - "make-dir": "^3.0.0", - "temp-dir": "^1.0.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/temp-write/node_modules/temp-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/temp-write/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "license": "MIT", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/tempy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", - "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", - "dev": true, - "license": "MIT", - "dependencies": { - "del": "^6.0.0", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -6233,37 +3177,6 @@ "node": ">=0.6" } }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true, - "license": "MIT" - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-pattern": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ts-pattern/-/ts-pattern-4.3.0.tgz", - "integrity": "sha512-pefrkcd4lmIVR0LA49Imjf9DYLK8vtWhqBPA3Ya1ir8xCW0O2yjL9dsCVvI7pCodLC5q7smNpEtDR2yVulQxOg==", - "dev": true, - "license": "MIT" - }, - "node_modules/ts-toolbelt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz", - "integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/tslog": { "version": "4.9.3", "resolved": "https://registry.npmjs.org/tslog/-/tslog-4.9.3.tgz", @@ -6309,19 +3222,6 @@ "node": ">= 0.8.0" } }, - "node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -6339,7 +3239,7 @@ "version": "5.7.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", - "dev": true, + "devOptional": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -6368,29 +3268,6 @@ "dev": true, "license": "MIT" }, - "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "license": "MIT", - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -6410,13 +3287,6 @@ "punycode": "^2.1.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" - }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -6426,27 +3296,6 @@ "node": ">= 0.4.0" } }, - "node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "dev": true, - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", @@ -6456,24 +3305,6 @@ "node": ">= 0.8" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6500,30 +3331,6 @@ "node": ">=0.10.0" } }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "license": "ISC" - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", @@ -6536,43 +3343,6 @@ "funding": { "url": "https://github.com/sponsors/sindresorhus" } - }, - "node_modules/zip-stream": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz", - "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "archiver-utils": "^3.0.4", - "compress-commons": "^4.1.2", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/zip-stream/node_modules/archiver-utils": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz", - "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "^7.2.3", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } } } } diff --git a/package.json b/package.json index a55b0c3..f9b9fe5 100644 --- a/package.json +++ b/package.json @@ -33,8 +33,6 @@ "eslint": "^9.18.0", "eslint-config-prettier": "^9.1.0", "prisma": "^6.2.1", - "prisma-dbml-generator": "^0.12.0", - "prisma-docs-generator": "^0.8.0", "tsx": "^4.19.2", "typescript": "^5.7.3" }, @@ -46,6 +44,7 @@ "express": "^4.21.2", "express-fileupload": "^1.5.1", "express-session": "^1.18.1", + "helmet": "^8.0.0", "joi": "^17.13.3", "jquery": "^3.7.1", "lodash": "^4.17.21", diff --git a/prisma/schema.prisma b/prisma/schema.prisma index d155512..f287f4a 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -13,23 +13,6 @@ datasource db { url = env("DATABASE_URL") } - -// https://github.com/pantharshit00/prisma-docs-generator -generator docs { - provider = "node node_modules/prisma-docs-generator" - output = "../docs" -} - -// https://github.com/notiz-dev/prisma-dbml-generator -// Viewer: https://dbdiagram.io/d -generator dbml { - provider = "prisma-dbml-generator" - output = "../docs" - outputName = "schema.dbml" - projectName = "ATAS" -} - - enum contentType { voice_alarm voice_explainer diff --git a/src/handlers/config.ts b/src/handlers/config.ts index 968822b..46da4eb 100644 --- a/src/handlers/config.ts +++ b/src/handlers/config.ts @@ -1,6 +1,7 @@ import ConfigManager from '../libs/configManager.js'; import __path from "./path.js"; import _ from 'lodash'; +import log from './log.js'; // Create a new config instance. @@ -8,7 +9,12 @@ const config = new ConfigManager(__path + '/config.json', true, { db_connection_string: 'mysql://USER:PASSWORD@HOST:3306/DATABASE', http_listen_address: '0.0.0.0', http_port: 3000, - debug: true, + http_domain: 'example.org', + http_enable_hsts: false, + devmode: true, + + + auth: { cookie_secret: 'gen', cookie_secure: true, @@ -30,4 +36,6 @@ if (_.isEqual(config.global.auth.local.users, {})) { config.save_config(); } +!config.global.devmode && log.core.error('devmode active! Do NOT use this in prod!'); + export default config; diff --git a/src/index.ts b/src/index.ts index 43f688a..9e0be2a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,17 +1,18 @@ // MARK: Imports import path from 'node:path'; -import __path from "./handlers/path.js"; -import log from "./handlers/log.js"; -import db from "./handlers/db.js"; +import __path from './handlers/path.js'; +import log from './handlers/log.js'; +import db from './handlers/db.js'; import config from './handlers/config.js'; // Express & more import express from 'express'; -import cors from 'cors' +import cors from 'cors'; +import helmet from 'helmet'; import session from 'express-session'; import fileUpload from 'express-fileupload'; import bodyParser, { Options } from 'body-parser'; -import { Eta } from "eta"; +import { Eta } from 'eta'; import passport from 'passport'; import ChildProcess from 'child_process'; @@ -20,28 +21,26 @@ import routes from './routes/index.js'; import fs from 'node:fs'; -log.core.trace("Running from path: " + __path); - +log.core.trace('Running from path: ' + __path); // MARK: Express const app = express(); // Versioning try { - const rawPkg = fs.readFileSync("package.json", 'utf8'); + const rawPkg = fs.readFileSync('package.json', 'utf8'); const pkgJson = JSON.parse(rawPkg); app.locals.version = pkgJson.version; } catch (error) { - log.core.error("Failed to get version from package.json."); - app.locals.version = "0.0.0"; + log.core.error('Failed to get version from package.json.'); + app.locals.version = '0.0.0'; } - -try { +try { app.locals.versionRevLong = ChildProcess.execSync('git rev-parse HEAD').toString().trim(); app.locals.versionRev = app.locals.versionRevLong.substring(0, 7); } catch (error) { - log.core.error("Failed to get git revision hash."); + log.core.error('Failed to get git revision hash.'); app.locals.versionRev = '0'; app.locals.versionRevLong = '0'; } @@ -49,7 +48,7 @@ try { try { app.locals.versionRevLatest = ChildProcess.execSync('git ls-remote --refs -q').toString().trim().split('\t')[0]; } catch (error) { - log.core.error("Failed to get latest git revision hash."); + log.core.error('Failed to get latest git revision hash.'); app.locals.versionRevLatest = '0'; } @@ -61,19 +60,31 @@ if (app.locals.versionRevLong === app.locals.versionRevLatest) { app.locals.versionUpdateAvailable = true; } - - // ETA Init -const eta = new Eta({ views: path.join(__path, "views") }) -app.engine("eta", buildEtaEngine()) -app.set("view engine", "eta") - +const eta = new Eta({ views: path.join(__path, 'views') }); +app.engine('eta', buildEtaEngine()); +app.set('view engine', 'eta'); // MARK: Express Middleware & Config -app.set('x-powered-by', false); +app.set('x-powered-by', false); // helmet does this too. But not in devmode +if (!config.global.devmode) { + app.use( + helmet({ + strictTransportSecurity: config.global.http_enable_hsts, + contentSecurityPolicy: { + useDefaults: false, + directives: { + defaultSrc: ["'self'"], + scriptSrc: ["'self'", config.global.http_domain], + objectSrc: ["'none'"], + upgradeInsecureRequests: config.global.devmode ? null : [] + } + } + }) + ); // Add headers +} app.use(fileUpload()); -//app.use(cors()); app.use(bodyParser.urlencoded({ extended: false })); app.use(bodyParser.json()); @@ -90,16 +101,13 @@ app.use( app.use(passport.authenticate('session')); app.use(routes); - app.listen(config.global.http_port, config.global.http_listen_address, () => { log.web.info(`Listening at http://${config.global.http_listen_address}:${config.global.http_port}`); }); - - // MARK: Helper Functions function buildEtaEngine() { - return (path:string, opts:Options, callback: CallableFunction) => { + return (path: string, opts: Options, callback: CallableFunction) => { try { const fileContent = eta.readFile(path); const renderedTemplate = eta.renderString(fileContent, opts); @@ -109,4 +117,3 @@ function buildEtaEngine() { } }; } - diff --git a/tsconfig.json b/tsconfig.json index badff5e..906b0c7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -96,7 +96,7 @@ // "strictBuiltinIteratorReturn": true, /* Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'. */ // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ - // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */