brutalism design
This commit is contained in:
@@ -26,21 +26,21 @@ export type AggregateChannel = {
|
||||
|
||||
export type ChannelMinAggregateOutputType = {
|
||||
id: string | null
|
||||
ownerId: string | null
|
||||
ownerUsername: string | null
|
||||
name: string | null
|
||||
persistent: boolean | null
|
||||
}
|
||||
|
||||
export type ChannelMaxAggregateOutputType = {
|
||||
id: string | null
|
||||
ownerId: string | null
|
||||
ownerUsername: string | null
|
||||
name: string | null
|
||||
persistent: boolean | null
|
||||
}
|
||||
|
||||
export type ChannelCountAggregateOutputType = {
|
||||
id: number
|
||||
ownerId: number
|
||||
ownerUsername: number
|
||||
name: number
|
||||
persistent: number
|
||||
_all: number
|
||||
@@ -49,21 +49,21 @@ export type ChannelCountAggregateOutputType = {
|
||||
|
||||
export type ChannelMinAggregateInputType = {
|
||||
id?: true
|
||||
ownerId?: true
|
||||
ownerUsername?: true
|
||||
name?: true
|
||||
persistent?: true
|
||||
}
|
||||
|
||||
export type ChannelMaxAggregateInputType = {
|
||||
id?: true
|
||||
ownerId?: true
|
||||
ownerUsername?: true
|
||||
name?: true
|
||||
persistent?: true
|
||||
}
|
||||
|
||||
export type ChannelCountAggregateInputType = {
|
||||
id?: true
|
||||
ownerId?: true
|
||||
ownerUsername?: true
|
||||
name?: true
|
||||
persistent?: true
|
||||
_all?: true
|
||||
@@ -143,7 +143,7 @@ export type ChannelGroupByArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
|
||||
export type ChannelGroupByOutputType = {
|
||||
id: string
|
||||
ownerId: string | null
|
||||
ownerUsername: string | null
|
||||
name: string
|
||||
persistent: boolean
|
||||
_count: ChannelCountAggregateOutputType | null
|
||||
@@ -171,7 +171,7 @@ export type ChannelWhereInput = {
|
||||
OR?: Prisma.ChannelWhereInput[]
|
||||
NOT?: Prisma.ChannelWhereInput | Prisma.ChannelWhereInput[]
|
||||
id?: Prisma.StringFilter<"Channel"> | string
|
||||
ownerId?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
ownerUsername?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
name?: Prisma.StringFilter<"Channel"> | string
|
||||
persistent?: Prisma.BoolFilter<"Channel"> | boolean
|
||||
owner?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
|
||||
@@ -179,7 +179,7 @@ export type ChannelWhereInput = {
|
||||
|
||||
export type ChannelOrderByWithRelationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
ownerId?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
ownerUsername?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
persistent?: Prisma.SortOrder
|
||||
owner?: Prisma.UserOrderByWithRelationInput
|
||||
@@ -190,7 +190,7 @@ export type ChannelWhereUniqueInput = Prisma.AtLeast<{
|
||||
AND?: Prisma.ChannelWhereInput | Prisma.ChannelWhereInput[]
|
||||
OR?: Prisma.ChannelWhereInput[]
|
||||
NOT?: Prisma.ChannelWhereInput | Prisma.ChannelWhereInput[]
|
||||
ownerId?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
ownerUsername?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
name?: Prisma.StringFilter<"Channel"> | string
|
||||
persistent?: Prisma.BoolFilter<"Channel"> | boolean
|
||||
owner?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
|
||||
@@ -198,7 +198,7 @@ export type ChannelWhereUniqueInput = Prisma.AtLeast<{
|
||||
|
||||
export type ChannelOrderByWithAggregationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
ownerId?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
ownerUsername?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
persistent?: Prisma.SortOrder
|
||||
_count?: Prisma.ChannelCountOrderByAggregateInput
|
||||
@@ -211,7 +211,7 @@ export type ChannelScalarWhereWithAggregatesInput = {
|
||||
OR?: Prisma.ChannelScalarWhereWithAggregatesInput[]
|
||||
NOT?: Prisma.ChannelScalarWhereWithAggregatesInput | Prisma.ChannelScalarWhereWithAggregatesInput[]
|
||||
id?: Prisma.StringWithAggregatesFilter<"Channel"> | string
|
||||
ownerId?: Prisma.StringNullableWithAggregatesFilter<"Channel"> | string | null
|
||||
ownerUsername?: Prisma.StringNullableWithAggregatesFilter<"Channel"> | string | null
|
||||
name?: Prisma.StringWithAggregatesFilter<"Channel"> | string
|
||||
persistent?: Prisma.BoolWithAggregatesFilter<"Channel"> | boolean
|
||||
}
|
||||
@@ -225,7 +225,7 @@ export type ChannelCreateInput = {
|
||||
|
||||
export type ChannelUncheckedCreateInput = {
|
||||
id?: string
|
||||
ownerId?: string | null
|
||||
ownerUsername?: string | null
|
||||
name: string
|
||||
persistent: boolean
|
||||
}
|
||||
@@ -239,14 +239,14 @@ export type ChannelUpdateInput = {
|
||||
|
||||
export type ChannelUncheckedUpdateInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
ownerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
ownerUsername?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
persistent?: Prisma.BoolFieldUpdateOperationsInput | boolean
|
||||
}
|
||||
|
||||
export type ChannelCreateManyInput = {
|
||||
id?: string
|
||||
ownerId?: string | null
|
||||
ownerUsername?: string | null
|
||||
name: string
|
||||
persistent: boolean
|
||||
}
|
||||
@@ -259,7 +259,7 @@ export type ChannelUpdateManyMutationInput = {
|
||||
|
||||
export type ChannelUncheckedUpdateManyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
ownerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
ownerUsername?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
persistent?: Prisma.BoolFieldUpdateOperationsInput | boolean
|
||||
}
|
||||
@@ -276,21 +276,21 @@ export type ChannelOrderByRelationAggregateInput = {
|
||||
|
||||
export type ChannelCountOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
ownerId?: Prisma.SortOrder
|
||||
ownerUsername?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
persistent?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type ChannelMaxOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
ownerId?: Prisma.SortOrder
|
||||
ownerUsername?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
persistent?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type ChannelMinOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
ownerId?: Prisma.SortOrder
|
||||
ownerUsername?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
persistent?: Prisma.SortOrder
|
||||
}
|
||||
@@ -383,7 +383,7 @@ export type ChannelScalarWhereInput = {
|
||||
OR?: Prisma.ChannelScalarWhereInput[]
|
||||
NOT?: Prisma.ChannelScalarWhereInput | Prisma.ChannelScalarWhereInput[]
|
||||
id?: Prisma.StringFilter<"Channel"> | string
|
||||
ownerId?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
ownerUsername?: Prisma.StringNullableFilter<"Channel"> | string | null
|
||||
name?: Prisma.StringFilter<"Channel"> | string
|
||||
persistent?: Prisma.BoolFilter<"Channel"> | boolean
|
||||
}
|
||||
@@ -416,7 +416,7 @@ export type ChannelUncheckedUpdateManyWithoutOwnerInput = {
|
||||
|
||||
export type ChannelSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
id?: boolean
|
||||
ownerId?: boolean
|
||||
ownerUsername?: boolean
|
||||
name?: boolean
|
||||
persistent?: boolean
|
||||
owner?: boolean | Prisma.Channel$ownerArgs<ExtArgs>
|
||||
@@ -424,7 +424,7 @@ export type ChannelSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
||||
|
||||
export type ChannelSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
id?: boolean
|
||||
ownerId?: boolean
|
||||
ownerUsername?: boolean
|
||||
name?: boolean
|
||||
persistent?: boolean
|
||||
owner?: boolean | Prisma.Channel$ownerArgs<ExtArgs>
|
||||
@@ -432,7 +432,7 @@ export type ChannelSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Exten
|
||||
|
||||
export type ChannelSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
id?: boolean
|
||||
ownerId?: boolean
|
||||
ownerUsername?: boolean
|
||||
name?: boolean
|
||||
persistent?: boolean
|
||||
owner?: boolean | Prisma.Channel$ownerArgs<ExtArgs>
|
||||
@@ -440,12 +440,12 @@ export type ChannelSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Exten
|
||||
|
||||
export type ChannelSelectScalar = {
|
||||
id?: boolean
|
||||
ownerId?: boolean
|
||||
ownerUsername?: boolean
|
||||
name?: boolean
|
||||
persistent?: boolean
|
||||
}
|
||||
|
||||
export type ChannelOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "ownerId" | "name" | "persistent", ExtArgs["result"]["channel"]>
|
||||
export type ChannelOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "ownerUsername" | "name" | "persistent", ExtArgs["result"]["channel"]>
|
||||
export type ChannelInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
owner?: boolean | Prisma.Channel$ownerArgs<ExtArgs>
|
||||
}
|
||||
@@ -463,7 +463,7 @@ export type $ChannelPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
||||
}
|
||||
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
||||
id: string
|
||||
ownerId: string | null
|
||||
ownerUsername: string | null
|
||||
name: string
|
||||
persistent: boolean
|
||||
}, ExtArgs["result"]["channel"]>
|
||||
@@ -891,7 +891,7 @@ export interface Prisma__ChannelClient<T, Null = never, ExtArgs extends runtime.
|
||||
*/
|
||||
export interface ChannelFieldRefs {
|
||||
readonly id: Prisma.FieldRef<"Channel", 'String'>
|
||||
readonly ownerId: Prisma.FieldRef<"Channel", 'String'>
|
||||
readonly ownerUsername: Prisma.FieldRef<"Channel", 'String'>
|
||||
readonly name: Prisma.FieldRef<"Channel", 'String'>
|
||||
readonly persistent: Prisma.FieldRef<"Channel", 'Boolean'>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user