import * as runtime from "@prisma/client/runtime/index-browser"; export type * from '../models'; export type * from './prismaNamespace'; export declare const Decimal: typeof runtime.Decimal; export declare const NullTypes: { DbNull: (new (secret: never) => typeof runtime.DbNull); JsonNull: (new (secret: never) => typeof runtime.JsonNull); AnyNull: (new (secret: never) => typeof runtime.AnyNull); }; /** * Helper for filtering JSON entries that have `null` on the database (empty on the db) * * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field */ export declare const DbNull: import("@prisma/client-runtime-utils").DbNullClass; /** * Helper for filtering JSON entries that have JSON `null` values (not empty on the db) * * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field */ export declare const JsonNull: import("@prisma/client-runtime-utils").JsonNullClass; /** * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull` * * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field */ export declare const AnyNull: import("@prisma/client-runtime-utils").AnyNullClass; export declare const ModelName: { readonly User: "User"; readonly Token: "Token"; readonly KnowledgeEntry: "KnowledgeEntry"; readonly Archive: "Archive"; readonly EntityRelationship: "EntityRelationship"; readonly WriteReceipt: "WriteReceipt"; readonly Entity: "Entity"; readonly EntityAlias: "EntityAlias"; readonly StaffEvent: "StaffEvent"; readonly Feedback: "Feedback"; }; export type ModelName = (typeof ModelName)[keyof typeof ModelName]; export declare const TransactionIsolationLevel: { readonly ReadUncommitted: "ReadUncommitted"; readonly ReadCommitted: "ReadCommitted"; readonly RepeatableRead: "RepeatableRead"; readonly Serializable: "Serializable"; }; export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]; export declare const UserScalarFieldEnum: { readonly id: "id"; readonly email: "email"; readonly createdAt: "createdAt"; readonly mergedInto: "mergedInto"; }; export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]; export declare const TokenScalarFieldEnum: { readonly id: "id"; readonly tokenHash: "tokenHash"; readonly userId: "userId"; readonly scope: "scope"; readonly surface: "surface"; readonly createdAt: "createdAt"; readonly lastUsedAt: "lastUsedAt"; readonly revokedAt: "revokedAt"; }; export type TokenScalarFieldEnum = (typeof TokenScalarFieldEnum)[keyof typeof TokenScalarFieldEnum]; export declare const KnowledgeEntryScalarFieldEnum: { readonly id: "id"; readonly entityType: "entityType"; readonly entityId: "entityId"; readonly key: "key"; readonly valueRaw: "valueRaw"; readonly valueSummary: "valueSummary"; readonly confidence: "confidence"; readonly source: "source"; readonly validFrom: "validFrom"; readonly validUntil: "validUntil"; readonly lastAccessedAt: "lastAccessedAt"; readonly stability: "stability"; readonly createdBy: "createdBy"; readonly createdAt: "createdAt"; readonly updatedAt: "updatedAt"; readonly conflictLog: "conflictLog"; readonly isProtected: "isProtected"; readonly properties: "properties"; readonly userId: "userId"; readonly surface: "surface"; }; export type KnowledgeEntryScalarFieldEnum = (typeof KnowledgeEntryScalarFieldEnum)[keyof typeof KnowledgeEntryScalarFieldEnum]; export declare const ArchiveScalarFieldEnum: { readonly id: "id"; readonly entityType: "entityType"; readonly entityId: "entityId"; readonly key: "key"; readonly valueRaw: "valueRaw"; readonly valueSummary: "valueSummary"; readonly confidence: "confidence"; readonly source: "source"; readonly validFrom: "validFrom"; readonly validUntil: "validUntil"; readonly createdBy: "createdBy"; readonly createdAt: "createdAt"; readonly conflictLog: "conflictLog"; readonly properties: "properties"; readonly archivedAt: "archivedAt"; readonly archivedReason: "archivedReason"; readonly resolutionState: "resolutionState"; readonly resolutionOutcome: "resolutionOutcome"; readonly supersededBy: "supersededBy"; readonly supersededByEntityType: "supersededByEntityType"; readonly supersededByEntityId: "supersededByEntityId"; readonly supersededByKey: "supersededByKey"; }; export type ArchiveScalarFieldEnum = (typeof ArchiveScalarFieldEnum)[keyof typeof ArchiveScalarFieldEnum]; export declare const EntityRelationshipScalarFieldEnum: { readonly id: "id"; readonly fromType: "fromType"; readonly fromId: "fromId"; readonly relationshipType: "relationshipType"; readonly toType: "toType"; readonly toId: "toId"; readonly properties: "properties"; readonly createdBy: "createdBy"; readonly createdAt: "createdAt"; }; export type EntityRelationshipScalarFieldEnum = (typeof EntityRelationshipScalarFieldEnum)[keyof typeof EntityRelationshipScalarFieldEnum]; export declare const WriteReceiptScalarFieldEnum: { readonly id: "id"; readonly requestId: "requestId"; readonly entityType: "entityType"; readonly entityId: "entityId"; readonly key: "key"; readonly outcome: "outcome"; readonly resultEntryId: "resultEntryId"; readonly escalationFile: "escalationFile"; readonly createdAt: "createdAt"; }; export type WriteReceiptScalarFieldEnum = (typeof WriteReceiptScalarFieldEnum)[keyof typeof WriteReceiptScalarFieldEnum]; export declare const EntityScalarFieldEnum: { readonly entityType: "entityType"; readonly entityId: "entityId"; readonly displayName: "displayName"; readonly createdAt: "createdAt"; }; export type EntityScalarFieldEnum = (typeof EntityScalarFieldEnum)[keyof typeof EntityScalarFieldEnum]; export declare const EntityAliasScalarFieldEnum: { readonly id: "id"; readonly entityType: "entityType"; readonly aliasNorm: "aliasNorm"; readonly rawAlias: "rawAlias"; readonly canonicalEntityType: "canonicalEntityType"; readonly canonicalEntityId: "canonicalEntityId"; readonly source: "source"; readonly confidence: "confidence"; readonly createdAt: "createdAt"; }; export type EntityAliasScalarFieldEnum = (typeof EntityAliasScalarFieldEnum)[keyof typeof EntityAliasScalarFieldEnum]; export declare const StaffEventScalarFieldEnum: { readonly eventId: "eventId"; readonly timestamp: "timestamp"; readonly staffComponent: "staffComponent"; readonly actionType: "actionType"; readonly agentId: "agentId"; readonly source: "source"; readonly entityType: "entityType"; readonly entityId: "entityId"; readonly key: "key"; readonly reason: "reason"; readonly level: "level"; readonly metadata: "metadata"; }; export type StaffEventScalarFieldEnum = (typeof StaffEventScalarFieldEnum)[keyof typeof StaffEventScalarFieldEnum]; export declare const FeedbackScalarFieldEnum: { readonly id: "id"; readonly feedbackId: "feedbackId"; readonly rating: "rating"; readonly comment: "comment"; readonly type: "type"; readonly version: "version"; readonly os: "os"; readonly arch: "arch"; readonly nodeVersion: "nodeVersion"; readonly sessionCount: "sessionCount"; readonly factCount: "factCount"; readonly instanceId: "instanceId"; readonly milestoneContext: "milestoneContext"; readonly submittedAt: "submittedAt"; readonly receivedAt: "receivedAt"; }; export type FeedbackScalarFieldEnum = (typeof FeedbackScalarFieldEnum)[keyof typeof FeedbackScalarFieldEnum]; export declare const SortOrder: { readonly asc: "asc"; readonly desc: "desc"; }; export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; export declare const JsonNullValueInput: { readonly JsonNull: import("@prisma/client-runtime-utils").JsonNullClass; }; export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput]; export declare const QueryMode: { readonly default: "default"; readonly insensitive: "insensitive"; }; export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode]; export declare const NullsOrder: { readonly first: "first"; readonly last: "last"; }; export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]; export declare const JsonNullValueFilter: { readonly DbNull: import("@prisma/client-runtime-utils").DbNullClass; readonly JsonNull: import("@prisma/client-runtime-utils").JsonNullClass; readonly AnyNull: import("@prisma/client-runtime-utils").AnyNullClass; }; export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter]; //# sourceMappingURL=prismaNamespaceBrowser.d.ts.map