import type * as runtime from "@prisma/client/runtime/client"; import type * as $Enums from "../enums"; import type * as Prisma from "../internal/prismaNamespace"; /** * Model KnowledgeEntry * */ export type KnowledgeEntryModel = runtime.Types.Result.DefaultSelection; export type AggregateKnowledgeEntry = { _count: KnowledgeEntryCountAggregateOutputType | null; _avg: KnowledgeEntryAvgAggregateOutputType | null; _sum: KnowledgeEntrySumAggregateOutputType | null; _min: KnowledgeEntryMinAggregateOutputType | null; _max: KnowledgeEntryMaxAggregateOutputType | null; }; export type KnowledgeEntryAvgAggregateOutputType = { id: number | null; confidence: number | null; stability: number | null; userId: number | null; }; export type KnowledgeEntrySumAggregateOutputType = { id: number | null; confidence: number | null; stability: number | null; userId: number | null; }; export type KnowledgeEntryMinAggregateOutputType = { id: number | null; entityType: string | null; entityId: string | null; key: string | null; valueSummary: string | null; confidence: number | null; source: string | null; validFrom: Date | null; validUntil: Date | null; lastAccessedAt: Date | null; stability: number | null; createdBy: string | null; createdAt: Date | null; updatedAt: Date | null; isProtected: boolean | null; userId: number | null; surface: $Enums.Surface | null; }; export type KnowledgeEntryMaxAggregateOutputType = { id: number | null; entityType: string | null; entityId: string | null; key: string | null; valueSummary: string | null; confidence: number | null; source: string | null; validFrom: Date | null; validUntil: Date | null; lastAccessedAt: Date | null; stability: number | null; createdBy: string | null; createdAt: Date | null; updatedAt: Date | null; isProtected: boolean | null; userId: number | null; surface: $Enums.Surface | null; }; export type KnowledgeEntryCountAggregateOutputType = { id: number; entityType: number; entityId: number; key: number; valueRaw: number; valueSummary: number; confidence: number; source: number; validFrom: number; validUntil: number; lastAccessedAt: number; stability: number; createdBy: number; createdAt: number; updatedAt: number; conflictLog: number; isProtected: number; properties: number; userId: number; surface: number; _all: number; }; export type KnowledgeEntryAvgAggregateInputType = { id?: true; confidence?: true; stability?: true; userId?: true; }; export type KnowledgeEntrySumAggregateInputType = { id?: true; confidence?: true; stability?: true; userId?: true; }; export type KnowledgeEntryMinAggregateInputType = { id?: true; entityType?: true; entityId?: true; key?: true; valueSummary?: true; confidence?: true; source?: true; validFrom?: true; validUntil?: true; lastAccessedAt?: true; stability?: true; createdBy?: true; createdAt?: true; updatedAt?: true; isProtected?: true; userId?: true; surface?: true; }; export type KnowledgeEntryMaxAggregateInputType = { id?: true; entityType?: true; entityId?: true; key?: true; valueSummary?: true; confidence?: true; source?: true; validFrom?: true; validUntil?: true; lastAccessedAt?: true; stability?: true; createdBy?: true; createdAt?: true; updatedAt?: true; isProtected?: true; userId?: true; surface?: true; }; export type KnowledgeEntryCountAggregateInputType = { id?: true; entityType?: true; entityId?: true; key?: true; valueRaw?: true; valueSummary?: true; confidence?: true; source?: true; validFrom?: true; validUntil?: true; lastAccessedAt?: true; stability?: true; createdBy?: true; createdAt?: true; updatedAt?: true; conflictLog?: true; isProtected?: true; properties?: true; userId?: true; surface?: true; _all?: true; }; export type KnowledgeEntryAggregateArgs = { /** * Filter which KnowledgeEntry to aggregate. */ where?: Prisma.KnowledgeEntryWhereInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of KnowledgeEntries to fetch. */ orderBy?: Prisma.KnowledgeEntryOrderByWithRelationInput | Prisma.KnowledgeEntryOrderByWithRelationInput[]; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.KnowledgeEntryWhereUniqueInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` KnowledgeEntries from the position of the cursor. */ take?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` KnowledgeEntries. */ skip?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned KnowledgeEntries **/ _count?: true | KnowledgeEntryCountAggregateInputType; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: KnowledgeEntryAvgAggregateInputType; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: KnowledgeEntrySumAggregateInputType; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: KnowledgeEntryMinAggregateInputType; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: KnowledgeEntryMaxAggregateInputType; }; export type GetKnowledgeEntryAggregateType = { [P in keyof T & keyof AggregateKnowledgeEntry]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType; }; export type KnowledgeEntryGroupByArgs = { where?: Prisma.KnowledgeEntryWhereInput; orderBy?: Prisma.KnowledgeEntryOrderByWithAggregationInput | Prisma.KnowledgeEntryOrderByWithAggregationInput[]; by: Prisma.KnowledgeEntryScalarFieldEnum[] | Prisma.KnowledgeEntryScalarFieldEnum; having?: Prisma.KnowledgeEntryScalarWhereWithAggregatesInput; take?: number; skip?: number; _count?: KnowledgeEntryCountAggregateInputType | true; _avg?: KnowledgeEntryAvgAggregateInputType; _sum?: KnowledgeEntrySumAggregateInputType; _min?: KnowledgeEntryMinAggregateInputType; _max?: KnowledgeEntryMaxAggregateInputType; }; export type KnowledgeEntryGroupByOutputType = { id: number; entityType: string; entityId: string; key: string; valueRaw: runtime.JsonValue; valueSummary: string; confidence: number; source: string; validFrom: Date; validUntil: Date | null; lastAccessedAt: Date; stability: number; createdBy: string; createdAt: Date; updatedAt: Date; conflictLog: runtime.JsonValue; isProtected: boolean; properties: runtime.JsonValue; userId: number; surface: $Enums.Surface | null; _count: KnowledgeEntryCountAggregateOutputType | null; _avg: KnowledgeEntryAvgAggregateOutputType | null; _sum: KnowledgeEntrySumAggregateOutputType | null; _min: KnowledgeEntryMinAggregateOutputType | null; _max: KnowledgeEntryMaxAggregateOutputType | null; }; type GetKnowledgeEntryGroupByPayload = Prisma.PrismaPromise & { [P in ((keyof T) & (keyof KnowledgeEntryGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType; }>>; export type KnowledgeEntryWhereInput = { AND?: Prisma.KnowledgeEntryWhereInput | Prisma.KnowledgeEntryWhereInput[]; OR?: Prisma.KnowledgeEntryWhereInput[]; NOT?: Prisma.KnowledgeEntryWhereInput | Prisma.KnowledgeEntryWhereInput[]; id?: Prisma.IntFilter<"KnowledgeEntry"> | number; entityType?: Prisma.StringFilter<"KnowledgeEntry"> | string; entityId?: Prisma.StringFilter<"KnowledgeEntry"> | string; key?: Prisma.StringFilter<"KnowledgeEntry"> | string; valueRaw?: Prisma.JsonFilter<"KnowledgeEntry">; valueSummary?: Prisma.StringFilter<"KnowledgeEntry"> | string; confidence?: Prisma.IntFilter<"KnowledgeEntry"> | number; source?: Prisma.StringFilter<"KnowledgeEntry"> | string; validFrom?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; validUntil?: Prisma.DateTimeNullableFilter<"KnowledgeEntry"> | Date | string | null; lastAccessedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; stability?: Prisma.FloatFilter<"KnowledgeEntry"> | number; createdBy?: Prisma.StringFilter<"KnowledgeEntry"> | string; createdAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; updatedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; conflictLog?: Prisma.JsonFilter<"KnowledgeEntry">; isProtected?: Prisma.BoolFilter<"KnowledgeEntry"> | boolean; properties?: Prisma.JsonFilter<"KnowledgeEntry">; userId?: Prisma.IntFilter<"KnowledgeEntry"> | number; surface?: Prisma.EnumSurfaceNullableFilter<"KnowledgeEntry"> | $Enums.Surface | null; user?: Prisma.XOR; }; export type KnowledgeEntryOrderByWithRelationInput = { id?: Prisma.SortOrder; entityType?: Prisma.SortOrder; entityId?: Prisma.SortOrder; key?: Prisma.SortOrder; valueRaw?: Prisma.SortOrder; valueSummary?: Prisma.SortOrder; confidence?: Prisma.SortOrder; source?: Prisma.SortOrder; validFrom?: Prisma.SortOrder; validUntil?: Prisma.SortOrderInput | Prisma.SortOrder; lastAccessedAt?: Prisma.SortOrder; stability?: Prisma.SortOrder; createdBy?: Prisma.SortOrder; createdAt?: Prisma.SortOrder; updatedAt?: Prisma.SortOrder; conflictLog?: Prisma.SortOrder; isProtected?: Prisma.SortOrder; properties?: Prisma.SortOrder; userId?: Prisma.SortOrder; surface?: Prisma.SortOrderInput | Prisma.SortOrder; user?: Prisma.UserOrderByWithRelationInput; }; export type KnowledgeEntryWhereUniqueInput = Prisma.AtLeast<{ id?: number; userId_entityType_entityId_key?: Prisma.KnowledgeEntryUserIdEntityTypeEntityIdKeyCompoundUniqueInput; AND?: Prisma.KnowledgeEntryWhereInput | Prisma.KnowledgeEntryWhereInput[]; OR?: Prisma.KnowledgeEntryWhereInput[]; NOT?: Prisma.KnowledgeEntryWhereInput | Prisma.KnowledgeEntryWhereInput[]; entityType?: Prisma.StringFilter<"KnowledgeEntry"> | string; entityId?: Prisma.StringFilter<"KnowledgeEntry"> | string; key?: Prisma.StringFilter<"KnowledgeEntry"> | string; valueRaw?: Prisma.JsonFilter<"KnowledgeEntry">; valueSummary?: Prisma.StringFilter<"KnowledgeEntry"> | string; confidence?: Prisma.IntFilter<"KnowledgeEntry"> | number; source?: Prisma.StringFilter<"KnowledgeEntry"> | string; validFrom?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; validUntil?: Prisma.DateTimeNullableFilter<"KnowledgeEntry"> | Date | string | null; lastAccessedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; stability?: Prisma.FloatFilter<"KnowledgeEntry"> | number; createdBy?: Prisma.StringFilter<"KnowledgeEntry"> | string; createdAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; updatedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; conflictLog?: Prisma.JsonFilter<"KnowledgeEntry">; isProtected?: Prisma.BoolFilter<"KnowledgeEntry"> | boolean; properties?: Prisma.JsonFilter<"KnowledgeEntry">; userId?: Prisma.IntFilter<"KnowledgeEntry"> | number; surface?: Prisma.EnumSurfaceNullableFilter<"KnowledgeEntry"> | $Enums.Surface | null; user?: Prisma.XOR; }, "id" | "userId_entityType_entityId_key">; export type KnowledgeEntryOrderByWithAggregationInput = { id?: Prisma.SortOrder; entityType?: Prisma.SortOrder; entityId?: Prisma.SortOrder; key?: Prisma.SortOrder; valueRaw?: Prisma.SortOrder; valueSummary?: Prisma.SortOrder; confidence?: Prisma.SortOrder; source?: Prisma.SortOrder; validFrom?: Prisma.SortOrder; validUntil?: Prisma.SortOrderInput | Prisma.SortOrder; lastAccessedAt?: Prisma.SortOrder; stability?: Prisma.SortOrder; createdBy?: Prisma.SortOrder; createdAt?: Prisma.SortOrder; updatedAt?: Prisma.SortOrder; conflictLog?: Prisma.SortOrder; isProtected?: Prisma.SortOrder; properties?: Prisma.SortOrder; userId?: Prisma.SortOrder; surface?: Prisma.SortOrderInput | Prisma.SortOrder; _count?: Prisma.KnowledgeEntryCountOrderByAggregateInput; _avg?: Prisma.KnowledgeEntryAvgOrderByAggregateInput; _max?: Prisma.KnowledgeEntryMaxOrderByAggregateInput; _min?: Prisma.KnowledgeEntryMinOrderByAggregateInput; _sum?: Prisma.KnowledgeEntrySumOrderByAggregateInput; }; export type KnowledgeEntryScalarWhereWithAggregatesInput = { AND?: Prisma.KnowledgeEntryScalarWhereWithAggregatesInput | Prisma.KnowledgeEntryScalarWhereWithAggregatesInput[]; OR?: Prisma.KnowledgeEntryScalarWhereWithAggregatesInput[]; NOT?: Prisma.KnowledgeEntryScalarWhereWithAggregatesInput | Prisma.KnowledgeEntryScalarWhereWithAggregatesInput[]; id?: Prisma.IntWithAggregatesFilter<"KnowledgeEntry"> | number; entityType?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; entityId?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; key?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; valueRaw?: Prisma.JsonWithAggregatesFilter<"KnowledgeEntry">; valueSummary?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; confidence?: Prisma.IntWithAggregatesFilter<"KnowledgeEntry"> | number; source?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; validFrom?: Prisma.DateTimeWithAggregatesFilter<"KnowledgeEntry"> | Date | string; validUntil?: Prisma.DateTimeNullableWithAggregatesFilter<"KnowledgeEntry"> | Date | string | null; lastAccessedAt?: Prisma.DateTimeWithAggregatesFilter<"KnowledgeEntry"> | Date | string; stability?: Prisma.FloatWithAggregatesFilter<"KnowledgeEntry"> | number; createdBy?: Prisma.StringWithAggregatesFilter<"KnowledgeEntry"> | string; createdAt?: Prisma.DateTimeWithAggregatesFilter<"KnowledgeEntry"> | Date | string; updatedAt?: Prisma.DateTimeWithAggregatesFilter<"KnowledgeEntry"> | Date | string; conflictLog?: Prisma.JsonWithAggregatesFilter<"KnowledgeEntry">; isProtected?: Prisma.BoolWithAggregatesFilter<"KnowledgeEntry"> | boolean; properties?: Prisma.JsonWithAggregatesFilter<"KnowledgeEntry">; userId?: Prisma.IntWithAggregatesFilter<"KnowledgeEntry"> | number; surface?: Prisma.EnumSurfaceNullableWithAggregatesFilter<"KnowledgeEntry"> | $Enums.Surface | null; }; export type KnowledgeEntryCreateInput = { entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: $Enums.Surface | null; user?: Prisma.UserCreateNestedOneWithoutEntriesInput; }; export type KnowledgeEntryUncheckedCreateInput = { id?: number; entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; userId?: number; surface?: $Enums.Surface | null; }; export type KnowledgeEntryUpdateInput = { entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; user?: Prisma.UserUpdateOneRequiredWithoutEntriesNestedInput; }; export type KnowledgeEntryUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number; entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; userId?: Prisma.IntFieldUpdateOperationsInput | number; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntryCreateManyInput = { id?: number; entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; userId?: number; surface?: $Enums.Surface | null; }; export type KnowledgeEntryUpdateManyMutationInput = { entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntryUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number; entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; userId?: Prisma.IntFieldUpdateOperationsInput | number; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntryListRelationFilter = { every?: Prisma.KnowledgeEntryWhereInput; some?: Prisma.KnowledgeEntryWhereInput; none?: Prisma.KnowledgeEntryWhereInput; }; export type KnowledgeEntryOrderByRelationAggregateInput = { _count?: Prisma.SortOrder; }; export type KnowledgeEntryUserIdEntityTypeEntityIdKeyCompoundUniqueInput = { userId: number; entityType: string; entityId: string; key: string; }; export type KnowledgeEntryCountOrderByAggregateInput = { id?: Prisma.SortOrder; entityType?: Prisma.SortOrder; entityId?: Prisma.SortOrder; key?: Prisma.SortOrder; valueRaw?: Prisma.SortOrder; valueSummary?: Prisma.SortOrder; confidence?: Prisma.SortOrder; source?: Prisma.SortOrder; validFrom?: Prisma.SortOrder; validUntil?: Prisma.SortOrder; lastAccessedAt?: Prisma.SortOrder; stability?: Prisma.SortOrder; createdBy?: Prisma.SortOrder; createdAt?: Prisma.SortOrder; updatedAt?: Prisma.SortOrder; conflictLog?: Prisma.SortOrder; isProtected?: Prisma.SortOrder; properties?: Prisma.SortOrder; userId?: Prisma.SortOrder; surface?: Prisma.SortOrder; }; export type KnowledgeEntryAvgOrderByAggregateInput = { id?: Prisma.SortOrder; confidence?: Prisma.SortOrder; stability?: Prisma.SortOrder; userId?: Prisma.SortOrder; }; export type KnowledgeEntryMaxOrderByAggregateInput = { id?: Prisma.SortOrder; entityType?: Prisma.SortOrder; entityId?: Prisma.SortOrder; key?: Prisma.SortOrder; valueSummary?: Prisma.SortOrder; confidence?: Prisma.SortOrder; source?: Prisma.SortOrder; validFrom?: Prisma.SortOrder; validUntil?: Prisma.SortOrder; lastAccessedAt?: Prisma.SortOrder; stability?: Prisma.SortOrder; createdBy?: Prisma.SortOrder; createdAt?: Prisma.SortOrder; updatedAt?: Prisma.SortOrder; isProtected?: Prisma.SortOrder; userId?: Prisma.SortOrder; surface?: Prisma.SortOrder; }; export type KnowledgeEntryMinOrderByAggregateInput = { id?: Prisma.SortOrder; entityType?: Prisma.SortOrder; entityId?: Prisma.SortOrder; key?: Prisma.SortOrder; valueSummary?: Prisma.SortOrder; confidence?: Prisma.SortOrder; source?: Prisma.SortOrder; validFrom?: Prisma.SortOrder; validUntil?: Prisma.SortOrder; lastAccessedAt?: Prisma.SortOrder; stability?: Prisma.SortOrder; createdBy?: Prisma.SortOrder; createdAt?: Prisma.SortOrder; updatedAt?: Prisma.SortOrder; isProtected?: Prisma.SortOrder; userId?: Prisma.SortOrder; surface?: Prisma.SortOrder; }; export type KnowledgeEntrySumOrderByAggregateInput = { id?: Prisma.SortOrder; confidence?: Prisma.SortOrder; stability?: Prisma.SortOrder; userId?: Prisma.SortOrder; }; export type KnowledgeEntryCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.KnowledgeEntryCreateWithoutUserInput[] | Prisma.KnowledgeEntryUncheckedCreateWithoutUserInput[]; connectOrCreate?: Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput | Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput[]; createMany?: Prisma.KnowledgeEntryCreateManyUserInputEnvelope; connect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; }; export type KnowledgeEntryUncheckedCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.KnowledgeEntryCreateWithoutUserInput[] | Prisma.KnowledgeEntryUncheckedCreateWithoutUserInput[]; connectOrCreate?: Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput | Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput[]; createMany?: Prisma.KnowledgeEntryCreateManyUserInputEnvelope; connect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; }; export type KnowledgeEntryUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.KnowledgeEntryCreateWithoutUserInput[] | Prisma.KnowledgeEntryUncheckedCreateWithoutUserInput[]; connectOrCreate?: Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput | Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput[]; upsert?: Prisma.KnowledgeEntryUpsertWithWhereUniqueWithoutUserInput | Prisma.KnowledgeEntryUpsertWithWhereUniqueWithoutUserInput[]; createMany?: Prisma.KnowledgeEntryCreateManyUserInputEnvelope; set?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; disconnect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; delete?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; connect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; update?: Prisma.KnowledgeEntryUpdateWithWhereUniqueWithoutUserInput | Prisma.KnowledgeEntryUpdateWithWhereUniqueWithoutUserInput[]; updateMany?: Prisma.KnowledgeEntryUpdateManyWithWhereWithoutUserInput | Prisma.KnowledgeEntryUpdateManyWithWhereWithoutUserInput[]; deleteMany?: Prisma.KnowledgeEntryScalarWhereInput | Prisma.KnowledgeEntryScalarWhereInput[]; }; export type KnowledgeEntryUncheckedUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.KnowledgeEntryCreateWithoutUserInput[] | Prisma.KnowledgeEntryUncheckedCreateWithoutUserInput[]; connectOrCreate?: Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput | Prisma.KnowledgeEntryCreateOrConnectWithoutUserInput[]; upsert?: Prisma.KnowledgeEntryUpsertWithWhereUniqueWithoutUserInput | Prisma.KnowledgeEntryUpsertWithWhereUniqueWithoutUserInput[]; createMany?: Prisma.KnowledgeEntryCreateManyUserInputEnvelope; set?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; disconnect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; delete?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; connect?: Prisma.KnowledgeEntryWhereUniqueInput | Prisma.KnowledgeEntryWhereUniqueInput[]; update?: Prisma.KnowledgeEntryUpdateWithWhereUniqueWithoutUserInput | Prisma.KnowledgeEntryUpdateWithWhereUniqueWithoutUserInput[]; updateMany?: Prisma.KnowledgeEntryUpdateManyWithWhereWithoutUserInput | Prisma.KnowledgeEntryUpdateManyWithWhereWithoutUserInput[]; deleteMany?: Prisma.KnowledgeEntryScalarWhereInput | Prisma.KnowledgeEntryScalarWhereInput[]; }; export type FloatFieldUpdateOperationsInput = { set?: number; increment?: number; decrement?: number; multiply?: number; divide?: number; }; export type BoolFieldUpdateOperationsInput = { set?: boolean; }; export type NullableEnumSurfaceFieldUpdateOperationsInput = { set?: $Enums.Surface | null; }; export type KnowledgeEntryCreateWithoutUserInput = { entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: $Enums.Surface | null; }; export type KnowledgeEntryUncheckedCreateWithoutUserInput = { id?: number; entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: $Enums.Surface | null; }; export type KnowledgeEntryCreateOrConnectWithoutUserInput = { where: Prisma.KnowledgeEntryWhereUniqueInput; create: Prisma.XOR; }; export type KnowledgeEntryCreateManyUserInputEnvelope = { data: Prisma.KnowledgeEntryCreateManyUserInput | Prisma.KnowledgeEntryCreateManyUserInput[]; skipDuplicates?: boolean; }; export type KnowledgeEntryUpsertWithWhereUniqueWithoutUserInput = { where: Prisma.KnowledgeEntryWhereUniqueInput; update: Prisma.XOR; create: Prisma.XOR; }; export type KnowledgeEntryUpdateWithWhereUniqueWithoutUserInput = { where: Prisma.KnowledgeEntryWhereUniqueInput; data: Prisma.XOR; }; export type KnowledgeEntryUpdateManyWithWhereWithoutUserInput = { where: Prisma.KnowledgeEntryScalarWhereInput; data: Prisma.XOR; }; export type KnowledgeEntryScalarWhereInput = { AND?: Prisma.KnowledgeEntryScalarWhereInput | Prisma.KnowledgeEntryScalarWhereInput[]; OR?: Prisma.KnowledgeEntryScalarWhereInput[]; NOT?: Prisma.KnowledgeEntryScalarWhereInput | Prisma.KnowledgeEntryScalarWhereInput[]; id?: Prisma.IntFilter<"KnowledgeEntry"> | number; entityType?: Prisma.StringFilter<"KnowledgeEntry"> | string; entityId?: Prisma.StringFilter<"KnowledgeEntry"> | string; key?: Prisma.StringFilter<"KnowledgeEntry"> | string; valueRaw?: Prisma.JsonFilter<"KnowledgeEntry">; valueSummary?: Prisma.StringFilter<"KnowledgeEntry"> | string; confidence?: Prisma.IntFilter<"KnowledgeEntry"> | number; source?: Prisma.StringFilter<"KnowledgeEntry"> | string; validFrom?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; validUntil?: Prisma.DateTimeNullableFilter<"KnowledgeEntry"> | Date | string | null; lastAccessedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; stability?: Prisma.FloatFilter<"KnowledgeEntry"> | number; createdBy?: Prisma.StringFilter<"KnowledgeEntry"> | string; createdAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; updatedAt?: Prisma.DateTimeFilter<"KnowledgeEntry"> | Date | string; conflictLog?: Prisma.JsonFilter<"KnowledgeEntry">; isProtected?: Prisma.BoolFilter<"KnowledgeEntry"> | boolean; properties?: Prisma.JsonFilter<"KnowledgeEntry">; userId?: Prisma.IntFilter<"KnowledgeEntry"> | number; surface?: Prisma.EnumSurfaceNullableFilter<"KnowledgeEntry"> | $Enums.Surface | null; }; export type KnowledgeEntryCreateManyUserInput = { id?: number; entityType: string; entityId: string; key: string; valueRaw: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary: string; confidence?: number; source: string; validFrom?: Date | string; validUntil?: Date | string | null; lastAccessedAt?: Date | string; stability?: number; createdBy: string; createdAt?: Date | string; updatedAt?: Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: $Enums.Surface | null; }; export type KnowledgeEntryUpdateWithoutUserInput = { entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntryUncheckedUpdateWithoutUserInput = { id?: Prisma.IntFieldUpdateOperationsInput | number; entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntryUncheckedUpdateManyWithoutUserInput = { id?: Prisma.IntFieldUpdateOperationsInput | number; entityType?: Prisma.StringFieldUpdateOperationsInput | string; entityId?: Prisma.StringFieldUpdateOperationsInput | string; key?: Prisma.StringFieldUpdateOperationsInput | string; valueRaw?: Prisma.JsonNullValueInput | runtime.InputJsonValue; valueSummary?: Prisma.StringFieldUpdateOperationsInput | string; confidence?: Prisma.IntFieldUpdateOperationsInput | number; source?: Prisma.StringFieldUpdateOperationsInput | string; validFrom?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; validUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null; lastAccessedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; stability?: Prisma.FloatFieldUpdateOperationsInput | number; createdBy?: Prisma.StringFieldUpdateOperationsInput | string; createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string; conflictLog?: Prisma.JsonNullValueInput | runtime.InputJsonValue; isProtected?: Prisma.BoolFieldUpdateOperationsInput | boolean; properties?: Prisma.JsonNullValueInput | runtime.InputJsonValue; surface?: Prisma.NullableEnumSurfaceFieldUpdateOperationsInput | $Enums.Surface | null; }; export type KnowledgeEntrySelect = runtime.Types.Extensions.GetSelect<{ id?: boolean; entityType?: boolean; entityId?: boolean; key?: boolean; valueRaw?: boolean; valueSummary?: boolean; confidence?: boolean; source?: boolean; validFrom?: boolean; validUntil?: boolean; lastAccessedAt?: boolean; stability?: boolean; createdBy?: boolean; createdAt?: boolean; updatedAt?: boolean; conflictLog?: boolean; isProtected?: boolean; properties?: boolean; userId?: boolean; surface?: boolean; user?: boolean | Prisma.UserDefaultArgs; }, ExtArgs["result"]["knowledgeEntry"]>; export type KnowledgeEntrySelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean; entityType?: boolean; entityId?: boolean; key?: boolean; valueRaw?: boolean; valueSummary?: boolean; confidence?: boolean; source?: boolean; validFrom?: boolean; validUntil?: boolean; lastAccessedAt?: boolean; stability?: boolean; createdBy?: boolean; createdAt?: boolean; updatedAt?: boolean; conflictLog?: boolean; isProtected?: boolean; properties?: boolean; userId?: boolean; surface?: boolean; user?: boolean | Prisma.UserDefaultArgs; }, ExtArgs["result"]["knowledgeEntry"]>; export type KnowledgeEntrySelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean; entityType?: boolean; entityId?: boolean; key?: boolean; valueRaw?: boolean; valueSummary?: boolean; confidence?: boolean; source?: boolean; validFrom?: boolean; validUntil?: boolean; lastAccessedAt?: boolean; stability?: boolean; createdBy?: boolean; createdAt?: boolean; updatedAt?: boolean; conflictLog?: boolean; isProtected?: boolean; properties?: boolean; userId?: boolean; surface?: boolean; user?: boolean | Prisma.UserDefaultArgs; }, ExtArgs["result"]["knowledgeEntry"]>; export type KnowledgeEntrySelectScalar = { id?: boolean; entityType?: boolean; entityId?: boolean; key?: boolean; valueRaw?: boolean; valueSummary?: boolean; confidence?: boolean; source?: boolean; validFrom?: boolean; validUntil?: boolean; lastAccessedAt?: boolean; stability?: boolean; createdBy?: boolean; createdAt?: boolean; updatedAt?: boolean; conflictLog?: boolean; isProtected?: boolean; properties?: boolean; userId?: boolean; surface?: boolean; }; export type KnowledgeEntryOmit = runtime.Types.Extensions.GetOmit<"id" | "entityType" | "entityId" | "key" | "valueRaw" | "valueSummary" | "confidence" | "source" | "validFrom" | "validUntil" | "lastAccessedAt" | "stability" | "createdBy" | "createdAt" | "updatedAt" | "conflictLog" | "isProtected" | "properties" | "userId" | "surface", ExtArgs["result"]["knowledgeEntry"]>; export type KnowledgeEntryInclude = { user?: boolean | Prisma.UserDefaultArgs; }; export type KnowledgeEntryIncludeCreateManyAndReturn = { user?: boolean | Prisma.UserDefaultArgs; }; export type KnowledgeEntryIncludeUpdateManyAndReturn = { user?: boolean | Prisma.UserDefaultArgs; }; export type $KnowledgeEntryPayload = { name: "KnowledgeEntry"; objects: { user: Prisma.$UserPayload; }; scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number; entityType: string; entityId: string; key: string; valueRaw: runtime.JsonValue; valueSummary: string; confidence: number; source: string; validFrom: Date; validUntil: Date | null; lastAccessedAt: Date; stability: number; createdBy: string; createdAt: Date; updatedAt: Date; conflictLog: runtime.JsonValue; isProtected: boolean; properties: runtime.JsonValue; userId: number; surface: $Enums.Surface | null; }, ExtArgs["result"]["knowledgeEntry"]>; composites: {}; }; export type KnowledgeEntryGetPayload = runtime.Types.Result.GetResult; export type KnowledgeEntryCountArgs = Omit & { select?: KnowledgeEntryCountAggregateInputType | true; }; export interface KnowledgeEntryDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['KnowledgeEntry']; meta: { name: 'KnowledgeEntry'; }; }; /** * Find zero or one KnowledgeEntry that matches the filter. * @param {KnowledgeEntryFindUniqueArgs} args - Arguments to find a KnowledgeEntry * @example * // Get one KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>; /** * Find one KnowledgeEntry that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {KnowledgeEntryFindUniqueOrThrowArgs} args - Arguments to find a KnowledgeEntry * @example * // Get one KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Find the first KnowledgeEntry that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryFindFirstArgs} args - Arguments to find a KnowledgeEntry * @example * // Get one KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>; /** * Find the first KnowledgeEntry that matches the filter or * throw `PrismaKnownClientError` with `P2025` code if no matches were found. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryFindFirstOrThrowArgs} args - Arguments to find a KnowledgeEntry * @example * // Get one KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Find zero or more KnowledgeEntries that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all KnowledgeEntries * const knowledgeEntries = await prisma.knowledgeEntry.findMany() * * // Get first 10 KnowledgeEntries * const knowledgeEntries = await prisma.knowledgeEntry.findMany({ take: 10 }) * * // Only select the `id` * const knowledgeEntryWithIdOnly = await prisma.knowledgeEntry.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>>; /** * Create a KnowledgeEntry. * @param {KnowledgeEntryCreateArgs} args - Arguments to create a KnowledgeEntry. * @example * // Create one KnowledgeEntry * const KnowledgeEntry = await prisma.knowledgeEntry.create({ * data: { * // ... data to create a KnowledgeEntry * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Create many KnowledgeEntries. * @param {KnowledgeEntryCreateManyArgs} args - Arguments to create many KnowledgeEntries. * @example * // Create many KnowledgeEntries * const knowledgeEntry = await prisma.knowledgeEntry.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise; /** * Create many KnowledgeEntries and returns the data saved in the database. * @param {KnowledgeEntryCreateManyAndReturnArgs} args - Arguments to create many KnowledgeEntries. * @example * // Create many KnowledgeEntries * const knowledgeEntry = await prisma.knowledgeEntry.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many KnowledgeEntries and only return the `id` * const knowledgeEntryWithIdOnly = await prisma.knowledgeEntry.createManyAndReturn({ * select: { id: true }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ createManyAndReturn(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "createManyAndReturn", GlobalOmitOptions>>; /** * Delete a KnowledgeEntry. * @param {KnowledgeEntryDeleteArgs} args - Arguments to delete one KnowledgeEntry. * @example * // Delete one KnowledgeEntry * const KnowledgeEntry = await prisma.knowledgeEntry.delete({ * where: { * // ... filter to delete one KnowledgeEntry * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Update one KnowledgeEntry. * @param {KnowledgeEntryUpdateArgs} args - Arguments to update one KnowledgeEntry. * @example * // Update one KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Delete zero or more KnowledgeEntries. * @param {KnowledgeEntryDeleteManyArgs} args - Arguments to filter KnowledgeEntries to delete. * @example * // Delete a few KnowledgeEntries * const { count } = await prisma.knowledgeEntry.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise; /** * Update zero or more KnowledgeEntries. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many KnowledgeEntries * const knowledgeEntry = await prisma.knowledgeEntry.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise; /** * Update zero or more KnowledgeEntries and returns the data updated in the database. * @param {KnowledgeEntryUpdateManyAndReturnArgs} args - Arguments to update many KnowledgeEntries. * @example * // Update many KnowledgeEntries * const knowledgeEntry = await prisma.knowledgeEntry.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more KnowledgeEntries and only return the `id` * const knowledgeEntryWithIdOnly = await prisma.knowledgeEntry.updateManyAndReturn({ * select: { id: true }, * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ updateManyAndReturn(args: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "updateManyAndReturn", GlobalOmitOptions>>; /** * Create or update one KnowledgeEntry. * @param {KnowledgeEntryUpsertArgs} args - Arguments to update or create a KnowledgeEntry. * @example * // Update or create a KnowledgeEntry * const knowledgeEntry = await prisma.knowledgeEntry.upsert({ * create: { * // ... data to create a KnowledgeEntry * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the KnowledgeEntry we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__KnowledgeEntryClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>; /** * Count the number of KnowledgeEntries. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryCountArgs} args - Arguments to filter KnowledgeEntries to count. * @example * // Count the number of KnowledgeEntries * const count = await prisma.knowledgeEntry.count({ * where: { * // ... the filter for the KnowledgeEntries we want to count * } * }) **/ count(args?: Prisma.Subset): Prisma.PrismaPromise ? T['select'] extends true ? number : Prisma.GetScalarType : number>; /** * Allows you to perform aggregations operations on a KnowledgeEntry. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryAggregateArgs} args - Select which aggregations you would like to apply and on what fields. * @example * // Ordered by age ascending * // Where email contains prisma.io * // Limited to the 10 users * const aggregations = await prisma.user.aggregate({ * _avg: { * age: true, * }, * where: { * email: { * contains: "prisma.io", * }, * }, * orderBy: { * age: "asc", * }, * take: 10, * }) **/ aggregate(args: Prisma.Subset): Prisma.PrismaPromise>; /** * Group by KnowledgeEntry. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {KnowledgeEntryGroupByArgs} args - Group by arguments. * @example * // Group by city, order by createdAt, get count * const result = await prisma.user.groupBy({ * by: ['city', 'createdAt'], * orderBy: { * createdAt: true * }, * _count: { * _all: true * }, * }) * **/ groupBy>, Prisma.Extends<'take', Prisma.Keys>>, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: KnowledgeEntryGroupByArgs['orderBy']; } : { orderBy?: KnowledgeEntryGroupByArgs['orderBy']; }, OrderFields extends Prisma.ExcludeUnderscoreKeys>>, ByFields extends Prisma.MaybeTupleToUnion, ByValid extends Prisma.Has, HavingFields extends Prisma.GetHavingFields, HavingValid extends Prisma.Has, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? { [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [ Error, 'Field ', P, ` in "having" needs to be provided in "by"` ]; }[HavingFields] : 'take' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`; }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`; }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`; }[OrderFields]>(args: Prisma.SubsetIntersection & InputErrors): {} extends InputErrors ? GetKnowledgeEntryGroupByPayload : Prisma.PrismaPromise; /** * Fields of the KnowledgeEntry model */ readonly fields: KnowledgeEntryFieldRefs; } /** * The delegate class that acts as a "Promise-like" for KnowledgeEntry. * Why is this prefixed with `Prisma__`? * Because we want to prevent naming conflicts as mentioned in * https://github.com/prisma/prisma-client-js/issues/707 */ export interface Prisma__KnowledgeEntryClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise"; user = {}>(args?: Prisma.Subset>): Prisma.Prisma__UserClient, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>; /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Promise is resolved. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of which ever callback is executed. */ then(onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise; /** * Attaches a callback for only the rejection of the Promise. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of the callback. */ catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise; /** * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The * resolved value cannot be modified from the callback. * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected). * @returns A Promise for the completion of the callback. */ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise; } /** * Fields of the KnowledgeEntry model */ export interface KnowledgeEntryFieldRefs { readonly id: Prisma.FieldRef<"KnowledgeEntry", 'Int'>; readonly entityType: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly entityId: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly key: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly valueRaw: Prisma.FieldRef<"KnowledgeEntry", 'Json'>; readonly valueSummary: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly confidence: Prisma.FieldRef<"KnowledgeEntry", 'Int'>; readonly source: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly validFrom: Prisma.FieldRef<"KnowledgeEntry", 'DateTime'>; readonly validUntil: Prisma.FieldRef<"KnowledgeEntry", 'DateTime'>; readonly lastAccessedAt: Prisma.FieldRef<"KnowledgeEntry", 'DateTime'>; readonly stability: Prisma.FieldRef<"KnowledgeEntry", 'Float'>; readonly createdBy: Prisma.FieldRef<"KnowledgeEntry", 'String'>; readonly createdAt: Prisma.FieldRef<"KnowledgeEntry", 'DateTime'>; readonly updatedAt: Prisma.FieldRef<"KnowledgeEntry", 'DateTime'>; readonly conflictLog: Prisma.FieldRef<"KnowledgeEntry", 'Json'>; readonly isProtected: Prisma.FieldRef<"KnowledgeEntry", 'Boolean'>; readonly properties: Prisma.FieldRef<"KnowledgeEntry", 'Json'>; readonly userId: Prisma.FieldRef<"KnowledgeEntry", 'Int'>; readonly surface: Prisma.FieldRef<"KnowledgeEntry", 'Surface'>; } /** * KnowledgeEntry findUnique */ export type KnowledgeEntryFindUniqueArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter, which KnowledgeEntry to fetch. */ where: Prisma.KnowledgeEntryWhereUniqueInput; }; /** * KnowledgeEntry findUniqueOrThrow */ export type KnowledgeEntryFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter, which KnowledgeEntry to fetch. */ where: Prisma.KnowledgeEntryWhereUniqueInput; }; /** * KnowledgeEntry findFirst */ export type KnowledgeEntryFindFirstArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter, which KnowledgeEntry to fetch. */ where?: Prisma.KnowledgeEntryWhereInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of KnowledgeEntries to fetch. */ orderBy?: Prisma.KnowledgeEntryOrderByWithRelationInput | Prisma.KnowledgeEntryOrderByWithRelationInput[]; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for KnowledgeEntries. */ cursor?: Prisma.KnowledgeEntryWhereUniqueInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` KnowledgeEntries from the position of the cursor. */ take?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` KnowledgeEntries. */ skip?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of KnowledgeEntries. */ distinct?: Prisma.KnowledgeEntryScalarFieldEnum | Prisma.KnowledgeEntryScalarFieldEnum[]; }; /** * KnowledgeEntry findFirstOrThrow */ export type KnowledgeEntryFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter, which KnowledgeEntry to fetch. */ where?: Prisma.KnowledgeEntryWhereInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of KnowledgeEntries to fetch. */ orderBy?: Prisma.KnowledgeEntryOrderByWithRelationInput | Prisma.KnowledgeEntryOrderByWithRelationInput[]; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for KnowledgeEntries. */ cursor?: Prisma.KnowledgeEntryWhereUniqueInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` KnowledgeEntries from the position of the cursor. */ take?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` KnowledgeEntries. */ skip?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of KnowledgeEntries. */ distinct?: Prisma.KnowledgeEntryScalarFieldEnum | Prisma.KnowledgeEntryScalarFieldEnum[]; }; /** * KnowledgeEntry findMany */ export type KnowledgeEntryFindManyArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter, which KnowledgeEntries to fetch. */ where?: Prisma.KnowledgeEntryWhereInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of KnowledgeEntries to fetch. */ orderBy?: Prisma.KnowledgeEntryOrderByWithRelationInput | Prisma.KnowledgeEntryOrderByWithRelationInput[]; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing KnowledgeEntries. */ cursor?: Prisma.KnowledgeEntryWhereUniqueInput; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` KnowledgeEntries from the position of the cursor. */ take?: number; /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` KnowledgeEntries. */ skip?: number; distinct?: Prisma.KnowledgeEntryScalarFieldEnum | Prisma.KnowledgeEntryScalarFieldEnum[]; }; /** * KnowledgeEntry create */ export type KnowledgeEntryCreateArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * The data needed to create a KnowledgeEntry. */ data: Prisma.XOR; }; /** * KnowledgeEntry createMany */ export type KnowledgeEntryCreateManyArgs = { /** * The data used to create many KnowledgeEntries. */ data: Prisma.KnowledgeEntryCreateManyInput | Prisma.KnowledgeEntryCreateManyInput[]; skipDuplicates?: boolean; }; /** * KnowledgeEntry createManyAndReturn */ export type KnowledgeEntryCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelectCreateManyAndReturn | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * The data used to create many KnowledgeEntries. */ data: Prisma.KnowledgeEntryCreateManyInput | Prisma.KnowledgeEntryCreateManyInput[]; skipDuplicates?: boolean; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryIncludeCreateManyAndReturn | null; }; /** * KnowledgeEntry update */ export type KnowledgeEntryUpdateArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * The data needed to update a KnowledgeEntry. */ data: Prisma.XOR; /** * Choose, which KnowledgeEntry to update. */ where: Prisma.KnowledgeEntryWhereUniqueInput; }; /** * KnowledgeEntry updateMany */ export type KnowledgeEntryUpdateManyArgs = { /** * The data used to update KnowledgeEntries. */ data: Prisma.XOR; /** * Filter which KnowledgeEntries to update */ where?: Prisma.KnowledgeEntryWhereInput; /** * Limit how many KnowledgeEntries to update. */ limit?: number; }; /** * KnowledgeEntry updateManyAndReturn */ export type KnowledgeEntryUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelectUpdateManyAndReturn | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * The data used to update KnowledgeEntries. */ data: Prisma.XOR; /** * Filter which KnowledgeEntries to update */ where?: Prisma.KnowledgeEntryWhereInput; /** * Limit how many KnowledgeEntries to update. */ limit?: number; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryIncludeUpdateManyAndReturn | null; }; /** * KnowledgeEntry upsert */ export type KnowledgeEntryUpsertArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * The filter to search for the KnowledgeEntry to update in case it exists. */ where: Prisma.KnowledgeEntryWhereUniqueInput; /** * In case the KnowledgeEntry found by the `where` argument doesn't exist, create a new KnowledgeEntry with this data. */ create: Prisma.XOR; /** * In case the KnowledgeEntry was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR; }; /** * KnowledgeEntry delete */ export type KnowledgeEntryDeleteArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; /** * Filter which KnowledgeEntry to delete. */ where: Prisma.KnowledgeEntryWhereUniqueInput; }; /** * KnowledgeEntry deleteMany */ export type KnowledgeEntryDeleteManyArgs = { /** * Filter which KnowledgeEntries to delete */ where?: Prisma.KnowledgeEntryWhereInput; /** * Limit how many KnowledgeEntries to delete. */ limit?: number; }; /** * KnowledgeEntry without action */ export type KnowledgeEntryDefaultArgs = { /** * Select specific fields to fetch from the KnowledgeEntry */ select?: Prisma.KnowledgeEntrySelect | null; /** * Omit specific fields from the KnowledgeEntry */ omit?: Prisma.KnowledgeEntryOmit | null; /** * Choose, which related nodes to fetch as well */ include?: Prisma.KnowledgeEntryInclude | null; }; export {}; //# sourceMappingURL=KnowledgeEntry.d.ts.map