@naisys/supervisor-database 3.0.0-beta.4 → 3.0.0-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,82 +0,0 @@
1
- import * as runtime from "@prisma/client/runtime/index-browser";
2
- export type * from '../models.js';
3
- export type * from './prismaNamespace.js';
4
- export declare const Decimal: typeof runtime.Decimal;
5
- export declare const NullTypes: {
6
- DbNull: (new (secret: never) => typeof runtime.DbNull);
7
- JsonNull: (new (secret: never) => typeof runtime.JsonNull);
8
- AnyNull: (new (secret: never) => typeof runtime.AnyNull);
9
- };
10
- /**
11
- * Helper for filtering JSON entries that have `null` on the database (empty on the db)
12
- *
13
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
14
- */
15
- export declare const DbNull: import("@prisma/client-runtime-utils").DbNullClass;
16
- /**
17
- * Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
18
- *
19
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
20
- */
21
- export declare const JsonNull: import("@prisma/client-runtime-utils").JsonNullClass;
22
- /**
23
- * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
24
- *
25
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
26
- */
27
- export declare const AnyNull: import("@prisma/client-runtime-utils").AnyNullClass;
28
- export declare const ModelName: {
29
- readonly User: "User";
30
- readonly Session: "Session";
31
- readonly UserPermission: "UserPermission";
32
- readonly SchemaVersion: "SchemaVersion";
33
- };
34
- export type ModelName = (typeof ModelName)[keyof typeof ModelName];
35
- export declare const TransactionIsolationLevel: {
36
- readonly Serializable: "Serializable";
37
- };
38
- export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
39
- export declare const UserScalarFieldEnum: {
40
- readonly id: "id";
41
- readonly username: "username";
42
- readonly uuid: "uuid";
43
- readonly isAgent: "isAgent";
44
- readonly passwordHash: "passwordHash";
45
- readonly createdAt: "createdAt";
46
- readonly apiKey: "apiKey";
47
- readonly updatedAt: "updatedAt";
48
- };
49
- export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum];
50
- export declare const SessionScalarFieldEnum: {
51
- readonly id: "id";
52
- readonly userId: "userId";
53
- readonly tokenHash: "tokenHash";
54
- readonly expiresAt: "expiresAt";
55
- readonly createdAt: "createdAt";
56
- };
57
- export type SessionScalarFieldEnum = (typeof SessionScalarFieldEnum)[keyof typeof SessionScalarFieldEnum];
58
- export declare const UserPermissionScalarFieldEnum: {
59
- readonly id: "id";
60
- readonly userId: "userId";
61
- readonly permission: "permission";
62
- readonly grantedAt: "grantedAt";
63
- readonly grantedBy: "grantedBy";
64
- };
65
- export type UserPermissionScalarFieldEnum = (typeof UserPermissionScalarFieldEnum)[keyof typeof UserPermissionScalarFieldEnum];
66
- export declare const SchemaVersionScalarFieldEnum: {
67
- readonly id: "id";
68
- readonly version: "version";
69
- readonly updated: "updated";
70
- };
71
- export type SchemaVersionScalarFieldEnum = (typeof SchemaVersionScalarFieldEnum)[keyof typeof SchemaVersionScalarFieldEnum];
72
- export declare const SortOrder: {
73
- readonly asc: "asc";
74
- readonly desc: "desc";
75
- };
76
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
77
- export declare const NullsOrder: {
78
- readonly first: "first";
79
- readonly last: "last";
80
- };
81
- export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
82
- //# sourceMappingURL=prismaNamespaceBrowser.d.ts.map